@pulumi/okta 4.7.0-alpha.1706747920 → 4.7.0-alpha.1706830451
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 +1 -1
- package/types/input.d.ts +23 -0
- package/types/output.d.ts +104 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/okta",
|
|
3
|
-
"version": "v4.7.0-alpha.
|
|
3
|
+
"version": "v4.7.0-alpha.1706830451+f68bdcdd",
|
|
4
4
|
"description": "A Pulumi package for creating and managing okta resources.. Based on terraform-provider-okta: version v4.6.3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
package/types/input.d.ts
CHANGED
|
@@ -177,6 +177,8 @@ export interface UserSchemaPropertyOneOf {
|
|
|
177
177
|
export declare namespace Index {
|
|
178
178
|
interface EmailDomainDnsValidationRecord {
|
|
179
179
|
/**
|
|
180
|
+
* DNS TXT record expiration
|
|
181
|
+
*
|
|
180
182
|
* @deprecated This field has been removed in the newest go sdk version and has become noop
|
|
181
183
|
*/
|
|
182
184
|
expiration?: pulumi.Input<string>;
|
|
@@ -256,11 +258,29 @@ export declare namespace app {
|
|
|
256
258
|
value: pulumi.Input<string>;
|
|
257
259
|
}
|
|
258
260
|
interface OAuthJwk {
|
|
261
|
+
/**
|
|
262
|
+
* RSA Exponent
|
|
263
|
+
*/
|
|
259
264
|
e?: pulumi.Input<string>;
|
|
265
|
+
/**
|
|
266
|
+
* Key ID
|
|
267
|
+
*/
|
|
260
268
|
kid: pulumi.Input<string>;
|
|
269
|
+
/**
|
|
270
|
+
* Key type
|
|
271
|
+
*/
|
|
261
272
|
kty: pulumi.Input<string>;
|
|
273
|
+
/**
|
|
274
|
+
* RSA Modulus
|
|
275
|
+
*/
|
|
262
276
|
n?: pulumi.Input<string>;
|
|
277
|
+
/**
|
|
278
|
+
* X coordinate of the elliptic curve point
|
|
279
|
+
*/
|
|
263
280
|
x?: pulumi.Input<string>;
|
|
281
|
+
/**
|
|
282
|
+
* Y coordinate of the elliptic curve point
|
|
283
|
+
*/
|
|
264
284
|
y?: pulumi.Input<string>;
|
|
265
285
|
}
|
|
266
286
|
interface SamlAttributeStatement {
|
|
@@ -550,6 +570,9 @@ export declare namespace user {
|
|
|
550
570
|
value?: pulumi.Input<string>;
|
|
551
571
|
}
|
|
552
572
|
interface UserPasswordHash {
|
|
573
|
+
/**
|
|
574
|
+
* The algorithm used to generate the hash using the password
|
|
575
|
+
*/
|
|
553
576
|
algorithm: pulumi.Input<string>;
|
|
554
577
|
/**
|
|
555
578
|
* Only required for salted hashes. For BCRYPT, this specifies the radix64-encoded salt used to generate
|
package/types/output.d.ts
CHANGED
|
@@ -148,18 +148,51 @@ export interface GetBehavioursBehavior {
|
|
|
148
148
|
type: string;
|
|
149
149
|
}
|
|
150
150
|
export interface GetBrandsBrand {
|
|
151
|
+
/**
|
|
152
|
+
* Custom privacy policy URL
|
|
153
|
+
*/
|
|
151
154
|
customPrivacyPolicyUrl: string;
|
|
155
|
+
/**
|
|
156
|
+
* The ID of the Brand
|
|
157
|
+
*/
|
|
152
158
|
id: string;
|
|
159
|
+
/**
|
|
160
|
+
* Link relations for this object - JSON HAL - Discoverable resources related to the brand
|
|
161
|
+
*/
|
|
153
162
|
links: string;
|
|
163
|
+
/**
|
|
164
|
+
* Brand name
|
|
165
|
+
*/
|
|
154
166
|
name: string;
|
|
167
|
+
/**
|
|
168
|
+
* Removes "Powered by Okta" from the Okta-hosted sign-in page and "© 2021 Okta, Inc." from the Okta End-User Dashboard
|
|
169
|
+
*/
|
|
155
170
|
removePoweredByOkta: boolean;
|
|
156
171
|
}
|
|
157
172
|
export interface GetEmailCustomizationsEmailCustomization {
|
|
173
|
+
/**
|
|
174
|
+
* The body of the customization
|
|
175
|
+
*/
|
|
158
176
|
body: string;
|
|
177
|
+
/**
|
|
178
|
+
* The ID of the customization
|
|
179
|
+
*/
|
|
159
180
|
id: string;
|
|
181
|
+
/**
|
|
182
|
+
* Whether the customization is the default
|
|
183
|
+
*/
|
|
160
184
|
isDefault: boolean;
|
|
185
|
+
/**
|
|
186
|
+
* The language supported by the customization
|
|
187
|
+
*/
|
|
161
188
|
language: string;
|
|
189
|
+
/**
|
|
190
|
+
* Link relations for this object - JSON HAL - Discoverable resources related to the email template
|
|
191
|
+
*/
|
|
162
192
|
links: string;
|
|
193
|
+
/**
|
|
194
|
+
* The subject of the customization
|
|
195
|
+
*/
|
|
163
196
|
subject: string;
|
|
164
197
|
}
|
|
165
198
|
export interface GetGroupsGroup {
|
|
@@ -186,22 +219,67 @@ export interface GetGroupsGroup {
|
|
|
186
219
|
type: string;
|
|
187
220
|
}
|
|
188
221
|
export interface GetTemplatesEmailTemplate {
|
|
222
|
+
/**
|
|
223
|
+
* Link relations for this object - JSON HAL - Discoverable resources related to the email template
|
|
224
|
+
*/
|
|
189
225
|
links: string;
|
|
226
|
+
/**
|
|
227
|
+
* The name of the email template
|
|
228
|
+
*/
|
|
190
229
|
name: string;
|
|
191
230
|
}
|
|
192
231
|
export interface GetThemesTheme {
|
|
232
|
+
/**
|
|
233
|
+
* Background image URL
|
|
234
|
+
*/
|
|
193
235
|
backgroundImageUrl: string;
|
|
236
|
+
/**
|
|
237
|
+
* Variant for email templates (`OKTA_DEFAULT`, `FULL_THEME`)
|
|
238
|
+
*/
|
|
194
239
|
emailTemplateTouchPointVariant: string;
|
|
240
|
+
/**
|
|
241
|
+
* Variant for the Okta End-User Dashboard (`OKTA_DEFAULT`, `WHITE_LOGO_BACKGROUND`, `FULL_THEME`, `LOGO_ON_FULL_WHITE_BACKGROUND`)
|
|
242
|
+
*/
|
|
195
243
|
endUserDashboardTouchPointVariant: string;
|
|
244
|
+
/**
|
|
245
|
+
* Variant for the error page (`OKTA_DEFAULT`, `BACKGROUND_SECONDARY_COLOR`, `BACKGROUND_IMAGE`)
|
|
246
|
+
*/
|
|
196
247
|
errorPageTouchPointVariant: string;
|
|
248
|
+
/**
|
|
249
|
+
* Favicon URL
|
|
250
|
+
*/
|
|
197
251
|
faviconUrl: string;
|
|
252
|
+
/**
|
|
253
|
+
* The ID of the theme
|
|
254
|
+
*/
|
|
198
255
|
id: string;
|
|
256
|
+
/**
|
|
257
|
+
* Link relations for this object - JSON HAL - Discoverable resources related to the email template
|
|
258
|
+
*/
|
|
199
259
|
links: string;
|
|
260
|
+
/**
|
|
261
|
+
* Logo URL
|
|
262
|
+
*/
|
|
200
263
|
logoUrl: string;
|
|
264
|
+
/**
|
|
265
|
+
* Primary color contrast hex code
|
|
266
|
+
*/
|
|
201
267
|
primaryColorContrastHex: string;
|
|
268
|
+
/**
|
|
269
|
+
* Primary color hex code
|
|
270
|
+
*/
|
|
202
271
|
primaryColorHex: string;
|
|
272
|
+
/**
|
|
273
|
+
* Secondary color contrast hex code
|
|
274
|
+
*/
|
|
203
275
|
secondaryColorContrastHex: string;
|
|
276
|
+
/**
|
|
277
|
+
* Secondary color hex code
|
|
278
|
+
*/
|
|
204
279
|
secondaryColorHex: string;
|
|
280
|
+
/**
|
|
281
|
+
* Variant for the Okta Sign-In Page (`OKTA_DEFAULT`, `BACKGROUND_SECONDARY_COLOR`, `BACKGROUND_IMAGE`)
|
|
282
|
+
*/
|
|
205
283
|
signInPageTouchPointVariant: string;
|
|
206
284
|
}
|
|
207
285
|
export interface GetTrustedOriginsTrustedOrigin {
|
|
@@ -323,6 +401,8 @@ export interface UserSchemaPropertyOneOf {
|
|
|
323
401
|
export declare namespace Index {
|
|
324
402
|
interface EmailDomainDnsValidationRecord {
|
|
325
403
|
/**
|
|
404
|
+
* DNS TXT record expiration
|
|
405
|
+
*
|
|
326
406
|
* @deprecated This field has been removed in the newest go sdk version and has become noop
|
|
327
407
|
*/
|
|
328
408
|
expiration: string;
|
|
@@ -428,11 +508,29 @@ export declare namespace app {
|
|
|
428
508
|
value: string;
|
|
429
509
|
}
|
|
430
510
|
interface OAuthJwk {
|
|
511
|
+
/**
|
|
512
|
+
* RSA Exponent
|
|
513
|
+
*/
|
|
431
514
|
e?: string;
|
|
515
|
+
/**
|
|
516
|
+
* Key ID
|
|
517
|
+
*/
|
|
432
518
|
kid: string;
|
|
519
|
+
/**
|
|
520
|
+
* Key type
|
|
521
|
+
*/
|
|
433
522
|
kty: string;
|
|
523
|
+
/**
|
|
524
|
+
* RSA Modulus
|
|
525
|
+
*/
|
|
434
526
|
n?: string;
|
|
527
|
+
/**
|
|
528
|
+
* X coordinate of the elliptic curve point
|
|
529
|
+
*/
|
|
435
530
|
x?: string;
|
|
531
|
+
/**
|
|
532
|
+
* Y coordinate of the elliptic curve point
|
|
533
|
+
*/
|
|
436
534
|
y?: string;
|
|
437
535
|
}
|
|
438
536
|
interface SamlAttributeStatement {
|
|
@@ -534,6 +632,9 @@ export declare namespace auth {
|
|
|
534
632
|
* Name of the Scope
|
|
535
633
|
*/
|
|
536
634
|
name: string;
|
|
635
|
+
/**
|
|
636
|
+
* Whether the Scope is optional
|
|
637
|
+
*/
|
|
537
638
|
optional: boolean;
|
|
538
639
|
/**
|
|
539
640
|
* Whether Okta created the Scope
|
|
@@ -865,6 +966,9 @@ export declare namespace user {
|
|
|
865
966
|
zipCode: string;
|
|
866
967
|
}
|
|
867
968
|
interface UserPasswordHash {
|
|
969
|
+
/**
|
|
970
|
+
* The algorithm used to generate the hash using the password
|
|
971
|
+
*/
|
|
868
972
|
algorithm: string;
|
|
869
973
|
/**
|
|
870
974
|
* Only required for salted hashes. For BCRYPT, this specifies the radix64-encoded salt used to generate
|