Skip to content

Commit b5e8799

Browse files
Merge pull request #892 from microsoftgraph/v1.0/pipelinebuild/199037
Generated models and request builders
2 parents 7ecd455 + ae35fa8 commit b5e8799

File tree

51 files changed

+221
-221
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+221
-221
lines changed

packages/kiota-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"descriptionHash": "9F8BCAD2CBA94367538D693D2B5E1A5481EC3B46A855EF4176C4BDAC7D0E781179163B42991046F2FAC996400537402F6AEBDDEEE56FD857329D1F3CAEF6A8BA",
2+
"descriptionHash": "4B0031F70F3815D4CFACB6D42FBB4AAC7162437FEFE6F7701E162C33E876DABB21668F488EBB5BEFE3495DDBD43E689D40C62326CEBC5B416F6289B5DD495171",
33
"descriptionLocation": "../../msgraph-metadata/clean_v10_openapi/openapi.yaml",
44
"lockFileVersion": "1.0.0",
55
"kiotaVersion": "1.29.0",

packages/msgraph-sdk-communications/communications/calls/item/participants/invite/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,16 @@ export interface InvitePostRequestBody extends AdditionalDataHolder, BackedModel
4949
*/
5050
export interface InviteRequestBuilder extends BaseRequestBuilder<InviteRequestBuilder> {
5151
/**
52-
* Invite participants to the active call. For more information about how to handle operations, see commsOperation.
52+
* Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
5353
* @param body The request body
5454
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5555
* @returns {Promise<InviteParticipantsOperation>}
5656
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
57-
* @see {@link https://learn.microsoft.com/graph/api/participant-invite?view=graph-rest-1.0|Find more info here}
57+
* @see {@link https://learn.microsoft.com/graph/api/participant-delete?view=graph-rest-1.0|Find more info here}
5858
*/
5959
post(body: InvitePostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<InviteParticipantsOperation | undefined>;
6060
/**
61-
* Invite participants to the active call. For more information about how to handle operations, see commsOperation.
61+
* Delete a specific participant in a call. In some situations, it is appropriate for an application to remove a participant from an active call. This action can be done before or after the participant answers the call. When an active caller is removed, they are immediately dropped from the call with no pre- or post-removal notification. When an invited participant is removed, any outstanding add participant request is canceled.
6262
* @param body The request body
6363
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
* @returns {RequestInformation}

packages/msgraph-sdk-communications/communications/presences/item/setPresence/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,15 +72,15 @@ export interface SetPresencePostRequestBody extends AdditionalDataHolder, Backed
7272
*/
7373
export interface SetPresenceRequestBuilder extends BaseRequestBuilder<SetPresenceRequestBuilder> {
7474
/**
75-
* Set the state of a user's presence session as an application.
75+
* Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API.
7676
* @param body The request body
7777
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
7878
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
7979
* @see {@link https://learn.microsoft.com/graph/api/presence-setpresence?view=graph-rest-1.0|Find more info here}
8080
*/
8181
post(body: SetPresencePostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
8282
/**
83-
* Set the state of a user's presence session as an application.
83+
* Set the state of a user's presence session as an application. For more information about presence sessions, states permutations, and timeouts, see Manage presence state using the Microsoft Graph API.
8484
* @param body The request body
8585
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8686
* @returns {RequestInformation}

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
113113
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
114114
* @returns {Promise<DeviceAppManagement>}
115115
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
116-
* @see {@link https://learn.microsoft.com/graph/api/intune-onboarding-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
116+
* @see {@link https://learn.microsoft.com/graph/api/intune-policyset-deviceappmanagement-get?view=graph-rest-1.0|Find more info here}
117117
*/
118118
get(requestConfiguration?: RequestConfiguration<DeviceAppManagementRequestBuilderGetQueryParameters> | undefined) : Promise<DeviceAppManagement | undefined>;
119119
/**
@@ -122,7 +122,7 @@ export interface DeviceAppManagementRequestBuilder extends BaseRequestBuilder<De
122122
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
123123
* @returns {Promise<DeviceAppManagement>}
124124
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
125-
* @see {@link https://learn.microsoft.com/graph/api/intune-unlock-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
125+
* @see {@link https://learn.microsoft.com/graph/api/intune-apps-deviceappmanagement-update?view=graph-rest-1.0|Find more info here}
126126
*/
127127
patch(body: DeviceAppManagement, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<DeviceAppManagement | undefined>;
128128
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
2525
*/
2626
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2727
/**
28-
* Read properties and relationships of the managedAppProtection object.
28+
* Read properties and relationships of the windowsInformationProtection object.
2929
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3030
* @returns {Promise<ManagedAppPolicy>}
3131
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
32-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedappprotection-get?view=graph-rest-1.0|Find more info here}
32+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-windowsinformationprotection-get?view=graph-rest-1.0|Find more info here}
3333
*/
3434
get(requestConfiguration?: RequestConfiguration<ManagedAppPolicyItemRequestBuilderGetQueryParameters> | undefined) : Promise<ManagedAppPolicy | undefined>;
3535
/**
@@ -47,7 +47,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
4747
*/
4848
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
4949
/**
50-
* Read properties and relationships of the managedAppProtection object.
50+
* Read properties and relationships of the windowsInformationProtection object.
5151
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5252
* @returns {RequestInformation}
5353
*/
@@ -61,7 +61,7 @@ export interface ManagedAppPolicyItemRequestBuilder extends BaseRequestBuilder<M
6161
toPatchRequestInformation(body: ManagedAppPolicy, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6262
}
6363
/**
64-
* Read properties and relationships of the managedAppProtection object.
64+
* Read properties and relationships of the windowsInformationProtection object.
6565
*/
6666
export interface ManagedAppPolicyItemRequestBuilderGetQueryParameters {
6767
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppPolicies/item/targetApps/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
6060
* @param body The request body
6161
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6262
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
63-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
63+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
6464
*/
6565
post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
6666
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
3333
*/
3434
byManagedAppRegistrationId(managedAppRegistrationId: string) : ManagedAppRegistrationItemRequestBuilder;
3535
/**
36-
* List properties and relationships of the androidManagedAppRegistration objects.
36+
* List properties and relationships of the iosManagedAppRegistration objects.
3737
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3838
* @returns {Promise<ManagedAppRegistrationCollectionResponse>}
3939
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
40-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-list?view=graph-rest-1.0|Find more info here}
40+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-list?view=graph-rest-1.0|Find more info here}
4141
*/
4242
get(requestConfiguration?: RequestConfiguration<ManagedAppRegistrationsRequestBuilderGetQueryParameters> | undefined) : Promise<ManagedAppRegistrationCollectionResponse | undefined>;
4343
/**
@@ -50,7 +50,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
5050
*/
5151
post(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ManagedAppRegistration | undefined>;
5252
/**
53-
* List properties and relationships of the androidManagedAppRegistration objects.
53+
* List properties and relationships of the iosManagedAppRegistration objects.
5454
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5555
* @returns {RequestInformation}
5656
*/
@@ -64,7 +64,7 @@ export interface ManagedAppRegistrationsRequestBuilder extends BaseRequestBuilde
6464
toPostRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6565
}
6666
/**
67-
* List properties and relationships of the androidManagedAppRegistration objects.
67+
* List properties and relationships of the iosManagedAppRegistration objects.
6868
*/
6969
export interface ManagedAppRegistrationsRequestBuilderGetQueryParameters {
7070
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/appliedPolicies/item/targetApps/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
6060
* @param body The request body
6161
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6262
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
63-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
63+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
6464
*/
6565
post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
6666
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
3737
*/
3838
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
3939
/**
40-
* Read properties and relationships of the iosManagedAppRegistration object.
40+
* Read properties and relationships of the androidManagedAppRegistration object.
4141
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4242
* @returns {Promise<ManagedAppRegistration>}
4343
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
44-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-iosmanagedappregistration-get?view=graph-rest-1.0|Find more info here}
44+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-androidmanagedappregistration-get?view=graph-rest-1.0|Find more info here}
4545
*/
4646
get(requestConfiguration?: RequestConfiguration<ManagedAppRegistrationItemRequestBuilderGetQueryParameters> | undefined) : Promise<ManagedAppRegistration | undefined>;
4747
/**
@@ -59,7 +59,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
5959
*/
6060
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6161
/**
62-
* Read properties and relationships of the iosManagedAppRegistration object.
62+
* Read properties and relationships of the androidManagedAppRegistration object.
6363
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6464
* @returns {RequestInformation}
6565
*/
@@ -73,7 +73,7 @@ export interface ManagedAppRegistrationItemRequestBuilder extends BaseRequestBui
7373
toPatchRequestInformation(body: ManagedAppRegistration, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
7474
}
7575
/**
76-
* Read properties and relationships of the iosManagedAppRegistration object.
76+
* Read properties and relationships of the androidManagedAppRegistration object.
7777
*/
7878
export interface ManagedAppRegistrationItemRequestBuilderGetQueryParameters {
7979
/**

packages/msgraph-sdk-deviceAppManagement/deviceAppManagement/managedAppRegistrations/item/intendedPolicies/item/targetApps/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ export interface TargetAppsRequestBuilder extends BaseRequestBuilder<TargetAppsR
6060
* @param body The request body
6161
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6262
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
63-
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-managedapppolicy-targetapps?view=graph-rest-1.0|Find more info here}
63+
* @see {@link https://learn.microsoft.com/graph/api/intune-mam-targetedmanagedappprotection-targetapps?view=graph-rest-1.0|Find more info here}
6464
*/
6565
post(body: TargetAppsPostRequestBody, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
6666
/**

0 commit comments

Comments
 (0)