Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
143 changes: 143 additions & 0 deletions packages/kiota-dom-export.txt

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion packages/kiota-lock.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"descriptionHash": "A0EC964C141503AB2CA8292C73CBE5CD6C1EB78B8FC1CE6A9A31805C10E44957F0F102F5D44370092370B570087DA11BA4CCEEC9B9EC0B3F0EC727F3DE65F0F4",
"descriptionHash": "210748C370E8C008FEC7B35917759487777853C327E5F1110B8AE829FB1FFCCC449B17C42253984FB6379E2587AF94E61187A6C052C14EA092EA4686B777D848",
"descriptionLocation": "../../msgraph-metadata/clean_beta_openapi/openapi.yaml",
"lockFileVersion": "1.0.0",
"kiotaVersion": "1.29.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ export interface UpdatableAssetItemRequestBuilder extends BaseRequestBuilder<Upd
*/
get microsoftGraphWindowsUpdatesRemoveMembersById(): MicrosoftGraphWindowsUpdatesRemoveMembersByIdRequestBuilder;
/**
* Delete an azureADDevice object. When a Microsoft Entra device is deleted, it is unregistered and automatically unenrolled from management for all update categories, as well as removed from every deploymentAudience and updatableAssetGroup.
* Delete an updatableAssetGroup object. When an updatableAssetGroup object, its member updatableAsset objects are not deleted.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-azureaddevice-delete?view=graph-rest-beta|Find more info here}
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-updatableassetgroup-delete?view=graph-rest-beta|Find more info here}
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
Expand All @@ -60,7 +60,7 @@ export interface UpdatableAssetItemRequestBuilder extends BaseRequestBuilder<Upd
*/
patch(body: UpdatableAsset, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<UpdatableAsset | undefined>;
/**
* Delete an azureADDevice object. When a Microsoft Entra device is deleted, it is unregistered and automatically unenrolled from management for all update categories, as well as removed from every deploymentAudience and updatableAssetGroup.
* Delete an updatableAssetGroup object. When an updatableAssetGroup object, its member updatableAsset objects are not deleted.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,20 +26,20 @@ export interface ComplianceChangeItemRequestBuilder extends BaseRequestBuilder<C
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* Read the properties and relationships of a contentApproval object.
* Read the properties and relationships of a complianceChange object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ComplianceChange>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-contentapproval-get?view=graph-rest-beta|Find more info here}
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-get?view=graph-rest-beta|Find more info here}
*/
get(requestConfiguration?: RequestConfiguration<ComplianceChangeItemRequestBuilderGetQueryParameters> | undefined) : Promise<ComplianceChange | undefined>;
/**
* Update the properties of a contentApproval object.
* Update the properties of a complianceChange object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<ComplianceChange>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-contentapproval-update?view=graph-rest-beta|Find more info here}
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-update?view=graph-rest-beta|Find more info here}
*/
patch(body: ComplianceChange, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ComplianceChange | undefined>;
/**
Expand All @@ -49,21 +49,21 @@ export interface ComplianceChangeItemRequestBuilder extends BaseRequestBuilder<C
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* Read the properties and relationships of a contentApproval object.
* Read the properties and relationships of a complianceChange object.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ComplianceChangeItemRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
/**
* Update the properties of a contentApproval object.
* Update the properties of a complianceChange object.
* @param body The request body
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
toPatchRequestInformation(body: ComplianceChange, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* Read the properties and relationships of a contentApproval object.
* Read the properties and relationships of a complianceChange object.
*/
export interface ComplianceChangeItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
*/
byIosLobAppProvisioningConfigurationAssignmentId(iosLobAppProvisioningConfigurationAssignmentId: string) : IosLobAppProvisioningConfigurationAssignmentItemRequestBuilder;
/**
* The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.
* The associated group assignments for IosLobAppProvisioningConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<IosLobAppProvisioningConfigurationAssignmentCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -42,7 +42,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
*/
post(body: IosLobAppProvisioningConfigurationAssignment, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<IosLobAppProvisioningConfigurationAssignment | undefined>;
/**
* The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.
* The associated group assignments for IosLobAppProvisioningConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -56,7 +56,7 @@ export interface AssignmentsRequestBuilder extends BaseRequestBuilder<Assignment
toPostRequestInformation(body: IosLobAppProvisioningConfigurationAssignment, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.
* The associated group assignments for IosLobAppProvisioningConfiguration.
*/
export interface AssignmentsRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface IosLobAppProvisioningConfigurationAssignmentItemRequestBuilder
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.
* The associated group assignments for IosLobAppProvisioningConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<IosLobAppProvisioningConfigurationAssignment>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -40,7 +40,7 @@ export interface IosLobAppProvisioningConfigurationAssignmentItemRequestBuilder
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.
* The associated group assignments for IosLobAppProvisioningConfiguration.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -54,7 +54,7 @@ export interface IosLobAppProvisioningConfigurationAssignmentItemRequestBuilder
toPatchRequestInformation(body: IosLobAppProvisioningConfigurationAssignment, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* The associated group assignments for IosLobAppProvisioningConfiguration, this determines which devices/users the IOS LOB app provisioning conifguration will be targeted to.
* The associated group assignments for IosLobAppProvisioningConfiguration.
*/
export interface IosLobAppProvisioningConfigurationAssignmentItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
*/
byMobileAppRelationshipId(mobileAppRelationshipId: string) : MobileAppRelationshipItemRequestBuilder;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<MobileAppRelationshipCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -42,7 +42,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
*/
post(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<MobileAppRelationship | undefined>;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -56,7 +56,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
toPostRequestInformation(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
*/
export interface RelationshipsRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<MobileAppRelationship>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -40,7 +40,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -54,7 +54,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
toPatchRequestInformation(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
*/
export interface MobileAppRelationshipItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
*/
byMobileAppRelationshipId(mobileAppRelationshipId: string) : MobileAppRelationshipItemRequestBuilder;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<MobileAppRelationshipCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -42,7 +42,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
*/
post(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<MobileAppRelationship | undefined>;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -56,7 +56,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
toPostRequestInformation(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
*/
export interface RelationshipsRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<MobileAppRelationship>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -40,7 +40,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -54,7 +54,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
toPatchRequestInformation(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
*/
export interface MobileAppRelationshipItemRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
*/
byMobileAppRelationshipId(mobileAppRelationshipId: string) : MobileAppRelationshipItemRequestBuilder;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<MobileAppRelationshipCollectionResponse>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -42,7 +42,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
*/
post(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<MobileAppRelationship | undefined>;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -56,7 +56,7 @@ export interface RelationshipsRequestBuilder extends BaseRequestBuilder<Relation
toPostRequestInformation(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
*/
export interface RelationshipsRequestBuilderGetQueryParameters {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
*/
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {Promise<MobileAppRelationship>}
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
Expand All @@ -40,7 +40,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
*/
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
* @returns {RequestInformation}
*/
Expand All @@ -54,7 +54,7 @@ export interface MobileAppRelationshipItemRequestBuilder extends BaseRequestBuil
toPatchRequestInformation(body: MobileAppRelationship, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
}
/**
* List of relationships for this mobile app.
* The set of direct relationships for this app.
*/
export interface MobileAppRelationshipItemRequestBuilderGetQueryParameters {
/**
Expand Down
Loading