@pulumi/okta 6.2.0-alpha.1765395366 → 6.2.0-alpha.1765479032
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/apiServiceIntegration.d.ts +110 -0
- package/apiServiceIntegration.js +96 -0
- package/apiServiceIntegration.js.map +1 -0
- package/apiToken.d.ts +141 -0
- package/apiToken.js +93 -0
- package/apiToken.js.map +1 -0
- package/app/connection.d.ts +164 -0
- package/app/connection.js +136 -0
- package/app/connection.js.map +1 -0
- package/app/features.d.ts +121 -0
- package/app/features.js +77 -0
- package/app/features.js.map +1 -0
- package/app/getConnection.d.ts +106 -0
- package/app/getConnection.js +62 -0
- package/app/getConnection.js.map +1 -0
- package/app/getFeatures.d.ts +156 -0
- package/app/getFeatures.js +116 -0
- package/app/getFeatures.js.map +1 -0
- package/app/getToken.d.ts +98 -0
- package/app/getToken.js +62 -0
- package/app/getToken.js.map +1 -0
- package/app/index.d.ts +18 -0
- package/app/index.js +25 -1
- package/app/index.js.map +1 -1
- package/app/oauth.d.ts +51 -0
- package/app/oauth.js +6 -0
- package/app/oauth.js.map +1 -1
- package/app/token.d.ts +108 -0
- package/app/token.js +93 -0
- package/app/token.js.map +1 -0
- package/appSignonPolicyRule.d.ts +1 -7
- package/appSignonPolicyRule.js +1 -7
- package/appSignonPolicyRule.js.map +1 -1
- package/auth/getServerClients.d.ts +114 -0
- package/auth/getServerClients.js +58 -0
- package/auth/getServerClients.js.map +1 -0
- package/auth/getServerKeys.d.ts +113 -0
- package/auth/getServerKeys.js +70 -0
- package/auth/getServerKeys.js.map +1 -0
- package/auth/index.d.ts +6 -0
- package/auth/index.js +7 -1
- package/auth/index.js.map +1 -1
- package/device.d.ts +80 -0
- package/device.js +69 -0
- package/device.js.map +1 -0
- package/getApiServiceIntegration.d.ts +85 -0
- package/getApiServiceIntegration.js +78 -0
- package/getApiServiceIntegration.js.map +1 -0
- package/getApiToken.d.ts +88 -0
- package/getApiToken.js +52 -0
- package/getApiToken.js.map +1 -0
- package/getCatalogEntryUserAccessRequestFields.d.ts +42 -0
- package/getCatalogEntryUserAccessRequestFields.js +24 -0
- package/getCatalogEntryUserAccessRequestFields.js.map +1 -1
- package/getDevice.d.ts +90 -0
- package/getDevice.js +54 -0
- package/getDevice.js.map +1 -0
- package/getHookKey.d.ts +77 -0
- package/getHookKey.js +52 -0
- package/getHookKey.js.map +1 -0
- package/getPushProvider.d.ts +118 -0
- package/getPushProvider.js +86 -0
- package/getPushProvider.js.map +1 -0
- package/getSecurityEventsProvider.d.ts +79 -0
- package/getSecurityEventsProvider.js +52 -0
- package/getSecurityEventsProvider.js.map +1 -0
- package/group/owner.d.ts +24 -0
- package/group/owner.js +24 -0
- package/group/owner.js.map +1 -1
- package/hookKey.d.ts +102 -0
- package/hookKey.js +79 -0
- package/hookKey.js.map +1 -0
- package/index.d.ts +36 -0
- package/index.js +52 -4
- package/index.js.map +1 -1
- package/package.json +3 -3
- package/pushProvider.d.ts +150 -0
- package/pushProvider.js +126 -0
- package/pushProvider.js.map +1 -0
- package/securityEventsProvider.d.ts +138 -0
- package/securityEventsProvider.js +107 -0
- package/securityEventsProvider.js.map +1 -0
- package/types/input.d.ts +906 -0
- package/types/output.d.ts +604 -0
|
@@ -0,0 +1,116 @@
|
|
|
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.getFeaturesOutput = exports.getFeatures = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves a Feature object for an app.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Basic Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as okta from "@pulumi/okta";
|
|
18
|
+
*
|
|
19
|
+
* const example = okta.app.getFeatures({
|
|
20
|
+
* appId: "0oarblaf7hWdLawNg1d7",
|
|
21
|
+
* name: "INBOUND_PROVISIONING",
|
|
22
|
+
* });
|
|
23
|
+
* ```
|
|
24
|
+
*
|
|
25
|
+
* ### User Provisioning Feature
|
|
26
|
+
*
|
|
27
|
+
* ```typescript
|
|
28
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
29
|
+
* import * as okta from "@pulumi/okta";
|
|
30
|
+
*
|
|
31
|
+
* const userProvisioning = okta.app.getFeatures({
|
|
32
|
+
* appId: example.id,
|
|
33
|
+
* name: "USER_PROVISIONING",
|
|
34
|
+
* });
|
|
35
|
+
* export const provisioningStatus = userProvisioning.then(userProvisioning => userProvisioning.status);
|
|
36
|
+
* export const passwordSyncEnabled = userProvisioning.then(userProvisioning => userProvisioning.capabilities?.update?.password?.status);
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* ### Inbound Provisioning Feature
|
|
40
|
+
*
|
|
41
|
+
* ```typescript
|
|
42
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
43
|
+
* import * as okta from "@pulumi/okta";
|
|
44
|
+
*
|
|
45
|
+
* const inboundProvisioning = okta.app.getFeatures({
|
|
46
|
+
* appId: example.id,
|
|
47
|
+
* name: "INBOUND_PROVISIONING",
|
|
48
|
+
* });
|
|
49
|
+
* export const importScheduleStatus = inboundProvisioning.then(inboundProvisioning => inboundProvisioning.capabilities?.importSettings?.schedule?.status);
|
|
50
|
+
* export const autoActivateUsers = inboundProvisioning.then(inboundProvisioning => inboundProvisioning.capabilities?.importRules?.userCreateAndMatch?.autoActivateNewUsers);
|
|
51
|
+
* ```
|
|
52
|
+
*/
|
|
53
|
+
function getFeatures(args, opts) {
|
|
54
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
55
|
+
return pulumi.runtime.invoke("okta:app/getFeatures:getFeatures", {
|
|
56
|
+
"appId": args.appId,
|
|
57
|
+
"capabilities": args.capabilities,
|
|
58
|
+
"name": args.name,
|
|
59
|
+
}, opts);
|
|
60
|
+
}
|
|
61
|
+
exports.getFeatures = getFeatures;
|
|
62
|
+
/**
|
|
63
|
+
* Retrieves a Feature object for an app.
|
|
64
|
+
*
|
|
65
|
+
* ## Example Usage
|
|
66
|
+
*
|
|
67
|
+
* ### Basic Usage
|
|
68
|
+
*
|
|
69
|
+
* ```typescript
|
|
70
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
71
|
+
* import * as okta from "@pulumi/okta";
|
|
72
|
+
*
|
|
73
|
+
* const example = okta.app.getFeatures({
|
|
74
|
+
* appId: "0oarblaf7hWdLawNg1d7",
|
|
75
|
+
* name: "INBOUND_PROVISIONING",
|
|
76
|
+
* });
|
|
77
|
+
* ```
|
|
78
|
+
*
|
|
79
|
+
* ### User Provisioning Feature
|
|
80
|
+
*
|
|
81
|
+
* ```typescript
|
|
82
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
83
|
+
* import * as okta from "@pulumi/okta";
|
|
84
|
+
*
|
|
85
|
+
* const userProvisioning = okta.app.getFeatures({
|
|
86
|
+
* appId: example.id,
|
|
87
|
+
* name: "USER_PROVISIONING",
|
|
88
|
+
* });
|
|
89
|
+
* export const provisioningStatus = userProvisioning.then(userProvisioning => userProvisioning.status);
|
|
90
|
+
* export const passwordSyncEnabled = userProvisioning.then(userProvisioning => userProvisioning.capabilities?.update?.password?.status);
|
|
91
|
+
* ```
|
|
92
|
+
*
|
|
93
|
+
* ### Inbound Provisioning Feature
|
|
94
|
+
*
|
|
95
|
+
* ```typescript
|
|
96
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
97
|
+
* import * as okta from "@pulumi/okta";
|
|
98
|
+
*
|
|
99
|
+
* const inboundProvisioning = okta.app.getFeatures({
|
|
100
|
+
* appId: example.id,
|
|
101
|
+
* name: "INBOUND_PROVISIONING",
|
|
102
|
+
* });
|
|
103
|
+
* export const importScheduleStatus = inboundProvisioning.then(inboundProvisioning => inboundProvisioning.capabilities?.importSettings?.schedule?.status);
|
|
104
|
+
* export const autoActivateUsers = inboundProvisioning.then(inboundProvisioning => inboundProvisioning.capabilities?.importRules?.userCreateAndMatch?.autoActivateNewUsers);
|
|
105
|
+
* ```
|
|
106
|
+
*/
|
|
107
|
+
function getFeaturesOutput(args, opts) {
|
|
108
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
109
|
+
return pulumi.runtime.invokeOutput("okta:app/getFeatures:getFeatures", {
|
|
110
|
+
"appId": args.appId,
|
|
111
|
+
"capabilities": args.capabilities,
|
|
112
|
+
"name": args.name,
|
|
113
|
+
}, opts);
|
|
114
|
+
}
|
|
115
|
+
exports.getFeaturesOutput = getFeaturesOutput;
|
|
116
|
+
//# sourceMappingURL=getFeatures.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getFeatures.js","sourceRoot":"","sources":["../../app/getFeatures.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kCAAkC,EAAE;QAC7D,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kCAOC;AA6CD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4CG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kCAAkC,EAAE;QACnE,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC"}
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieves a refresh token for the specified app.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ### Basic Token Information
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as okta from "@pulumi/okta";
|
|
12
|
+
*
|
|
13
|
+
* const example = okta.app.getToken({
|
|
14
|
+
* clientId: "0oardd5r32PWsF4421d7",
|
|
15
|
+
* id: "oar1godmqw4QUiX4C1d7",
|
|
16
|
+
* });
|
|
17
|
+
* export const tokenStatus = example.then(example => example.status);
|
|
18
|
+
* export const tokenUser = example.then(example => example.userId);
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
export declare function getToken(args: GetTokenArgs, opts?: pulumi.InvokeOptions): Promise<GetTokenResult>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of arguments for invoking getToken.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetTokenArgs {
|
|
26
|
+
/**
|
|
27
|
+
* The unique Okta ID of the application associated with this token. This is typically the `clientId` of an application.
|
|
28
|
+
*/
|
|
29
|
+
clientId: string;
|
|
30
|
+
/**
|
|
31
|
+
* The unique Okta ID of the refresh token to retrieve.
|
|
32
|
+
*/
|
|
33
|
+
id: string;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* A collection of values returned by getToken.
|
|
37
|
+
*/
|
|
38
|
+
export interface GetTokenResult {
|
|
39
|
+
readonly clientId: string;
|
|
40
|
+
/**
|
|
41
|
+
* Timestamp when the token was created, in RFC3339 format.
|
|
42
|
+
*/
|
|
43
|
+
readonly created: string;
|
|
44
|
+
/**
|
|
45
|
+
* Timestamp when the token expires, in RFC3339 format.
|
|
46
|
+
*/
|
|
47
|
+
readonly expiresAt: string;
|
|
48
|
+
readonly id: string;
|
|
49
|
+
/**
|
|
50
|
+
* The complete URL of the authorization server that issued the token.
|
|
51
|
+
*/
|
|
52
|
+
readonly issuer: string;
|
|
53
|
+
/**
|
|
54
|
+
* List of scope names attached to the token.
|
|
55
|
+
*/
|
|
56
|
+
readonly scopes: string[];
|
|
57
|
+
/**
|
|
58
|
+
* The current status of the token (e.g., `ACTIVE`, `REVOKED`).
|
|
59
|
+
*/
|
|
60
|
+
readonly status: string;
|
|
61
|
+
/**
|
|
62
|
+
* The unique ID of the user associated with this token.
|
|
63
|
+
*/
|
|
64
|
+
readonly userId: string;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Retrieves a refresh token for the specified app.
|
|
68
|
+
*
|
|
69
|
+
* ## Example Usage
|
|
70
|
+
*
|
|
71
|
+
* ### Basic Token Information
|
|
72
|
+
*
|
|
73
|
+
* ```typescript
|
|
74
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
75
|
+
* import * as okta from "@pulumi/okta";
|
|
76
|
+
*
|
|
77
|
+
* const example = okta.app.getToken({
|
|
78
|
+
* clientId: "0oardd5r32PWsF4421d7",
|
|
79
|
+
* id: "oar1godmqw4QUiX4C1d7",
|
|
80
|
+
* });
|
|
81
|
+
* export const tokenStatus = example.then(example => example.status);
|
|
82
|
+
* export const tokenUser = example.then(example => example.userId);
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export declare function getTokenOutput(args: GetTokenOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetTokenResult>;
|
|
86
|
+
/**
|
|
87
|
+
* A collection of arguments for invoking getToken.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetTokenOutputArgs {
|
|
90
|
+
/**
|
|
91
|
+
* The unique Okta ID of the application associated with this token. This is typically the `clientId` of an application.
|
|
92
|
+
*/
|
|
93
|
+
clientId: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* The unique Okta ID of the refresh token to retrieve.
|
|
96
|
+
*/
|
|
97
|
+
id: pulumi.Input<string>;
|
|
98
|
+
}
|
package/app/getToken.js
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
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.getTokenOutput = exports.getToken = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves a refresh token for the specified app.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ### Basic Token Information
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as okta from "@pulumi/okta";
|
|
18
|
+
*
|
|
19
|
+
* const example = okta.app.getToken({
|
|
20
|
+
* clientId: "0oardd5r32PWsF4421d7",
|
|
21
|
+
* id: "oar1godmqw4QUiX4C1d7",
|
|
22
|
+
* });
|
|
23
|
+
* export const tokenStatus = example.then(example => example.status);
|
|
24
|
+
* export const tokenUser = example.then(example => example.userId);
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
function getToken(args, opts) {
|
|
28
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
29
|
+
return pulumi.runtime.invoke("okta:app/getToken:getToken", {
|
|
30
|
+
"clientId": args.clientId,
|
|
31
|
+
"id": args.id,
|
|
32
|
+
}, opts);
|
|
33
|
+
}
|
|
34
|
+
exports.getToken = getToken;
|
|
35
|
+
/**
|
|
36
|
+
* Retrieves a refresh token for the specified app.
|
|
37
|
+
*
|
|
38
|
+
* ## Example Usage
|
|
39
|
+
*
|
|
40
|
+
* ### Basic Token Information
|
|
41
|
+
*
|
|
42
|
+
* ```typescript
|
|
43
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
44
|
+
* import * as okta from "@pulumi/okta";
|
|
45
|
+
*
|
|
46
|
+
* const example = okta.app.getToken({
|
|
47
|
+
* clientId: "0oardd5r32PWsF4421d7",
|
|
48
|
+
* id: "oar1godmqw4QUiX4C1d7",
|
|
49
|
+
* });
|
|
50
|
+
* export const tokenStatus = example.then(example => example.status);
|
|
51
|
+
* export const tokenUser = example.then(example => example.userId);
|
|
52
|
+
* ```
|
|
53
|
+
*/
|
|
54
|
+
function getTokenOutput(args, opts) {
|
|
55
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
56
|
+
return pulumi.runtime.invokeOutput("okta:app/getToken:getToken", {
|
|
57
|
+
"clientId": args.clientId,
|
|
58
|
+
"id": args.id,
|
|
59
|
+
}, opts);
|
|
60
|
+
}
|
|
61
|
+
exports.getTokenOutput = getTokenOutput;
|
|
62
|
+
//# sourceMappingURL=getToken.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getToken.js","sourceRoot":"","sources":["../../app/getToken.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,QAAQ,CAAC,IAAkB,EAAE,IAA2B;IACpE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4BAA4B,EAAE;QACvD,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4BAMC;AA+CD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAAiC;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4BAA4B,EAAE;QAC7D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC"}
|
package/app/index.d.ts
CHANGED
|
@@ -10,9 +10,21 @@ export declare const BasicAuth: typeof import("./basicAuth").BasicAuth;
|
|
|
10
10
|
export { BookmarkArgs, BookmarkState } from "./bookmark";
|
|
11
11
|
export type Bookmark = import("./bookmark").Bookmark;
|
|
12
12
|
export declare const Bookmark: typeof import("./bookmark").Bookmark;
|
|
13
|
+
export { ConnectionArgs, ConnectionState } from "./connection";
|
|
14
|
+
export type Connection = import("./connection").Connection;
|
|
15
|
+
export declare const Connection: typeof import("./connection").Connection;
|
|
16
|
+
export { FeaturesArgs, FeaturesState } from "./features";
|
|
17
|
+
export type Features = import("./features").Features;
|
|
18
|
+
export declare const Features: typeof import("./features").Features;
|
|
13
19
|
export { GetAppArgs, GetAppResult, GetAppOutputArgs } from "./getApp";
|
|
14
20
|
export declare const getApp: typeof import("./getApp").getApp;
|
|
15
21
|
export declare const getAppOutput: typeof import("./getApp").getAppOutput;
|
|
22
|
+
export { GetConnectionArgs, GetConnectionResult, GetConnectionOutputArgs } from "./getConnection";
|
|
23
|
+
export declare const getConnection: typeof import("./getConnection").getConnection;
|
|
24
|
+
export declare const getConnectionOutput: typeof import("./getConnection").getConnectionOutput;
|
|
25
|
+
export { GetFeaturesArgs, GetFeaturesResult, GetFeaturesOutputArgs } from "./getFeatures";
|
|
26
|
+
export declare const getFeatures: typeof import("./getFeatures").getFeatures;
|
|
27
|
+
export declare const getFeaturesOutput: typeof import("./getFeatures").getFeaturesOutput;
|
|
16
28
|
export { GetMetadataSamlArgs, GetMetadataSamlResult, GetMetadataSamlOutputArgs } from "./getMetadataSaml";
|
|
17
29
|
export declare const getMetadataSaml: typeof import("./getMetadataSaml").getMetadataSaml;
|
|
18
30
|
export declare const getMetadataSamlOutput: typeof import("./getMetadataSaml").getMetadataSamlOutput;
|
|
@@ -22,6 +34,9 @@ export declare const getOauthOutput: typeof import("./getOauth").getOauthOutput;
|
|
|
22
34
|
export { GetSamlArgs, GetSamlResult, GetSamlOutputArgs } from "./getSaml";
|
|
23
35
|
export declare const getSaml: typeof import("./getSaml").getSaml;
|
|
24
36
|
export declare const getSamlOutput: typeof import("./getSaml").getSamlOutput;
|
|
37
|
+
export { GetTokenArgs, GetTokenResult, GetTokenOutputArgs } from "./getToken";
|
|
38
|
+
export declare const getToken: typeof import("./getToken").getToken;
|
|
39
|
+
export declare const getTokenOutput: typeof import("./getToken").getTokenOutput;
|
|
25
40
|
export { GroupAssignmentArgs, GroupAssignmentState } from "./groupAssignment";
|
|
26
41
|
export type GroupAssignment = import("./groupAssignment").GroupAssignment;
|
|
27
42
|
export declare const GroupAssignment: typeof import("./groupAssignment").GroupAssignment;
|
|
@@ -49,6 +64,9 @@ export declare const Swa: typeof import("./swa").Swa;
|
|
|
49
64
|
export { ThreeFieldArgs, ThreeFieldState } from "./threeField";
|
|
50
65
|
export type ThreeField = import("./threeField").ThreeField;
|
|
51
66
|
export declare const ThreeField: typeof import("./threeField").ThreeField;
|
|
67
|
+
export { TokenArgs, TokenState } from "./token";
|
|
68
|
+
export type Token = import("./token").Token;
|
|
69
|
+
export declare const Token: typeof import("./token").Token;
|
|
52
70
|
export { UserArgs, UserState } from "./user";
|
|
53
71
|
export type User = import("./user").User;
|
|
54
72
|
export declare const User: typeof import("./user").User;
|
package/app/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
3
|
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
-
exports.User = exports.ThreeField = exports.Swa = exports.SecurePasswordStore = exports.Saml = exports.OauthRoleAssignment = exports.OAuthRedirectUri = exports.OAuthPostLogoutRedirectUri = exports.OAuth = exports.GroupAssignment = exports.getSamlOutput = exports.getSaml = exports.getOauthOutput = exports.getOauth = exports.getMetadataSamlOutput = exports.getMetadataSaml = exports.getAppOutput = exports.getApp = exports.Bookmark = exports.BasicAuth = exports.AutoLogin = exports.AccessPolicyAssignment = void 0;
|
|
5
|
+
exports.User = exports.Token = exports.ThreeField = exports.Swa = exports.SecurePasswordStore = exports.Saml = exports.OauthRoleAssignment = exports.OAuthRedirectUri = exports.OAuthPostLogoutRedirectUri = exports.OAuth = exports.GroupAssignment = exports.getTokenOutput = exports.getToken = exports.getSamlOutput = exports.getSaml = exports.getOauthOutput = exports.getOauth = exports.getMetadataSamlOutput = exports.getMetadataSaml = exports.getFeaturesOutput = exports.getFeatures = exports.getConnectionOutput = exports.getConnection = exports.getAppOutput = exports.getApp = exports.Features = exports.Connection = exports.Bookmark = exports.BasicAuth = exports.AutoLogin = exports.AccessPolicyAssignment = void 0;
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
exports.AccessPolicyAssignment = null;
|
|
@@ -13,9 +13,19 @@ exports.BasicAuth = null;
|
|
|
13
13
|
utilities.lazyLoad(exports, ["BasicAuth"], () => require("./basicAuth"));
|
|
14
14
|
exports.Bookmark = null;
|
|
15
15
|
utilities.lazyLoad(exports, ["Bookmark"], () => require("./bookmark"));
|
|
16
|
+
exports.Connection = null;
|
|
17
|
+
utilities.lazyLoad(exports, ["Connection"], () => require("./connection"));
|
|
18
|
+
exports.Features = null;
|
|
19
|
+
utilities.lazyLoad(exports, ["Features"], () => require("./features"));
|
|
16
20
|
exports.getApp = null;
|
|
17
21
|
exports.getAppOutput = null;
|
|
18
22
|
utilities.lazyLoad(exports, ["getApp", "getAppOutput"], () => require("./getApp"));
|
|
23
|
+
exports.getConnection = null;
|
|
24
|
+
exports.getConnectionOutput = null;
|
|
25
|
+
utilities.lazyLoad(exports, ["getConnection", "getConnectionOutput"], () => require("./getConnection"));
|
|
26
|
+
exports.getFeatures = null;
|
|
27
|
+
exports.getFeaturesOutput = null;
|
|
28
|
+
utilities.lazyLoad(exports, ["getFeatures", "getFeaturesOutput"], () => require("./getFeatures"));
|
|
19
29
|
exports.getMetadataSaml = null;
|
|
20
30
|
exports.getMetadataSamlOutput = null;
|
|
21
31
|
utilities.lazyLoad(exports, ["getMetadataSaml", "getMetadataSamlOutput"], () => require("./getMetadataSaml"));
|
|
@@ -25,6 +35,9 @@ utilities.lazyLoad(exports, ["getOauth", "getOauthOutput"], () => require("./get
|
|
|
25
35
|
exports.getSaml = null;
|
|
26
36
|
exports.getSamlOutput = null;
|
|
27
37
|
utilities.lazyLoad(exports, ["getSaml", "getSamlOutput"], () => require("./getSaml"));
|
|
38
|
+
exports.getToken = null;
|
|
39
|
+
exports.getTokenOutput = null;
|
|
40
|
+
utilities.lazyLoad(exports, ["getToken", "getTokenOutput"], () => require("./getToken"));
|
|
28
41
|
exports.GroupAssignment = null;
|
|
29
42
|
utilities.lazyLoad(exports, ["GroupAssignment"], () => require("./groupAssignment"));
|
|
30
43
|
exports.OAuth = null;
|
|
@@ -43,6 +56,8 @@ exports.Swa = null;
|
|
|
43
56
|
utilities.lazyLoad(exports, ["Swa"], () => require("./swa"));
|
|
44
57
|
exports.ThreeField = null;
|
|
45
58
|
utilities.lazyLoad(exports, ["ThreeField"], () => require("./threeField"));
|
|
59
|
+
exports.Token = null;
|
|
60
|
+
utilities.lazyLoad(exports, ["Token"], () => require("./token"));
|
|
46
61
|
exports.User = null;
|
|
47
62
|
utilities.lazyLoad(exports, ["User"], () => require("./user"));
|
|
48
63
|
const _module = {
|
|
@@ -57,6 +72,10 @@ const _module = {
|
|
|
57
72
|
return new exports.BasicAuth(name, undefined, { urn });
|
|
58
73
|
case "okta:app/bookmark:Bookmark":
|
|
59
74
|
return new exports.Bookmark(name, undefined, { urn });
|
|
75
|
+
case "okta:app/connection:Connection":
|
|
76
|
+
return new exports.Connection(name, undefined, { urn });
|
|
77
|
+
case "okta:app/features:Features":
|
|
78
|
+
return new exports.Features(name, undefined, { urn });
|
|
60
79
|
case "okta:app/groupAssignment:GroupAssignment":
|
|
61
80
|
return new exports.GroupAssignment(name, undefined, { urn });
|
|
62
81
|
case "okta:app/oAuth:OAuth":
|
|
@@ -75,6 +94,8 @@ const _module = {
|
|
|
75
94
|
return new exports.Swa(name, undefined, { urn });
|
|
76
95
|
case "okta:app/threeField:ThreeField":
|
|
77
96
|
return new exports.ThreeField(name, undefined, { urn });
|
|
97
|
+
case "okta:app/token:Token":
|
|
98
|
+
return new exports.Token(name, undefined, { urn });
|
|
78
99
|
case "okta:app/user:User":
|
|
79
100
|
return new exports.User(name, undefined, { urn });
|
|
80
101
|
default:
|
|
@@ -86,6 +107,8 @@ pulumi.runtime.registerResourceModule("okta", "app/accessPolicyAssignment", _mod
|
|
|
86
107
|
pulumi.runtime.registerResourceModule("okta", "app/autoLogin", _module);
|
|
87
108
|
pulumi.runtime.registerResourceModule("okta", "app/basicAuth", _module);
|
|
88
109
|
pulumi.runtime.registerResourceModule("okta", "app/bookmark", _module);
|
|
110
|
+
pulumi.runtime.registerResourceModule("okta", "app/connection", _module);
|
|
111
|
+
pulumi.runtime.registerResourceModule("okta", "app/features", _module);
|
|
89
112
|
pulumi.runtime.registerResourceModule("okta", "app/groupAssignment", _module);
|
|
90
113
|
pulumi.runtime.registerResourceModule("okta", "app/oAuth", _module);
|
|
91
114
|
pulumi.runtime.registerResourceModule("okta", "app/oAuthPostLogoutRedirectUri", _module);
|
|
@@ -95,5 +118,6 @@ pulumi.runtime.registerResourceModule("okta", "app/saml", _module);
|
|
|
95
118
|
pulumi.runtime.registerResourceModule("okta", "app/securePasswordStore", _module);
|
|
96
119
|
pulumi.runtime.registerResourceModule("okta", "app/swa", _module);
|
|
97
120
|
pulumi.runtime.registerResourceModule("okta", "app/threeField", _module);
|
|
121
|
+
pulumi.runtime.registerResourceModule("okta", "app/token", _module);
|
|
98
122
|
pulumi.runtime.registerResourceModule("okta", "app/user", _module);
|
|
99
123
|
//# sourceMappingURL=index.js.map
|
package/app/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../app/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAItF,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG1D,QAAA,MAAM,GAAqC,IAAW,CAAC;AACvD,QAAA,YAAY,GAA2C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGrE,QAAA,eAAe,GAAuD,IAAW,CAAC;AAClF,QAAA,qBAAqB,GAA6D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,EAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGhG,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG3E,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../app/index.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAK7B,QAAA,sBAAsB,GAAqE,IAAW,CAAC;AACpH,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,wBAAwB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAItF,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,SAAS,GAA2C,IAAW,CAAC;AAC7E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,WAAW,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,CAAC,CAAC;AAI5D,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI1D,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC1E,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG1D,QAAA,MAAM,GAAqC,IAAW,CAAC;AACvD,QAAA,YAAY,GAA2C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAC,cAAc,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC,CAAC;AAGrE,QAAA,aAAa,GAAmD,IAAW,CAAC;AAC5E,QAAA,mBAAmB,GAAyD,IAAW,CAAC;AACrG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,eAAe,EAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC,CAAC;AAG1F,QAAA,WAAW,GAA+C,IAAW,CAAC;AACtE,QAAA,iBAAiB,GAAqD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,aAAa,EAAC,mBAAmB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,eAAe,CAAC,CAAC,CAAC;AAGpF,QAAA,eAAe,GAAuD,IAAW,CAAC;AAClF,QAAA,qBAAqB,GAA6D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,EAAC,uBAAuB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAGhG,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAG3E,QAAA,OAAO,GAAuC,IAAW,CAAC;AAC1D,QAAA,aAAa,GAA6C,IAAW,CAAC;AACnF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,SAAS,EAAC,eAAe,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,WAAW,CAAC,CAAC,CAAC;AAGxE,QAAA,QAAQ,GAAyC,IAAW,CAAC;AAC7D,QAAA,cAAc,GAA+C,IAAW,CAAC;AACtF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,UAAU,EAAC,gBAAgB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,YAAY,CAAC,CAAC,CAAC;AAI3E,QAAA,eAAe,GAAuD,IAAW,CAAC;AAC/F,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,iBAAiB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,mBAAmB,CAAC,CAAC,CAAC;AAIxE,QAAA,KAAK,GAAmC,IAAW,CAAC;AACjE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;AAIpD,QAAA,0BAA0B,GAA6E,IAAW,CAAC;AAChI,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,4BAA4B,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,8BAA8B,CAAC,CAAC,CAAC;AAI9F,QAAA,gBAAgB,GAAyD,IAAW,CAAC;AAClG,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,kBAAkB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,oBAAoB,CAAC,CAAC,CAAC;AAI1E,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAIhF,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAIlD,QAAA,mBAAmB,GAA+D,IAAW,CAAC;AAC3G,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,qBAAqB,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,uBAAuB,CAAC,CAAC,CAAC;AAIhF,QAAA,GAAG,GAA+B,IAAW,CAAC;AAC3D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC;AAIhD,QAAA,UAAU,GAA6C,IAAW,CAAC;AAChF,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,YAAY,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC,CAAC;AAI9D,QAAA,KAAK,GAAmC,IAAW,CAAC;AACjE,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,OAAO,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC;AAIpD,QAAA,IAAI,GAAiC,IAAW,CAAC;AAC9D,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,MAAM,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC,CAAC;AAG/D,MAAM,OAAO,GAAG;IACZ,OAAO,EAAE,SAAS,CAAC,UAAU,EAAE;IAC/B,SAAS,EAAE,CAAC,IAAY,EAAE,IAAY,EAAE,GAAW,EAAmB,EAAE;QACpE,QAAQ,IAAI,EAAE;YACV,KAAK,wDAAwD;gBACzD,OAAO,IAAI,8BAAsB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACpE,KAAK,8BAA8B;gBAC/B,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,8BAA8B;gBAC/B,OAAO,IAAI,iBAAS,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACvD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,gCAAgC;gBACjC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,4BAA4B;gBAC7B,OAAO,IAAI,gBAAQ,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACtD,KAAK,0CAA0C;gBAC3C,OAAO,IAAI,uBAAe,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC7D,KAAK,sBAAsB;gBACvB,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,gEAAgE;gBACjE,OAAO,IAAI,kCAA0B,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxE,KAAK,4CAA4C;gBAC7C,OAAO,IAAI,wBAAgB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAC9D,KAAK,kDAAkD;gBACnD,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,oBAAoB;gBACrB,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD,KAAK,kDAAkD;gBACnD,OAAO,IAAI,2BAAmB,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjE,KAAK,kBAAkB;gBACnB,OAAO,IAAI,WAAG,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACjD,KAAK,gCAAgC;gBACjC,OAAO,IAAI,kBAAU,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACxD,KAAK,sBAAsB;gBACvB,OAAO,IAAI,aAAK,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YACnD,KAAK,oBAAoB;gBACrB,OAAO,IAAI,YAAI,CAAC,IAAI,EAAO,SAAS,EAAE,EAAE,GAAG,EAAE,CAAC,CAAA;YAClD;gBACI,MAAM,IAAI,KAAK,CAAC,yBAAyB,IAAI,EAAE,CAAC,CAAC;SACxD;IACL,CAAC;CACJ,CAAC;AACF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,4BAA4B,EAAE,OAAO,CAAC,CAAA;AACpF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA;AACvE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,eAAe,EAAE,OAAO,CAAC,CAAA;AACvE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACtE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,cAAc,EAAE,OAAO,CAAC,CAAA;AACtE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,qBAAqB,EAAE,OAAO,CAAC,CAAA;AAC7E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;AACnE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,gCAAgC,EAAE,OAAO,CAAC,CAAA;AACxF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,sBAAsB,EAAE,OAAO,CAAC,CAAA;AAC9E,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA;AAClE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,yBAAyB,EAAE,OAAO,CAAC,CAAA;AACjF,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,SAAS,EAAE,OAAO,CAAC,CAAA;AACjE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,gBAAgB,EAAE,OAAO,CAAC,CAAA;AACxE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,WAAW,EAAE,OAAO,CAAC,CAAA;AACnE,MAAM,CAAC,OAAO,CAAC,sBAAsB,CAAC,MAAM,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA"}
|
package/app/oauth.d.ts
CHANGED
|
@@ -107,12 +107,22 @@ export declare class OAuth extends pulumi.CustomResource {
|
|
|
107
107
|
* Application notes for end users.
|
|
108
108
|
*/
|
|
109
109
|
readonly enduserNote: pulumi.Output<string | undefined>;
|
|
110
|
+
/**
|
|
111
|
+
* *Early Access Property*. Determines whether Okta sends sid and iss in the logout request.
|
|
112
|
+
*/
|
|
113
|
+
readonly frontchannelLogoutSessionRequired: pulumi.Output<boolean | undefined>;
|
|
114
|
+
/**
|
|
115
|
+
* *Early Access Property*. URL where Okta sends the logout request. Required when participateSlo is true.
|
|
116
|
+
*/
|
|
117
|
+
readonly frontchannelLogoutUri: pulumi.Output<string | undefined>;
|
|
110
118
|
/**
|
|
111
119
|
* List of OAuth 2.0 grant types. Conditional validation params found here https://developer.okta.com/docs/api/resources/apps#credentials-settings-details. Defaults to minimum requirements per app type.
|
|
112
120
|
*/
|
|
113
121
|
readonly grantTypes: pulumi.Output<string[]>;
|
|
114
122
|
/**
|
|
115
123
|
* Groups claim for an OpenID Connect client application (argument is ignored when API auth is done with OAuth 2.0 credentials)
|
|
124
|
+
*
|
|
125
|
+
* @deprecated The groupsClaim field is deprecated and will be removed in a future version. Use Authorization Server Claims (okta_auth_server_claim) or app profile configuration instead.
|
|
116
126
|
*/
|
|
117
127
|
readonly groupsClaim: pulumi.Output<outputs.app.OAuthGroupsClaim | undefined>;
|
|
118
128
|
/**
|
|
@@ -131,6 +141,9 @@ export declare class OAuth extends pulumi.CustomResource {
|
|
|
131
141
|
* *Early Access Property*. Indicates whether the Okta Authorization Server uses the original Okta org domain URL or a custom domain URL as the issuer of ID token for this client.
|
|
132
142
|
*/
|
|
133
143
|
readonly issuerMode: pulumi.Output<string | undefined>;
|
|
144
|
+
/**
|
|
145
|
+
* JSON Web Key Set (JWKS) for application. Note: Inline JWKS may have compatibility issues with v6 SDK. Consider using jwksUri instead.
|
|
146
|
+
*/
|
|
134
147
|
readonly jwks: pulumi.Output<outputs.app.OAuthJwk[] | undefined>;
|
|
135
148
|
/**
|
|
136
149
|
* URL reference to JWKS
|
|
@@ -172,6 +185,10 @@ export declare class OAuth extends pulumi.CustomResource {
|
|
|
172
185
|
* This tells the provider not manage the client*secret value in state. When this is false (the default), it will cause the auto-generated client*secret to be persisted in the clientSecret attribute in state. This also means that every time an update to this app is run, this value is also set on the API. If this changes from false => true, the `clientSecret` is dropped from state and the secret at the time of the apply is what remains. If this is ever changes from true => false your app will be recreated, due to the need to regenerate a secret we can store in state.
|
|
173
186
|
*/
|
|
174
187
|
readonly omitSecret: pulumi.Output<boolean | undefined>;
|
|
188
|
+
/**
|
|
189
|
+
* *Early Access Property*. Allows the app to participate in front-channel Single Logout. Note: You can only enable participateSlo for web and browser application types. When set to true, frontchannelLogoutUri must also be provided.
|
|
190
|
+
*/
|
|
191
|
+
readonly participateSlo: pulumi.Output<boolean | undefined>;
|
|
175
192
|
/**
|
|
176
193
|
* Require Proof Key for Code Exchange (PKCE) for additional verification key rotation mode. See: https://developer.okta.com/docs/reference/api/apps/#oauth-credential-object
|
|
177
194
|
*/
|
|
@@ -321,12 +338,22 @@ export interface OAuthState {
|
|
|
321
338
|
* Application notes for end users.
|
|
322
339
|
*/
|
|
323
340
|
enduserNote?: pulumi.Input<string>;
|
|
341
|
+
/**
|
|
342
|
+
* *Early Access Property*. Determines whether Okta sends sid and iss in the logout request.
|
|
343
|
+
*/
|
|
344
|
+
frontchannelLogoutSessionRequired?: pulumi.Input<boolean>;
|
|
345
|
+
/**
|
|
346
|
+
* *Early Access Property*. URL where Okta sends the logout request. Required when participateSlo is true.
|
|
347
|
+
*/
|
|
348
|
+
frontchannelLogoutUri?: pulumi.Input<string>;
|
|
324
349
|
/**
|
|
325
350
|
* List of OAuth 2.0 grant types. Conditional validation params found here https://developer.okta.com/docs/api/resources/apps#credentials-settings-details. Defaults to minimum requirements per app type.
|
|
326
351
|
*/
|
|
327
352
|
grantTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
328
353
|
/**
|
|
329
354
|
* Groups claim for an OpenID Connect client application (argument is ignored when API auth is done with OAuth 2.0 credentials)
|
|
355
|
+
*
|
|
356
|
+
* @deprecated The groupsClaim field is deprecated and will be removed in a future version. Use Authorization Server Claims (okta_auth_server_claim) or app profile configuration instead.
|
|
330
357
|
*/
|
|
331
358
|
groupsClaim?: pulumi.Input<inputs.app.OAuthGroupsClaim>;
|
|
332
359
|
/**
|
|
@@ -345,6 +372,9 @@ export interface OAuthState {
|
|
|
345
372
|
* *Early Access Property*. Indicates whether the Okta Authorization Server uses the original Okta org domain URL or a custom domain URL as the issuer of ID token for this client.
|
|
346
373
|
*/
|
|
347
374
|
issuerMode?: pulumi.Input<string>;
|
|
375
|
+
/**
|
|
376
|
+
* JSON Web Key Set (JWKS) for application. Note: Inline JWKS may have compatibility issues with v6 SDK. Consider using jwksUri instead.
|
|
377
|
+
*/
|
|
348
378
|
jwks?: pulumi.Input<pulumi.Input<inputs.app.OAuthJwk>[]>;
|
|
349
379
|
/**
|
|
350
380
|
* URL reference to JWKS
|
|
@@ -386,6 +416,10 @@ export interface OAuthState {
|
|
|
386
416
|
* This tells the provider not manage the client*secret value in state. When this is false (the default), it will cause the auto-generated client*secret to be persisted in the clientSecret attribute in state. This also means that every time an update to this app is run, this value is also set on the API. If this changes from false => true, the `clientSecret` is dropped from state and the secret at the time of the apply is what remains. If this is ever changes from true => false your app will be recreated, due to the need to regenerate a secret we can store in state.
|
|
387
417
|
*/
|
|
388
418
|
omitSecret?: pulumi.Input<boolean>;
|
|
419
|
+
/**
|
|
420
|
+
* *Early Access Property*. Allows the app to participate in front-channel Single Logout. Note: You can only enable participateSlo for web and browser application types. When set to true, frontchannelLogoutUri must also be provided.
|
|
421
|
+
*/
|
|
422
|
+
participateSlo?: pulumi.Input<boolean>;
|
|
389
423
|
/**
|
|
390
424
|
* Require Proof Key for Code Exchange (PKCE) for additional verification key rotation mode. See: https://developer.okta.com/docs/reference/api/apps/#oauth-credential-object
|
|
391
425
|
*/
|
|
@@ -523,12 +557,22 @@ export interface OAuthArgs {
|
|
|
523
557
|
* Application notes for end users.
|
|
524
558
|
*/
|
|
525
559
|
enduserNote?: pulumi.Input<string>;
|
|
560
|
+
/**
|
|
561
|
+
* *Early Access Property*. Determines whether Okta sends sid and iss in the logout request.
|
|
562
|
+
*/
|
|
563
|
+
frontchannelLogoutSessionRequired?: pulumi.Input<boolean>;
|
|
564
|
+
/**
|
|
565
|
+
* *Early Access Property*. URL where Okta sends the logout request. Required when participateSlo is true.
|
|
566
|
+
*/
|
|
567
|
+
frontchannelLogoutUri?: pulumi.Input<string>;
|
|
526
568
|
/**
|
|
527
569
|
* List of OAuth 2.0 grant types. Conditional validation params found here https://developer.okta.com/docs/api/resources/apps#credentials-settings-details. Defaults to minimum requirements per app type.
|
|
528
570
|
*/
|
|
529
571
|
grantTypes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
530
572
|
/**
|
|
531
573
|
* Groups claim for an OpenID Connect client application (argument is ignored when API auth is done with OAuth 2.0 credentials)
|
|
574
|
+
*
|
|
575
|
+
* @deprecated The groupsClaim field is deprecated and will be removed in a future version. Use Authorization Server Claims (okta_auth_server_claim) or app profile configuration instead.
|
|
532
576
|
*/
|
|
533
577
|
groupsClaim?: pulumi.Input<inputs.app.OAuthGroupsClaim>;
|
|
534
578
|
/**
|
|
@@ -547,6 +591,9 @@ export interface OAuthArgs {
|
|
|
547
591
|
* *Early Access Property*. Indicates whether the Okta Authorization Server uses the original Okta org domain URL or a custom domain URL as the issuer of ID token for this client.
|
|
548
592
|
*/
|
|
549
593
|
issuerMode?: pulumi.Input<string>;
|
|
594
|
+
/**
|
|
595
|
+
* JSON Web Key Set (JWKS) for application. Note: Inline JWKS may have compatibility issues with v6 SDK. Consider using jwksUri instead.
|
|
596
|
+
*/
|
|
550
597
|
jwks?: pulumi.Input<pulumi.Input<inputs.app.OAuthJwk>[]>;
|
|
551
598
|
/**
|
|
552
599
|
* URL reference to JWKS
|
|
@@ -580,6 +627,10 @@ export interface OAuthArgs {
|
|
|
580
627
|
* This tells the provider not manage the client*secret value in state. When this is false (the default), it will cause the auto-generated client*secret to be persisted in the clientSecret attribute in state. This also means that every time an update to this app is run, this value is also set on the API. If this changes from false => true, the `clientSecret` is dropped from state and the secret at the time of the apply is what remains. If this is ever changes from true => false your app will be recreated, due to the need to regenerate a secret we can store in state.
|
|
581
628
|
*/
|
|
582
629
|
omitSecret?: pulumi.Input<boolean>;
|
|
630
|
+
/**
|
|
631
|
+
* *Early Access Property*. Allows the app to participate in front-channel Single Logout. Note: You can only enable participateSlo for web and browser application types. When set to true, frontchannelLogoutUri must also be provided.
|
|
632
|
+
*/
|
|
633
|
+
participateSlo?: pulumi.Input<boolean>;
|
|
583
634
|
/**
|
|
584
635
|
* Require Proof Key for Code Exchange (PKCE) for additional verification key rotation mode. See: https://developer.okta.com/docs/reference/api/apps/#oauth-credential-object
|
|
585
636
|
*/
|
package/app/oauth.js
CHANGED
|
@@ -74,6 +74,8 @@ class OAuth extends pulumi.CustomResource {
|
|
|
74
74
|
resourceInputs["clientUri"] = state?.clientUri;
|
|
75
75
|
resourceInputs["consentMethod"] = state?.consentMethod;
|
|
76
76
|
resourceInputs["enduserNote"] = state?.enduserNote;
|
|
77
|
+
resourceInputs["frontchannelLogoutSessionRequired"] = state?.frontchannelLogoutSessionRequired;
|
|
78
|
+
resourceInputs["frontchannelLogoutUri"] = state?.frontchannelLogoutUri;
|
|
77
79
|
resourceInputs["grantTypes"] = state?.grantTypes;
|
|
78
80
|
resourceInputs["groupsClaim"] = state?.groupsClaim;
|
|
79
81
|
resourceInputs["hideIos"] = state?.hideIos;
|
|
@@ -91,6 +93,7 @@ class OAuth extends pulumi.CustomResource {
|
|
|
91
93
|
resourceInputs["logoUrl"] = state?.logoUrl;
|
|
92
94
|
resourceInputs["name"] = state?.name;
|
|
93
95
|
resourceInputs["omitSecret"] = state?.omitSecret;
|
|
96
|
+
resourceInputs["participateSlo"] = state?.participateSlo;
|
|
94
97
|
resourceInputs["pkceRequired"] = state?.pkceRequired;
|
|
95
98
|
resourceInputs["policyUri"] = state?.policyUri;
|
|
96
99
|
resourceInputs["postLogoutRedirectUris"] = state?.postLogoutRedirectUris;
|
|
@@ -132,6 +135,8 @@ class OAuth extends pulumi.CustomResource {
|
|
|
132
135
|
resourceInputs["clientUri"] = args?.clientUri;
|
|
133
136
|
resourceInputs["consentMethod"] = args?.consentMethod;
|
|
134
137
|
resourceInputs["enduserNote"] = args?.enduserNote;
|
|
138
|
+
resourceInputs["frontchannelLogoutSessionRequired"] = args?.frontchannelLogoutSessionRequired;
|
|
139
|
+
resourceInputs["frontchannelLogoutUri"] = args?.frontchannelLogoutUri;
|
|
135
140
|
resourceInputs["grantTypes"] = args?.grantTypes;
|
|
136
141
|
resourceInputs["groupsClaim"] = args?.groupsClaim;
|
|
137
142
|
resourceInputs["hideIos"] = args?.hideIos;
|
|
@@ -147,6 +152,7 @@ class OAuth extends pulumi.CustomResource {
|
|
|
147
152
|
resourceInputs["logo"] = args?.logo;
|
|
148
153
|
resourceInputs["logoUri"] = args?.logoUri;
|
|
149
154
|
resourceInputs["omitSecret"] = args?.omitSecret;
|
|
155
|
+
resourceInputs["participateSlo"] = args?.participateSlo;
|
|
150
156
|
resourceInputs["pkceRequired"] = args?.pkceRequired;
|
|
151
157
|
resourceInputs["policyUri"] = args?.policyUri;
|
|
152
158
|
resourceInputs["postLogoutRedirectUris"] = args?.postLogoutRedirectUris;
|
package/app/oauth.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"oauth.js","sourceRoot":"","sources":["../../app/oauth.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,MAAa,KAAM,SAAQ,MAAM,CAAC,cAAc;IAC5C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkB,EAAE,IAAmC;QAChH,OAAO,IAAI,KAAK,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5D,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,KAAK,CAAC,YAAY,CAAC;IACtD,CAAC;
|
|
1
|
+
{"version":3,"file":"oauth.js","sourceRoot":"","sources":["../../app/oauth.ts"],"names":[],"mappings":"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"}
|