@microsoft/msgraph-sdk-rolemanagement 1.0.0-preview.21 → 1.0.0-preview.22
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/package.json +3 -3
- package/roleManagement/directory/roleAssignmentScheduleInstances/index.d.ts +4 -3
- package/roleManagement/directory/roleAssignmentScheduleInstances/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignmentScheduleInstances/item/index.d.ts +4 -3
- package/roleManagement/directory/roleAssignmentScheduleInstances/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignmentScheduleRequests/index.d.ts +7 -5
- package/roleManagement/directory/roleAssignmentScheduleRequests/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignmentScheduleRequests/item/index.d.ts +4 -3
- package/roleManagement/directory/roleAssignmentScheduleRequests/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignmentSchedules/index.d.ts +4 -3
- package/roleManagement/directory/roleAssignmentSchedules/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignmentSchedules/item/index.d.ts +4 -3
- package/roleManagement/directory/roleAssignmentSchedules/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignments/index.d.ts +7 -5
- package/roleManagement/directory/roleAssignments/index.d.ts.map +1 -1
- package/roleManagement/directory/roleAssignments/item/index.d.ts +7 -5
- package/roleManagement/directory/roleAssignments/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleDefinitions/index.d.ts +7 -5
- package/roleManagement/directory/roleDefinitions/index.d.ts.map +1 -1
- package/roleManagement/directory/roleDefinitions/item/index.d.ts +10 -7
- package/roleManagement/directory/roleDefinitions/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleEligibilityScheduleInstances/index.d.ts +4 -3
- package/roleManagement/directory/roleEligibilityScheduleInstances/index.d.ts.map +1 -1
- package/roleManagement/directory/roleEligibilityScheduleInstances/item/index.d.ts +4 -3
- package/roleManagement/directory/roleEligibilityScheduleInstances/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleEligibilityScheduleRequests/index.d.ts +7 -5
- package/roleManagement/directory/roleEligibilityScheduleRequests/index.d.ts.map +1 -1
- package/roleManagement/directory/roleEligibilityScheduleRequests/item/index.d.ts +4 -3
- package/roleManagement/directory/roleEligibilityScheduleRequests/item/index.d.ts.map +1 -1
- package/roleManagement/directory/roleEligibilitySchedules/index.d.ts +4 -3
- package/roleManagement/directory/roleEligibilitySchedules/index.d.ts.map +1 -1
- package/roleManagement/directory/roleEligibilitySchedules/item/index.d.ts +4 -3
- package/roleManagement/directory/roleEligibilitySchedules/item/index.d.ts.map +1 -1
- package/roleManagement/entitlementManagement/roleAssignments/index.d.ts +7 -5
- package/roleManagement/entitlementManagement/roleAssignments/index.d.ts.map +1 -1
- package/roleManagement/entitlementManagement/roleDefinitions/index.d.ts +4 -3
- package/roleManagement/entitlementManagement/roleDefinitions/index.d.ts.map +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-rolemanagement",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.22",
|
|
4
4
|
"description": "RoleManagement fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -37,12 +37,12 @@
|
|
|
37
37
|
"@microsoft/kiota-serialization-json": "^1.0.0-preview.39",
|
|
38
38
|
"@microsoft/kiota-serialization-multipart": "^1.0.0-preview.18",
|
|
39
39
|
"@microsoft/kiota-serialization-text": "^1.0.0-preview.36",
|
|
40
|
-
"@microsoft/msgraph-sdk": "^1.0.0-preview.
|
|
40
|
+
"@microsoft/msgraph-sdk": "^1.0.0-preview.22",
|
|
41
41
|
"guid-typescript": "^1.0.9",
|
|
42
42
|
"tslib": "^2.6.2"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"typescript": "^5.3.3"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "d41363478d26ba2bcde02901bb2983793b286bdf"
|
|
48
48
|
}
|
|
@@ -24,10 +24,11 @@ export interface RoleAssignmentScheduleInstancesRequestBuilder extends BaseReque
|
|
|
24
24
|
*/
|
|
25
25
|
filterByCurrentUserWithOn(on: string | undefined): FilterByCurrentUserWithOnRequestBuilder;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API.
|
|
28
28
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
29
|
* @returns {Promise<UnifiedRoleAssignmentScheduleInstanceCollectionResponse>}
|
|
30
30
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
31
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentscheduleinstances?view=graph-rest-1.0|Find more info here}
|
|
31
32
|
*/
|
|
32
33
|
get(requestConfiguration?: RequestConfiguration<RoleAssignmentScheduleInstancesRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentScheduleInstanceCollectionResponse | undefined>;
|
|
33
34
|
/**
|
|
@@ -39,7 +40,7 @@ export interface RoleAssignmentScheduleInstancesRequestBuilder extends BaseReque
|
|
|
39
40
|
*/
|
|
40
41
|
post(body: UnifiedRoleAssignmentScheduleInstance, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleAssignmentScheduleInstance | undefined>;
|
|
41
42
|
/**
|
|
42
|
-
*
|
|
43
|
+
* Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API.
|
|
43
44
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
45
|
* @returns {RequestInformation}
|
|
45
46
|
*/
|
|
@@ -53,7 +54,7 @@ export interface RoleAssignmentScheduleInstancesRequestBuilder extends BaseReque
|
|
|
53
54
|
toPostRequestInformation(body: UnifiedRoleAssignmentScheduleInstance, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
55
|
}
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
+
* Get the instances of active role assignments in your tenant. The active assignments include those made through assignments and activation requests, and directly through the role assignments API.
|
|
57
58
|
*/
|
|
58
59
|
export interface RoleAssignmentScheduleInstancesRequestBuilderGetQueryParameters {
|
|
59
60
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0M,KAAK,qCAAqC,EAAE,KAAK,uDAAuD,EAAE,MAAM,gCAAgC,CAAC;AAIlW,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,uDAAuD,EAAsJ,MAAM,SAAS,CAAC;AAE3O,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,6CAA8C,SAAQ,kBAAkB,CAAC,6CAA6C,CAAC;IACpI;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yCAAyC,CAAC,uCAAuC,EAAE,MAAM,GAAI,uDAAuD,CAAC;IACtJ;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0M,KAAK,qCAAqC,EAAE,KAAK,uDAAuD,EAAE,MAAM,gCAAgC,CAAC;AAIlW,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,uDAAuD,EAAsJ,MAAM,SAAS,CAAC;AAE3O,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,6CAA8C,SAAQ,kBAAkB,CAAC,6CAA6C,CAAC;IACpI;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yCAAyC,CAAC,uCAAuC,EAAE,MAAM,GAAI,uDAAuD,CAAC;IACtJ;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+DAA+D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uDAAuD,GAAG,SAAS,CAAC,CAAC;IAC9M;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,qCAAqC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qCAAqC,GAAG,SAAS,CAAC,CAAC;IACjL;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+DAA+D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACxK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,qCAAqC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChK;AACD;;GAEG;AACH,MAAM,WAAW,+DAA+D;IAC5E;;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,wDAAwD,qJAAqJ,CAAC;AAc3N;;GAEG;AACH,eAAO,MAAM,+DAA+D,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6CAA6C,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAYxM,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,6DAA6D,EAAE,gBAuB3E,CAAC"}
|
|
@@ -36,10 +36,11 @@ export interface UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder extends
|
|
|
36
36
|
*/
|
|
37
37
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Get the instance of an active role assignment.
|
|
40
40
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
41
|
* @returns {Promise<UnifiedRoleAssignmentScheduleInstance>}
|
|
42
42
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
43
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroleassignmentscheduleinstance-get?view=graph-rest-1.0|Find more info here}
|
|
43
44
|
*/
|
|
44
45
|
get(requestConfiguration?: RequestConfiguration<UnifiedRoleAssignmentScheduleInstanceItemRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentScheduleInstance | undefined>;
|
|
45
46
|
/**
|
|
@@ -57,7 +58,7 @@ export interface UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder extends
|
|
|
57
58
|
*/
|
|
58
59
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
59
60
|
/**
|
|
60
|
-
*
|
|
61
|
+
* Get the instance of an active role assignment.
|
|
61
62
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
62
63
|
* @returns {RequestInformation}
|
|
63
64
|
*/
|
|
@@ -71,7 +72,7 @@ export interface UnifiedRoleAssignmentScheduleInstanceItemRequestBuilder extends
|
|
|
71
72
|
toPatchRequestInformation(body: UnifiedRoleAssignmentScheduleInstance, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
72
73
|
}
|
|
73
74
|
/**
|
|
74
|
-
*
|
|
75
|
+
* Get the instance of an active role assignment.
|
|
75
76
|
*/
|
|
76
77
|
export interface UnifiedRoleAssignmentScheduleInstanceItemRequestBuilderGetQueryParameters {
|
|
77
78
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqH,KAAK,qCAAqC,EAAE,MAAM,gCAAgC,CAAC;AAI/M,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,uDAAwD,SAAQ,kBAAkB,CAAC,uDAAuD,CAAC;IACxJ;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;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,EAAqH,KAAK,qCAAqC,EAAE,MAAM,gCAAgC,CAAC;AAI/M,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,uDAAwD,SAAQ,kBAAkB,CAAC,uDAAuD,CAAC;IACxJ;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yEAAyE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qCAAqC,GAAG,SAAS,CAAC,CAAC;IACtM;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,qCAAqC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qCAAqC,GAAG,SAAS,CAAC,CAAC;IAClL;;;;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,yEAAyE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClL;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,qCAAqC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjK;AACD;;GAEG;AACH,MAAM,WAAW,yEAAyE;IACtF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kEAAkE,2IAA2I,CAAC;AAQ3N;;GAEG;AACH,eAAO,MAAM,yEAAyE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uDAAuD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAgB5N,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uEAAuE,EAAE,gBA+BrF,CAAC"}
|
|
@@ -24,28 +24,30 @@ export interface RoleAssignmentScheduleRequestsRequestBuilder extends BaseReques
|
|
|
24
24
|
*/
|
|
25
25
|
filterByCurrentUserWithOn(on: string | undefined): FilterByCurrentUserWithOnRequestBuilder;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments.
|
|
28
28
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
29
|
* @returns {Promise<UnifiedRoleAssignmentScheduleRequestCollectionResponse>}
|
|
30
30
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
31
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedulerequests?view=graph-rest-1.0|Find more info here}
|
|
31
32
|
*/
|
|
32
33
|
get(requestConfiguration?: RequestConfiguration<RoleAssignmentScheduleRequestsRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentScheduleRequestCollectionResponse | undefined>;
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events.
|
|
35
36
|
* @param body The request body
|
|
36
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
38
|
* @returns {Promise<UnifiedRoleAssignmentScheduleRequest>}
|
|
38
39
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
40
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-post-roleassignmentschedulerequests?view=graph-rest-1.0|Find more info here}
|
|
39
41
|
*/
|
|
40
42
|
post(body: UnifiedRoleAssignmentScheduleRequest, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleAssignmentScheduleRequest | undefined>;
|
|
41
43
|
/**
|
|
42
|
-
*
|
|
44
|
+
* Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments.
|
|
43
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
46
|
* @returns {RequestInformation}
|
|
45
47
|
*/
|
|
46
48
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<RoleAssignmentScheduleRequestsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
47
49
|
/**
|
|
48
|
-
*
|
|
50
|
+
* In PIM, carry out the following operations through the unifiedRoleAssignmentScheduleRequest object: To call this API to update, renew, and extend assignments for yourself, you must have multifactor authentication (MFA) enforced, and running the query in a session in which they were challenged for MFA. See Enable per-user Microsoft Entra multifactor authentication to secure sign-in events.
|
|
49
51
|
* @param body The request body
|
|
50
52
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
53
|
* @returns {RequestInformation}
|
|
@@ -53,7 +55,7 @@ export interface RoleAssignmentScheduleRequestsRequestBuilder extends BaseReques
|
|
|
53
55
|
toPostRequestInformation(body: UnifiedRoleAssignmentScheduleRequest, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
56
|
}
|
|
55
57
|
/**
|
|
56
|
-
*
|
|
58
|
+
* Retrieve the requests for active role assignments to principals. The active assignments include those made through assignments and activation requests, and directly through the role assignments API. The role assignments can be permanently active with or without an expiry date, or temporarily active after user activation of eligible assignments.
|
|
57
59
|
*/
|
|
58
60
|
export interface RoleAssignmentScheduleRequestsRequestBuilderGetQueryParameters {
|
|
59
61
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuM,KAAK,oCAAoC,EAAE,KAAK,sDAAsD,EAAE,MAAM,gCAAgC,CAAC;AAI7V,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,sDAAsD,EAAoJ,MAAM,SAAS,CAAC;AAExO,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,4CAA6C,SAAQ,kBAAkB,CAAC,4CAA4C,CAAC;IAClI;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wCAAwC,CAAC,sCAAsC,EAAE,MAAM,GAAI,sDAAsD,CAAC;IACnJ;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAuM,KAAK,oCAAoC,EAAE,KAAK,sDAAsD,EAAE,MAAM,gCAAgC,CAAC;AAI7V,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,sDAAsD,EAAoJ,MAAM,SAAS,CAAC;AAExO,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,4CAA6C,SAAQ,kBAAkB,CAAC,4CAA4C,CAAC;IAClI;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,wCAAwC,CAAC,sCAAsC,EAAE,MAAM,GAAI,sDAAsD,CAAC;IACnJ;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,8DAA8D,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sDAAsD,GAAG,SAAS,CAAC,CAAC;IAC5M;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,oCAAoC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IAC/K;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,8DAA8D,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACvK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,oCAAoC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/J;AACD;;GAEG;AACH,MAAM,WAAW,8DAA8D;IAC3E;;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,uDAAuD,oJAAoJ,CAAC;AAczN;;GAEG;AACH,eAAO,MAAM,8DAA8D,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,4CAA4C,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAYtM,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,4DAA4D,EAAE,gBAuB1E,CAAC"}
|
|
@@ -46,10 +46,11 @@ export interface UnifiedRoleAssignmentScheduleRequestItemRequestBuilder extends
|
|
|
46
46
|
*/
|
|
47
47
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
48
48
|
/**
|
|
49
|
-
*
|
|
49
|
+
* In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object.
|
|
50
50
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
51
|
* @returns {Promise<UnifiedRoleAssignmentScheduleRequest>}
|
|
52
52
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
53
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroleassignmentschedulerequest-get?view=graph-rest-1.0|Find more info here}
|
|
53
54
|
*/
|
|
54
55
|
get(requestConfiguration?: RequestConfiguration<UnifiedRoleAssignmentScheduleRequestItemRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentScheduleRequest | undefined>;
|
|
55
56
|
/**
|
|
@@ -67,7 +68,7 @@ export interface UnifiedRoleAssignmentScheduleRequestItemRequestBuilder extends
|
|
|
67
68
|
*/
|
|
68
69
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
69
70
|
/**
|
|
70
|
-
*
|
|
71
|
+
* In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object.
|
|
71
72
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
72
73
|
* @returns {RequestInformation}
|
|
73
74
|
*/
|
|
@@ -81,7 +82,7 @@ export interface UnifiedRoleAssignmentScheduleRequestItemRequestBuilder extends
|
|
|
81
82
|
toPatchRequestInformation(body: UnifiedRoleAssignmentScheduleRequest, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
82
83
|
}
|
|
83
84
|
/**
|
|
84
|
-
*
|
|
85
|
+
* In PIM, read the details of a request for an active and persistent role assignment made through the unifiedRoleAssignmentScheduleRequest object.
|
|
85
86
|
*/
|
|
86
87
|
export interface UnifiedRoleAssignmentScheduleRequestItemRequestBuilderGetQueryParameters {
|
|
87
88
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAmH,KAAK,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAI5M,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAwC,KAAK,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAE5F,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,sDAAuD,SAAQ,kBAAkB,CAAC,sDAAsD,CAAC;IACtJ;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,MAAM,IAAI,oBAAoB,CAAC;IACnC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;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,EAAmH,KAAK,oCAAoC,EAAE,MAAM,gCAAgC,CAAC;AAI5M,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAwC,KAAK,oBAAoB,EAAE,MAAM,WAAW,CAAC;AAE5F,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,sDAAuD,SAAQ,kBAAkB,CAAC,sDAAsD,CAAC;IACtJ;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,MAAM,IAAI,oBAAoB,CAAC;IACnC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,wEAAwE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IACpM;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,oCAAoC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IAChL;;;;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,wEAAwE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACjL;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,oCAAoC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChK;AACD;;GAEG;AACH,MAAM,WAAW,wEAAwE;IACrF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,iEAAiE,yIAAyI,CAAC;AAQxN;;GAEG;AACH,eAAO,MAAM,wEAAwE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,sDAAsD,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAsB1N,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,sEAAsE,EAAE,gBA+BpF,CAAC"}
|
|
@@ -24,10 +24,11 @@ export interface RoleAssignmentSchedulesRequestBuilder extends BaseRequestBuilde
|
|
|
24
24
|
*/
|
|
25
25
|
filterByCurrentUserWithOn(on: string | undefined): FilterByCurrentUserWithOnRequestBuilder;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Get the schedules for active role assignment operations.
|
|
28
28
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
29
|
* @returns {Promise<UnifiedRoleAssignmentScheduleCollectionResponse>}
|
|
30
30
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
31
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignmentschedules?view=graph-rest-1.0|Find more info here}
|
|
31
32
|
*/
|
|
32
33
|
get(requestConfiguration?: RequestConfiguration<RoleAssignmentSchedulesRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentScheduleCollectionResponse | undefined>;
|
|
33
34
|
/**
|
|
@@ -39,7 +40,7 @@ export interface RoleAssignmentSchedulesRequestBuilder extends BaseRequestBuilde
|
|
|
39
40
|
*/
|
|
40
41
|
post(body: UnifiedRoleAssignmentSchedule, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleAssignmentSchedule | undefined>;
|
|
41
42
|
/**
|
|
42
|
-
*
|
|
43
|
+
* Get the schedules for active role assignment operations.
|
|
43
44
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
45
|
* @returns {RequestInformation}
|
|
45
46
|
*/
|
|
@@ -53,7 +54,7 @@ export interface RoleAssignmentSchedulesRequestBuilder extends BaseRequestBuilde
|
|
|
53
54
|
toPostRequestInformation(body: UnifiedRoleAssignmentSchedule, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
55
|
}
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
+
* Get the schedules for active role assignment operations.
|
|
57
58
|
*/
|
|
58
59
|
export interface RoleAssignmentSchedulesRequestBuilderGetQueryParameters {
|
|
59
60
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAkL,KAAK,6BAA6B,EAAE,KAAK,+CAA+C,EAAE,MAAM,gCAAgC,CAAC;AAI1T,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,+CAA+C,EAAsI,MAAM,SAAS,CAAC;AAEnN,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,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,iCAAiC,CAAC,+BAA+B,EAAE,MAAM,GAAI,+CAA+C,CAAC;IAC9H;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAkL,KAAK,6BAA6B,EAAE,KAAK,+CAA+C,EAAE,MAAM,gCAAgC,CAAC;AAI1T,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,+CAA+C,EAAsI,MAAM,SAAS,CAAC;AAEnN,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,qCAAsC,SAAQ,kBAAkB,CAAC,qCAAqC,CAAC;IACpH;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,iCAAiC,CAAC,+BAA+B,EAAE,MAAM,GAAI,+CAA+C,CAAC;IAC9H;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,+CAA+C,GAAG,SAAS,CAAC,CAAC;IAC9L;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,6BAA6B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IACjK;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,uDAAuD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAChK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,6BAA6B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACxJ;AACD;;GAEG;AACH,MAAM,WAAW,uDAAuD;IACpE;;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,gDAAgD,6IAA6I,CAAC;AAc3M;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,qCAAqC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAYxL,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,qDAAqD,EAAE,gBAuBnE,CAAC"}
|
|
@@ -36,10 +36,11 @@ export interface UnifiedRoleAssignmentScheduleItemRequestBuilder extends BaseReq
|
|
|
36
36
|
*/
|
|
37
37
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* Retrieve the schedule for an active role assignment operation.
|
|
40
40
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
41
41
|
* @returns {Promise<UnifiedRoleAssignmentSchedule>}
|
|
42
42
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
43
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroleassignmentschedule-get?view=graph-rest-1.0|Find more info here}
|
|
43
44
|
*/
|
|
44
45
|
get(requestConfiguration?: RequestConfiguration<UnifiedRoleAssignmentScheduleItemRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentSchedule | undefined>;
|
|
45
46
|
/**
|
|
@@ -57,7 +58,7 @@ export interface UnifiedRoleAssignmentScheduleItemRequestBuilder extends BaseReq
|
|
|
57
58
|
*/
|
|
58
59
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
59
60
|
/**
|
|
60
|
-
*
|
|
61
|
+
* Retrieve the schedule for an active role assignment operation.
|
|
61
62
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
62
63
|
* @returns {RequestInformation}
|
|
63
64
|
*/
|
|
@@ -71,7 +72,7 @@ export interface UnifiedRoleAssignmentScheduleItemRequestBuilder extends BaseReq
|
|
|
71
72
|
toPatchRequestInformation(body: UnifiedRoleAssignmentSchedule, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
72
73
|
}
|
|
73
74
|
/**
|
|
74
|
-
*
|
|
75
|
+
* Retrieve the schedule for an active role assignment operation.
|
|
75
76
|
*/
|
|
76
77
|
export interface UnifiedRoleAssignmentScheduleItemRequestBuilderGetQueryParameters {
|
|
77
78
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqG,KAAK,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAIvL,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,+CAAgD,SAAQ,kBAAkB,CAAC,+CAA+C,CAAC;IACxI;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;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,EAAqG,KAAK,6BAA6B,EAAE,MAAM,gCAAgC,CAAC;AAIvL,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,+CAAgD,SAAQ,kBAAkB,CAAC,+CAA+C,CAAC;IACxI;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;OAIG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,iEAAiE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IACtL;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,6BAA6B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,6BAA6B,GAAG,SAAS,CAAC,CAAC;IAClK;;;;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,iEAAiE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAC1K;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,6BAA6B,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACzJ;AACD;;GAEG;AACH,MAAM,WAAW,iEAAiE;IAC9E;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,0DAA0D,2HAA2H,CAAC;AAQnM;;GAEG;AACH,eAAO,MAAM,iEAAiE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,+CAA+C,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAgB5M,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,+DAA+D,EAAE,gBA+B7E,CAAC"}
|
|
@@ -17,28 +17,30 @@ export interface RoleAssignmentsRequestBuilder extends BaseRequestBuilder<RoleAs
|
|
|
17
17
|
*/
|
|
18
18
|
byUnifiedRoleAssignmentId(unifiedRoleAssignmentId: string): UnifiedRoleAssignmentItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management)
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<UnifiedRoleAssignmentCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-list-roleassignments?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<RoleAssignmentsRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignmentCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
* Create new
|
|
28
|
+
* Create a new unifiedRoleAssignment object.
|
|
28
29
|
* @param body The request body
|
|
29
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
31
|
* @returns {Promise<UnifiedRoleAssignment>}
|
|
31
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-post-roleassignments?view=graph-rest-1.0|Find more info here}
|
|
32
34
|
*/
|
|
33
35
|
post(body: UnifiedRoleAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleAssignment | undefined>;
|
|
34
36
|
/**
|
|
35
|
-
*
|
|
37
|
+
* Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management)
|
|
36
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
39
|
* @returns {RequestInformation}
|
|
38
40
|
*/
|
|
39
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<RoleAssignmentsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
42
|
/**
|
|
41
|
-
* Create new
|
|
43
|
+
* Create a new unifiedRoleAssignment object.
|
|
42
44
|
* @param body The request body
|
|
43
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
46
|
* @returns {RequestInformation}
|
|
@@ -46,7 +48,7 @@ export interface RoleAssignmentsRequestBuilder extends BaseRequestBuilder<RoleAs
|
|
|
46
48
|
toPostRequestInformation(body: UnifiedRoleAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
49
|
}
|
|
48
50
|
/**
|
|
49
|
-
*
|
|
51
|
+
* Get a list of unifiedRoleAssignment objects for the RBAC provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra entitlement management)
|
|
50
52
|
*/
|
|
51
53
|
export interface RoleAssignmentsRequestBuilderGetQueryParameters {
|
|
52
54
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAIlR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAE,KAAK,uCAAuC,EAAsH,MAAM,SAAS,CAAC;AAE3L,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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAIlR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAE,KAAK,uCAAuC,EAAsH,MAAM,SAAS,CAAC;AAE3L,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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACxJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,+CAA+C;IAC5D;;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,wCAAwC,qIAAqI,CAAC;AAc3L;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6BAA6B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASxK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBAuB3D,CAAC"}
|
|
@@ -25,16 +25,18 @@ export interface UnifiedRoleAssignmentItemRequestBuilder extends BaseRequestBuil
|
|
|
25
25
|
*/
|
|
26
26
|
get roleDefinition(): RoleDefinitionRequestBuilder;
|
|
27
27
|
/**
|
|
28
|
-
* Delete
|
|
28
|
+
* Delete a unifiedRoleAssignment object.
|
|
29
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
30
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
31
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroleassignment-delete?view=graph-rest-1.0|Find more info here}
|
|
31
32
|
*/
|
|
32
33
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
33
34
|
/**
|
|
34
|
-
*
|
|
35
|
+
* Retrieve the properties and relationships of a unifiedRoleAssignment object.
|
|
35
36
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
37
|
* @returns {Promise<UnifiedRoleAssignment>}
|
|
37
38
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
39
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroleassignment-get?view=graph-rest-1.0|Find more info here}
|
|
38
40
|
*/
|
|
39
41
|
get(requestConfiguration?: RequestConfiguration<UnifiedRoleAssignmentItemRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleAssignment | undefined>;
|
|
40
42
|
/**
|
|
@@ -46,13 +48,13 @@ export interface UnifiedRoleAssignmentItemRequestBuilder extends BaseRequestBuil
|
|
|
46
48
|
*/
|
|
47
49
|
patch(body: UnifiedRoleAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleAssignment | undefined>;
|
|
48
50
|
/**
|
|
49
|
-
* Delete
|
|
51
|
+
* Delete a unifiedRoleAssignment object.
|
|
50
52
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
51
53
|
* @returns {RequestInformation}
|
|
52
54
|
*/
|
|
53
55
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
56
|
/**
|
|
55
|
-
*
|
|
57
|
+
* Retrieve the properties and relationships of a unifiedRoleAssignment object.
|
|
56
58
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
57
59
|
* @returns {RequestInformation}
|
|
58
60
|
*/
|
|
@@ -66,7 +68,7 @@ export interface UnifiedRoleAssignmentItemRequestBuilder extends BaseRequestBuil
|
|
|
66
68
|
toPatchRequestInformation(body: UnifiedRoleAssignment, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
67
69
|
}
|
|
68
70
|
/**
|
|
69
|
-
*
|
|
71
|
+
* Retrieve the properties and relationships of a unifiedRoleAssignment object.
|
|
70
72
|
*/
|
|
71
73
|
export interface UnifiedRoleAssignmentItemRequestBuilderGetQueryParameters {
|
|
72
74
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAI/J,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAI/J,OAAO,EAA0C,KAAK,sBAAsB,EAAE,MAAM,aAAa,CAAC;AAElG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,OAAO,EAA2C,KAAK,uBAAuB,EAAE,MAAM,cAAc,CAAC;AAErG,OAAO,EAAgD,KAAK,4BAA4B,EAAE,MAAM,mBAAmB,CAAC;AAEpH,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,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,QAAQ,IAAI,sBAAsB,CAAC;IACvC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;OAEG;IACH,IAAI,SAAS,IAAI,uBAAuB,CAAC;IACzC;;OAEG;IACH,IAAI,cAAc,IAAI,4BAA4B,CAAC;IACnD;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;;OAMG;IACF,KAAK,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;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,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,yDAAyD;IACtE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kDAAkD,2GAA2G,CAAC;AAQ3K;;GAEG;AACH,eAAO,MAAM,yDAAyD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uCAAuC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAa5L,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBA+BrE,CAAC"}
|
|
@@ -17,28 +17,30 @@ export interface RoleDefinitionsRequestBuilder extends BaseRequestBuilder<RoleDe
|
|
|
17
17
|
*/
|
|
18
18
|
byUnifiedRoleDefinitionId(unifiedRoleDefinitionId: string): UnifiedRoleDefinitionItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management)
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<UnifiedRoleDefinitionCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-list-roledefinitions?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<RoleDefinitionsRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleDefinitionCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
* Create new
|
|
28
|
+
* Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license.
|
|
28
29
|
* @param body The request body
|
|
29
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
30
31
|
* @returns {Promise<UnifiedRoleDefinition>}
|
|
31
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-post-roledefinitions?view=graph-rest-1.0|Find more info here}
|
|
32
34
|
*/
|
|
33
35
|
post(body: UnifiedRoleDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleDefinition | undefined>;
|
|
34
36
|
/**
|
|
35
|
-
*
|
|
37
|
+
* Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management)
|
|
36
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
37
39
|
* @returns {RequestInformation}
|
|
38
40
|
*/
|
|
39
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<RoleDefinitionsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
40
42
|
/**
|
|
41
|
-
* Create new
|
|
43
|
+
* Create a new custom unifiedRoleDefinition object. This feature requires a Microsoft Entra ID P1 or P2 license.
|
|
42
44
|
* @param body The request body
|
|
43
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
46
|
* @returns {RequestInformation}
|
|
@@ -46,7 +48,7 @@ export interface RoleDefinitionsRequestBuilder extends BaseRequestBuilder<RoleDe
|
|
|
46
48
|
toPostRequestInformation(body: UnifiedRoleDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
47
49
|
}
|
|
48
50
|
/**
|
|
49
|
-
*
|
|
51
|
+
* Get a list of unifiedRoleDefinition objects for the provider. The following RBAC providers are currently supported:- directory (Microsoft Entra ID)- entitlement management (Microsoft Entra Entitlement Management)
|
|
50
52
|
*/
|
|
51
53
|
export interface RoleDefinitionsRequestBuilderGetQueryParameters {
|
|
52
54
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAIlR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAE,KAAK,uCAAuC,EAAsH,MAAM,SAAS,CAAC;AAE3L,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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA0J,KAAK,qBAAqB,EAAE,KAAK,uCAAuC,EAAE,MAAM,gCAAgC,CAAC;AAIlR,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAE,KAAK,uCAAuC,EAAsH,MAAM,SAAS,CAAC;AAE3L,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,6BAA8B,SAAQ,kBAAkB,CAAC,6BAA6B,CAAC;IACpG;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,yBAAyB,CAAC,uBAAuB,EAAE,MAAM,GAAI,uCAAuC,CAAC;IACtG;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,uCAAuC,GAAG,SAAS,CAAC,CAAC;IAC9K;;;;;;;OAOG;IACF,IAAI,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACjJ;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,+CAA+C,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACxJ;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAChJ;AACD;;GAEG;AACH,MAAM,WAAW,+CAA+C;IAC5D;;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,wCAAwC,qIAAqI,CAAC;AAc3L;;GAEG;AACH,eAAO,MAAM,+CAA+C,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,6BAA6B,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CASxK,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,6CAA6C,EAAE,gBAuB3D,CAAC"}
|
|
@@ -10,40 +10,43 @@ export interface UnifiedRoleDefinitionItemRequestBuilder extends BaseRequestBuil
|
|
|
10
10
|
*/
|
|
11
11
|
get inheritsPermissionsFrom(): InheritsPermissionsFromRequestBuilder;
|
|
12
12
|
/**
|
|
13
|
-
* Delete
|
|
13
|
+
* Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license.
|
|
14
14
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
15
15
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
16
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroledefinition-delete?view=graph-rest-1.0|Find more info here}
|
|
16
17
|
*/
|
|
17
18
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
18
19
|
/**
|
|
19
|
-
*
|
|
20
|
+
* Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported:
|
|
20
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
21
22
|
* @returns {Promise<UnifiedRoleDefinition>}
|
|
22
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroledefinition-get?view=graph-rest-1.0|Find more info here}
|
|
23
25
|
*/
|
|
24
26
|
get(requestConfiguration?: RequestConfiguration<UnifiedRoleDefinitionItemRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleDefinition | undefined>;
|
|
25
27
|
/**
|
|
26
|
-
* Update the
|
|
28
|
+
* Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license.
|
|
27
29
|
* @param body The request body
|
|
28
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
31
|
* @returns {Promise<UnifiedRoleDefinition>}
|
|
30
32
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
33
|
+
* @see {@link https://learn.microsoft.com/graph/api/unifiedroledefinition-update?view=graph-rest-1.0|Find more info here}
|
|
31
34
|
*/
|
|
32
35
|
patch(body: UnifiedRoleDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleDefinition | undefined>;
|
|
33
36
|
/**
|
|
34
|
-
* Delete
|
|
37
|
+
* Delete a unifiedRoleDefinition object. You can't delete built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license.
|
|
35
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
36
39
|
* @returns {RequestInformation}
|
|
37
40
|
*/
|
|
38
41
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
39
42
|
/**
|
|
40
|
-
*
|
|
43
|
+
* Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported:
|
|
41
44
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
45
|
* @returns {RequestInformation}
|
|
43
46
|
*/
|
|
44
47
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<UnifiedRoleDefinitionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
45
48
|
/**
|
|
46
|
-
* Update the
|
|
49
|
+
* Update the properties of a unifiedRoleDefinition object. You cannot update built-in roles. This feature requires a Microsoft Entra ID P1 or P2 license.
|
|
47
50
|
* @param body The request body
|
|
48
51
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
49
52
|
* @returns {RequestInformation}
|
|
@@ -51,7 +54,7 @@ export interface UnifiedRoleDefinitionItemRequestBuilder extends BaseRequestBuil
|
|
|
51
54
|
toPatchRequestInformation(body: UnifiedRoleDefinition, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
52
55
|
}
|
|
53
56
|
/**
|
|
54
|
-
*
|
|
57
|
+
* Read the properties and relationships of a unifiedRoleDefinition object. The following role-based access control (RBAC) providers are currently supported:
|
|
55
58
|
*/
|
|
56
59
|
export interface UnifiedRoleDefinitionItemRequestBuilderGetQueryParameters {
|
|
57
60
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAI/J,OAAO,EAAkH,KAAK,qCAAqC,EAAE,MAAM,4BAA4B,CAAC;AAExM,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,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,uBAAuB,IAAI,qCAAqC,CAAC;IACrE
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAqF,KAAK,qBAAqB,EAAE,MAAM,gCAAgC,CAAC;AAI/J,OAAO,EAAkH,KAAK,qCAAqC,EAAE,MAAM,4BAA4B,CAAC;AAExM,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,uCAAwC,SAAQ,kBAAkB,CAAC,uCAAuC,CAAC;IACxH;;OAEG;IACH,IAAI,uBAAuB,IAAI,qCAAqC,CAAC;IACrE;;;;;OAKG;IACF,MAAM,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,IAAI,CAAC,CAAC;IACzF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yDAAyD,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IACtK;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,qBAAqB,GAAG,SAAS,CAAC,CAAC;IAClJ;;;;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,yDAAyD,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IAClK;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,qBAAqB,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjJ;AACD;;GAEG;AACH,MAAM,WAAW,yDAAyD;IACtE;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,kDAAkD,2GAA2G,CAAC;AAQ3K;;GAEG;AACH,eAAO,MAAM,yDAAyD,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uCAAuC,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAK5L,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uDAAuD,EAAE,gBA+BrE,CAAC"}
|
|
@@ -24,10 +24,11 @@ export interface RoleEligibilityScheduleInstancesRequestBuilder extends BaseRequ
|
|
|
24
24
|
*/
|
|
25
25
|
filterByCurrentUserWithOn(on: string | undefined): FilterByCurrentUserWithOnRequestBuilder;
|
|
26
26
|
/**
|
|
27
|
-
*
|
|
27
|
+
* Get the instances of role eligibilities.
|
|
28
28
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
29
|
* @returns {Promise<UnifiedRoleEligibilityScheduleInstanceCollectionResponse>}
|
|
30
30
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
31
|
+
* @see {@link https://learn.microsoft.com/graph/api/rbacapplication-list-roleeligibilityscheduleinstances?view=graph-rest-1.0|Find more info here}
|
|
31
32
|
*/
|
|
32
33
|
get(requestConfiguration?: RequestConfiguration<RoleEligibilityScheduleInstancesRequestBuilderGetQueryParameters> | undefined): Promise<UnifiedRoleEligibilityScheduleInstanceCollectionResponse | undefined>;
|
|
33
34
|
/**
|
|
@@ -39,7 +40,7 @@ export interface RoleEligibilityScheduleInstancesRequestBuilder extends BaseRequ
|
|
|
39
40
|
*/
|
|
40
41
|
post(body: UnifiedRoleEligibilityScheduleInstance, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<UnifiedRoleEligibilityScheduleInstance | undefined>;
|
|
41
42
|
/**
|
|
42
|
-
*
|
|
43
|
+
* Get the instances of role eligibilities.
|
|
43
44
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
44
45
|
* @returns {RequestInformation}
|
|
45
46
|
*/
|
|
@@ -53,7 +54,7 @@ export interface RoleEligibilityScheduleInstancesRequestBuilder extends BaseRequ
|
|
|
53
54
|
toPostRequestInformation(body: UnifiedRoleEligibilityScheduleInstance, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
54
55
|
}
|
|
55
56
|
/**
|
|
56
|
-
*
|
|
57
|
+
* Get the instances of role eligibilities.
|
|
57
58
|
*/
|
|
58
59
|
export interface RoleEligibilityScheduleInstancesRequestBuilderGetQueryParameters {
|
|
59
60
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6M,KAAK,sCAAsC,EAAE,KAAK,wDAAwD,EAAE,MAAM,gCAAgC,CAAC;AAIvW,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,wDAAwD,EAAwJ,MAAM,SAAS,CAAC;AAE9O,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,8CAA+C,SAAQ,kBAAkB,CAAC,8CAA8C,CAAC;IACtI;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,0CAA0C,CAAC,wCAAwC,EAAE,MAAM,GAAI,wDAAwD,CAAC;IACzJ;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAA6M,KAAK,sCAAsC,EAAE,KAAK,wDAAwD,EAAE,MAAM,gCAAgC,CAAC;AAIvW,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAA2D,KAAK,uCAAuC,EAAE,MAAM,8BAA8B,CAAC;AAErJ,OAAO,EAAE,KAAK,wDAAwD,EAAwJ,MAAM,SAAS,CAAC;AAE9O,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,8CAA+C,SAAQ,kBAAkB,CAAC,8CAA8C,CAAC;IACtI;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,0CAA0C,CAAC,wCAAwC,EAAE,MAAM,GAAI,wDAAwD,CAAC;IACzJ;;;;OAIG;IACF,yBAAyB,CAAC,EAAE,EAAE,MAAM,GAAG,SAAS,GAAI,uCAAuC,CAAC;IAC7F;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gEAAgE,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,wDAAwD,GAAG,SAAS,CAAC,CAAC;IAChN;;;;;;OAMG;IACF,IAAI,CAAC,IAAI,EAAE,sCAAsC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,sCAAsC,GAAG,SAAS,CAAC,CAAC;IACnL;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,gEAAgE,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACzK;;;;;OAKG;IACF,wBAAwB,CAAC,IAAI,EAAE,sCAAsC,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACjK;AACD;;GAEG;AACH,MAAM,WAAW,gEAAgE;IAC7E;;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,yDAAyD,sJAAsJ,CAAC;AAc7N;;GAEG;AACH,eAAO,MAAM,gEAAgE,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,8CAA8C,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAY1M,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,8DAA8D,EAAE,gBAuB5E,CAAC"}
|