@microsoft/msgraph-sdk-identitygovernance 1.0.0-preview.30 → 1.0.0-preview.39
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/identityGovernance/entitlementManagement/accessPackages/item/resourceRoleScopes/item/index.d.ts +2 -2
- package/identityGovernance/entitlementManagement/assignmentPolicies/index.d.ts +5 -5
- package/identityGovernance/entitlementManagement/assignmentRequests/index.d.ts +2 -2
- package/identityGovernance/entitlementManagement/catalogs/item/customWorkflowExtensions/item/index.d.ts +7 -7
- package/package.json +2 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -15,7 +15,7 @@ export interface AccessPackageResourceRoleScopeItemRequestBuilder extends BaseRe
|
|
|
15
15
|
*/
|
|
16
16
|
get scope(): ScopeRequestBuilder;
|
|
17
17
|
/**
|
|
18
|
-
* Remove
|
|
18
|
+
* Remove an accessPackageResourceRoleScope from an accessPackage list of resource role scopes.
|
|
19
19
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
20
20
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
21
21
|
* @see {@link https://learn.microsoft.com/graph/api/accesspackage-delete-resourcerolescopes?view=graph-rest-1.0|Find more info here}
|
|
@@ -37,7 +37,7 @@ export interface AccessPackageResourceRoleScopeItemRequestBuilder extends BaseRe
|
|
|
37
37
|
*/
|
|
38
38
|
patch(body: AccessPackageResourceRoleScope, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AccessPackageResourceRoleScope | undefined>;
|
|
39
39
|
/**
|
|
40
|
-
* Remove
|
|
40
|
+
* Remove an accessPackageResourceRoleScope from an accessPackage list of resource role scopes.
|
|
41
41
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
42
42
|
* @returns {RequestInformation}
|
|
43
43
|
*/
|
|
@@ -17,7 +17,7 @@ export interface AssignmentPoliciesRequestBuilder extends BaseRequestBuilder<Ass
|
|
|
17
17
|
*/
|
|
18
18
|
byAccessPackageAssignmentPolicyId(accessPackageAssignmentPolicyId: string): AccessPackageAssignmentPolicyItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
*
|
|
20
|
+
* Retrieve a list of accessPackageAssignmentPolicy objects in Microsoft Entra entitlement management. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<AccessPackageAssignmentPolicyCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
@@ -25,7 +25,7 @@ export interface AssignmentPoliciesRequestBuilder extends BaseRequestBuilder<Ass
|
|
|
25
25
|
*/
|
|
26
26
|
get(requestConfiguration?: RequestConfiguration<AssignmentPoliciesRequestBuilderGetQueryParameters> | undefined): Promise<AccessPackageAssignmentPolicyCollectionResponse | undefined>;
|
|
27
27
|
/**
|
|
28
|
-
*
|
|
28
|
+
* Create a new accessPackageAssignmentPolicy object in Microsoft Entra entitlement management. The request includes a reference to the accessPackage that contains this policy, which must already exist.
|
|
29
29
|
* @param body The request body
|
|
30
30
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
31
31
|
* @returns {Promise<AccessPackageAssignmentPolicy>}
|
|
@@ -34,13 +34,13 @@ export interface AssignmentPoliciesRequestBuilder extends BaseRequestBuilder<Ass
|
|
|
34
34
|
*/
|
|
35
35
|
post(body: AccessPackageAssignmentPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<AccessPackageAssignmentPolicy | undefined>;
|
|
36
36
|
/**
|
|
37
|
-
*
|
|
37
|
+
* Retrieve a list of accessPackageAssignmentPolicy objects in Microsoft Entra entitlement management. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter.
|
|
38
38
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
39
|
* @returns {RequestInformation}
|
|
40
40
|
*/
|
|
41
41
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AssignmentPoliciesRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Create a new accessPackageAssignmentPolicy object in Microsoft Entra entitlement management. The request includes a reference to the accessPackage that contains this policy, which must already exist.
|
|
44
44
|
* @param body The request body
|
|
45
45
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
46
|
* @returns {RequestInformation}
|
|
@@ -48,7 +48,7 @@ export interface AssignmentPoliciesRequestBuilder extends BaseRequestBuilder<Ass
|
|
|
48
48
|
toPostRequestInformation(body: AccessPackageAssignmentPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
49
|
}
|
|
50
50
|
/**
|
|
51
|
-
*
|
|
51
|
+
* Retrieve a list of accessPackageAssignmentPolicy objects in Microsoft Entra entitlement management. If the delegated user is in a directory role, the resulting list includes all the assignment policies that the caller has access to read, across all catalogs and access packages. If the delegated user is an access package manager or catalog owner, they should instead retrieve the policies for the access packages they can read with list accessPackages by including $expand=assignmentPolicies as a query parameter.
|
|
52
52
|
*/
|
|
53
53
|
export interface AssignmentPoliciesRequestBuilderGetQueryParameters {
|
|
54
54
|
/**
|
|
@@ -32,7 +32,7 @@ export interface AssignmentRequestsRequestBuilder extends BaseRequestBuilder<Ass
|
|
|
32
32
|
*/
|
|
33
33
|
get(requestConfiguration?: RequestConfiguration<AssignmentRequestsRequestBuilderGetQueryParameters> | undefined): Promise<AccessPackageAssignmentRequestCollectionResponse | undefined>;
|
|
34
34
|
/**
|
|
35
|
-
* In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object.
|
|
35
|
+
* In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object. This operation is used to assign a user to an access package, update the assignment, or to remove an access package assignment.
|
|
36
36
|
* @param body The request body
|
|
37
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
38
|
* @returns {Promise<AccessPackageAssignmentRequest>}
|
|
@@ -47,7 +47,7 @@ export interface AssignmentRequestsRequestBuilder extends BaseRequestBuilder<Ass
|
|
|
47
47
|
*/
|
|
48
48
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AssignmentRequestsRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
49
49
|
/**
|
|
50
|
-
* In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object.
|
|
50
|
+
* In Microsoft Entra Entitlement Management, create a new accessPackageAssignmentRequest object. This operation is used to assign a user to an access package, update the assignment, or to remove an access package assignment.
|
|
51
51
|
* @param body The request body
|
|
52
52
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
53
53
|
* @returns {RequestInformation}
|
|
@@ -12,20 +12,20 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui
|
|
|
12
12
|
*/
|
|
13
13
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
14
14
|
/**
|
|
15
|
-
* Read the properties and relationships of an
|
|
15
|
+
* Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {Promise<CustomCalloutExtension>}
|
|
18
18
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
19
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
19
|
+
* @see {@link https://learn.microsoft.com/graph/api/accesspackageassignmentrequestworkflowextension-get?view=graph-rest-1.0|Find more info here}
|
|
20
20
|
*/
|
|
21
21
|
get(requestConfiguration?: RequestConfiguration<CustomCalloutExtensionItemRequestBuilderGetQueryParameters> | undefined): Promise<CustomCalloutExtension | undefined>;
|
|
22
22
|
/**
|
|
23
|
-
* Update the properties of an
|
|
23
|
+
* Update the properties of an accessPackageAssignmentWorkflowExtension object.
|
|
24
24
|
* @param body The request body
|
|
25
25
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
26
26
|
* @returns {Promise<CustomCalloutExtension>}
|
|
27
27
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
28
|
-
* @see {@link https://learn.microsoft.com/graph/api/
|
|
28
|
+
* @see {@link https://learn.microsoft.com/graph/api/accesspackageassignmentworkflowextension-update?view=graph-rest-1.0|Find more info here}
|
|
29
29
|
*/
|
|
30
30
|
patch(body: CustomCalloutExtension, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<CustomCalloutExtension | undefined>;
|
|
31
31
|
/**
|
|
@@ -35,13 +35,13 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui
|
|
|
35
35
|
*/
|
|
36
36
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
37
37
|
/**
|
|
38
|
-
* Read the properties and relationships of an
|
|
38
|
+
* Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
|
|
39
39
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
40
40
|
* @returns {RequestInformation}
|
|
41
41
|
*/
|
|
42
42
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<CustomCalloutExtensionItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
43
43
|
/**
|
|
44
|
-
* Update the properties of an
|
|
44
|
+
* Update the properties of an accessPackageAssignmentWorkflowExtension object.
|
|
45
45
|
* @param body The request body
|
|
46
46
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
47
47
|
* @returns {RequestInformation}
|
|
@@ -49,7 +49,7 @@ export interface CustomCalloutExtensionItemRequestBuilder extends BaseRequestBui
|
|
|
49
49
|
toPatchRequestInformation(body: CustomCalloutExtension, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
|
-
* Read the properties and relationships of an
|
|
52
|
+
* Read the properties and relationships of an accessPackageAssignmentRequestWorkflowExtension object.
|
|
53
53
|
*/
|
|
54
54
|
export interface CustomCalloutExtensionItemRequestBuilderGetQueryParameters {
|
|
55
55
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@microsoft/msgraph-sdk-identitygovernance",
|
|
3
|
-
"version": "1.0.0-preview.
|
|
3
|
+
"version": "1.0.0-preview.39",
|
|
4
4
|
"description": "IdentityGovernance fluent API for Microsoft Graph",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Microsoft",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"typescript": "^5.3.3"
|
|
44
44
|
},
|
|
45
45
|
"type": "module",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "78cd8aa67068f43ea6474b2d1f544ffd81a47638"
|
|
47
47
|
}
|