@microsoft/msgraph-sdk-policies 1.0.0-preview.20 → 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/policies/authenticationStrengthPolicies/item/combinationConfigurations/index.d.ts +5 -7
- package/policies/authenticationStrengthPolicies/item/combinationConfigurations/index.d.ts.map +1 -1
- package/policies/authenticationStrengthPolicies/item/combinationConfigurations/item/index.d.ts +7 -10
- package/policies/authenticationStrengthPolicies/item/combinationConfigurations/item/index.d.ts.map +1 -1
- package/policies/authenticationStrengthPolicies/item/usage/index.d.ts +3 -2
- package/policies/authenticationStrengthPolicies/item/usage/index.d.ts.map +1 -1
- package/policies/claimsMappingPolicies/item/appliesTo/index.d.ts +4 -3
- package/policies/claimsMappingPolicies/item/appliesTo/index.d.ts.map +1 -1
- package/policies/crossTenantAccessPolicy/index.d.ts +5 -0
- package/policies/crossTenantAccessPolicy/index.d.ts.map +1 -1
- package/policies/crossTenantAccessPolicy/index.js +6 -0
- package/policies/crossTenantAccessPolicy/partners/item/identitySynchronization/index.d.ts +3 -2
- package/policies/crossTenantAccessPolicy/partners/item/identitySynchronization/index.d.ts.map +1 -1
- package/policies/crossTenantAccessPolicy/templates/index.d.ts +83 -0
- package/policies/crossTenantAccessPolicy/templates/index.d.ts.map +1 -0
- package/policies/crossTenantAccessPolicy/templates/index.js +73 -0
- package/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization/index.d.ts +71 -0
- package/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization/index.d.ts.map +1 -0
- package/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationIdentitySynchronization/index.js +58 -0
- package/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration/index.d.ts +71 -0
- package/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration/index.d.ts.map +1 -0
- package/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration/index.js +58 -0
- package/policies/featureRolloutPolicies/item/appliesTo/index.d.ts +3 -3
- package/policies/featureRolloutPolicies/item/appliesTo/ref/index.d.ts +3 -3
- package/policies/homeRealmDiscoveryPolicies/item/appliesTo/index.d.ts +4 -3
- package/policies/homeRealmDiscoveryPolicies/item/appliesTo/index.d.ts.map +1 -1
- package/policies/permissionGrantPolicies/item/excludes/item/index.d.ts +3 -3
- package/policies/permissionGrantPolicies/item/includes/item/index.d.ts +3 -3
- package/policies/tokenIssuancePolicies/item/appliesTo/index.d.ts +4 -3
- package/policies/tokenIssuancePolicies/item/appliesTo/index.d.ts.map +1 -1
- package/policies/tokenLifetimePolicies/item/appliesTo/index.d.ts +4 -3
- package/policies/tokenLifetimePolicies/item/appliesTo/index.d.ts.map +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import { type MultiTenantOrganizationPartnerConfigurationTemplate } from '@microsoft/msgraph-sdk/models/';
|
|
2
|
+
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
|
|
3
|
+
/**
|
|
4
|
+
* Provides operations to manage the multiTenantOrganizationPartnerConfiguration property of the microsoft.graph.policyTemplate entity.
|
|
5
|
+
*/
|
|
6
|
+
export interface MultiTenantOrganizationPartnerConfigurationRequestBuilder extends BaseRequestBuilder<MultiTenantOrganizationPartnerConfigurationRequestBuilder> {
|
|
7
|
+
/**
|
|
8
|
+
* Delete navigation property multiTenantOrganizationPartnerConfiguration for policies
|
|
9
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
10
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
11
|
+
*/
|
|
12
|
+
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
13
|
+
/**
|
|
14
|
+
* Get the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
15
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
16
|
+
* @returns {Promise<MultiTenantOrganizationPartnerConfigurationTemplate>}
|
|
17
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
18
|
+
* @see {@link https://learn.microsoft.com/graph/api/multitenantorganizationpartnerconfigurationtemplate-get?view=graph-rest-1.0|Find more info here}
|
|
19
|
+
*/
|
|
20
|
+
get(requestConfiguration?: RequestConfiguration<MultiTenantOrganizationPartnerConfigurationRequestBuilderGetQueryParameters> | undefined): Promise<MultiTenantOrganizationPartnerConfigurationTemplate | undefined>;
|
|
21
|
+
/**
|
|
22
|
+
* Update the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
23
|
+
* @param body The request body
|
|
24
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
25
|
+
* @returns {Promise<MultiTenantOrganizationPartnerConfigurationTemplate>}
|
|
26
|
+
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
27
|
+
* @see {@link https://learn.microsoft.com/graph/api/multitenantorganizationpartnerconfigurationtemplate-update?view=graph-rest-1.0|Find more info here}
|
|
28
|
+
*/
|
|
29
|
+
patch(body: MultiTenantOrganizationPartnerConfigurationTemplate, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<MultiTenantOrganizationPartnerConfigurationTemplate | undefined>;
|
|
30
|
+
/**
|
|
31
|
+
* Delete navigation property multiTenantOrganizationPartnerConfiguration for policies
|
|
32
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
33
|
+
* @returns {RequestInformation}
|
|
34
|
+
*/
|
|
35
|
+
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
36
|
+
/**
|
|
37
|
+
* Get the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
38
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
39
|
+
* @returns {RequestInformation}
|
|
40
|
+
*/
|
|
41
|
+
toGetRequestInformation(requestConfiguration?: RequestConfiguration<MultiTenantOrganizationPartnerConfigurationRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
42
|
+
/**
|
|
43
|
+
* Update the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
44
|
+
* @param body The request body
|
|
45
|
+
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
46
|
+
* @returns {RequestInformation}
|
|
47
|
+
*/
|
|
48
|
+
toPatchRequestInformation(body: MultiTenantOrganizationPartnerConfigurationTemplate, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Get the cross-tenant access policy template with inbound and outbound partner configuration settings for a multitenant organization.
|
|
52
|
+
*/
|
|
53
|
+
export interface MultiTenantOrganizationPartnerConfigurationRequestBuilderGetQueryParameters {
|
|
54
|
+
/**
|
|
55
|
+
* Expand related entities
|
|
56
|
+
*/
|
|
57
|
+
expand?: string[];
|
|
58
|
+
/**
|
|
59
|
+
* Select properties to be returned
|
|
60
|
+
*/
|
|
61
|
+
select?: string[];
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Uri template for the request builder.
|
|
65
|
+
*/
|
|
66
|
+
export declare const MultiTenantOrganizationPartnerConfigurationRequestBuilderUriTemplate = "{+baseurl}/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration{?%24expand,%24select}";
|
|
67
|
+
/**
|
|
68
|
+
* Metadata for all the requests in the request builder.
|
|
69
|
+
*/
|
|
70
|
+
export declare const MultiTenantOrganizationPartnerConfigurationRequestBuilderRequestsMetadata: RequestsMetadata;
|
|
71
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiJ,KAAK,mDAAmD,EAAE,MAAM,gCAAgC,CAAC;AAIzP,OAAO,EAAE,KAAK,kBAAkB,EAAuC,KAAK,oBAAoB,EAAE,KAAK,kBAAkB,EAAE,KAAK,gBAAgB,EAAE,MAAM,+BAA+B,CAAC;AAExL;;GAEG;AACH,MAAM,WAAW,yDAA0D,SAAQ,kBAAkB,CAAC,yDAAyD,CAAC;IAC5J;;;;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,2EAA2E,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mDAAmD,GAAG,SAAS,CAAC,CAAC;IACtN;;;;;;;OAOG;IACF,KAAK,CAAC,IAAI,EAAE,mDAAmD,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,mDAAmD,GAAG,SAAS,CAAC,CAAC;IAC9M;;;;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,2EAA2E,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;IACpL;;;;;OAKG;IACF,yBAAyB,CAAC,IAAI,EAAE,mDAAmD,EAAE,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,MAAM,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CAC/K;AACD;;GAEG;AACH,MAAM,WAAW,2EAA2E;IACxF;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;IAClB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB;AACD;;GAEG;AACH,eAAO,MAAM,oEAAoE,4HAA4H,CAAC;AAQ9M;;GAEG;AACH,eAAO,MAAM,yEAAyE,EAAE,gBA+BvF,CAAC"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderRequestsMetadata = exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderUriTemplate = void 0;
|
|
4
|
+
/* tslint:disable */
|
|
5
|
+
/* eslint-disable */
|
|
6
|
+
// Generated by Microsoft Kiota
|
|
7
|
+
// @ts-ignore
|
|
8
|
+
const models_1 = require("@microsoft/msgraph-sdk/models/");
|
|
9
|
+
// @ts-ignore
|
|
10
|
+
const oDataErrors_1 = require("@microsoft/msgraph-sdk/models/oDataErrors/");
|
|
11
|
+
/**
|
|
12
|
+
* Uri template for the request builder.
|
|
13
|
+
*/
|
|
14
|
+
exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderUriTemplate = "{+baseurl}/policies/crossTenantAccessPolicy/templates/multiTenantOrganizationPartnerConfiguration{?%24expand,%24select}";
|
|
15
|
+
/**
|
|
16
|
+
* Mapper for query parameters from symbol name to serialization name represented as a constant.
|
|
17
|
+
*/
|
|
18
|
+
const MultiTenantOrganizationPartnerConfigurationRequestBuilderGetQueryParametersMapper = {
|
|
19
|
+
"expand": "%24expand",
|
|
20
|
+
"select": "%24select",
|
|
21
|
+
};
|
|
22
|
+
/**
|
|
23
|
+
* Metadata for all the requests in the request builder.
|
|
24
|
+
*/
|
|
25
|
+
exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderRequestsMetadata = {
|
|
26
|
+
delete: {
|
|
27
|
+
uriTemplate: exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderUriTemplate,
|
|
28
|
+
responseBodyContentType: "application/json",
|
|
29
|
+
errorMappings: {
|
|
30
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
31
|
+
},
|
|
32
|
+
adapterMethodName: "sendNoResponseContent",
|
|
33
|
+
},
|
|
34
|
+
get: {
|
|
35
|
+
uriTemplate: exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderUriTemplate,
|
|
36
|
+
responseBodyContentType: "application/json",
|
|
37
|
+
errorMappings: {
|
|
38
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
39
|
+
},
|
|
40
|
+
adapterMethodName: "send",
|
|
41
|
+
responseBodyFactory: models_1.createMultiTenantOrganizationPartnerConfigurationTemplateFromDiscriminatorValue,
|
|
42
|
+
queryParametersMapper: MultiTenantOrganizationPartnerConfigurationRequestBuilderGetQueryParametersMapper,
|
|
43
|
+
},
|
|
44
|
+
patch: {
|
|
45
|
+
uriTemplate: exports.MultiTenantOrganizationPartnerConfigurationRequestBuilderUriTemplate,
|
|
46
|
+
responseBodyContentType: "application/json",
|
|
47
|
+
errorMappings: {
|
|
48
|
+
XXX: oDataErrors_1.createODataErrorFromDiscriminatorValue,
|
|
49
|
+
},
|
|
50
|
+
adapterMethodName: "send",
|
|
51
|
+
responseBodyFactory: models_1.createMultiTenantOrganizationPartnerConfigurationTemplateFromDiscriminatorValue,
|
|
52
|
+
requestBodyContentType: "application/json",
|
|
53
|
+
requestBodySerializer: models_1.serializeMultiTenantOrganizationPartnerConfigurationTemplate,
|
|
54
|
+
requestInformationContentSetMethod: "setContentFromParsable",
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
/* tslint:enable */
|
|
58
|
+
/* eslint-enable */
|
|
@@ -22,7 +22,7 @@ export interface AppliesToRequestBuilder extends BaseRequestBuilder<AppliesToReq
|
|
|
22
22
|
*/
|
|
23
23
|
byDirectoryObjectId(directoryObjectId: string): DirectoryObjectItemRequestBuilder;
|
|
24
24
|
/**
|
|
25
|
-
* Nullable. Specifies a list of
|
|
25
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
26
26
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
27
27
|
* @returns {Promise<DirectoryObjectCollectionResponse>}
|
|
28
28
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
@@ -38,7 +38,7 @@ export interface AppliesToRequestBuilder extends BaseRequestBuilder<AppliesToReq
|
|
|
38
38
|
*/
|
|
39
39
|
post(body: DirectoryObject, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<DirectoryObject | undefined>;
|
|
40
40
|
/**
|
|
41
|
-
* Nullable. Specifies a list of
|
|
41
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
42
42
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
43
43
|
* @returns {RequestInformation}
|
|
44
44
|
*/
|
|
@@ -52,7 +52,7 @@ export interface AppliesToRequestBuilder extends BaseRequestBuilder<AppliesToReq
|
|
|
52
52
|
toPostRequestInformation(body: DirectoryObject, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
|
-
* Nullable. Specifies a list of
|
|
55
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
56
56
|
*/
|
|
57
57
|
export interface AppliesToRequestBuilderGetQueryParameters {
|
|
58
58
|
/**
|
|
@@ -12,7 +12,7 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
|
|
|
12
12
|
*/
|
|
13
13
|
delete(requestConfiguration?: RequestConfiguration<RefRequestBuilderDeleteQueryParameters> | undefined): Promise<void>;
|
|
14
14
|
/**
|
|
15
|
-
* Nullable. Specifies a list of
|
|
15
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {Promise<StringCollectionResponse>}
|
|
18
18
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
@@ -33,7 +33,7 @@ export interface RefRequestBuilder extends BaseRequestBuilder<RefRequestBuilder>
|
|
|
33
33
|
*/
|
|
34
34
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<RefRequestBuilderDeleteQueryParameters> | undefined): RequestInformation;
|
|
35
35
|
/**
|
|
36
|
-
* Nullable. Specifies a list of
|
|
36
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
37
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
38
|
* @returns {RequestInformation}
|
|
39
39
|
*/
|
|
@@ -56,7 +56,7 @@ export interface RefRequestBuilderDeleteQueryParameters {
|
|
|
56
56
|
id?: string;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
|
-
* Nullable. Specifies a list of
|
|
59
|
+
* Nullable. Specifies a list of directoryObject resources that feature is enabled for.
|
|
60
60
|
*/
|
|
61
61
|
export interface RefRequestBuilderGetQueryParameters {
|
|
62
62
|
/**
|
|
@@ -17,21 +17,22 @@ export interface AppliesToRequestBuilder extends BaseRequestBuilder<AppliesToReq
|
|
|
17
17
|
*/
|
|
18
18
|
byDirectoryObjectId(directoryObjectId: string): DirectoryObjectItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
* Get
|
|
20
|
+
* Get a list of directoryObject objects that a homeRealmDiscoveryPolicy object has been applied to.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<DirectoryObjectCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/homerealmdiscoverypolicy-list-appliesto?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<AppliesToRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObjectCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
* Get
|
|
28
|
+
* Get a list of directoryObject objects that a homeRealmDiscoveryPolicy object has been applied to.
|
|
28
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
30
|
* @returns {RequestInformation}
|
|
30
31
|
*/
|
|
31
32
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AppliesToRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
32
33
|
}
|
|
33
34
|
/**
|
|
34
|
-
* Get
|
|
35
|
+
* Get a list of directoryObject objects that a homeRealmDiscoveryPolicy object has been applied to.
|
|
35
36
|
*/
|
|
36
37
|
export interface AppliesToRequestBuilderGetQueryParameters {
|
|
37
38
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAqD,KAAK,iCAAiC,EAAE,MAAM,SAAS,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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;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,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAqD,KAAK,iCAAiC,EAAE,MAAM,SAAS,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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAI,iCAAiC,CAAC;IACpF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAClK;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;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,kCAAkC,0KAA0K,CAAC;AAc1N;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQ5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBAWrD,CAAC"}
|
|
@@ -12,7 +12,7 @@ export interface PermissionGrantConditionSetItemRequestBuilder extends BaseReque
|
|
|
12
12
|
*/
|
|
13
13
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
14
14
|
/**
|
|
15
|
-
* Condition sets
|
|
15
|
+
* Condition sets that are excluded in this permission grant policy. Automatically expanded on GET.
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {Promise<PermissionGrantConditionSet>}
|
|
18
18
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
@@ -33,7 +33,7 @@ export interface PermissionGrantConditionSetItemRequestBuilder extends BaseReque
|
|
|
33
33
|
*/
|
|
34
34
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
35
35
|
/**
|
|
36
|
-
* Condition sets
|
|
36
|
+
* Condition sets that are excluded in this permission grant policy. Automatically expanded on GET.
|
|
37
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
38
|
* @returns {RequestInformation}
|
|
39
39
|
*/
|
|
@@ -47,7 +47,7 @@ export interface PermissionGrantConditionSetItemRequestBuilder extends BaseReque
|
|
|
47
47
|
toPatchRequestInformation(body: PermissionGrantConditionSet, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* Condition sets
|
|
50
|
+
* Condition sets that are excluded in this permission grant policy. Automatically expanded on GET.
|
|
51
51
|
*/
|
|
52
52
|
export interface PermissionGrantConditionSetItemRequestBuilderGetQueryParameters {
|
|
53
53
|
/**
|
|
@@ -12,7 +12,7 @@ export interface PermissionGrantConditionSetItemRequestBuilder extends BaseReque
|
|
|
12
12
|
*/
|
|
13
13
|
delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
|
|
14
14
|
/**
|
|
15
|
-
* Condition sets
|
|
15
|
+
* Condition sets that are included in this permission grant policy. Automatically expanded on GET.
|
|
16
16
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
17
17
|
* @returns {Promise<PermissionGrantConditionSet>}
|
|
18
18
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
@@ -33,7 +33,7 @@ export interface PermissionGrantConditionSetItemRequestBuilder extends BaseReque
|
|
|
33
33
|
*/
|
|
34
34
|
toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
35
35
|
/**
|
|
36
|
-
* Condition sets
|
|
36
|
+
* Condition sets that are included in this permission grant policy. Automatically expanded on GET.
|
|
37
37
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
38
38
|
* @returns {RequestInformation}
|
|
39
39
|
*/
|
|
@@ -47,7 +47,7 @@ export interface PermissionGrantConditionSetItemRequestBuilder extends BaseReque
|
|
|
47
47
|
toPatchRequestInformation(body: PermissionGrantConditionSet, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
|
-
* Condition sets
|
|
50
|
+
* Condition sets that are included in this permission grant policy. Automatically expanded on GET.
|
|
51
51
|
*/
|
|
52
52
|
export interface PermissionGrantConditionSetItemRequestBuilderGetQueryParameters {
|
|
53
53
|
/**
|
|
@@ -17,21 +17,22 @@ export interface AppliesToRequestBuilder extends BaseRequestBuilder<AppliesToReq
|
|
|
17
17
|
*/
|
|
18
18
|
byDirectoryObjectId(directoryObjectId: string): DirectoryObjectItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
* Get
|
|
20
|
+
* Get a list of directoryObject objects that a tokenIssuancePolicy object has been applied to. The tokenIssuancePolicy can only be applied to application.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<DirectoryObjectCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/tokenissuancepolicy-list-appliesto?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<AppliesToRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObjectCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
* Get
|
|
28
|
+
* Get a list of directoryObject objects that a tokenIssuancePolicy object has been applied to. The tokenIssuancePolicy can only be applied to application.
|
|
28
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
30
|
* @returns {RequestInformation}
|
|
30
31
|
*/
|
|
31
32
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AppliesToRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
32
33
|
}
|
|
33
34
|
/**
|
|
34
|
-
* Get
|
|
35
|
+
* Get a list of directoryObject objects that a tokenIssuancePolicy object has been applied to. The tokenIssuancePolicy can only be applied to application.
|
|
35
36
|
*/
|
|
36
37
|
export interface AppliesToRequestBuilderGetQueryParameters {
|
|
37
38
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAqD,KAAK,iCAAiC,EAAE,MAAM,SAAS,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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;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,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAqD,KAAK,iCAAiC,EAAE,MAAM,SAAS,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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAI,iCAAiC,CAAC;IACpF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAClK;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;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,kCAAkC,gKAAgK,CAAC;AAchN;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQ5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBAWrD,CAAC"}
|
|
@@ -17,21 +17,22 @@ export interface AppliesToRequestBuilder extends BaseRequestBuilder<AppliesToReq
|
|
|
17
17
|
*/
|
|
18
18
|
byDirectoryObjectId(directoryObjectId: string): DirectoryObjectItemRequestBuilder;
|
|
19
19
|
/**
|
|
20
|
-
* Get
|
|
20
|
+
* Get a list of directoryObject objects that a tokenLifetimePolicy object has been applied to. The tokenLifetimePolicy can only be applied to application.
|
|
21
21
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
22
22
|
* @returns {Promise<DirectoryObjectCollectionResponse>}
|
|
23
23
|
* @throws {ODataError} error when the service returns a 4XX or 5XX status code
|
|
24
|
+
* @see {@link https://learn.microsoft.com/graph/api/tokenlifetimepolicy-list-appliesto?view=graph-rest-1.0|Find more info here}
|
|
24
25
|
*/
|
|
25
26
|
get(requestConfiguration?: RequestConfiguration<AppliesToRequestBuilderGetQueryParameters> | undefined): Promise<DirectoryObjectCollectionResponse | undefined>;
|
|
26
27
|
/**
|
|
27
|
-
* Get
|
|
28
|
+
* Get a list of directoryObject objects that a tokenLifetimePolicy object has been applied to. The tokenLifetimePolicy can only be applied to application.
|
|
28
29
|
* @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
|
|
29
30
|
* @returns {RequestInformation}
|
|
30
31
|
*/
|
|
31
32
|
toGetRequestInformation(requestConfiguration?: RequestConfiguration<AppliesToRequestBuilderGetQueryParameters> | undefined): RequestInformation;
|
|
32
33
|
}
|
|
33
34
|
/**
|
|
34
|
-
* Get
|
|
35
|
+
* Get a list of directoryObject objects that a tokenLifetimePolicy object has been applied to. The tokenLifetimePolicy can only be applied to application.
|
|
35
36
|
*/
|
|
36
37
|
export interface AppliesToRequestBuilderGetQueryParameters {
|
|
37
38
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.ts"],"names":[],"mappings":"AAIA,OAAO,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAqD,KAAK,iCAAiC,EAAE,MAAM,SAAS,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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;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,EAAiE,KAAK,iCAAiC,EAAE,MAAM,gCAAgC,CAAC;AAIvJ,OAAO,EAAuC,KAAK,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAEzF,OAAO,EAAqD,KAAK,iCAAiC,EAAE,MAAM,SAAS,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,uBAAwB,SAAQ,kBAAkB,CAAC,uBAAuB,CAAC;IACxF;;OAEG;IACH,IAAI,KAAK,IAAI,mBAAmB,CAAC;IACjC;;;;OAIG;IACF,mBAAmB,CAAC,iBAAiB,EAAE,MAAM,GAAI,iCAAiC,CAAC;IACpF;;;;;;OAMG;IACF,GAAG,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,OAAO,CAAC,iCAAiC,GAAG,SAAS,CAAC,CAAC;IAClK;;;;OAIG;IACF,uBAAuB,CAAC,oBAAoB,CAAC,EAAE,oBAAoB,CAAC,yCAAyC,CAAC,GAAG,SAAS,GAAI,kBAAkB,CAAC;CACrJ;AACD;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;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,kCAAkC,gKAAgK,CAAC;AAchN;;GAEG;AACH,eAAO,MAAM,yCAAyC,EAAE,MAAM,CAAC,OAAO,CAAC,MAAM,uBAAuB,EAAE,kCAAkC,CAAC,EAAE,kBAAkB,CAQ5J,CAAC;AACF;;GAEG;AACH,eAAO,MAAM,uCAAuC,EAAE,gBAWrD,CAAC"}
|