Skip to content

Commit 6a3ca38

Browse files
authored
Merge pull request #203 from microsoftgraph/beta/pipelinebuild/171412
Generated beta models and request builders
2 parents 8bd14ac + d971ebd commit 6a3ca38

2,818 files changed

Lines changed: 14972 additions & 12153 deletions

File tree

Some content is hidden

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

packages/kiota-dom-export.txt

Lines changed: 1822 additions & 311 deletions
Large diffs are not rendered by default.

packages/kiota-lock.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"descriptionHash": "2DB6F3D3DEBE84E9231287BB7871C6ADCE1B20935B87EFBBB71BE8E41B780F9CF3D9F9BB7D511DF554AB67EF407ACC7788E562ACA2AD91AD408B45EED2449F15",
2+
"descriptionHash": "B8B4A751A04F12CD29298F665AB69EB0286A1F9E2C76B868A09386890F7C99FADFDA018E977DC18402BA3FD3EFEF8CD71EAB30E64E1B7351DD0B02EB76A2BDC3",
33
"descriptionLocation": "../../msgraph-metadata/clean_beta_openapi/openapi.yaml",
44
"lockFileVersion": "1.0.0",
5-
"kiotaVersion": "1.20.0",
5+
"kiotaVersion": "1.21.0",
66
"clientClassName": "GraphBetaBaseServiceClient",
77
"typeAccessModifier": "Public",
88
"clientNamespaceName": "github.com/microsoftgraph/msgraph-sdk-typescript/",
@@ -31,7 +31,9 @@
3131
"includePatterns": [],
3232
"excludePatterns": [
3333
"/me",
34-
"/me/**"
34+
"/me/**",
35+
"/copilot",
36+
"/copilot/**"
3537
],
3638
"disabledValidationRules": []
3739
}

packages/msgraph-beta-sdk-admin/admin/entra/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export interface EntraRequestBuilder extends BaseRequestBuilder<EntraRequestBuil
2727
*/
2828
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2929
/**
30-
* Get entra from admin
30+
* A container for Microsoft Entra resources. Read-only.
3131
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3232
* @returns {Promise<Entra>}
3333
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
@@ -51,7 +51,7 @@ export interface EntraRequestBuilder extends BaseRequestBuilder<EntraRequestBuil
5151
*/
5252
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
5353
/**
54-
* Get entra from admin
54+
* A container for Microsoft Entra resources. Read-only.
5555
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5656
* @returns {RequestInformation}
5757
* @deprecated as of 2023-11/PrivatePreview:BulkJobs
@@ -67,7 +67,7 @@ export interface EntraRequestBuilder extends BaseRequestBuilder<EntraRequestBuil
6767
toPatchRequestInformation(body: Entra, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6868
}
6969
/**
70-
* Get entra from admin
70+
* A container for Microsoft Entra resources. Read-only.
7171
*/
7272
export interface EntraRequestBuilderGetQueryParameters {
7373
/**

packages/msgraph-beta-sdk-admin/admin/entra/uxSetting/index.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,22 @@ export interface UxSettingRequestBuilder extends BaseRequestBuilder<UxSettingReq
2020
*/
2121
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2222
/**
23-
* Get uxSetting from admin
23+
* Get the properties and relationships of a uxSetting object.
2424
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
2525
* @returns {Promise<UxSetting>}
2626
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
2727
* @deprecated as of 2023-11/PrivatePreview:BulkJobs
28+
* @see {@link https://learn.microsoft.com/graph/api/uxsetting-get?view=graph-rest-beta|Find more info here}
2829
*/
2930
get(requestConfiguration?: RequestConfiguration<UxSettingRequestBuilderGetQueryParameters> | undefined) : Promise<UxSetting | undefined>;
3031
/**
31-
* Update the navigation property uxSetting in admin
32+
* Update the properties of a uxSetting object.
3233
* @param body The request body
3334
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3435
* @returns {Promise<UxSetting>}
3536
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
3637
* @deprecated as of 2023-11/PrivatePreview:BulkJobs
38+
* @see {@link https://learn.microsoft.com/graph/api/uxsetting-update?view=graph-rest-beta|Find more info here}
3739
*/
3840
patch(body: UxSetting, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<UxSetting | undefined>;
3941
/**
@@ -44,14 +46,14 @@ export interface UxSettingRequestBuilder extends BaseRequestBuilder<UxSettingReq
4446
*/
4547
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
4648
/**
47-
* Get uxSetting from admin
49+
* Get the properties and relationships of a uxSetting object.
4850
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4951
* @returns {RequestInformation}
5052
* @deprecated as of 2023-11/PrivatePreview:BulkJobs
5153
*/
5254
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UxSettingRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
5355
/**
54-
* Update the navigation property uxSetting in admin
56+
* Update the properties of a uxSetting object.
5557
* @param body The request body
5658
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5759
* @returns {RequestInformation}
@@ -60,7 +62,7 @@ export interface UxSettingRequestBuilder extends BaseRequestBuilder<UxSettingReq
6062
toPatchRequestInformation(body: UxSetting, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6163
}
6264
/**
63-
* Get uxSetting from admin
65+
* Get the properties and relationships of a uxSetting object.
6466
*/
6567
export interface UxSettingRequestBuilderGetQueryParameters {
6668
/**

packages/msgraph-beta-sdk-admin/admin/windows/updates/resourceConnections/item/index.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,18 +13,18 @@ import { type BaseRequestBuilder, type Parsable, type ParsableFactory, type Requ
1313
*/
1414
export interface ResourceConnectionItemRequestBuilder extends BaseRequestBuilder<ResourceConnectionItemRequestBuilder> {
1515
/**
16-
* Delete an operationalInsightsConnection object.
16+
* Delete a resourceConnection object.
1717
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
1818
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
19-
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-operationalinsightsconnection-delete?view=graph-rest-beta|Find more info here}
19+
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-resourceconnection-delete?view=graph-rest-beta|Find more info here}
2020
*/
2121
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2222
/**
23-
* Read the properties and relationships of a resourceConnection object.
23+
* Read the properties and relationships of an operationalInsightsConnection object.
2424
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
2525
* @returns {Promise<ResourceConnection>}
2626
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
27-
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-resourceconnection-get?view=graph-rest-beta|Find more info here}
27+
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-operationalinsightsconnection-get?view=graph-rest-beta|Find more info here}
2828
*/
2929
get(requestConfiguration?: RequestConfiguration<ResourceConnectionItemRequestBuilderGetQueryParameters> | undefined) : Promise<ResourceConnection | undefined>;
3030
/**
@@ -36,13 +36,13 @@ export interface ResourceConnectionItemRequestBuilder extends BaseRequestBuilder
3636
*/
3737
patch(body: ResourceConnection, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<ResourceConnection | undefined>;
3838
/**
39-
* Delete an operationalInsightsConnection object.
39+
* Delete a resourceConnection object.
4040
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4141
* @returns {RequestInformation}
4242
*/
4343
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
4444
/**
45-
* Read the properties and relationships of a resourceConnection object.
45+
* Read the properties and relationships of an operationalInsightsConnection object.
4646
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4747
* @returns {RequestInformation}
4848
*/
@@ -56,7 +56,7 @@ export interface ResourceConnectionItemRequestBuilder extends BaseRequestBuilder
5656
toPatchRequestInformation(body: ResourceConnection, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
5757
}
5858
/**
59-
* Read the properties and relationships of a resourceConnection object.
59+
* Read the properties and relationships of an operationalInsightsConnection object.
6060
*/
6161
export interface ResourceConnectionItemRequestBuilderGetQueryParameters {
6262
/**

packages/msgraph-beta-sdk-admin/admin/windows/updates/updatableAssets/item/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ export interface UpdatableAssetItemRequestBuilder extends BaseRequestBuilder<Upd
3737
*/
3838
get microsoftGraphWindowsUpdatesRemoveMembersById(): MicrosoftGraphWindowsUpdatesRemoveMembersByIdRequestBuilder;
3939
/**
40-
* Delete an updatableAsset object.
40+
* 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.
4141
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4242
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
43-
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-updatableasset-delete?view=graph-rest-beta|Find more info here}
43+
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-azureaddevice-delete?view=graph-rest-beta|Find more info here}
4444
*/
4545
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
4646
/**
@@ -60,7 +60,7 @@ export interface UpdatableAssetItemRequestBuilder extends BaseRequestBuilder<Upd
6060
*/
6161
patch(body: UpdatableAsset, requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<UpdatableAsset | undefined>;
6262
/**
63-
* Delete an updatableAsset object.
63+
* 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.
6464
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6565
* @returns {RequestInformation}
6666
*/

packages/msgraph-beta-sdk-admin/admin/windows/updates/updatePolicies/item/complianceChanges/item/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ export interface ComplianceChangeItemRequestBuilder extends BaseRequestBuilder<C
2626
*/
2727
delete(requestConfiguration?: RequestConfiguration<object> | undefined) : Promise<void>;
2828
/**
29-
* Read the properties and relationships of a contentApproval object.
29+
* Read the properties and relationships of a complianceChange object.
3030
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3131
* @returns {Promise<ComplianceChange>}
3232
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
33-
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-contentapproval-get?view=graph-rest-beta|Find more info here}
33+
* @see {@link https://learn.microsoft.com/graph/api/windowsupdates-compliancechange-get?view=graph-rest-beta|Find more info here}
3434
*/
3535
get(requestConfiguration?: RequestConfiguration<ComplianceChangeItemRequestBuilderGetQueryParameters> | undefined) : Promise<ComplianceChange | undefined>;
3636
/**
@@ -49,7 +49,7 @@ export interface ComplianceChangeItemRequestBuilder extends BaseRequestBuilder<C
4949
*/
5050
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
5151
/**
52-
* Read the properties and relationships of a contentApproval object.
52+
* Read the properties and relationships of a complianceChange object.
5353
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
5454
* @returns {RequestInformation}
5555
*/
@@ -63,7 +63,7 @@ export interface ComplianceChangeItemRequestBuilder extends BaseRequestBuilder<C
6363
toPatchRequestInformation(body: ComplianceChange, requestConfiguration?: RequestConfiguration<object> | undefined) : RequestInformation;
6464
}
6565
/**
66-
* Read the properties and relationships of a contentApproval object.
66+
* Read the properties and relationships of a complianceChange object.
6767
*/
6868
export interface ComplianceChangeItemRequestBuilderGetQueryParameters {
6969
/**

packages/msgraph-beta-sdk-administrativeUnits/administrativeUnits/delta/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,22 @@ export interface DeltaGetResponse extends BaseDeltaFunctionResponse, Parsable {
2828
*/
2929
export interface DeltaRequestBuilder extends BaseRequestBuilder<DeltaRequestBuilder> {
3030
/**
31-
* Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource collection. For details, see Using delta query.
31+
* Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details.
3232
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
3333
* @returns {Promise<DeltaGetResponse>}
3434
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
3535
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-delta?view=graph-rest-beta|Find more info here}
3636
*/
3737
get(requestConfiguration?: RequestConfiguration<DeltaRequestBuilderGetQueryParameters> | undefined) : Promise<DeltaGetResponse | undefined>;
3838
/**
39-
* Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource collection. For details, see Using delta query.
39+
* Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details.
4040
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
4141
* @returns {RequestInformation}
4242
*/
4343
toGetRequestInformation(requestConfiguration?: RequestConfiguration<DeltaRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
4444
}
4545
/**
46-
* Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource collection. For details, see Using delta query.
46+
* Get newly created, updated, or deleted administrativeUnits without having to perform a full read of the entire resource collection. For more information, see Use delta query to track changes in Microsoft Graph data for details.
4747
*/
4848
export interface DeltaRequestBuilderGetQueryParameters {
4949
/**

packages/msgraph-beta-sdk-administrativeUnits/administrativeUnits/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export interface AdministrativeUnitsRequestBuilder extends BaseRequestBuilder<Ad
5959
*/
6060
get(requestConfiguration?: RequestConfiguration<AdministrativeUnitsRequestBuilderGetQueryParameters> | undefined) : Promise<AdministrativeUnitCollectionResponse | undefined>;
6161
/**
62-
* Use this API to create a new administrativeUnit.
62+
* Create a new administrativeUnit.
6363
* @param body The request body
6464
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
6565
* @returns {Promise<AdministrativeUnit>}
@@ -74,7 +74,7 @@ export interface AdministrativeUnitsRequestBuilder extends BaseRequestBuilder<Ad
7474
*/
7575
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AdministrativeUnitsRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
7676
/**
77-
* Use this API to create a new administrativeUnit.
77+
* Create a new administrativeUnit.
7878
* @param body The request body
7979
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
8080
* @returns {RequestInformation}

packages/msgraph-beta-sdk-administrativeUnits/administrativeUnits/item/members/graphUser/count/index.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,12 @@ export interface CountRequestBuilder extends BaseRequestBuilder<CountRequestBuil
1515
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
1616
* @returns {Promise<number>}
1717
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
18-
* @deprecated as of 2024-07/PrivatePreview:copilotExportAPI
1918
*/
2019
get(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined) : Promise<number | undefined>;
2120
/**
2221
* Get the number of the resource
2322
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
2423
* @returns {RequestInformation}
25-
* @deprecated as of 2024-07/PrivatePreview:copilotExportAPI
2624
*/
2725
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CountRequestBuilderGetQueryParameters> | undefined) : RequestInformation;
2826
}

0 commit comments

Comments
 (0)