@pulumi/okta 5.3.0-alpha.1759905974 → 6.0.0-alpha.1759958808
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
package/review.d.ts
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Manages reassignment of review.
|
|
4
|
+
*
|
|
5
|
+
* This resource allows you to reassign an already existing review.
|
|
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 = new okta.Review("test", {
|
|
14
|
+
* campaignId: "icizigd86iM9sOcbN1d6",
|
|
15
|
+
* reviewerId: "00unli90kor62oF5Z1d7",
|
|
16
|
+
* reviewIds: ["icrztblxbBFiVKepb1d6"],
|
|
17
|
+
* reviewerLevel: "FIRST",
|
|
18
|
+
* note: "John Smith is on leave for this month. His manager Tim will be the reviewer instead.",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* ## Import
|
|
23
|
+
*
|
|
24
|
+
* ```sh
|
|
25
|
+
* $ pulumi import okta:index/review:Review example <review_id?
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
export declare class Review extends pulumi.CustomResource {
|
|
29
|
+
/**
|
|
30
|
+
* Get an existing Review resource's state with the given name, ID, and optional extra
|
|
31
|
+
* properties used to qualify the lookup.
|
|
32
|
+
*
|
|
33
|
+
* @param name The _unique_ name of the resulting resource.
|
|
34
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
35
|
+
* @param state Any extra arguments used during the lookup.
|
|
36
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
37
|
+
*/
|
|
38
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ReviewState, opts?: pulumi.CustomResourceOptions): Review;
|
|
39
|
+
/**
|
|
40
|
+
* Returns true if the given object is an instance of Review. This is designed to work even
|
|
41
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
42
|
+
*/
|
|
43
|
+
static isInstance(obj: any): obj is Review;
|
|
44
|
+
/**
|
|
45
|
+
* The id of the campaign.
|
|
46
|
+
*/
|
|
47
|
+
readonly campaignId: pulumi.Output<string>;
|
|
48
|
+
/**
|
|
49
|
+
* The ISO 8601 formatted date and time when the resource was created
|
|
50
|
+
*/
|
|
51
|
+
readonly created: pulumi.Output<string>;
|
|
52
|
+
/**
|
|
53
|
+
* The id of user who created the resource.
|
|
54
|
+
*/
|
|
55
|
+
readonly createdBy: pulumi.Output<string>;
|
|
56
|
+
/**
|
|
57
|
+
* The decision of the reviewer.
|
|
58
|
+
*/
|
|
59
|
+
readonly decision: pulumi.Output<string>;
|
|
60
|
+
/**
|
|
61
|
+
* The ISO 8601 formatted date and time when the object was last updated.
|
|
62
|
+
*/
|
|
63
|
+
readonly lastUpdated: pulumi.Output<string>;
|
|
64
|
+
/**
|
|
65
|
+
* The id of user who last updated the object.
|
|
66
|
+
*/
|
|
67
|
+
readonly lastUpdatedBy: pulumi.Output<string>;
|
|
68
|
+
/**
|
|
69
|
+
* A note to justify the reassignment decision for the specified review.
|
|
70
|
+
*/
|
|
71
|
+
readonly note: pulumi.Output<string>;
|
|
72
|
+
readonly resourceId: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* A list of reviews (review id values) that are reassigned to the new reviewer.
|
|
75
|
+
*/
|
|
76
|
+
readonly reviewIds: pulumi.Output<string[]>;
|
|
77
|
+
/**
|
|
78
|
+
* The Okta user id of the new reviewer.
|
|
79
|
+
*/
|
|
80
|
+
readonly reviewerId: pulumi.Output<string>;
|
|
81
|
+
/**
|
|
82
|
+
* Identifies the reviewer level of each reviews during access certification. Applicable for multi level campaigns only.
|
|
83
|
+
*/
|
|
84
|
+
readonly reviewerLevel: pulumi.Output<string | undefined>;
|
|
85
|
+
/**
|
|
86
|
+
* The type of reviewer to which the review is assigned.
|
|
87
|
+
*/
|
|
88
|
+
readonly reviewerType: pulumi.Output<string>;
|
|
89
|
+
/**
|
|
90
|
+
* Create a Review resource with the given unique name, arguments, and options.
|
|
91
|
+
*
|
|
92
|
+
* @param name The _unique_ name of the resource.
|
|
93
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
94
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
95
|
+
*/
|
|
96
|
+
constructor(name: string, args: ReviewArgs, opts?: pulumi.CustomResourceOptions);
|
|
97
|
+
}
|
|
98
|
+
/**
|
|
99
|
+
* Input properties used for looking up and filtering Review resources.
|
|
100
|
+
*/
|
|
101
|
+
export interface ReviewState {
|
|
102
|
+
/**
|
|
103
|
+
* The id of the campaign.
|
|
104
|
+
*/
|
|
105
|
+
campaignId?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* The ISO 8601 formatted date and time when the resource was created
|
|
108
|
+
*/
|
|
109
|
+
created?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* The id of user who created the resource.
|
|
112
|
+
*/
|
|
113
|
+
createdBy?: pulumi.Input<string>;
|
|
114
|
+
/**
|
|
115
|
+
* The decision of the reviewer.
|
|
116
|
+
*/
|
|
117
|
+
decision?: pulumi.Input<string>;
|
|
118
|
+
/**
|
|
119
|
+
* The ISO 8601 formatted date and time when the object was last updated.
|
|
120
|
+
*/
|
|
121
|
+
lastUpdated?: pulumi.Input<string>;
|
|
122
|
+
/**
|
|
123
|
+
* The id of user who last updated the object.
|
|
124
|
+
*/
|
|
125
|
+
lastUpdatedBy?: pulumi.Input<string>;
|
|
126
|
+
/**
|
|
127
|
+
* A note to justify the reassignment decision for the specified review.
|
|
128
|
+
*/
|
|
129
|
+
note?: pulumi.Input<string>;
|
|
130
|
+
resourceId?: pulumi.Input<string>;
|
|
131
|
+
/**
|
|
132
|
+
* A list of reviews (review id values) that are reassigned to the new reviewer.
|
|
133
|
+
*/
|
|
134
|
+
reviewIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
135
|
+
/**
|
|
136
|
+
* The Okta user id of the new reviewer.
|
|
137
|
+
*/
|
|
138
|
+
reviewerId?: pulumi.Input<string>;
|
|
139
|
+
/**
|
|
140
|
+
* Identifies the reviewer level of each reviews during access certification. Applicable for multi level campaigns only.
|
|
141
|
+
*/
|
|
142
|
+
reviewerLevel?: pulumi.Input<string>;
|
|
143
|
+
/**
|
|
144
|
+
* The type of reviewer to which the review is assigned.
|
|
145
|
+
*/
|
|
146
|
+
reviewerType?: pulumi.Input<string>;
|
|
147
|
+
}
|
|
148
|
+
/**
|
|
149
|
+
* The set of arguments for constructing a Review resource.
|
|
150
|
+
*/
|
|
151
|
+
export interface ReviewArgs {
|
|
152
|
+
/**
|
|
153
|
+
* The id of the campaign.
|
|
154
|
+
*/
|
|
155
|
+
campaignId: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* A note to justify the reassignment decision for the specified review.
|
|
158
|
+
*/
|
|
159
|
+
note: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* A list of reviews (review id values) that are reassigned to the new reviewer.
|
|
162
|
+
*/
|
|
163
|
+
reviewIds: pulumi.Input<pulumi.Input<string>[]>;
|
|
164
|
+
/**
|
|
165
|
+
* The Okta user id of the new reviewer.
|
|
166
|
+
*/
|
|
167
|
+
reviewerId: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* Identifies the reviewer level of each reviews during access certification. Applicable for multi level campaigns only.
|
|
170
|
+
*/
|
|
171
|
+
reviewerLevel?: pulumi.Input<string>;
|
|
172
|
+
}
|
package/review.js
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
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.Review = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manages reassignment of review.
|
|
10
|
+
*
|
|
11
|
+
* This resource allows you to reassign an already existing review.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as okta from "@pulumi/okta";
|
|
18
|
+
*
|
|
19
|
+
* const test = new okta.Review("test", {
|
|
20
|
+
* campaignId: "icizigd86iM9sOcbN1d6",
|
|
21
|
+
* reviewerId: "00unli90kor62oF5Z1d7",
|
|
22
|
+
* reviewIds: ["icrztblxbBFiVKepb1d6"],
|
|
23
|
+
* reviewerLevel: "FIRST",
|
|
24
|
+
* note: "John Smith is on leave for this month. His manager Tim will be the reviewer instead.",
|
|
25
|
+
* });
|
|
26
|
+
* ```
|
|
27
|
+
*
|
|
28
|
+
* ## Import
|
|
29
|
+
*
|
|
30
|
+
* ```sh
|
|
31
|
+
* $ pulumi import okta:index/review:Review example <review_id?
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
class Review extends pulumi.CustomResource {
|
|
35
|
+
/**
|
|
36
|
+
* Get an existing Review resource's state with the given name, ID, and optional extra
|
|
37
|
+
* properties used to qualify the lookup.
|
|
38
|
+
*
|
|
39
|
+
* @param name The _unique_ name of the resulting resource.
|
|
40
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
41
|
+
* @param state Any extra arguments used during the lookup.
|
|
42
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
43
|
+
*/
|
|
44
|
+
static get(name, id, state, opts) {
|
|
45
|
+
return new Review(name, state, { ...opts, id: id });
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* Returns true if the given object is an instance of Review. This is designed to work even
|
|
49
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
50
|
+
*/
|
|
51
|
+
static isInstance(obj) {
|
|
52
|
+
if (obj === undefined || obj === null) {
|
|
53
|
+
return false;
|
|
54
|
+
}
|
|
55
|
+
return obj['__pulumiType'] === Review.__pulumiType;
|
|
56
|
+
}
|
|
57
|
+
constructor(name, argsOrState, opts) {
|
|
58
|
+
let resourceInputs = {};
|
|
59
|
+
opts = opts || {};
|
|
60
|
+
if (opts.id) {
|
|
61
|
+
const state = argsOrState;
|
|
62
|
+
resourceInputs["campaignId"] = state?.campaignId;
|
|
63
|
+
resourceInputs["created"] = state?.created;
|
|
64
|
+
resourceInputs["createdBy"] = state?.createdBy;
|
|
65
|
+
resourceInputs["decision"] = state?.decision;
|
|
66
|
+
resourceInputs["lastUpdated"] = state?.lastUpdated;
|
|
67
|
+
resourceInputs["lastUpdatedBy"] = state?.lastUpdatedBy;
|
|
68
|
+
resourceInputs["note"] = state?.note;
|
|
69
|
+
resourceInputs["resourceId"] = state?.resourceId;
|
|
70
|
+
resourceInputs["reviewIds"] = state?.reviewIds;
|
|
71
|
+
resourceInputs["reviewerId"] = state?.reviewerId;
|
|
72
|
+
resourceInputs["reviewerLevel"] = state?.reviewerLevel;
|
|
73
|
+
resourceInputs["reviewerType"] = state?.reviewerType;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
const args = argsOrState;
|
|
77
|
+
if (args?.campaignId === undefined && !opts.urn) {
|
|
78
|
+
throw new Error("Missing required property 'campaignId'");
|
|
79
|
+
}
|
|
80
|
+
if (args?.note === undefined && !opts.urn) {
|
|
81
|
+
throw new Error("Missing required property 'note'");
|
|
82
|
+
}
|
|
83
|
+
if (args?.reviewIds === undefined && !opts.urn) {
|
|
84
|
+
throw new Error("Missing required property 'reviewIds'");
|
|
85
|
+
}
|
|
86
|
+
if (args?.reviewerId === undefined && !opts.urn) {
|
|
87
|
+
throw new Error("Missing required property 'reviewerId'");
|
|
88
|
+
}
|
|
89
|
+
resourceInputs["campaignId"] = args?.campaignId;
|
|
90
|
+
resourceInputs["note"] = args?.note;
|
|
91
|
+
resourceInputs["reviewIds"] = args?.reviewIds;
|
|
92
|
+
resourceInputs["reviewerId"] = args?.reviewerId;
|
|
93
|
+
resourceInputs["reviewerLevel"] = args?.reviewerLevel;
|
|
94
|
+
resourceInputs["created"] = undefined /*out*/;
|
|
95
|
+
resourceInputs["createdBy"] = undefined /*out*/;
|
|
96
|
+
resourceInputs["decision"] = undefined /*out*/;
|
|
97
|
+
resourceInputs["lastUpdated"] = undefined /*out*/;
|
|
98
|
+
resourceInputs["lastUpdatedBy"] = undefined /*out*/;
|
|
99
|
+
resourceInputs["resourceId"] = undefined /*out*/;
|
|
100
|
+
resourceInputs["reviewerType"] = undefined /*out*/;
|
|
101
|
+
}
|
|
102
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
103
|
+
super(Review.__pulumiType, name, resourceInputs, opts);
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
exports.Review = Review;
|
|
107
|
+
/** @internal */
|
|
108
|
+
Review.__pulumiType = 'okta:index/review:Review';
|
|
109
|
+
//# sourceMappingURL=review.js.map
|
package/review.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"review.js","sourceRoot":"","sources":["../review.ts"],"names":[],"mappings":"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"}
|