@pulumi/okta 3.13.0 → 3.15.0-alpha.1660680821
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/adminRoleCustom.d.ts +21 -6
- package/adminRoleCustom.js.map +1 -1
- package/app/oauth.d.ts +12 -0
- package/app/oauth.js +2 -0
- package/app/oauth.js.map +1 -1
- package/app/saml.d.ts +31 -36
- package/app/saml.js +6 -0
- package/app/saml.js.map +1 -1
- package/appSignonPolicy.d.ts +106 -0
- package/appSignonPolicy.js +100 -0
- package/appSignonPolicy.js.map +1 -0
- package/appSignonPolicyRule.d.ts +12 -0
- package/appSignonPolicyRule.js +2 -0
- package/appSignonPolicyRule.js.map +1 -1
- package/appUserSchemaProperty.d.ts +0 -3
- package/appUserSchemaProperty.js +0 -3
- package/appUserSchemaProperty.js.map +1 -1
- package/auth/serverPolicyClaim.d.ts +0 -4
- package/auth/serverPolicyClaim.js +0 -4
- package/auth/serverPolicyClaim.js.map +1 -1
- package/auth/serverPolicyRule.d.ts +0 -4
- package/auth/serverPolicyRule.js +0 -4
- package/auth/serverPolicyRule.js.map +1 -1
- package/authServerDefault.d.ts +3 -3
- package/authenticator.d.ts +3 -3
- package/config/vars.d.ts +12 -0
- package/config/vars.js +18 -0
- package/config/vars.js.map +1 -1
- package/deprecated/oauthApp.d.ts +12 -0
- package/deprecated/oauthApp.js +2 -0
- package/deprecated/oauthApp.js.map +1 -1
- package/deprecated/samlApp.d.ts +28 -0
- package/deprecated/samlApp.js +6 -0
- package/deprecated/samlApp.js.map +1 -1
- package/domainCertificate.d.ts +1 -1
- package/domainCertificate.js +1 -1
- package/groupMemberships.d.ts +17 -7
- package/groupMemberships.js +7 -7
- package/groupMemberships.js.map +1 -1
- package/groupSchemaProperty.d.ts +0 -4
- package/groupSchemaProperty.js +0 -4
- package/groupSchemaProperty.js.map +1 -1
- package/index.d.ts +1 -0
- package/index.js +5 -0
- package/index.js.map +1 -1
- package/package.json +4 -3
- package/package.json.bak +2 -1
- package/package.json.dev +4 -3
- package/policy/mfa.d.ts +10 -0
- package/policy/mfa.js +10 -0
- package/policy/mfa.js.map +1 -1
- package/policyMfaDefault.d.ts +10 -0
- package/policyMfaDefault.js +10 -0
- package/policyMfaDefault.js.map +1 -1
- package/provider.d.ts +24 -0
- package/provider.js +3 -0
- package/provider.js.map +1 -1
- package/types/input.d.ts +60 -0
- package/types/output.d.ts +94 -34
- package/user/getUser.d.ts +43 -34
- package/user/getUser.js +1 -0
- package/user/getUser.js.map +1 -1
- package/user/getUsers.d.ts +19 -0
- package/user/getUsers.js +3 -0
- package/user/getUsers.js.map +1 -1
- package/userSchemaProperty.d.ts +0 -4
- package/userSchemaProperty.js +0 -4
- package/userSchemaProperty.js.map +1 -1
package/user/getUser.d.ts
CHANGED
|
@@ -26,6 +26,10 @@ export interface GetUserArgs {
|
|
|
26
26
|
* Given multiple search elements they will be compounded together with the op. Default is `and`, `or` is also valid.
|
|
27
27
|
*/
|
|
28
28
|
compoundSearchOperator?: string;
|
|
29
|
+
/**
|
|
30
|
+
* Force delay of the user read by N seconds. Useful when eventual consistency of user information needs to be allowed for.
|
|
31
|
+
*/
|
|
32
|
+
delayReadSeconds?: string;
|
|
29
33
|
/**
|
|
30
34
|
* Map of search criteria. It supports the following properties.
|
|
31
35
|
*/
|
|
@@ -52,56 +56,57 @@ export interface GetUserResult {
|
|
|
52
56
|
*/
|
|
53
57
|
readonly adminRoles: string[];
|
|
54
58
|
/**
|
|
55
|
-
* user
|
|
59
|
+
* City or locality component of user's address.
|
|
56
60
|
*/
|
|
57
61
|
readonly city: string;
|
|
58
62
|
readonly compoundSearchOperator?: string;
|
|
59
63
|
/**
|
|
60
|
-
*
|
|
64
|
+
* Name of a cost center assigned to user.
|
|
61
65
|
*/
|
|
62
66
|
readonly costCenter: string;
|
|
63
67
|
/**
|
|
64
|
-
* user
|
|
68
|
+
* Country name component of user's address.
|
|
65
69
|
*/
|
|
66
70
|
readonly countryCode: string;
|
|
67
71
|
/**
|
|
68
|
-
*
|
|
72
|
+
* Raw JSON containing all custom profile attributes.
|
|
69
73
|
*/
|
|
70
74
|
readonly customProfileAttributes: string;
|
|
75
|
+
readonly delayReadSeconds?: string;
|
|
71
76
|
/**
|
|
72
|
-
* user
|
|
77
|
+
* Name of user's department.
|
|
73
78
|
*/
|
|
74
79
|
readonly department: string;
|
|
75
80
|
/**
|
|
76
|
-
* user
|
|
81
|
+
* Name of the user, suitable for display to end users.
|
|
77
82
|
*/
|
|
78
83
|
readonly displayName: string;
|
|
79
84
|
/**
|
|
80
|
-
* user
|
|
85
|
+
* Name of user's division.
|
|
81
86
|
*/
|
|
82
87
|
readonly division: string;
|
|
83
88
|
/**
|
|
84
|
-
*
|
|
89
|
+
* Primary email address of user.
|
|
85
90
|
*/
|
|
86
91
|
readonly email: string;
|
|
87
92
|
/**
|
|
88
|
-
*
|
|
93
|
+
* Organization or company assigned unique identifier for the user.
|
|
89
94
|
*/
|
|
90
95
|
readonly employeeNumber: string;
|
|
91
96
|
/**
|
|
92
|
-
*
|
|
97
|
+
* Given name of the user.
|
|
93
98
|
*/
|
|
94
99
|
readonly firstName: string;
|
|
95
100
|
/**
|
|
96
|
-
* user
|
|
101
|
+
* Groups user belongs to.
|
|
97
102
|
*/
|
|
98
103
|
readonly groupMemberships: string[];
|
|
99
104
|
/**
|
|
100
|
-
* user
|
|
105
|
+
* Honorific prefix(es) of the user, or title in most Western languages.
|
|
101
106
|
*/
|
|
102
107
|
readonly honorificPrefix: string;
|
|
103
108
|
/**
|
|
104
|
-
*
|
|
109
|
+
* Honorific suffix(es) of the user.
|
|
105
110
|
*/
|
|
106
111
|
readonly honorificSuffix: string;
|
|
107
112
|
/**
|
|
@@ -109,91 +114,91 @@ export interface GetUserResult {
|
|
|
109
114
|
*/
|
|
110
115
|
readonly id: string;
|
|
111
116
|
/**
|
|
112
|
-
*
|
|
117
|
+
* Family name of the user.
|
|
113
118
|
*/
|
|
114
119
|
readonly lastName: string;
|
|
115
120
|
/**
|
|
116
|
-
*
|
|
121
|
+
* User's default location for purposes of localizing items such as currency, date time format, numerical representations, etc.
|
|
117
122
|
*/
|
|
118
123
|
readonly locale: string;
|
|
119
124
|
/**
|
|
120
|
-
*
|
|
125
|
+
* Unique identifier for the user.
|
|
121
126
|
*/
|
|
122
127
|
readonly login: string;
|
|
123
128
|
/**
|
|
124
|
-
* user
|
|
129
|
+
* Display name of the user's manager.
|
|
125
130
|
*/
|
|
126
131
|
readonly manager: string;
|
|
127
132
|
/**
|
|
128
|
-
* user
|
|
133
|
+
* `id` of a user's manager.
|
|
129
134
|
*/
|
|
130
135
|
readonly managerId: string;
|
|
131
136
|
/**
|
|
132
|
-
*
|
|
137
|
+
* Middle name(s) of the user.
|
|
133
138
|
*/
|
|
134
139
|
readonly middleName: string;
|
|
135
140
|
/**
|
|
136
|
-
*
|
|
141
|
+
* Mobile phone number of user.
|
|
137
142
|
*/
|
|
138
143
|
readonly mobilePhone: string;
|
|
139
144
|
/**
|
|
140
|
-
* user
|
|
145
|
+
* Casual way to address the user in real life.
|
|
141
146
|
*/
|
|
142
147
|
readonly nickName: string;
|
|
143
148
|
/**
|
|
144
|
-
* user
|
|
149
|
+
* Name of user's organization.
|
|
145
150
|
*/
|
|
146
151
|
readonly organization: string;
|
|
147
152
|
/**
|
|
148
|
-
* user
|
|
153
|
+
* Mailing address component of user's address.
|
|
149
154
|
*/
|
|
150
155
|
readonly postalAddress: string;
|
|
151
156
|
/**
|
|
152
|
-
*
|
|
157
|
+
* User's preferred written or spoken languages.
|
|
153
158
|
*/
|
|
154
159
|
readonly preferredLanguage: string;
|
|
155
160
|
/**
|
|
156
|
-
* user
|
|
161
|
+
* Primary phone number of user such as home number.
|
|
157
162
|
*/
|
|
158
163
|
readonly primaryPhone: string;
|
|
159
164
|
/**
|
|
160
|
-
* user profile
|
|
165
|
+
* URL of user's online profile (e.g. a web page).
|
|
161
166
|
*/
|
|
162
167
|
readonly profileUrl: string;
|
|
163
168
|
readonly searches?: outputs.user.GetUserSearch[];
|
|
164
169
|
/**
|
|
165
|
-
* user
|
|
170
|
+
* Secondary email address of user typically used for account recovery.
|
|
166
171
|
*/
|
|
167
172
|
readonly secondEmail: string;
|
|
168
173
|
readonly skipGroups?: boolean;
|
|
169
174
|
readonly skipRoles?: boolean;
|
|
170
175
|
/**
|
|
171
|
-
* user
|
|
176
|
+
* State or region component of user's address (region).
|
|
172
177
|
*/
|
|
173
178
|
readonly state: string;
|
|
174
179
|
/**
|
|
175
|
-
*
|
|
180
|
+
* Current status of user.
|
|
176
181
|
*/
|
|
177
182
|
readonly status: string;
|
|
178
183
|
/**
|
|
179
|
-
* user
|
|
184
|
+
* Full street address component of user's address.
|
|
180
185
|
*/
|
|
181
186
|
readonly streetAddress: string;
|
|
182
187
|
/**
|
|
183
|
-
*
|
|
188
|
+
* User's time zone.
|
|
184
189
|
*/
|
|
185
190
|
readonly timezone: string;
|
|
186
191
|
/**
|
|
187
|
-
*
|
|
192
|
+
* User's title, such as "Vice President".
|
|
188
193
|
*/
|
|
189
194
|
readonly title: string;
|
|
190
195
|
readonly userId?: string;
|
|
191
196
|
/**
|
|
192
|
-
* user
|
|
197
|
+
* Used to describe the organization to user relationship such as "Employee" or "Contractor".
|
|
193
198
|
*/
|
|
194
199
|
readonly userType: string;
|
|
195
200
|
/**
|
|
196
|
-
* user
|
|
201
|
+
* Zipcode or postal code component of user's address (postalCode)
|
|
197
202
|
*/
|
|
198
203
|
readonly zipCode: string;
|
|
199
204
|
}
|
|
@@ -206,6 +211,10 @@ export interface GetUserOutputArgs {
|
|
|
206
211
|
* Given multiple search elements they will be compounded together with the op. Default is `and`, `or` is also valid.
|
|
207
212
|
*/
|
|
208
213
|
compoundSearchOperator?: pulumi.Input<string>;
|
|
214
|
+
/**
|
|
215
|
+
* Force delay of the user read by N seconds. Useful when eventual consistency of user information needs to be allowed for.
|
|
216
|
+
*/
|
|
217
|
+
delayReadSeconds?: pulumi.Input<string>;
|
|
209
218
|
/**
|
|
210
219
|
* Map of search criteria. It supports the following properties.
|
|
211
220
|
*/
|
package/user/getUser.js
CHANGED
|
@@ -30,6 +30,7 @@ function getUser(args, opts) {
|
|
|
30
30
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
31
31
|
return pulumi.runtime.invoke("okta:user/getUser:getUser", {
|
|
32
32
|
"compoundSearchOperator": args.compoundSearchOperator,
|
|
33
|
+
"delayReadSeconds": args.delayReadSeconds,
|
|
33
34
|
"searches": args.searches,
|
|
34
35
|
"skipGroups": args.skipGroups,
|
|
35
36
|
"skipRoles": args.skipRoles,
|
package/user/getUser.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../../user/getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,EAAE;QACtD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getUser.js","sourceRoot":"","sources":["../../user/getUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,OAAO,CAAC,IAAkB,EAAE,IAA2B;IACnE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2BAA2B,EAAE;QACtD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,0BAeC;AA4LD,SAAgB,aAAa,CAAC,IAAwB,EAAE,IAA2B;IAC/E,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3D,CAAC;AAFD,sCAEC"}
|
package/user/getUsers.d.ts
CHANGED
|
@@ -26,6 +26,7 @@ import { input as inputs, output as outputs } from "../types";
|
|
|
26
26
|
* const exampleUsers = okta.user.getUsersOutput({
|
|
27
27
|
* groupId: exampleGroup.id,
|
|
28
28
|
* includeGroups: true,
|
|
29
|
+
* includeRoles: true,
|
|
29
30
|
* });
|
|
30
31
|
* ```
|
|
31
32
|
*/
|
|
@@ -38,6 +39,10 @@ export interface GetUsersArgs {
|
|
|
38
39
|
* Given multiple search elements they will be compounded together with the op. Default is `and`, `or` is also valid.
|
|
39
40
|
*/
|
|
40
41
|
compoundSearchOperator?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Force delay of the users read by N seconds. Useful when eventual consistency of users information needs to be allowed for; for instance, when administrator roles are known to have been applied.
|
|
44
|
+
*/
|
|
45
|
+
delayReadSeconds?: string;
|
|
41
46
|
/**
|
|
42
47
|
* Id of group used to find users based on membership.
|
|
43
48
|
*/
|
|
@@ -46,6 +51,10 @@ export interface GetUsersArgs {
|
|
|
46
51
|
* Fetch each user's group memberships. Defaults to `false`, in which case the `groupMemberships` user attribute will be empty.
|
|
47
52
|
*/
|
|
48
53
|
includeGroups?: boolean;
|
|
54
|
+
/**
|
|
55
|
+
* Fetch each user's administrator roles. Defaults to `false`, in which case the `adminRoles` user attribute will be empty.
|
|
56
|
+
*/
|
|
57
|
+
includeRoles?: boolean;
|
|
49
58
|
/**
|
|
50
59
|
* Map of search criteria. It supports the following properties.
|
|
51
60
|
*/
|
|
@@ -56,12 +65,14 @@ export interface GetUsersArgs {
|
|
|
56
65
|
*/
|
|
57
66
|
export interface GetUsersResult {
|
|
58
67
|
readonly compoundSearchOperator?: string;
|
|
68
|
+
readonly delayReadSeconds?: string;
|
|
59
69
|
readonly groupId?: string;
|
|
60
70
|
/**
|
|
61
71
|
* The provider-assigned unique ID for this managed resource.
|
|
62
72
|
*/
|
|
63
73
|
readonly id: string;
|
|
64
74
|
readonly includeGroups?: boolean;
|
|
75
|
+
readonly includeRoles?: boolean;
|
|
65
76
|
readonly searches?: outputs.user.GetUsersSearch[];
|
|
66
77
|
/**
|
|
67
78
|
* collection of users retrieved from Okta with the following properties.
|
|
@@ -77,6 +88,10 @@ export interface GetUsersOutputArgs {
|
|
|
77
88
|
* Given multiple search elements they will be compounded together with the op. Default is `and`, `or` is also valid.
|
|
78
89
|
*/
|
|
79
90
|
compoundSearchOperator?: pulumi.Input<string>;
|
|
91
|
+
/**
|
|
92
|
+
* Force delay of the users read by N seconds. Useful when eventual consistency of users information needs to be allowed for; for instance, when administrator roles are known to have been applied.
|
|
93
|
+
*/
|
|
94
|
+
delayReadSeconds?: pulumi.Input<string>;
|
|
80
95
|
/**
|
|
81
96
|
* Id of group used to find users based on membership.
|
|
82
97
|
*/
|
|
@@ -85,6 +100,10 @@ export interface GetUsersOutputArgs {
|
|
|
85
100
|
* Fetch each user's group memberships. Defaults to `false`, in which case the `groupMemberships` user attribute will be empty.
|
|
86
101
|
*/
|
|
87
102
|
includeGroups?: pulumi.Input<boolean>;
|
|
103
|
+
/**
|
|
104
|
+
* Fetch each user's administrator roles. Defaults to `false`, in which case the `adminRoles` user attribute will be empty.
|
|
105
|
+
*/
|
|
106
|
+
includeRoles?: pulumi.Input<boolean>;
|
|
88
107
|
/**
|
|
89
108
|
* Map of search criteria. It supports the following properties.
|
|
90
109
|
*/
|
package/user/getUsers.js
CHANGED
|
@@ -31,6 +31,7 @@ const utilities = require("../utilities");
|
|
|
31
31
|
* const exampleUsers = okta.user.getUsersOutput({
|
|
32
32
|
* groupId: exampleGroup.id,
|
|
33
33
|
* includeGroups: true,
|
|
34
|
+
* includeRoles: true,
|
|
34
35
|
* });
|
|
35
36
|
* ```
|
|
36
37
|
*/
|
|
@@ -42,8 +43,10 @@ function getUsers(args, opts) {
|
|
|
42
43
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
43
44
|
return pulumi.runtime.invoke("okta:user/getUsers:getUsers", {
|
|
44
45
|
"compoundSearchOperator": args.compoundSearchOperator,
|
|
46
|
+
"delayReadSeconds": args.delayReadSeconds,
|
|
45
47
|
"groupId": args.groupId,
|
|
46
48
|
"includeGroups": args.includeGroups,
|
|
49
|
+
"includeRoles": args.includeRoles,
|
|
47
50
|
"searches": args.searches,
|
|
48
51
|
}, opts);
|
|
49
52
|
}
|
package/user/getUsers.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getUsers.js","sourceRoot":"","sources":["../../user/getUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getUsers.js","sourceRoot":"","sources":["../../user/getUsers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,SAAgB,QAAQ,CAAC,IAAmB,EAAE,IAA2B;IACrE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,CAAC,IAAI,EAAE;QACP,IAAI,GAAG,EAAE,CAAA;KACZ;IAED,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;IACnE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6BAA6B,EAAE;QACxD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAfD,4BAeC;AAoDD,SAAgB,cAAc,CAAC,IAAyB,EAAE,IAA2B;IACjF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,QAAQ,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC5D,CAAC;AAFD,wCAEC"}
|
package/userSchemaProperty.d.ts
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import { input as inputs, output as outputs } from "./types";
|
|
3
3
|
/**
|
|
4
|
-
* Creates a User Schema property.
|
|
5
|
-
*
|
|
6
|
-
* This resource allows you to create and configure a custom user schema property.
|
|
7
|
-
*
|
|
8
4
|
* ## Example Usage
|
|
9
5
|
*
|
|
10
6
|
* ```typescript
|
package/userSchemaProperty.js
CHANGED
|
@@ -6,10 +6,6 @@ exports.UserSchemaProperty = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Creates a User Schema property.
|
|
10
|
-
*
|
|
11
|
-
* This resource allows you to create and configure a custom user schema property.
|
|
12
|
-
*
|
|
13
9
|
* ## Example Usage
|
|
14
10
|
*
|
|
15
11
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"userSchemaProperty.js","sourceRoot":"","sources":["../userSchemaProperty.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"userSchemaProperty.js","sourceRoot":"","sources":["../userSchemaProperty.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAEzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+BG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IAyHzD,YAAY,IAAY,EAAE,WAA8D,EAAE,IAAmC;QACzH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAkD,CAAC;YACjE,cAAc,CAAC,YAAY,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,0BAA0B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChG,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACnE;aAAM;YACH,MAAM,IAAI,GAAG,WAAiD,CAAC;YAC/D,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,KAAK,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAClD,MAAM,IAAI,KAAK,CAAC,mCAAmC,CAAC,CAAC;aACxD;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACjD,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,YAAY,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,0BAA0B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,wBAAwB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,WAAW,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,SAAS,CAAC;YAChE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC,SAAS,CAAC;YACpE,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,OAAO,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,SAAS,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,kBAAkB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACvE,CAAC;IArLD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;;AA1BL,gDAuLC;AAzKG,gBAAgB;AACO,+BAAY,GAAG,kDAAkD,CAAC"}
|