@pulumi/okta 5.3.0-alpha.1759905974 → 6.0.0-alpha.1759992240
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/campaign.d.ts +179 -0
- package/campaign.js +87 -0
- package/campaign.js.map +1 -0
- package/endUserMyRequests.d.ts +77 -0
- package/endUserMyRequests.js +63 -0
- package/endUserMyRequests.js.map +1 -0
- package/entitlement.d.ts +155 -0
- package/entitlement.js +92 -0
- package/entitlement.js.map +1 -0
- package/entitlementBundle.d.ts +128 -0
- package/entitlementBundle.js +77 -0
- package/entitlementBundle.js.map +1 -0
- package/getCampaign.d.ts +91 -0
- package/getCampaign.js +68 -0
- package/getCampaign.js.map +1 -0
- package/getCatalogEntryDefault.d.ts +86 -0
- package/getCatalogEntryDefault.js +50 -0
- package/getCatalogEntryDefault.js.map +1 -0
- package/getCatalogEntryUserAccessRequestFields.d.ts +30 -0
- package/getCatalogEntryUserAccessRequestFields.js +26 -0
- package/getCatalogEntryUserAccessRequestFields.js.map +1 -0
- package/getEndUserMyRequests.d.ts +183 -0
- package/getEndUserMyRequests.js +134 -0
- package/getEndUserMyRequests.js.map +1 -0
- package/getEntitlement.d.ts +71 -0
- package/getEntitlement.js +54 -0
- package/getEntitlement.js.map +1 -0
- package/getEntitlementBundle.d.ts +116 -0
- package/getEntitlementBundle.js +54 -0
- package/getEntitlementBundle.js.map +1 -0
- package/getPrincipalEntitlements.d.ts +63 -0
- package/getPrincipalEntitlements.js +34 -0
- package/getPrincipalEntitlements.js.map +1 -0
- package/getPrincipalRateLimits.d.ts +91 -0
- package/getPrincipalRateLimits.js +50 -0
- package/getPrincipalRateLimits.js.map +1 -0
- package/getRateLimitAdminNotificationSettings.d.ts +40 -0
- package/getRateLimitAdminNotificationSettings.js +42 -0
- package/getRateLimitAdminNotificationSettings.js.map +1 -0
- package/getRateLimitWarningThresholdPercentage.d.ts +40 -0
- package/getRateLimitWarningThresholdPercentage.js +42 -0
- package/getRateLimitWarningThresholdPercentage.js.map +1 -0
- package/getRequestCondition.d.ts +108 -0
- package/getRequestCondition.js +58 -0
- package/getRequestCondition.js.map +1 -0
- package/getRequestSequence.d.ts +88 -0
- package/getRequestSequence.js +54 -0
- package/getRequestSequence.js.map +1 -0
- package/getRequestSettingOrganization.d.ts +51 -0
- package/getRequestSettingOrganization.js +48 -0
- package/getRequestSettingOrganization.js.map +1 -0
- package/getRequestSettingResource.d.ts +98 -0
- package/getRequestSettingResource.js +38 -0
- package/getRequestSettingResource.js.map +1 -0
- package/getRequestV2.d.ts +37 -0
- package/getRequestV2.js +28 -0
- package/getRequestV2.js.map +1 -0
- package/getReview.d.ts +154 -0
- package/getReview.js +84 -0
- package/getReview.js.map +1 -0
- package/index.d.ts +87 -0
- package/index.js +117 -3
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/principalRateLimits.d.ts +124 -0
- package/principalRateLimits.js +71 -0
- package/principalRateLimits.js.map +1 -0
- package/rateLimitAdminNotificationSettings.d.ts +66 -0
- package/rateLimitAdminNotificationSettings.js +70 -0
- package/rateLimitAdminNotificationSettings.js.map +1 -0
- package/rateLimitWarningThresholdPercentage.d.ts +65 -0
- package/rateLimitWarningThresholdPercentage.js +69 -0
- package/rateLimitWarningThresholdPercentage.js.map +1 -0
- package/rateLimiting.d.ts +11 -43
- package/rateLimiting.js +6 -24
- package/rateLimiting.js.map +1 -1
- package/realm.d.ts +3 -3
- package/realm.js +0 -3
- package/realm.js.map +1 -1
- package/requestCondition.d.ts +165 -0
- package/requestCondition.js +88 -0
- package/requestCondition.js.map +1 -0
- package/requestSequence.d.ts +113 -0
- package/requestSequence.js +86 -0
- package/requestSequence.js.map +1 -0
- package/requestSettingOrganization.d.ts +69 -0
- package/requestSettingOrganization.js +63 -0
- package/requestSettingOrganization.js.map +1 -0
- package/requestSettingResource.d.ts +83 -0
- package/requestSettingResource.js +65 -0
- package/requestSettingResource.js.map +1 -0
- package/requestV2.d.ts +170 -0
- package/requestV2.js +77 -0
- package/requestV2.js.map +1 -0
- package/review.d.ts +172 -0
- package/review.js +109 -0
- package/review.js.map +1 -0
- package/types/input.d.ts +2156 -147
- package/types/output.d.ts +1263 -2
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves a access request sequence referenced by the specified resource.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as okta from "@pulumi/okta";
|
|
10
|
+
*
|
|
11
|
+
* const test = okta.getRequestSequence({
|
|
12
|
+
* id: "<sequence_id>",
|
|
13
|
+
* resourceId: "<resource_id>",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getRequestSequence(args: GetRequestSequenceArgs, opts?: pulumi.InvokeOptions): Promise<GetRequestSequenceResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getRequestSequence.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetRequestSequenceArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The id of the sequence.Must be of 24 characters length.
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
/**
|
|
27
|
+
* The id of the resource in Okta ID format.
|
|
28
|
+
*/
|
|
29
|
+
resourceId: string;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* A collection of values returned by getRequestSequence.
|
|
33
|
+
*/
|
|
34
|
+
export interface GetRequestSequenceResult {
|
|
35
|
+
/**
|
|
36
|
+
* Enum: `APP`, `GROUP`.
|
|
37
|
+
*/
|
|
38
|
+
readonly compatibleResourceTypes: string[];
|
|
39
|
+
/**
|
|
40
|
+
* The description of the request condition.
|
|
41
|
+
*/
|
|
42
|
+
readonly description: string;
|
|
43
|
+
/**
|
|
44
|
+
* The id of the sequence.Must be of 24 characters length.
|
|
45
|
+
*/
|
|
46
|
+
readonly id: string;
|
|
47
|
+
/**
|
|
48
|
+
* Link to edit the request sequence.
|
|
49
|
+
*/
|
|
50
|
+
readonly link: string;
|
|
51
|
+
/**
|
|
52
|
+
* The access duration settings for the request condition
|
|
53
|
+
*/
|
|
54
|
+
readonly name: string;
|
|
55
|
+
/**
|
|
56
|
+
* The id of the resource in Okta ID format.
|
|
57
|
+
*/
|
|
58
|
+
readonly resourceId: string;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* Retrieves a access request sequence referenced by the specified resource.
|
|
62
|
+
*
|
|
63
|
+
* ## Example Usage
|
|
64
|
+
*
|
|
65
|
+
* ```typescript
|
|
66
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
67
|
+
* import * as okta from "@pulumi/okta";
|
|
68
|
+
*
|
|
69
|
+
* const test = okta.getRequestSequence({
|
|
70
|
+
* id: "<sequence_id>",
|
|
71
|
+
* resourceId: "<resource_id>",
|
|
72
|
+
* });
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
export declare function getRequestSequenceOutput(args: GetRequestSequenceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRequestSequenceResult>;
|
|
76
|
+
/**
|
|
77
|
+
* A collection of arguments for invoking getRequestSequence.
|
|
78
|
+
*/
|
|
79
|
+
export interface GetRequestSequenceOutputArgs {
|
|
80
|
+
/**
|
|
81
|
+
* The id of the sequence.Must be of 24 characters length.
|
|
82
|
+
*/
|
|
83
|
+
id: pulumi.Input<string>;
|
|
84
|
+
/**
|
|
85
|
+
* The id of the resource in Okta ID format.
|
|
86
|
+
*/
|
|
87
|
+
resourceId: pulumi.Input<string>;
|
|
88
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRequestSequenceOutput = exports.getRequestSequence = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves a access request sequence referenced by the specified resource.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as okta from "@pulumi/okta";
|
|
16
|
+
*
|
|
17
|
+
* const test = okta.getRequestSequence({
|
|
18
|
+
* id: "<sequence_id>",
|
|
19
|
+
* resourceId: "<resource_id>",
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getRequestSequence(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("okta:index/getRequestSequence:getRequestSequence", {
|
|
26
|
+
"id": args.id,
|
|
27
|
+
"resourceId": args.resourceId,
|
|
28
|
+
}, opts);
|
|
29
|
+
}
|
|
30
|
+
exports.getRequestSequence = getRequestSequence;
|
|
31
|
+
/**
|
|
32
|
+
* Retrieves a access request sequence referenced by the specified resource.
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as okta from "@pulumi/okta";
|
|
39
|
+
*
|
|
40
|
+
* const test = okta.getRequestSequence({
|
|
41
|
+
* id: "<sequence_id>",
|
|
42
|
+
* resourceId: "<resource_id>",
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
function getRequestSequenceOutput(args, opts) {
|
|
47
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
48
|
+
return pulumi.runtime.invokeOutput("okta:index/getRequestSequence:getRequestSequence", {
|
|
49
|
+
"id": args.id,
|
|
50
|
+
"resourceId": args.resourceId,
|
|
51
|
+
}, opts);
|
|
52
|
+
}
|
|
53
|
+
exports.getRequestSequenceOutput = getRequestSequenceOutput;
|
|
54
|
+
//# sourceMappingURL=getRequestSequence.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRequestSequence.js","sourceRoot":"","sources":["../getRequestSequence.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAA2B;IACxF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gDAMC;AA6CD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,wBAAwB,CAAC,IAAkC,EAAE,IAAiC;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,YAAY,EAAE,IAAI,CAAC,UAAU;KAChC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4DAMC"}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Retrieves the request settings for the org.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as okta from "@pulumi/okta";
|
|
12
|
+
*
|
|
13
|
+
* const test = okta.getRequestSettingOrganization({});
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getRequestSettingOrganization(args?: GetRequestSettingOrganizationArgs, opts?: pulumi.InvokeOptions): Promise<GetRequestSettingOrganizationResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getRequestSettingOrganization.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetRequestSettingOrganizationArgs {
|
|
21
|
+
requestExperiences?: inputs.GetRequestSettingOrganizationRequestExperience[];
|
|
22
|
+
}
|
|
23
|
+
/**
|
|
24
|
+
* A collection of values returned by getRequestSettingOrganization.
|
|
25
|
+
*/
|
|
26
|
+
export interface GetRequestSettingOrganizationResult {
|
|
27
|
+
readonly id: string;
|
|
28
|
+
readonly longTimePastProvisioned: boolean;
|
|
29
|
+
readonly provisioningStatus: string;
|
|
30
|
+
readonly requestExperiences?: outputs.GetRequestSettingOrganizationRequestExperience[];
|
|
31
|
+
readonly subprocessorsAcknowledged: boolean;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Retrieves the request settings for the org.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as okta from "@pulumi/okta";
|
|
41
|
+
*
|
|
42
|
+
* const test = okta.getRequestSettingOrganization({});
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
export declare function getRequestSettingOrganizationOutput(args?: GetRequestSettingOrganizationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRequestSettingOrganizationResult>;
|
|
46
|
+
/**
|
|
47
|
+
* A collection of arguments for invoking getRequestSettingOrganization.
|
|
48
|
+
*/
|
|
49
|
+
export interface GetRequestSettingOrganizationOutputArgs {
|
|
50
|
+
requestExperiences?: pulumi.Input<pulumi.Input<inputs.GetRequestSettingOrganizationRequestExperienceArgs>[]>;
|
|
51
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRequestSettingOrganizationOutput = exports.getRequestSettingOrganization = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the request settings for the org.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as okta from "@pulumi/okta";
|
|
16
|
+
*
|
|
17
|
+
* const test = okta.getRequestSettingOrganization({});
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
function getRequestSettingOrganization(args, opts) {
|
|
21
|
+
args = args || {};
|
|
22
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
23
|
+
return pulumi.runtime.invoke("okta:index/getRequestSettingOrganization:getRequestSettingOrganization", {
|
|
24
|
+
"requestExperiences": args.requestExperiences,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getRequestSettingOrganization = getRequestSettingOrganization;
|
|
28
|
+
/**
|
|
29
|
+
* Retrieves the request settings for the org.
|
|
30
|
+
*
|
|
31
|
+
* ## Example Usage
|
|
32
|
+
*
|
|
33
|
+
* ```typescript
|
|
34
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
35
|
+
* import * as okta from "@pulumi/okta";
|
|
36
|
+
*
|
|
37
|
+
* const test = okta.getRequestSettingOrganization({});
|
|
38
|
+
* ```
|
|
39
|
+
*/
|
|
40
|
+
function getRequestSettingOrganizationOutput(args, opts) {
|
|
41
|
+
args = args || {};
|
|
42
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
43
|
+
return pulumi.runtime.invokeOutput("okta:index/getRequestSettingOrganization:getRequestSettingOrganization", {
|
|
44
|
+
"requestExperiences": args.requestExperiences,
|
|
45
|
+
}, opts);
|
|
46
|
+
}
|
|
47
|
+
exports.getRequestSettingOrganizationOutput = getRequestSettingOrganizationOutput;
|
|
48
|
+
//# sourceMappingURL=getRequestSettingOrganization.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRequestSettingOrganization.js","sourceRoot":"","sources":["../getRequestSettingOrganization.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,6BAA6B,CAAC,IAAwC,EAAE,IAA2B;IAC/G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sEAMC;AAmBD;;;;;;;;;;;GAWG;AACH,SAAgB,mCAAmC,CAAC,IAA8C,EAAE,IAAiC;IACjI,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wEAAwE,EAAE;QACzG,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kFAMC"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Retrieves the request settings for a resource.
|
|
6
|
+
*/
|
|
7
|
+
export declare function getRequestSettingResource(args: GetRequestSettingResourceArgs, opts?: pulumi.InvokeOptions): Promise<GetRequestSettingResourceResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getRequestSettingResource.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetRequestSettingResourceArgs {
|
|
12
|
+
/**
|
|
13
|
+
* The resource ID of the request settings to retrieve. This is the unique identifier for the resource in Okta.
|
|
14
|
+
*/
|
|
15
|
+
id: string;
|
|
16
|
+
/**
|
|
17
|
+
* Risk settings for the resource.
|
|
18
|
+
*/
|
|
19
|
+
requestOnBehalfOfSettings?: inputs.GetRequestSettingResourceRequestOnBehalfOfSettings;
|
|
20
|
+
/**
|
|
21
|
+
* Risk settings for the resource.
|
|
22
|
+
*/
|
|
23
|
+
riskSettings?: inputs.GetRequestSettingResourceRiskSettings;
|
|
24
|
+
/**
|
|
25
|
+
* Specifies if and for whom a requester may request the resource for.
|
|
26
|
+
*/
|
|
27
|
+
validAccessDurationSettings?: inputs.GetRequestSettingResourceValidAccessDurationSettings;
|
|
28
|
+
/**
|
|
29
|
+
* Risk settings for the resource.
|
|
30
|
+
*/
|
|
31
|
+
validAccessScopeSettings?: inputs.GetRequestSettingResourceValidAccessScopeSetting[];
|
|
32
|
+
/**
|
|
33
|
+
* Risk settings for the resource.
|
|
34
|
+
*/
|
|
35
|
+
validRequesterSettings?: inputs.GetRequestSettingResourceValidRequesterSetting[];
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* A collection of values returned by getRequestSettingResource.
|
|
39
|
+
*/
|
|
40
|
+
export interface GetRequestSettingResourceResult {
|
|
41
|
+
/**
|
|
42
|
+
* The resource ID of the request settings to retrieve. This is the unique identifier for the resource in Okta.
|
|
43
|
+
*/
|
|
44
|
+
readonly id: string;
|
|
45
|
+
/**
|
|
46
|
+
* Risk settings for the resource.
|
|
47
|
+
*/
|
|
48
|
+
readonly requestOnBehalfOfSettings?: outputs.GetRequestSettingResourceRequestOnBehalfOfSettings;
|
|
49
|
+
/**
|
|
50
|
+
* Risk settings for the resource.
|
|
51
|
+
*/
|
|
52
|
+
readonly riskSettings?: outputs.GetRequestSettingResourceRiskSettings;
|
|
53
|
+
/**
|
|
54
|
+
* Specifies if and for whom a requester may request the resource for.
|
|
55
|
+
*/
|
|
56
|
+
readonly validAccessDurationSettings?: outputs.GetRequestSettingResourceValidAccessDurationSettings;
|
|
57
|
+
/**
|
|
58
|
+
* Risk settings for the resource.
|
|
59
|
+
*/
|
|
60
|
+
readonly validAccessScopeSettings?: outputs.GetRequestSettingResourceValidAccessScopeSetting[];
|
|
61
|
+
/**
|
|
62
|
+
* Risk settings for the resource.
|
|
63
|
+
*/
|
|
64
|
+
readonly validRequesterSettings?: outputs.GetRequestSettingResourceValidRequesterSetting[];
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Retrieves the request settings for a resource.
|
|
68
|
+
*/
|
|
69
|
+
export declare function getRequestSettingResourceOutput(args: GetRequestSettingResourceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRequestSettingResourceResult>;
|
|
70
|
+
/**
|
|
71
|
+
* A collection of arguments for invoking getRequestSettingResource.
|
|
72
|
+
*/
|
|
73
|
+
export interface GetRequestSettingResourceOutputArgs {
|
|
74
|
+
/**
|
|
75
|
+
* The resource ID of the request settings to retrieve. This is the unique identifier for the resource in Okta.
|
|
76
|
+
*/
|
|
77
|
+
id: pulumi.Input<string>;
|
|
78
|
+
/**
|
|
79
|
+
* Risk settings for the resource.
|
|
80
|
+
*/
|
|
81
|
+
requestOnBehalfOfSettings?: pulumi.Input<inputs.GetRequestSettingResourceRequestOnBehalfOfSettingsArgs>;
|
|
82
|
+
/**
|
|
83
|
+
* Risk settings for the resource.
|
|
84
|
+
*/
|
|
85
|
+
riskSettings?: pulumi.Input<inputs.GetRequestSettingResourceRiskSettingsArgs>;
|
|
86
|
+
/**
|
|
87
|
+
* Specifies if and for whom a requester may request the resource for.
|
|
88
|
+
*/
|
|
89
|
+
validAccessDurationSettings?: pulumi.Input<inputs.GetRequestSettingResourceValidAccessDurationSettingsArgs>;
|
|
90
|
+
/**
|
|
91
|
+
* Risk settings for the resource.
|
|
92
|
+
*/
|
|
93
|
+
validAccessScopeSettings?: pulumi.Input<pulumi.Input<inputs.GetRequestSettingResourceValidAccessScopeSettingArgs>[]>;
|
|
94
|
+
/**
|
|
95
|
+
* Risk settings for the resource.
|
|
96
|
+
*/
|
|
97
|
+
validRequesterSettings?: pulumi.Input<pulumi.Input<inputs.GetRequestSettingResourceValidRequesterSettingArgs>[]>;
|
|
98
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRequestSettingResourceOutput = exports.getRequestSettingResource = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the request settings for a resource.
|
|
10
|
+
*/
|
|
11
|
+
function getRequestSettingResource(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("okta:index/getRequestSettingResource:getRequestSettingResource", {
|
|
14
|
+
"id": args.id,
|
|
15
|
+
"requestOnBehalfOfSettings": args.requestOnBehalfOfSettings,
|
|
16
|
+
"riskSettings": args.riskSettings,
|
|
17
|
+
"validAccessDurationSettings": args.validAccessDurationSettings,
|
|
18
|
+
"validAccessScopeSettings": args.validAccessScopeSettings,
|
|
19
|
+
"validRequesterSettings": args.validRequesterSettings,
|
|
20
|
+
}, opts);
|
|
21
|
+
}
|
|
22
|
+
exports.getRequestSettingResource = getRequestSettingResource;
|
|
23
|
+
/**
|
|
24
|
+
* Retrieves the request settings for a resource.
|
|
25
|
+
*/
|
|
26
|
+
function getRequestSettingResourceOutput(args, opts) {
|
|
27
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
28
|
+
return pulumi.runtime.invokeOutput("okta:index/getRequestSettingResource:getRequestSettingResource", {
|
|
29
|
+
"id": args.id,
|
|
30
|
+
"requestOnBehalfOfSettings": args.requestOnBehalfOfSettings,
|
|
31
|
+
"riskSettings": args.riskSettings,
|
|
32
|
+
"validAccessDurationSettings": args.validAccessDurationSettings,
|
|
33
|
+
"validAccessScopeSettings": args.validAccessScopeSettings,
|
|
34
|
+
"validRequesterSettings": args.validRequesterSettings,
|
|
35
|
+
}, opts);
|
|
36
|
+
}
|
|
37
|
+
exports.getRequestSettingResourceOutput = getRequestSettingResourceOutput;
|
|
38
|
+
//# sourceMappingURL=getRequestSettingResource.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRequestSettingResource.js","sourceRoot":"","sources":["../getRequestSettingResource.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,2BAA2B,EAAE,IAAI,CAAC,yBAAyB;QAC3D,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;KACxD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,8DAUC;AA6DD;;GAEG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAAiC;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gEAAgE,EAAE;QACjG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,2BAA2B,EAAE,IAAI,CAAC,yBAAyB;QAC3D,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,6BAA6B,EAAE,IAAI,CAAC,2BAA2B;QAC/D,0BAA0B,EAAE,IAAI,CAAC,wBAAwB;QACzD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;KACxD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,0EAUC"}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
export declare function getRequestV2(args: GetRequestV2Args, opts?: pulumi.InvokeOptions): Promise<GetRequestV2Result>;
|
|
5
|
+
/**
|
|
6
|
+
* A collection of arguments for invoking getRequestV2.
|
|
7
|
+
*/
|
|
8
|
+
export interface GetRequestV2Args {
|
|
9
|
+
id: string;
|
|
10
|
+
requested?: inputs.GetRequestV2Requested;
|
|
11
|
+
requestedBy?: inputs.GetRequestV2RequestedBy;
|
|
12
|
+
requestedFor?: inputs.GetRequestV2RequestedFor;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* A collection of values returned by getRequestV2.
|
|
16
|
+
*/
|
|
17
|
+
export interface GetRequestV2Result {
|
|
18
|
+
readonly created: string;
|
|
19
|
+
readonly createdBy: string;
|
|
20
|
+
readonly id: string;
|
|
21
|
+
readonly lastUpdated: string;
|
|
22
|
+
readonly lastUpdatedBy: string;
|
|
23
|
+
readonly requested?: outputs.GetRequestV2Requested;
|
|
24
|
+
readonly requestedBy?: outputs.GetRequestV2RequestedBy;
|
|
25
|
+
readonly requestedFor?: outputs.GetRequestV2RequestedFor;
|
|
26
|
+
readonly status: string;
|
|
27
|
+
}
|
|
28
|
+
export declare function getRequestV2Output(args: GetRequestV2OutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetRequestV2Result>;
|
|
29
|
+
/**
|
|
30
|
+
* A collection of arguments for invoking getRequestV2.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetRequestV2OutputArgs {
|
|
33
|
+
id: pulumi.Input<string>;
|
|
34
|
+
requested?: pulumi.Input<inputs.GetRequestV2RequestedArgs>;
|
|
35
|
+
requestedBy?: pulumi.Input<inputs.GetRequestV2RequestedByArgs>;
|
|
36
|
+
requestedFor?: pulumi.Input<inputs.GetRequestV2RequestedForArgs>;
|
|
37
|
+
}
|
package/getRequestV2.js
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getRequestV2Output = exports.getRequestV2 = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
function getRequestV2(args, opts) {
|
|
9
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
10
|
+
return pulumi.runtime.invoke("okta:index/getRequestV2:getRequestV2", {
|
|
11
|
+
"id": args.id,
|
|
12
|
+
"requested": args.requested,
|
|
13
|
+
"requestedBy": args.requestedBy,
|
|
14
|
+
"requestedFor": args.requestedFor,
|
|
15
|
+
}, opts);
|
|
16
|
+
}
|
|
17
|
+
exports.getRequestV2 = getRequestV2;
|
|
18
|
+
function getRequestV2Output(args, opts) {
|
|
19
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
20
|
+
return pulumi.runtime.invokeOutput("okta:index/getRequestV2:getRequestV2", {
|
|
21
|
+
"id": args.id,
|
|
22
|
+
"requested": args.requested,
|
|
23
|
+
"requestedBy": args.requestedBy,
|
|
24
|
+
"requestedFor": args.requestedFor,
|
|
25
|
+
}, opts);
|
|
26
|
+
}
|
|
27
|
+
exports.getRequestV2Output = getRequestV2Output;
|
|
28
|
+
//# sourceMappingURL=getRequestV2.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getRequestV2.js","sourceRoot":"","sources":["../getRequestV2.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,oCAQC;AA0BD,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sCAAsC,EAAE;QACvE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gDAQC"}
|
package/getReview.d.ts
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Get the reviews belonging to a campaign
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as okta from "@pulumi/okta";
|
|
12
|
+
*
|
|
13
|
+
* const test = okta.getReview({});
|
|
14
|
+
* ```
|
|
15
|
+
*
|
|
16
|
+
* ## Required:
|
|
17
|
+
*
|
|
18
|
+
* - `email` (String) The Okta user's email address.
|
|
19
|
+
* - `id` (String) The Okta user id.
|
|
20
|
+
* - `status` (String) The status of the principal's profile. Enum: `INACTIVE`, `ACTIVE`.
|
|
21
|
+
*
|
|
22
|
+
* ## Optional:
|
|
23
|
+
*
|
|
24
|
+
* - `firstName` (String) The Okta user's first name.
|
|
25
|
+
* - `lastName` (String) The Okta user's last name
|
|
26
|
+
* - `login` (String) The Okta user's login
|
|
27
|
+
*/
|
|
28
|
+
export declare function getReview(args: GetReviewArgs, opts?: pulumi.InvokeOptions): Promise<GetReviewResult>;
|
|
29
|
+
/**
|
|
30
|
+
* A collection of arguments for invoking getReview.
|
|
31
|
+
*/
|
|
32
|
+
export interface GetReviewArgs {
|
|
33
|
+
allReviewerLevels?: inputs.GetReviewAllReviewerLevel[];
|
|
34
|
+
entitlementBundle?: inputs.GetReviewEntitlementBundle;
|
|
35
|
+
entitlementValue?: inputs.GetReviewEntitlementValue;
|
|
36
|
+
/**
|
|
37
|
+
* The ID of review.
|
|
38
|
+
*/
|
|
39
|
+
id: string;
|
|
40
|
+
links?: inputs.GetReviewLinks;
|
|
41
|
+
note?: inputs.GetReviewNote;
|
|
42
|
+
/**
|
|
43
|
+
* A limited set of properties from the user profile who created the review.
|
|
44
|
+
*/
|
|
45
|
+
principalProfile?: inputs.GetReviewPrincipalProfile;
|
|
46
|
+
reviewerProfile?: inputs.GetReviewReviewerProfile;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* A collection of values returned by getReview.
|
|
50
|
+
*/
|
|
51
|
+
export interface GetReviewResult {
|
|
52
|
+
readonly allReviewerLevels?: outputs.GetReviewAllReviewerLevel[];
|
|
53
|
+
/**
|
|
54
|
+
* ID of the Campaign.
|
|
55
|
+
*/
|
|
56
|
+
readonly campaignId: string;
|
|
57
|
+
/**
|
|
58
|
+
* The ISO 8601 formatted date and time when the resource was created.
|
|
59
|
+
*/
|
|
60
|
+
readonly created: string;
|
|
61
|
+
/**
|
|
62
|
+
* The id of user who created the resource.
|
|
63
|
+
*/
|
|
64
|
+
readonly createdBy: string;
|
|
65
|
+
/**
|
|
66
|
+
* Identifies the reviewer level of each reviews during access certification.
|
|
67
|
+
*/
|
|
68
|
+
readonly currentReviewerLevel: string;
|
|
69
|
+
/**
|
|
70
|
+
* The ISO 8601 formatted date and time when the object status was decided.
|
|
71
|
+
*/
|
|
72
|
+
readonly decided: string;
|
|
73
|
+
/**
|
|
74
|
+
* The decision taken by the reviewer. Will be `UNASSIGNED` if no decision is made.
|
|
75
|
+
*/
|
|
76
|
+
readonly decision: string;
|
|
77
|
+
readonly entitlementBundle?: outputs.GetReviewEntitlementBundle;
|
|
78
|
+
readonly entitlementValue?: outputs.GetReviewEntitlementValue;
|
|
79
|
+
/**
|
|
80
|
+
* The ID of review.
|
|
81
|
+
*/
|
|
82
|
+
readonly id: string;
|
|
83
|
+
/**
|
|
84
|
+
* The ISO 8601 formatted date and time when the object was last updated.
|
|
85
|
+
*/
|
|
86
|
+
readonly lastUpdated: string;
|
|
87
|
+
/**
|
|
88
|
+
* The id of user who last updated the object.
|
|
89
|
+
*/
|
|
90
|
+
readonly lastUpdatedBy: string;
|
|
91
|
+
readonly links?: outputs.GetReviewLinks;
|
|
92
|
+
readonly note?: outputs.GetReviewNote;
|
|
93
|
+
/**
|
|
94
|
+
* A limited set of properties from the user profile who created the review.
|
|
95
|
+
*/
|
|
96
|
+
readonly principalProfile?: outputs.GetReviewPrincipalProfile;
|
|
97
|
+
/**
|
|
98
|
+
* Enum: `ERROR`, `MANUAL`, `NONE`, `OPEN`, `SUCCESS`.
|
|
99
|
+
*/
|
|
100
|
+
readonly remediationStatus: string;
|
|
101
|
+
/**
|
|
102
|
+
* Resource ID for the Review.
|
|
103
|
+
*/
|
|
104
|
+
readonly resourceId: string;
|
|
105
|
+
readonly reviewerProfile?: outputs.GetReviewReviewerProfile;
|
|
106
|
+
/**
|
|
107
|
+
* The type of reviewer to which the review is assigned.
|
|
108
|
+
*/
|
|
109
|
+
readonly reviewerType: string;
|
|
110
|
+
}
|
|
111
|
+
/**
|
|
112
|
+
* Get the reviews belonging to a campaign
|
|
113
|
+
*
|
|
114
|
+
* ## Example Usage
|
|
115
|
+
*
|
|
116
|
+
* ```typescript
|
|
117
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
118
|
+
* import * as okta from "@pulumi/okta";
|
|
119
|
+
*
|
|
120
|
+
* const test = okta.getReview({});
|
|
121
|
+
* ```
|
|
122
|
+
*
|
|
123
|
+
* ## Required:
|
|
124
|
+
*
|
|
125
|
+
* - `email` (String) The Okta user's email address.
|
|
126
|
+
* - `id` (String) The Okta user id.
|
|
127
|
+
* - `status` (String) The status of the principal's profile. Enum: `INACTIVE`, `ACTIVE`.
|
|
128
|
+
*
|
|
129
|
+
* ## Optional:
|
|
130
|
+
*
|
|
131
|
+
* - `firstName` (String) The Okta user's first name.
|
|
132
|
+
* - `lastName` (String) The Okta user's last name
|
|
133
|
+
* - `login` (String) The Okta user's login
|
|
134
|
+
*/
|
|
135
|
+
export declare function getReviewOutput(args: GetReviewOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetReviewResult>;
|
|
136
|
+
/**
|
|
137
|
+
* A collection of arguments for invoking getReview.
|
|
138
|
+
*/
|
|
139
|
+
export interface GetReviewOutputArgs {
|
|
140
|
+
allReviewerLevels?: pulumi.Input<pulumi.Input<inputs.GetReviewAllReviewerLevelArgs>[]>;
|
|
141
|
+
entitlementBundle?: pulumi.Input<inputs.GetReviewEntitlementBundleArgs>;
|
|
142
|
+
entitlementValue?: pulumi.Input<inputs.GetReviewEntitlementValueArgs>;
|
|
143
|
+
/**
|
|
144
|
+
* The ID of review.
|
|
145
|
+
*/
|
|
146
|
+
id: pulumi.Input<string>;
|
|
147
|
+
links?: pulumi.Input<inputs.GetReviewLinksArgs>;
|
|
148
|
+
note?: pulumi.Input<inputs.GetReviewNoteArgs>;
|
|
149
|
+
/**
|
|
150
|
+
* A limited set of properties from the user profile who created the review.
|
|
151
|
+
*/
|
|
152
|
+
principalProfile?: pulumi.Input<inputs.GetReviewPrincipalProfileArgs>;
|
|
153
|
+
reviewerProfile?: pulumi.Input<inputs.GetReviewReviewerProfileArgs>;
|
|
154
|
+
}
|