@microsoft/msgraph-sdk-directory 1.0.0-preview.20 → 1.0.0-preview.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/directory/administrativeUnits/index.d.ts +5 -7
- package/directory/administrativeUnits/index.d.ts.map +1 -1
- package/directory/administrativeUnits/item/index.d.ts +7 -10
- package/directory/administrativeUnits/item/index.d.ts.map +1 -1
- package/directory/administrativeUnits/item/members/index.d.ts +0 -2
- package/directory/administrativeUnits/item/members/index.d.ts.map +1 -1
- package/directory/administrativeUnits/item/members/item/ref/index.d.ts +2 -3
- package/directory/administrativeUnits/item/members/item/ref/index.d.ts.map +1 -1
- package/directory/administrativeUnits/item/members/ref/index.d.ts +3 -6
- package/directory/administrativeUnits/item/members/ref/index.d.ts.map +1 -1
- package/directory/administrativeUnits/item/scopedRoleMembers/index.d.ts +5 -7
- package/directory/administrativeUnits/item/scopedRoleMembers/index.d.ts.map +1 -1
- package/directory/administrativeUnits/item/scopedRoleMembers/item/index.d.ts +5 -7
- package/directory/administrativeUnits/item/scopedRoleMembers/item/index.d.ts.map +1 -1
- package/directory/attributeSets/index.d.ts +5 -7
- package/directory/attributeSets/index.d.ts.map +1 -1
- package/directory/attributeSets/item/index.d.ts +5 -7
- package/directory/attributeSets/item/index.d.ts.map +1 -1
- package/directory/customSecurityAttributeDefinitions/index.d.ts +5 -7
- package/directory/customSecurityAttributeDefinitions/index.d.ts.map +1 -1
- package/directory/customSecurityAttributeDefinitions/item/allowedValues/index.d.ts +5 -7
- package/directory/customSecurityAttributeDefinitions/item/allowedValues/index.d.ts.map +1 -1
- package/directory/customSecurityAttributeDefinitions/item/allowedValues/item/index.d.ts +5 -7
- package/directory/customSecurityAttributeDefinitions/item/allowedValues/item/index.d.ts.map +1 -1
- package/directory/customSecurityAttributeDefinitions/item/index.d.ts +5 -7
- package/directory/customSecurityAttributeDefinitions/item/index.d.ts.map +1 -1
- package/directory/deletedItems/index.d.ts +3 -3
- package/directory/deletedItems/item/index.d.ts +3 -5
- package/directory/deletedItems/item/index.d.ts.map +1 -1
- package/directory/deviceLocalCredentials/index.d.ts +3 -4
- package/directory/deviceLocalCredentials/index.d.ts.map +1 -1
- package/directory/deviceLocalCredentials/item/index.d.ts +3 -4
- package/directory/deviceLocalCredentials/item/index.d.ts.map +1 -1
- package/directory/federationConfigurations/availableProviderTypes/index.d.ts +4 -3
- package/directory/federationConfigurations/availableProviderTypes/index.d.ts.map +1 -1
- package/directory/federationConfigurations/item/index.d.ts +2 -3
- package/directory/federationConfigurations/item/index.d.ts.map +1 -1
- package/directory/index.d.ts +12 -0
- package/directory/index.d.ts.map +1 -1
- package/directory/index.js +11 -0
- package/directory/onPremisesSynchronization/index.d.ts +3 -3
- package/directory/onPremisesSynchronization/item/index.d.ts +5 -7
- package/directory/onPremisesSynchronization/item/index.d.ts.map +1 -1
- package/directory/subscriptions/count/index.d.ts +41 -0
- package/directory/subscriptions/count/index.d.ts.map +1 -0
- package/directory/subscriptions/count/index.js +36 -0
- package/directory/subscriptions/index.d.ts +97 -0
- package/directory/subscriptions/index.d.ts.map +1 -0
- package/directory/subscriptions/index.js +72 -0
- package/directory/subscriptions/item/index.d.ts +69 -0
- package/directory/subscriptions/item/index.d.ts.map +1 -0
- package/directory/subscriptions/item/index.js +58 -0
- package/directory/subscriptionsWithCommerceSubscriptionId/index.d.ts +69 -0
- package/directory/subscriptionsWithCommerceSubscriptionId/index.d.ts.map +1 -0
- package/directory/subscriptionsWithCommerceSubscriptionId/index.js +58 -0
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -22,30 +22,28 @@ export interface AdministrativeUnitsRequestBuilder extends BaseRequestBuilder<Ad
|
|
|
22
22
|
*/
|
|
23
23
|
byAdministrativeUnitId(administrativeUnitId: string): AdministrativeUnitItemRequestBuilder;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
25
|
+
* Conceptual container for user and group directory objects.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<AdministrativeUnitCollectionResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
29
|
-
* @see {@link https://learn.microsoft.com/graph/api/directory-list-administrativeunits?view=graph-rest-1.0|Find more info here}
|
|
30
29
|
*/
|
|
31
30
|
get(requestConfiguration?: RequestConfiguration<AdministrativeUnitsRequestBuilderGetQueryParameters> | undefined): Promise<AdministrativeUnitCollectionResponse | undefined>;
|
|
32
31
|
/**
|
|
33
|
-
*
|
|
32
|
+
* Create new navigation property to administrativeUnits for directory
|
|
34
33
|
* @param body The request body
|
|
35
34
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
35
|
* @returns {Promise<AdministrativeUnit>}
|
|
37
36
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
38
|
-
* @see {@link https://learn.microsoft.com/graph/api/directory-post-administrativeunits?view=graph-rest-1.0|Find more info here}
|
|
39
37
|
*/
|
|
40
38
|
post(body: AdministrativeUnit, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AdministrativeUnit | undefined>;
|
|
41
39
|
/**
|
|
42
|
-
*
|
|
40
|
+
* Conceptual container for user and group directory objects.
|
|
43
41
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
42
|
* @returns {RequestInformation}
|
|
45
43
|
*/
|
|
46
44
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AdministrativeUnitsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
45
|
/**
|
|
48
|
-
*
|
|
46
|
+
* Create new navigation property to administrativeUnits for directory
|
|
49
47
|
* @param body The request body
|
|
50
48
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
49
|
* @returns {RequestInformation}
|
|
@@ -53,7 +51,7 @@ export interface AdministrativeUnitsRequestBuilder extends BaseRequestBuilder<Ad
|
|
|
53
51
|
toPostRequestInformation(body: AdministrativeUnit, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
52
|
}
|
|
55
53
|
/**
|
|
56
|
-
*
|
|
54
|
+
* Conceptual container for user and group directory objects.
|
|
57
55
|
*/
|
|
58
56
|
export interface AdministrativeUnitsRequestBuilderGetQueryParameters {
|
|
59
57
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiJ,KAAK,kBAAkB,EAAE,KAAK,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAInQ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAgH,KAAK,oCAAoC,EAAE,MAAM,SAAS,CAAC;AAElL,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,iCAAkC,SAAQ,kBAAkB,CAAC,iCAAiC,CAAC;IAC5G;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,sBAAsB,CAAC,oBAAoB,EAAE,MAAM,GAAI,oCAAoC,CAAC;IAC7F
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiJ,KAAK,kBAAkB,EAAE,KAAK,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAInQ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAgH,KAAK,oCAAoC,EAAE,MAAM,SAAS,CAAC;AAElL,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,iCAAkC,SAAQ,kBAAkB,CAAC,iCAAiC,CAAC;IAC5G;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,sBAAsB,CAAC,oBAAoB,EAAE,MAAM,GAAI,oCAAoC,CAAC;IAC7F;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,mDAAmD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IAC/K;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC3I;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,mDAAmD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC5J;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC7I;AACD;;GAEG;AACH,MAAM,WAAW,mDAAmD;IAChE;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,4CAA4C,0HAA0H,CAAC;AAcpL;;GAEG;AACH,eAAO,MAAM,mDAAmD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,iCAAiC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAYhL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,iDAAiD,EAAE,gBAuB/D,CAAC"}
|
|
@@ -20,43 +20,40 @@ export interface AdministrativeUnitItemRequestBuilder extends BaseRequestBuilder
|
|
|
20
20
|
*/
|
|
21
21
|
get scopedRoleMembers(): ScopedRoleMembersRequestBuilder;
|
|
22
22
|
/**
|
|
23
|
-
* Delete
|
|
23
|
+
* Delete navigation property administrativeUnits for directory
|
|
24
24
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
26
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-delete?view=graph-rest-1.0|Find more info here}
|
|
27
26
|
*/
|
|
28
27
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
29
28
|
/**
|
|
30
|
-
*
|
|
29
|
+
* Conceptual container for user and group directory objects.
|
|
31
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
32
31
|
* @returns {Promise<AdministrativeUnit>}
|
|
33
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
34
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-get?view=graph-rest-1.0|Find more info here}
|
|
35
33
|
*/
|
|
36
34
|
get(requestConfiguration?: RequestConfiguration<AdministrativeUnitItemRequestBuilderGetQueryParameters> | undefined): Promise<AdministrativeUnit | undefined>;
|
|
37
35
|
/**
|
|
38
|
-
* Update the
|
|
36
|
+
* Update the navigation property administrativeUnits in directory
|
|
39
37
|
* @param body The request body
|
|
40
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
39
|
* @returns {Promise<AdministrativeUnit>}
|
|
42
40
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
43
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-update?view=graph-rest-1.0|Find more info here}
|
|
44
41
|
*/
|
|
45
42
|
patch(body: AdministrativeUnit, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AdministrativeUnit | undefined>;
|
|
46
43
|
/**
|
|
47
|
-
* Delete
|
|
44
|
+
* Delete navigation property administrativeUnits for directory
|
|
48
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
49
46
|
* @returns {RequestInformation}
|
|
50
47
|
*/
|
|
51
48
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
52
49
|
/**
|
|
53
|
-
*
|
|
50
|
+
* Conceptual container for user and group directory objects.
|
|
54
51
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
55
52
|
* @returns {RequestInformation}
|
|
56
53
|
*/
|
|
57
54
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AdministrativeUnitItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
58
55
|
/**
|
|
59
|
-
* Update the
|
|
56
|
+
* Update the navigation property administrativeUnits in directory
|
|
60
57
|
* @param body The request body
|
|
61
58
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
62
59
|
* @returns {RequestInformation}
|
|
@@ -64,7 +61,7 @@ export interface AdministrativeUnitItemRequestBuilder extends BaseRequestBuilder
|
|
|
64
61
|
toPatchRequestInformation(body: AdministrativeUnit, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
65
62
|
}
|
|
66
63
|
/**
|
|
67
|
-
*
|
|
64
|
+
* Conceptual container for user and group directory objects.
|
|
68
65
|
*/
|
|
69
66
|
export interface AdministrativeUnitItemRequestBuilderGetQueryParameters {
|
|
70
67
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAwF,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAEpJ,OAAO,EAAkF,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExI,OAAO,EAAsG,KAAK,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAEhL,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;IAC3C;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,iBAAiB,IAAI,+BAA+B,CAAC;IACzD
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+E,KAAK,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAItJ,OAAO,EAAwF,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAEpJ,OAAO,EAAkF,KAAK,qBAAqB,EAAE,MAAM,YAAY,CAAC;AAExI,OAAO,EAAsG,KAAK,+BAA+B,EAAE,MAAM,sBAAsB,CAAC;AAEhL,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,oCAAqC,SAAQ,kBAAkB,CAAC,oCAAoC,CAAC;IAClH;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;IAC3C;;OAEG;IACH,IAAI,OAAO,IAAI,qBAAqB,CAAC;IACrC;;OAEG;IACH,IAAI,iBAAiB,IAAI,+BAA+B,CAAC;IACzD;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAChK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,kBAAkB,GAAG,SAAS,CAAC,CAAC;IAC5I;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sDAAsD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC/J;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,kBAAkB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC9I;AACD;;GAEG;AACH,MAAM,WAAW,sDAAsD;IACnE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,+CAA+C,6FAA6F,CAAC;AAQ1J;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,oCAAoC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAatL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,oDAAoD,EAAE,gBA+BlE,CAAC"}
|
|
@@ -56,7 +56,6 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
|
|
|
56
56
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
57
57
|
* @returns {Promise<DirectoryObjectCollectionResponse>}
|
|
58
58
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
59
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-list-members?view=graph-rest-1.0|Find more info here}
|
|
60
59
|
*/
|
|
61
60
|
get(requestConfiguration?: RequestConfiguration<MembersRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObjectCollectionResponse | undefined>;
|
|
62
61
|
/**
|
|
@@ -65,7 +64,6 @@ export interface MembersRequestBuilder extends BaseRequestBuilder<MembersRequest
|
|
|
65
64
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
66
65
|
* @returns {Promise<DirectoryObject>}
|
|
67
66
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
68
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-post-members?view=graph-rest-1.0|Find more info here}
|
|
69
67
|
*/
|
|
70
68
|
post(body: DirectoryObject, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DirectoryObject | undefined>;
|
|
71
69
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAwI,KAAK,eAAe,EAAE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIpP,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAoG,KAAK,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AAE5K,OAAO,EAA0F,KAAK,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AAExJ,OAAO,EAAwF,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAEpJ,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,oBAAoB,CAAC;AAExK,OAAO,EAA8G,KAAK,mCAAmC,EAAE,MAAM,0BAA0B,CAAC;AAEhM,OAAO,EAAsF,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAEhJ,OAAO,EAAuD,KAAK,iCAAiC,EAAE,MAAM,SAAS,CAAC;AAEtH,OAAO,EAAqC,KAAK,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAEnF,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;OAEG;IACH,IAAI,gBAAgB,IAAI,8BAA8B,CAAC;IACvD;;OAEG;IACH,IAAI,WAAW,IAAI,yBAAyB,CAAC;IAC7C;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;IAC3C;;OAEG;IACH,IAAI,eAAe,IAAI,6BAA6B,CAAC;IACrD;;OAEG;IACH,IAAI,qBAAqB,IAAI,mCAAmC,CAAC;IACjE;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,GAAG,IAAI,iBAAiB,CAAC;IAC7B;;;;OAIG;IACF,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAI,iCAAiC,CAAC;IACpF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAwI,KAAK,eAAe,EAAE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIpP,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAoG,KAAK,8BAA8B,EAAE,MAAM,qBAAqB,CAAC;AAE5K,OAAO,EAA0F,KAAK,yBAAyB,EAAE,MAAM,gBAAgB,CAAC;AAExJ,OAAO,EAAwF,KAAK,wBAAwB,EAAE,MAAM,eAAe,CAAC;AAEpJ,OAAO,EAAkG,KAAK,6BAA6B,EAAE,MAAM,oBAAoB,CAAC;AAExK,OAAO,EAA8G,KAAK,mCAAmC,EAAE,MAAM,0BAA0B,CAAC;AAEhM,OAAO,EAAsF,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAEhJ,OAAO,EAAuD,KAAK,iCAAiC,EAAE,MAAM,SAAS,CAAC;AAEtH,OAAO,EAAqC,KAAK,iBAAiB,EAAE,MAAM,QAAQ,CAAC;AAEnF,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,qBAAsB,SAAQ,kBAAkB,CAAC,qBAAqB,CAAC;IACpF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;OAEG;IACH,IAAI,gBAAgB,IAAI,8BAA8B,CAAC;IACvD;;OAEG;IACH,IAAI,WAAW,IAAI,yBAAyB,CAAC;IAC7C;;OAEG;IACH,IAAI,UAAU,IAAI,wBAAwB,CAAC;IAC3C;;OAEG;IACH,IAAI,eAAe,IAAI,6BAA6B,CAAC;IACrD;;OAEG;IACH,IAAI,qBAAqB,IAAI,mCAAmC,CAAC;IACjE;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,GAAG,IAAI,iBAAiB,CAAC;IAC7B;;;;OAIG;IACF,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAI,iCAAiC,CAAC;IACpF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAChK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,eAAe,GAAG,SAAS,CAAC,CAAC;IACrI;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uCAAuC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC1I;AACD;;GAEG;AACH,MAAM,WAAW,uCAAuC;IACpD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,gCAAgC,4JAA4J,CAAC;AAc1M;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qBAAqB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAmCxJ,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qCAAqC,EAAE,gBAuBnD,CAAC"}
|
|
@@ -4,14 +4,13 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
4
4
|
*/
|
|
5
5
|
export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder> {
|
|
6
6
|
/**
|
|
7
|
-
*
|
|
7
|
+
* Delete ref of navigation property members for directory
|
|
8
8
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
9
9
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
10
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-delete-members?view=graph-rest-1.0|Find more info here}
|
|
11
10
|
*/
|
|
12
11
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
12
|
/**
|
|
14
|
-
*
|
|
13
|
+
* Delete ref of navigation property members for directory
|
|
15
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
15
|
* @returns {RequestInformation}
|
|
17
16
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IAC5E
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IAC5E;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrH;AACD;;GAEG;AACH,eAAO,MAAM,4BAA4B,2GAA2G,CAAC;AACrJ;;GAEG;AACH,eAAO,MAAM,iCAAiC,EAAE,gBAS/C,CAAC"}
|
|
@@ -5,10 +5,9 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
5
5
|
*/
|
|
6
6
|
export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder> {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Delete ref of navigation property members for directory
|
|
9
9
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-delete-members?view=graph-rest-1.0|Find more info here}
|
|
12
11
|
*/
|
|
13
12
|
delete(requestConfiguration?: RequestConfiguration<RefRequestBuilderDeleteQueryParameters> | undefined): Promise<void>;
|
|
14
13
|
/**
|
|
@@ -16,7 +15,6 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
|
|
|
16
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
16
|
* @returns {Promise<StringCollectionResponse>}
|
|
18
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
19
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-list-members?view=graph-rest-1.0|Find more info here}
|
|
20
18
|
*/
|
|
21
19
|
get(requestConfiguration?: RequestConfiguration<RefRequestBuilderGetQueryParameters> | undefined): Promise<StringCollectionResponse | undefined>;
|
|
22
20
|
/**
|
|
@@ -24,11 +22,10 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
|
|
|
24
22
|
* @param body The request body
|
|
25
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
24
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-post-members?view=graph-rest-1.0|Find more info here}
|
|
28
25
|
*/
|
|
29
26
|
post(body: ReferenceCreate, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
30
27
|
/**
|
|
31
|
-
*
|
|
28
|
+
* Delete ref of navigation property members for directory
|
|
32
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
33
30
|
* @returns {RequestInformation}
|
|
34
31
|
*/
|
|
@@ -48,7 +45,7 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
|
|
|
48
45
|
toPostRequestInformation(body: ReferenceCreate, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
46
|
}
|
|
50
47
|
/**
|
|
51
|
-
*
|
|
48
|
+
* Delete ref of navigation property members for directory
|
|
52
49
|
*/
|
|
53
50
|
export interface RefRequestBuilderDeleteQueryParameters {
|
|
54
51
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAkF,KAAK,eAAe,EAAE,KAAK,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAIrL,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IAC5E
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAkF,KAAK,eAAe,EAAE,KAAK,wBAAwB,EAAE,MAAM,gCAAgC,CAAC;AAIrL,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,iBAAkB,SAAQ,kBAAkB,CAAC,iBAAiB,CAAC;IAC5E;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzH;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,mCAAmC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wBAAwB,GAAG,SAAS,CAAC,CAAC;IACnJ;;;;;OAKG;IACF,IAAI,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IAC9G;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,sCAAsC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,mCAAmC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC5I;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,eAAe,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC1I;AACD;;GAEG;AACH,MAAM,WAAW,sCAAsC;IACnD;;OAEG;IACH,EAAE,CAAC,EAAE,MAAM,CAAC;CACf;AACD;;GAEG;AACH,MAAM,WAAW,mCAAmC;IAChD;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,4BAA4B,yJAAyJ,CAAC;AAkBnM;;GAEG;AACH,eAAO,MAAM,iCAAiC,EAAE,gBA+B/C,CAAC"}
|
|
@@ -17,30 +17,28 @@ export interface ScopedRoleMembersRequestBuilder extends BaseRequestBuilder<Scop
|
|
|
17
17
|
*/
|
|
18
18
|
byScopedRoleMembershipId(scopedRoleMembershipId: string): ScopedRoleMembershipItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Scoped-role members of this administrative unit.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<ScopedRoleMembershipCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-list-scopedrolemembers?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<ScopedRoleMembersRequestBuilderGetQueryParameters> | undefined): Promise<ScopedRoleMembershipCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
28
|
-
*
|
|
27
|
+
* Create new navigation property to scopedRoleMembers for directory
|
|
29
28
|
* @param body The request body
|
|
30
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
30
|
* @returns {Promise<ScopedRoleMembership>}
|
|
32
31
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-post-scopedrolemembers?view=graph-rest-1.0|Find more info here}
|
|
34
32
|
*/
|
|
35
33
|
post(body: ScopedRoleMembership, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ScopedRoleMembership | undefined>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Scoped-role members of this administrative unit.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
41
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<ScopedRoleMembersRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
40
|
/**
|
|
43
|
-
*
|
|
41
|
+
* Create new navigation property to scopedRoleMembers for directory
|
|
44
42
|
* @param body The request body
|
|
45
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
44
|
* @returns {RequestInformation}
|
|
@@ -48,7 +46,7 @@ export interface ScopedRoleMembersRequestBuilder extends BaseRequestBuilder<Scop
|
|
|
48
46
|
toPostRequestInformation(body: ScopedRoleMembership, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Scoped-role members of this administrative unit.
|
|
52
50
|
*/
|
|
53
51
|
export interface ScopedRoleMembersRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuJ,KAAK,oBAAoB,EAAE,KAAK,sCAAsC,EAAE,MAAM,gCAAgC,CAAC;AAI7Q,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA0D,KAAK,sCAAsC,EAAE,MAAM,SAAS,CAAC;AAE9H,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,+BAAgC,SAAQ,kBAAkB,CAAC,+BAA+B,CAAC;IACxG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wBAAwB,CAAC,sBAAsB,EAAE,MAAM,GAAI,sCAAsC,CAAC;IACnG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuJ,KAAK,oBAAoB,EAAE,KAAK,sCAAsC,EAAE,MAAM,gCAAgC,CAAC;AAI7Q,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA0D,KAAK,sCAAsC,EAAE,MAAM,SAAS,CAAC;AAE9H,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,+BAAgC,SAAQ,kBAAkB,CAAC,+BAA+B,CAAC;IACxG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wBAAwB,CAAC,sBAAsB,EAAE,MAAM,GAAI,sCAAsC,CAAC;IACnG;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,iDAAiD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IAC/K;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAC/I;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,iDAAiD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC1J;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/I;AACD;;GAEG;AACH,MAAM,WAAW,iDAAiD;IAC9D;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,0CAA0C,sKAAsK,CAAC;AAc9N;;GAEG;AACH,eAAO,MAAM,iDAAiD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,+BAA+B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQ5K,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,gBAuB7D,CAAC"}
|
|
@@ -5,18 +5,16 @@ import { type BaseRequestBuilder, type RequestConfiguration, type RequestInforma
|
|
|
5
5
|
*/
|
|
6
6
|
export interface ScopedRoleMembershipItemRequestBuilder extends BaseRequestBuilder<ScopedRoleMembershipItemRequestBuilder> {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
8
|
+
* Delete navigation property scopedRoleMembers for directory
|
|
9
9
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
10
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-delete-scopedrolemembers?view=graph-rest-1.0|Find more info here}
|
|
12
11
|
*/
|
|
13
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
14
13
|
/**
|
|
15
|
-
*
|
|
14
|
+
* Scoped-role members of this administrative unit.
|
|
16
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
16
|
* @returns {Promise<ScopedRoleMembership>}
|
|
18
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
19
|
-
* @see {@link https://learn.microsoft.com/graph/api/administrativeunit-get-scopedrolemembers?view=graph-rest-1.0|Find more info here}
|
|
20
18
|
*/
|
|
21
19
|
get(requestConfiguration?: RequestConfiguration<ScopedRoleMembershipItemRequestBuilderGetQueryParameters> | undefined): Promise<ScopedRoleMembership | undefined>;
|
|
22
20
|
/**
|
|
@@ -28,13 +26,13 @@ export interface ScopedRoleMembershipItemRequestBuilder extends BaseRequestBuild
|
|
|
28
26
|
*/
|
|
29
27
|
patch(body: ScopedRoleMembership, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<ScopedRoleMembership | undefined>;
|
|
30
28
|
/**
|
|
31
|
-
*
|
|
29
|
+
* Delete navigation property scopedRoleMembers for directory
|
|
32
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
33
31
|
* @returns {RequestInformation}
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Scoped-role members of this administrative unit.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
@@ -48,7 +46,7 @@ export interface ScopedRoleMembershipItemRequestBuilder extends BaseRequestBuild
|
|
|
48
46
|
toPatchRequestInformation(body: ScopedRoleMembership, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Scoped-role members of this administrative unit.
|
|
52
50
|
*/
|
|
53
51
|
export interface ScopedRoleMembershipItemRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmF,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAI5J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmF,KAAK,oBAAoB,EAAE,MAAM,gCAAgC,CAAC;AAI5J,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,sCAAuC,SAAQ,kBAAkB,CAAC,sCAAsC,CAAC;IACtH;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IACpK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oBAAoB,GAAG,SAAS,CAAC,CAAC;IAChJ;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wDAAwD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oBAAoB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,wDAAwD;IACrE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,iDAAiD,2IAA2I,CAAC;AAQ1M;;GAEG;AACH,eAAO,MAAM,sDAAsD,EAAE,gBA+BpE,CAAC"}
|
|
@@ -17,30 +17,28 @@ export interface AttributeSetsRequestBuilder extends BaseRequestBuilder<Attribut
|
|
|
17
17
|
*/
|
|
18
18
|
byAttributeSetId(attributeSetId: string): AttributeSetItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Group of related custom security attribute definitions.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<AttributeSetCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/directory-list-attributesets?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<AttributeSetsRequestBuilderGetQueryParameters> | undefined): Promise<AttributeSetCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
28
|
-
* Create
|
|
27
|
+
* Create new navigation property to attributeSets for directory
|
|
29
28
|
* @param body The request body
|
|
30
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
30
|
* @returns {Promise<AttributeSet>}
|
|
32
31
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/directory-post-attributesets?view=graph-rest-1.0|Find more info here}
|
|
34
32
|
*/
|
|
35
33
|
post(body: AttributeSet, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AttributeSet | undefined>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Group of related custom security attribute definitions.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
41
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AttributeSetsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
40
|
/**
|
|
43
|
-
* Create
|
|
41
|
+
* Create new navigation property to attributeSets for directory
|
|
44
42
|
* @param body The request body
|
|
45
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
44
|
* @returns {RequestInformation}
|
|
@@ -48,7 +46,7 @@ export interface AttributeSetsRequestBuilder extends BaseRequestBuilder<Attribut
|
|
|
48
46
|
toPostRequestInformation(body: AttributeSet, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Group of related custom security attribute definitions.
|
|
52
50
|
*/
|
|
53
51
|
export interface AttributeSetsRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+H,KAAK,YAAY,EAAE,KAAK,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAIrO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkD,KAAK,8BAA8B,EAAE,MAAM,SAAS,CAAC;AAE9G,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,gBAAgB,CAAC,cAAc,EAAE,MAAM,GAAI,8BAA8B,CAAC;IAC3E
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+H,KAAK,YAAY,EAAE,KAAK,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAIrO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkD,KAAK,8BAA8B,EAAE,MAAM,SAAS,CAAC;AAE9G,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,gBAAgB,CAAC,cAAc,EAAE,MAAM,GAAI,8BAA8B,CAAC;IAC3E;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,8BAA8B,GAAG,SAAS,CAAC,CAAC;IACnK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAC/H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACvI;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,sCAAsC,oHAAoH,CAAC;AAcxK;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQpK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBAuBzD,CAAC"}
|
|
@@ -11,20 +11,18 @@ export interface AttributeSetItemRequestBuilder extends BaseRequestBuilder<Attri
|
|
|
11
11
|
*/
|
|
12
12
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Group of related custom security attribute definitions.
|
|
15
15
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
16
|
* @returns {Promise<AttributeSet>}
|
|
17
17
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
-
* @see {@link https://learn.microsoft.com/graph/api/attributeset-get?view=graph-rest-1.0|Find more info here}
|
|
19
18
|
*/
|
|
20
19
|
get(requestConfiguration?: RequestConfiguration<AttributeSetItemRequestBuilderGetQueryParameters> | undefined): Promise<AttributeSet | undefined>;
|
|
21
20
|
/**
|
|
22
|
-
* Update the
|
|
21
|
+
* Update the navigation property attributeSets in directory
|
|
23
22
|
* @param body The request body
|
|
24
23
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
24
|
* @returns {Promise<AttributeSet>}
|
|
26
25
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
-
* @see {@link https://learn.microsoft.com/graph/api/attributeset-update?view=graph-rest-1.0|Find more info here}
|
|
28
26
|
*/
|
|
29
27
|
patch(body: AttributeSet, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AttributeSet | undefined>;
|
|
30
28
|
/**
|
|
@@ -34,13 +32,13 @@ export interface AttributeSetItemRequestBuilder extends BaseRequestBuilder<Attri
|
|
|
34
32
|
*/
|
|
35
33
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Group of related custom security attribute definitions.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
41
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AttributeSetItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
40
|
/**
|
|
43
|
-
* Update the
|
|
41
|
+
* Update the navigation property attributeSets in directory
|
|
44
42
|
* @param body The request body
|
|
45
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
44
|
* @returns {RequestInformation}
|
|
@@ -48,7 +46,7 @@ export interface AttributeSetItemRequestBuilder extends BaseRequestBuilder<Attri
|
|
|
48
46
|
toPatchRequestInformation(body: AttributeSet, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Group of related custom security attribute definitions.
|
|
52
50
|
*/
|
|
53
51
|
export interface AttributeSetItemRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAIpI,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,8BAA+B,SAAQ,kBAAkB,CAAC,8BAA8B,CAAC;IACtG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmE,KAAK,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAIpI,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,8BAA+B,SAAQ,kBAAkB,CAAC,8BAA8B,CAAC;IACtG;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IACpJ;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAChI;;;;OAIG;IACF,0BAA0B,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClH;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gDAAgD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACzJ;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxI;AACD;;GAEG;AACH,MAAM,WAAW,gDAAgD;IAC7D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,yCAAyC,iFAAiF,CAAC;AAQxI;;GAEG;AACH,eAAO,MAAM,8CAA8C,EAAE,gBA+B5D,CAAC"}
|
|
@@ -17,30 +17,28 @@ export interface CustomSecurityAttributeDefinitionsRequestBuilder extends BaseRe
|
|
|
17
17
|
*/
|
|
18
18
|
byCustomSecurityAttributeDefinitionId(customSecurityAttributeDefinitionId: string): CustomSecurityAttributeDefinitionItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Schema of a custom security attributes (key-value pairs).
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<CustomSecurityAttributeDefinitionCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/directory-list-customsecurityattributedefinitions?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<CustomSecurityAttributeDefinitionsRequestBuilderGetQueryParameters> | undefined): Promise<CustomSecurityAttributeDefinitionCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
28
|
-
* Create
|
|
27
|
+
* Create new navigation property to customSecurityAttributeDefinitions for directory
|
|
29
28
|
* @param body The request body
|
|
30
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
30
|
* @returns {Promise<CustomSecurityAttributeDefinition>}
|
|
32
31
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/directory-post-customsecurityattributedefinitions?view=graph-rest-1.0|Find more info here}
|
|
34
32
|
*/
|
|
35
33
|
post(body: CustomSecurityAttributeDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CustomSecurityAttributeDefinition | undefined>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Schema of a custom security attributes (key-value pairs).
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
41
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CustomSecurityAttributeDefinitionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
40
|
/**
|
|
43
|
-
* Create
|
|
41
|
+
* Create new navigation property to customSecurityAttributeDefinitions for directory
|
|
44
42
|
* @param body The request body
|
|
45
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
44
|
* @returns {RequestInformation}
|
|
@@ -48,7 +46,7 @@ export interface CustomSecurityAttributeDefinitionsRequestBuilder extends BaseRe
|
|
|
48
46
|
toPostRequestInformation(body: CustomSecurityAttributeDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Schema of a custom security attributes (key-value pairs).
|
|
52
50
|
*/
|
|
53
51
|
export interface CustomSecurityAttributeDefinitionsRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA8L,KAAK,iCAAiC,EAAE,KAAK,mDAAmD,EAAE,MAAM,gCAAgC,CAAC;AAI9U,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA8I,KAAK,mDAAmD,EAAE,MAAM,SAAS,CAAC;AAE/N,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,gDAAiD,SAAQ,kBAAkB,CAAC,gDAAgD,CAAC;IAC1I;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,qCAAqC,CAAC,mCAAmC,EAAE,MAAM,GAAI,mDAAmD,CAAC;IAC1I
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA8L,KAAK,iCAAiC,EAAE,KAAK,mDAAmD,EAAE,MAAM,gCAAgC,CAAC;AAI9U,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA8I,KAAK,mDAAmD,EAAE,MAAM,SAAS,CAAC;AAE/N,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,gDAAiD,SAAQ,kBAAkB,CAAC,gDAAgD,CAAC;IAC1I;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,qCAAqC,CAAC,mCAAmC,EAAE,MAAM,GAAI,mDAAmD,CAAC;IAC1I;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kEAAkE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mDAAmD,GAAG,SAAS,CAAC,CAAC;IAC7M;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,iCAAiC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IACzK;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,kEAAkE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC3K;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,iCAAiC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC5J;AACD;;GAEG;AACH,MAAM,WAAW,kEAAkE;IAC/E;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,2DAA2D,yIAAyI,CAAC;AAclN;;GAEG;AACH,eAAO,MAAM,kEAAkE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,gDAAgD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAS9M,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,gEAAgE,EAAE,gBAuB9E,CAAC"}
|
|
@@ -17,30 +17,28 @@ export interface AllowedValuesRequestBuilder extends BaseRequestBuilder<AllowedV
|
|
|
17
17
|
*/
|
|
18
18
|
byAllowedValueId(allowedValueId: string): AllowedValueItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<AllowedValueCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
-
* @see {@link https://learn.microsoft.com/graph/api/customsecurityattributedefinition-list-allowedvalues?view=graph-rest-1.0|Find more info here}
|
|
25
24
|
*/
|
|
26
25
|
get(requestConfiguration?: RequestConfiguration<AllowedValuesRequestBuilderGetQueryParameters> | undefined): Promise<AllowedValueCollectionResponse | undefined>;
|
|
27
26
|
/**
|
|
28
|
-
* Create
|
|
27
|
+
* Create new navigation property to allowedValues for directory
|
|
29
28
|
* @param body The request body
|
|
30
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
30
|
* @returns {Promise<AllowedValue>}
|
|
32
31
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
-
* @see {@link https://learn.microsoft.com/graph/api/customsecurityattributedefinition-post-allowedvalues?view=graph-rest-1.0|Find more info here}
|
|
34
32
|
*/
|
|
35
33
|
post(body: AllowedValue, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AllowedValue | undefined>;
|
|
36
34
|
/**
|
|
37
|
-
*
|
|
35
|
+
* Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
|
|
38
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
37
|
* @returns {RequestInformation}
|
|
40
38
|
*/
|
|
41
39
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AllowedValuesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
40
|
/**
|
|
43
|
-
* Create
|
|
41
|
+
* Create new navigation property to allowedValues for directory
|
|
44
42
|
* @param body The request body
|
|
45
43
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
44
|
* @returns {RequestInformation}
|
|
@@ -48,7 +46,7 @@ export interface AllowedValuesRequestBuilder extends BaseRequestBuilder<AllowedV
|
|
|
48
46
|
toPostRequestInformation(body: AllowedValue, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
47
|
}
|
|
50
48
|
/**
|
|
51
|
-
*
|
|
49
|
+
* Values that are predefined for this custom security attribute. This navigation property is not returned by default and must be specified in an $expand query. For example, /directory/customSecurityAttributeDefinitions?$expand=allowedValues.
|
|
52
50
|
*/
|
|
53
51
|
export interface AllowedValuesRequestBuilderGetQueryParameters {
|
|
54
52
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+H,KAAK,YAAY,EAAE,KAAK,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAIrO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkD,KAAK,8BAA8B,EAAE,MAAM,SAAS,CAAC;AAE9G,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,gBAAgB,CAAC,cAAc,EAAE,MAAM,GAAI,8BAA8B,CAAC;IAC3E
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA+H,KAAK,YAAY,EAAE,KAAK,8BAA8B,EAAE,MAAM,gCAAgC,CAAC;AAIrO,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAkD,KAAK,8BAA8B,EAAE,MAAM,SAAS,CAAC;AAE9G,OAAO,EAAE,KAAK,kBAAkB,EAAE,KAAK,kCAAkC,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAE1P;;GAEG;AACH,MAAM,WAAW,2BAA4B,SAAQ,kBAAkB,CAAC,2BAA2B,CAAC;IAChG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,gBAAgB,CAAC,cAAc,EAAE,MAAM,GAAI,8BAA8B,CAAC;IAC3E;;;;;OAKG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,8BAA8B,GAAG,SAAS,CAAC,CAAC;IACnK;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,YAAY,GAAG,SAAS,CAAC,CAAC;IAC/H;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,6CAA6C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACtJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,YAAY,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACvI;AACD;;GAEG;AACH,MAAM,WAAW,6CAA6C;IAC1D;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IACnB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,GAAG,CAAC,EAAE,MAAM,CAAC;CAChB;AACD;;GAEG;AACH,eAAO,MAAM,sCAAsC,gMAAgM,CAAC;AAcpP;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,2BAA2B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQpK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,2CAA2C,EAAE,gBAuBzD,CAAC"}
|