@pulumi/okta 6.1.0-alpha.1761681155 → 6.1.0
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/app/groupAssignment.d.ts +1 -1
- package/app/groupAssignment.js +1 -1
- package/customizedSigninPage.d.ts +66 -0
- package/customizedSigninPage.js +66 -0
- package/customizedSigninPage.js.map +1 -1
- package/emailCustomization.d.ts +30 -0
- package/emailCustomization.js +30 -0
- package/emailCustomization.js.map +1 -1
- package/feature.d.ts +12 -0
- package/feature.js +12 -0
- package/feature.js.map +1 -1
- package/getBrand.d.ts +30 -0
- package/getBrand.js +30 -0
- package/getBrand.js.map +1 -1
- package/getEmailCustomization.d.ts +36 -0
- package/getEmailCustomization.js +36 -0
- package/getEmailCustomization.js.map +1 -1
- package/getEmailCustomizations.d.ts +26 -0
- package/getEmailCustomizations.js +26 -0
- package/getEmailCustomizations.js.map +1 -1
- package/getPrincipalEntitlements.d.ts +116 -0
- package/getPrincipalEntitlements.js +116 -0
- package/getPrincipalEntitlements.js.map +1 -1
- package/getRequestV2.d.ts +79 -0
- package/getRequestV2.js +28 -0
- package/getRequestV2.js.map +1 -1
- package/getTemplate.d.ts +26 -0
- package/getTemplate.js +26 -0
- package/getTemplate.js.map +1 -1
- package/getTemplates.d.ts +24 -0
- package/getTemplates.js +24 -0
- package/getTemplates.js.map +1 -1
- package/getTheme.d.ts +26 -0
- package/getTheme.js +26 -0
- package/getTheme.js.map +1 -1
- package/getThemes.d.ts +24 -0
- package/getThemes.js +24 -0
- package/getThemes.js.map +1 -1
- package/inline/hook.d.ts +15 -15
- package/inline/hook.js +15 -15
- package/package.json +3 -3
- package/previewSigninPage.d.ts +66 -0
- package/previewSigninPage.js +66 -0
- package/previewSigninPage.js.map +1 -1
- package/requestCondition.d.ts +17 -0
- package/requestCondition.js +17 -0
- package/requestCondition.js.map +1 -1
- package/requestSettingOrganization.d.ts +17 -0
- package/requestSettingOrganization.js +17 -0
- package/requestSettingOrganization.js.map +1 -1
- package/requestV2.d.ts +39 -12
- package/requestV2.js +27 -0
- package/requestV2.js.map +1 -1
- package/theme.d.ts +23 -0
- package/theme.js +23 -0
- package/theme.js.map +1 -1
- package/types/input.d.ts +7 -7
- package/types/output.d.ts +5 -5
package/theme.d.ts
CHANGED
|
@@ -8,6 +8,29 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
8
8
|
* The Okta Management API does not have a true Create or Delete for a theme. Therefore, the theme resource must be imported
|
|
9
9
|
* first into the pulumi state before updates can be applied to the theme.
|
|
10
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.getBrands({});
|
|
18
|
+
* // resource has been imported into current state:
|
|
19
|
+
* // $ terraform import okta_theme.example <theme id>
|
|
20
|
+
* const example = new okta.Theme("example", {
|
|
21
|
+
* brandId: test.then(test => test.brands?.[0]?.id),
|
|
22
|
+
* logo: "path/to/logo.png",
|
|
23
|
+
* favicon: "path/to/favicon.png",
|
|
24
|
+
* backgroundImage: "path/to/background.png",
|
|
25
|
+
* primaryColorHex: "#1662dd",
|
|
26
|
+
* secondaryColorHex: "#ebebed",
|
|
27
|
+
* signInPageTouchPointVariant: "OKTA_DEFAULT",
|
|
28
|
+
* endUserDashboardTouchPointVariant: "OKTA_DEFAULT",
|
|
29
|
+
* errorPageTouchPointVariant: "OKTA_DEFAULT",
|
|
30
|
+
* emailTemplateTouchPointVariant: "OKTA_DEFAULT",
|
|
31
|
+
* });
|
|
32
|
+
* ```
|
|
33
|
+
*
|
|
11
34
|
* ## Import
|
|
12
35
|
*
|
|
13
36
|
* ```sh
|
package/theme.js
CHANGED
|
@@ -14,6 +14,29 @@ const utilities = require("./utilities");
|
|
|
14
14
|
* The Okta Management API does not have a true Create or Delete for a theme. Therefore, the theme resource must be imported
|
|
15
15
|
* first into the pulumi state before updates can be applied to the theme.
|
|
16
16
|
*
|
|
17
|
+
* ## Example Usage
|
|
18
|
+
*
|
|
19
|
+
* ```typescript
|
|
20
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
21
|
+
* import * as okta from "@pulumi/okta";
|
|
22
|
+
*
|
|
23
|
+
* const test = okta.getBrands({});
|
|
24
|
+
* // resource has been imported into current state:
|
|
25
|
+
* // $ terraform import okta_theme.example <theme id>
|
|
26
|
+
* const example = new okta.Theme("example", {
|
|
27
|
+
* brandId: test.then(test => test.brands?.[0]?.id),
|
|
28
|
+
* logo: "path/to/logo.png",
|
|
29
|
+
* favicon: "path/to/favicon.png",
|
|
30
|
+
* backgroundImage: "path/to/background.png",
|
|
31
|
+
* primaryColorHex: "#1662dd",
|
|
32
|
+
* secondaryColorHex: "#ebebed",
|
|
33
|
+
* signInPageTouchPointVariant: "OKTA_DEFAULT",
|
|
34
|
+
* endUserDashboardTouchPointVariant: "OKTA_DEFAULT",
|
|
35
|
+
* errorPageTouchPointVariant: "OKTA_DEFAULT",
|
|
36
|
+
* emailTemplateTouchPointVariant: "OKTA_DEFAULT",
|
|
37
|
+
* });
|
|
38
|
+
* ```
|
|
39
|
+
*
|
|
17
40
|
* ## Import
|
|
18
41
|
*
|
|
19
42
|
* ```sh
|
package/theme.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"theme.js","sourceRoot":"","sources":["../theme.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"theme.js","sourceRoot":"","sources":["../theme.ts"],"names":[],"mappings":"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"}
|
package/types/input.d.ts
CHANGED
|
@@ -1763,14 +1763,14 @@ export interface GetPrincipalEntitlementsTargetPrincipalArgs {
|
|
|
1763
1763
|
}
|
|
1764
1764
|
export interface GetRequestConditionAccessScopeSettings {
|
|
1765
1765
|
/**
|
|
1766
|
-
*
|
|
1766
|
+
* Block list of groups/entitlement bundles ids.
|
|
1767
1767
|
*/
|
|
1768
1768
|
ids?: inputs.GetRequestConditionAccessScopeSettingsId[];
|
|
1769
1769
|
type?: string;
|
|
1770
1770
|
}
|
|
1771
1771
|
export interface GetRequestConditionAccessScopeSettingsArgs {
|
|
1772
1772
|
/**
|
|
1773
|
-
*
|
|
1773
|
+
* Block list of groups/entitlement bundles ids.
|
|
1774
1774
|
*/
|
|
1775
1775
|
ids?: pulumi.Input<pulumi.Input<inputs.GetRequestConditionAccessScopeSettingsIdArgs>[]>;
|
|
1776
1776
|
type?: pulumi.Input<string>;
|
|
@@ -1789,14 +1789,14 @@ export interface GetRequestConditionAccessScopeSettingsIdArgs {
|
|
|
1789
1789
|
}
|
|
1790
1790
|
export interface GetRequestConditionRequesterSettings {
|
|
1791
1791
|
/**
|
|
1792
|
-
*
|
|
1792
|
+
* Block list of teams/groups ids.
|
|
1793
1793
|
*/
|
|
1794
1794
|
ids?: inputs.GetRequestConditionRequesterSettingsId[];
|
|
1795
1795
|
type?: string;
|
|
1796
1796
|
}
|
|
1797
1797
|
export interface GetRequestConditionRequesterSettingsArgs {
|
|
1798
1798
|
/**
|
|
1799
|
-
*
|
|
1799
|
+
* Block list of teams/groups ids.
|
|
1800
1800
|
*/
|
|
1801
1801
|
ids?: pulumi.Input<pulumi.Input<inputs.GetRequestConditionRequesterSettingsIdArgs>[]>;
|
|
1802
1802
|
type?: pulumi.Input<string>;
|
|
@@ -2320,7 +2320,7 @@ export interface RequestConditionAccessDurationSettings {
|
|
|
2320
2320
|
}
|
|
2321
2321
|
export interface RequestConditionAccessScopeSettings {
|
|
2322
2322
|
/**
|
|
2323
|
-
*
|
|
2323
|
+
* Block list of groups/entitlement bundles ids.
|
|
2324
2324
|
*/
|
|
2325
2325
|
ids?: pulumi.Input<pulumi.Input<inputs.RequestConditionAccessScopeSettingsId>[]>;
|
|
2326
2326
|
type: pulumi.Input<string>;
|
|
@@ -2333,7 +2333,7 @@ export interface RequestConditionAccessScopeSettingsId {
|
|
|
2333
2333
|
}
|
|
2334
2334
|
export interface RequestConditionRequesterSettings {
|
|
2335
2335
|
/**
|
|
2336
|
-
*
|
|
2336
|
+
* Block list of teams/groups ids.
|
|
2337
2337
|
*/
|
|
2338
2338
|
ids?: pulumi.Input<pulumi.Input<inputs.RequestConditionRequesterSettingsId>[]>;
|
|
2339
2339
|
type: pulumi.Input<string>;
|
|
@@ -2426,7 +2426,7 @@ export interface RequestV2RequestedFor {
|
|
|
2426
2426
|
}
|
|
2427
2427
|
export interface RequestV2RequesterFieldValue {
|
|
2428
2428
|
/**
|
|
2429
|
-
*
|
|
2429
|
+
* Request condition id.
|
|
2430
2430
|
*/
|
|
2431
2431
|
id?: pulumi.Input<string>;
|
|
2432
2432
|
/**
|
package/types/output.d.ts
CHANGED
|
@@ -1341,7 +1341,7 @@ export interface GetPrincipalEntitlementsTargetPrincipal {
|
|
|
1341
1341
|
}
|
|
1342
1342
|
export interface GetRequestConditionAccessScopeSettings {
|
|
1343
1343
|
/**
|
|
1344
|
-
*
|
|
1344
|
+
* Block list of groups/entitlement bundles ids.
|
|
1345
1345
|
*/
|
|
1346
1346
|
ids?: outputs.GetRequestConditionAccessScopeSettingsId[];
|
|
1347
1347
|
type: string;
|
|
@@ -1354,7 +1354,7 @@ export interface GetRequestConditionAccessScopeSettingsId {
|
|
|
1354
1354
|
}
|
|
1355
1355
|
export interface GetRequestConditionRequesterSettings {
|
|
1356
1356
|
/**
|
|
1357
|
-
*
|
|
1357
|
+
* Block list of teams/groups ids.
|
|
1358
1358
|
*/
|
|
1359
1359
|
ids?: outputs.GetRequestConditionRequesterSettingsId[];
|
|
1360
1360
|
type: string;
|
|
@@ -1763,7 +1763,7 @@ export interface RequestConditionAccessDurationSettings {
|
|
|
1763
1763
|
}
|
|
1764
1764
|
export interface RequestConditionAccessScopeSettings {
|
|
1765
1765
|
/**
|
|
1766
|
-
*
|
|
1766
|
+
* Block list of groups/entitlement bundles ids.
|
|
1767
1767
|
*/
|
|
1768
1768
|
ids?: outputs.RequestConditionAccessScopeSettingsId[];
|
|
1769
1769
|
type: string;
|
|
@@ -1776,7 +1776,7 @@ export interface RequestConditionAccessScopeSettingsId {
|
|
|
1776
1776
|
}
|
|
1777
1777
|
export interface RequestConditionRequesterSettings {
|
|
1778
1778
|
/**
|
|
1779
|
-
*
|
|
1779
|
+
* Block list of teams/groups ids.
|
|
1780
1780
|
*/
|
|
1781
1781
|
ids?: outputs.RequestConditionRequesterSettingsId[];
|
|
1782
1782
|
type: string;
|
|
@@ -1869,7 +1869,7 @@ export interface RequestV2RequestedFor {
|
|
|
1869
1869
|
}
|
|
1870
1870
|
export interface RequestV2RequesterFieldValue {
|
|
1871
1871
|
/**
|
|
1872
|
-
*
|
|
1872
|
+
* Request condition id.
|
|
1873
1873
|
*/
|
|
1874
1874
|
id?: string;
|
|
1875
1875
|
/**
|