@pulumi/auth0 3.33.0 → 3.34.0-alpha.1763609475
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/client.d.ts +18 -6
- package/client.js +2 -0
- package/client.js.map +1 -1
- package/clientGrant.d.ts +8 -0
- package/clientGrant.js +2 -0
- package/clientGrant.js.map +1 -1
- package/connectionProfile.d.ts +143 -0
- package/connectionProfile.js +92 -0
- package/connectionProfile.js.map +1 -0
- package/getClient.d.ts +5 -1
- package/getClient.js.map +1 -1
- package/getConnectionProfile.d.ts +80 -0
- package/getConnectionProfile.js +74 -0
- package/getConnectionProfile.js.map +1 -0
- package/getResourceServer.d.ts +4 -0
- package/getResourceServer.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.js +11 -3
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/resourceServer.d.ts +8 -0
- package/resourceServer.js +2 -0
- package/resourceServer.js.map +1 -1
- package/types/input.d.ts +186 -0
- package/types/output.d.ts +421 -1
package/client.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
47
47
|
*/
|
|
48
48
|
readonly allowedOrigins: pulumi.Output<string[] | undefined>;
|
|
49
49
|
/**
|
|
50
|
-
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom
|
|
50
|
+
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`, `expressConfiguration`
|
|
51
51
|
*/
|
|
52
52
|
readonly appType: pulumi.Output<string | undefined>;
|
|
53
53
|
/**
|
|
@@ -57,7 +57,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
57
57
|
/**
|
|
58
58
|
* URLs that Auth0 may call back to after a user authenticates for the client. Make sure to specify the protocol (https://) otherwise the callback may fail in some cases. With the exception of custom URI schemes for native clients, all callbacks should use protocol https://.
|
|
59
59
|
*/
|
|
60
|
-
readonly callbacks: pulumi.Output<string[]
|
|
60
|
+
readonly callbacks: pulumi.Output<string[]>;
|
|
61
61
|
/**
|
|
62
62
|
* List of audiences/realms for SAML protocol. Used by the wsfed addon.
|
|
63
63
|
*/
|
|
@@ -106,6 +106,10 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
106
106
|
readonly encryptionKey: pulumi.Output<{
|
|
107
107
|
[key: string]: string;
|
|
108
108
|
} | undefined>;
|
|
109
|
+
/**
|
|
110
|
+
* Express Configuration settings for the client. Used with OIN Express Configuration.
|
|
111
|
+
*/
|
|
112
|
+
readonly expressConfiguration: pulumi.Output<outputs.ClientExpressConfiguration>;
|
|
109
113
|
/**
|
|
110
114
|
* HTML form template to be used for WS-Federation.
|
|
111
115
|
*/
|
|
@@ -167,11 +171,11 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
167
171
|
/**
|
|
168
172
|
* Defines how to proceed during an authentication transaction when `organizationUsage = "require"`. Can be `noPrompt` (default), `preLoginPrompt` or `postLoginPrompt`.
|
|
169
173
|
*/
|
|
170
|
-
readonly organizationRequireBehavior: pulumi.Output<string
|
|
174
|
+
readonly organizationRequireBehavior: pulumi.Output<string>;
|
|
171
175
|
/**
|
|
172
176
|
* Defines how to proceed during an authentication transaction with regards to an organization. Can be `deny` (default), `allow` or `require`.
|
|
173
177
|
*/
|
|
174
|
-
readonly organizationUsage: pulumi.Output<string
|
|
178
|
+
readonly organizationUsage: pulumi.Output<string>;
|
|
175
179
|
/**
|
|
176
180
|
* Configuration settings for the refresh tokens issued for this client.
|
|
177
181
|
*/
|
|
@@ -249,7 +253,7 @@ export interface ClientState {
|
|
|
249
253
|
*/
|
|
250
254
|
allowedOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
251
255
|
/**
|
|
252
|
-
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom
|
|
256
|
+
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`, `expressConfiguration`
|
|
253
257
|
*/
|
|
254
258
|
appType?: pulumi.Input<string>;
|
|
255
259
|
/**
|
|
@@ -308,6 +312,10 @@ export interface ClientState {
|
|
|
308
312
|
encryptionKey?: pulumi.Input<{
|
|
309
313
|
[key: string]: pulumi.Input<string>;
|
|
310
314
|
}>;
|
|
315
|
+
/**
|
|
316
|
+
* Express Configuration settings for the client. Used with OIN Express Configuration.
|
|
317
|
+
*/
|
|
318
|
+
expressConfiguration?: pulumi.Input<inputs.ClientExpressConfiguration>;
|
|
311
319
|
/**
|
|
312
320
|
* HTML form template to be used for WS-Federation.
|
|
313
321
|
*/
|
|
@@ -443,7 +451,7 @@ export interface ClientArgs {
|
|
|
443
451
|
*/
|
|
444
452
|
allowedOrigins?: pulumi.Input<pulumi.Input<string>[]>;
|
|
445
453
|
/**
|
|
446
|
-
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom
|
|
454
|
+
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`, `expressConfiguration`
|
|
447
455
|
*/
|
|
448
456
|
appType?: pulumi.Input<string>;
|
|
449
457
|
/**
|
|
@@ -498,6 +506,10 @@ export interface ClientArgs {
|
|
|
498
506
|
encryptionKey?: pulumi.Input<{
|
|
499
507
|
[key: string]: pulumi.Input<string>;
|
|
500
508
|
}>;
|
|
509
|
+
/**
|
|
510
|
+
* Express Configuration settings for the client. Used with OIN Express Configuration.
|
|
511
|
+
*/
|
|
512
|
+
expressConfiguration?: pulumi.Input<inputs.ClientExpressConfiguration>;
|
|
501
513
|
/**
|
|
502
514
|
* HTML form template to be used for WS-Federation.
|
|
503
515
|
*/
|
package/client.js
CHANGED
|
@@ -64,6 +64,7 @@ class Client extends pulumi.CustomResource {
|
|
|
64
64
|
resourceInputs["defaultOrganization"] = state?.defaultOrganization;
|
|
65
65
|
resourceInputs["description"] = state?.description;
|
|
66
66
|
resourceInputs["encryptionKey"] = state?.encryptionKey;
|
|
67
|
+
resourceInputs["expressConfiguration"] = state?.expressConfiguration;
|
|
67
68
|
resourceInputs["formTemplate"] = state?.formTemplate;
|
|
68
69
|
resourceInputs["grantTypes"] = state?.grantTypes;
|
|
69
70
|
resourceInputs["initiateLoginUri"] = state?.initiateLoginUri;
|
|
@@ -112,6 +113,7 @@ class Client extends pulumi.CustomResource {
|
|
|
112
113
|
resourceInputs["defaultOrganization"] = args?.defaultOrganization;
|
|
113
114
|
resourceInputs["description"] = (args?.description) ?? "Managed by Pulumi";
|
|
114
115
|
resourceInputs["encryptionKey"] = args?.encryptionKey;
|
|
116
|
+
resourceInputs["expressConfiguration"] = args?.expressConfiguration;
|
|
115
117
|
resourceInputs["formTemplate"] = args?.formTemplate;
|
|
116
118
|
resourceInputs["grantTypes"] = args?.grantTypes;
|
|
117
119
|
resourceInputs["initiateLoginUri"] = args?.initiateLoginUri;
|
package/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;GAYG;AACH,MAAa,MAAO,SAAQ,MAAM,CAAC,cAAc;IAC7C;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAmB,EAAE,IAAmC;QACjH,OAAO,IAAI,MAAM,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC7D,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,MAAM,CAAC,YAAY,CAAC;IACvD,CAAC;
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../client.ts"],"names":[],"mappings":"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"}
|
package/clientGrant.d.ts
CHANGED
|
@@ -104,6 +104,10 @@ export declare class ClientGrant extends pulumi.CustomResource {
|
|
|
104
104
|
* ID of the client for this grant.
|
|
105
105
|
*/
|
|
106
106
|
readonly clientId: pulumi.Output<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Indicates whether this grant is a special grant created by Auth0. It cannot be modified or deleted directly.
|
|
109
|
+
*/
|
|
110
|
+
readonly isSystem: pulumi.Output<boolean>;
|
|
107
111
|
/**
|
|
108
112
|
* Defines whether organizations can be used with client credentials exchanges for this grant. (defaults to deny when not defined)
|
|
109
113
|
*/
|
|
@@ -145,6 +149,10 @@ export interface ClientGrantState {
|
|
|
145
149
|
* ID of the client for this grant.
|
|
146
150
|
*/
|
|
147
151
|
clientId?: pulumi.Input<string>;
|
|
152
|
+
/**
|
|
153
|
+
* Indicates whether this grant is a special grant created by Auth0. It cannot be modified or deleted directly.
|
|
154
|
+
*/
|
|
155
|
+
isSystem?: pulumi.Input<boolean>;
|
|
148
156
|
/**
|
|
149
157
|
* Defines whether organizations can be used with client credentials exchanges for this grant. (defaults to deny when not defined)
|
|
150
158
|
*/
|
package/clientGrant.js
CHANGED
|
@@ -110,6 +110,7 @@ class ClientGrant extends pulumi.CustomResource {
|
|
|
110
110
|
resourceInputs["audience"] = state?.audience;
|
|
111
111
|
resourceInputs["authorizationDetailsTypes"] = state?.authorizationDetailsTypes;
|
|
112
112
|
resourceInputs["clientId"] = state?.clientId;
|
|
113
|
+
resourceInputs["isSystem"] = state?.isSystem;
|
|
113
114
|
resourceInputs["organizationUsage"] = state?.organizationUsage;
|
|
114
115
|
resourceInputs["scopes"] = state?.scopes;
|
|
115
116
|
resourceInputs["subjectType"] = state?.subjectType;
|
|
@@ -132,6 +133,7 @@ class ClientGrant extends pulumi.CustomResource {
|
|
|
132
133
|
resourceInputs["organizationUsage"] = args?.organizationUsage;
|
|
133
134
|
resourceInputs["scopes"] = args?.scopes;
|
|
134
135
|
resourceInputs["subjectType"] = args?.subjectType;
|
|
136
|
+
resourceInputs["isSystem"] = undefined /*out*/;
|
|
135
137
|
}
|
|
136
138
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
137
139
|
super(ClientGrant.__pulumiType, name, resourceInputs, opts);
|
package/clientGrant.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientGrant.js","sourceRoot":"","sources":["../clientGrant.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwEG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAClE,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,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"clientGrant.js","sourceRoot":"","sources":["../clientGrant.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,143 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Manage Auth0 connection profiles. Connection profiles allow you to store configuration templates for connections.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
12
|
+
*
|
|
13
|
+
* const myProfile = new auth0.ConnectionProfile("my_profile", {
|
|
14
|
+
* name: "My-Profile",
|
|
15
|
+
* organization: {
|
|
16
|
+
* showAsButton: "optional",
|
|
17
|
+
* assignMembershipOnLogin: "required",
|
|
18
|
+
* },
|
|
19
|
+
* connectionNamePrefixTemplate: "template1",
|
|
20
|
+
* enabledFeatures: [
|
|
21
|
+
* "scim",
|
|
22
|
+
* "universal_logout",
|
|
23
|
+
* ],
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Import
|
|
28
|
+
*
|
|
29
|
+
* This resource can be imported by specifying the connection Profile ID <connectionProfileID>
|
|
30
|
+
*
|
|
31
|
+
* Example:
|
|
32
|
+
*
|
|
33
|
+
* ```sh
|
|
34
|
+
* $ pulumi import auth0:index/connectionProfile:ConnectionProfile my_profile "cop_xxxxxxxxxxxxxxxxx"
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
export declare class ConnectionProfile extends pulumi.CustomResource {
|
|
38
|
+
/**
|
|
39
|
+
* Get an existing ConnectionProfile resource's state with the given name, ID, and optional extra
|
|
40
|
+
* properties used to qualify the lookup.
|
|
41
|
+
*
|
|
42
|
+
* @param name The _unique_ name of the resulting resource.
|
|
43
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
44
|
+
* @param state Any extra arguments used during the lookup.
|
|
45
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
46
|
+
*/
|
|
47
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ConnectionProfileState, opts?: pulumi.CustomResourceOptions): ConnectionProfile;
|
|
48
|
+
/**
|
|
49
|
+
* Returns true if the given object is an instance of ConnectionProfile. This is designed to work even
|
|
50
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
51
|
+
*/
|
|
52
|
+
static isInstance(obj: any): obj is ConnectionProfile;
|
|
53
|
+
/**
|
|
54
|
+
* Connection configuration for the profile.
|
|
55
|
+
*/
|
|
56
|
+
readonly connectionConfig: pulumi.Output<outputs.ConnectionProfileConnectionConfig>;
|
|
57
|
+
/**
|
|
58
|
+
* Template for generating connection names from the profile.
|
|
59
|
+
*/
|
|
60
|
+
readonly connectionNamePrefixTemplate: pulumi.Output<string | undefined>;
|
|
61
|
+
/**
|
|
62
|
+
* List of enabled features for the connection profile.
|
|
63
|
+
*/
|
|
64
|
+
readonly enabledFeatures: pulumi.Output<string[]>;
|
|
65
|
+
/**
|
|
66
|
+
* Name of the connection profile.
|
|
67
|
+
*/
|
|
68
|
+
readonly name: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* Organization associated with the connection profile.
|
|
71
|
+
*/
|
|
72
|
+
readonly organization: pulumi.Output<outputs.ConnectionProfileOrganization>;
|
|
73
|
+
/**
|
|
74
|
+
* Strategy overrides for the connection profile.
|
|
75
|
+
*/
|
|
76
|
+
readonly strategyOverrides: pulumi.Output<outputs.ConnectionProfileStrategyOverrides>;
|
|
77
|
+
/**
|
|
78
|
+
* Create a ConnectionProfile resource with the given unique name, arguments, and options.
|
|
79
|
+
*
|
|
80
|
+
* @param name The _unique_ name of the resource.
|
|
81
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
82
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
83
|
+
*/
|
|
84
|
+
constructor(name: string, args?: ConnectionProfileArgs, opts?: pulumi.CustomResourceOptions);
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Input properties used for looking up and filtering ConnectionProfile resources.
|
|
88
|
+
*/
|
|
89
|
+
export interface ConnectionProfileState {
|
|
90
|
+
/**
|
|
91
|
+
* Connection configuration for the profile.
|
|
92
|
+
*/
|
|
93
|
+
connectionConfig?: pulumi.Input<inputs.ConnectionProfileConnectionConfig>;
|
|
94
|
+
/**
|
|
95
|
+
* Template for generating connection names from the profile.
|
|
96
|
+
*/
|
|
97
|
+
connectionNamePrefixTemplate?: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* List of enabled features for the connection profile.
|
|
100
|
+
*/
|
|
101
|
+
enabledFeatures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
102
|
+
/**
|
|
103
|
+
* Name of the connection profile.
|
|
104
|
+
*/
|
|
105
|
+
name?: pulumi.Input<string>;
|
|
106
|
+
/**
|
|
107
|
+
* Organization associated with the connection profile.
|
|
108
|
+
*/
|
|
109
|
+
organization?: pulumi.Input<inputs.ConnectionProfileOrganization>;
|
|
110
|
+
/**
|
|
111
|
+
* Strategy overrides for the connection profile.
|
|
112
|
+
*/
|
|
113
|
+
strategyOverrides?: pulumi.Input<inputs.ConnectionProfileStrategyOverrides>;
|
|
114
|
+
}
|
|
115
|
+
/**
|
|
116
|
+
* The set of arguments for constructing a ConnectionProfile resource.
|
|
117
|
+
*/
|
|
118
|
+
export interface ConnectionProfileArgs {
|
|
119
|
+
/**
|
|
120
|
+
* Connection configuration for the profile.
|
|
121
|
+
*/
|
|
122
|
+
connectionConfig?: pulumi.Input<inputs.ConnectionProfileConnectionConfig>;
|
|
123
|
+
/**
|
|
124
|
+
* Template for generating connection names from the profile.
|
|
125
|
+
*/
|
|
126
|
+
connectionNamePrefixTemplate?: pulumi.Input<string>;
|
|
127
|
+
/**
|
|
128
|
+
* List of enabled features for the connection profile.
|
|
129
|
+
*/
|
|
130
|
+
enabledFeatures?: pulumi.Input<pulumi.Input<string>[]>;
|
|
131
|
+
/**
|
|
132
|
+
* Name of the connection profile.
|
|
133
|
+
*/
|
|
134
|
+
name?: pulumi.Input<string>;
|
|
135
|
+
/**
|
|
136
|
+
* Organization associated with the connection profile.
|
|
137
|
+
*/
|
|
138
|
+
organization?: pulumi.Input<inputs.ConnectionProfileOrganization>;
|
|
139
|
+
/**
|
|
140
|
+
* Strategy overrides for the connection profile.
|
|
141
|
+
*/
|
|
142
|
+
strategyOverrides?: pulumi.Input<inputs.ConnectionProfileStrategyOverrides>;
|
|
143
|
+
}
|
|
@@ -0,0 +1,92 @@
|
|
|
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.ConnectionProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Manage Auth0 connection profiles. Connection profiles allow you to store configuration templates for connections.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const myProfile = new auth0.ConnectionProfile("my_profile", {
|
|
18
|
+
* name: "My-Profile",
|
|
19
|
+
* organization: {
|
|
20
|
+
* showAsButton: "optional",
|
|
21
|
+
* assignMembershipOnLogin: "required",
|
|
22
|
+
* },
|
|
23
|
+
* connectionNamePrefixTemplate: "template1",
|
|
24
|
+
* enabledFeatures: [
|
|
25
|
+
* "scim",
|
|
26
|
+
* "universal_logout",
|
|
27
|
+
* ],
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* ## Import
|
|
32
|
+
*
|
|
33
|
+
* This resource can be imported by specifying the connection Profile ID <connectionProfileID>
|
|
34
|
+
*
|
|
35
|
+
* Example:
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import auth0:index/connectionProfile:ConnectionProfile my_profile "cop_xxxxxxxxxxxxxxxxx"
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
class ConnectionProfile extends pulumi.CustomResource {
|
|
42
|
+
/**
|
|
43
|
+
* Get an existing ConnectionProfile resource's state with the given name, ID, and optional extra
|
|
44
|
+
* properties used to qualify the lookup.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resulting resource.
|
|
47
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
48
|
+
* @param state Any extra arguments used during the lookup.
|
|
49
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
50
|
+
*/
|
|
51
|
+
static get(name, id, state, opts) {
|
|
52
|
+
return new ConnectionProfile(name, state, { ...opts, id: id });
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Returns true if the given object is an instance of ConnectionProfile. This is designed to work even
|
|
56
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
57
|
+
*/
|
|
58
|
+
static isInstance(obj) {
|
|
59
|
+
if (obj === undefined || obj === null) {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
return obj['__pulumiType'] === ConnectionProfile.__pulumiType;
|
|
63
|
+
}
|
|
64
|
+
constructor(name, argsOrState, opts) {
|
|
65
|
+
let resourceInputs = {};
|
|
66
|
+
opts = opts || {};
|
|
67
|
+
if (opts.id) {
|
|
68
|
+
const state = argsOrState;
|
|
69
|
+
resourceInputs["connectionConfig"] = state?.connectionConfig;
|
|
70
|
+
resourceInputs["connectionNamePrefixTemplate"] = state?.connectionNamePrefixTemplate;
|
|
71
|
+
resourceInputs["enabledFeatures"] = state?.enabledFeatures;
|
|
72
|
+
resourceInputs["name"] = state?.name;
|
|
73
|
+
resourceInputs["organization"] = state?.organization;
|
|
74
|
+
resourceInputs["strategyOverrides"] = state?.strategyOverrides;
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
const args = argsOrState;
|
|
78
|
+
resourceInputs["connectionConfig"] = args?.connectionConfig;
|
|
79
|
+
resourceInputs["connectionNamePrefixTemplate"] = args?.connectionNamePrefixTemplate;
|
|
80
|
+
resourceInputs["enabledFeatures"] = args?.enabledFeatures;
|
|
81
|
+
resourceInputs["name"] = args?.name;
|
|
82
|
+
resourceInputs["organization"] = args?.organization;
|
|
83
|
+
resourceInputs["strategyOverrides"] = args?.strategyOverrides;
|
|
84
|
+
}
|
|
85
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
86
|
+
super(ConnectionProfile.__pulumiType, name, resourceInputs, opts);
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
exports.ConnectionProfile = ConnectionProfile;
|
|
90
|
+
/** @internal */
|
|
91
|
+
ConnectionProfile.__pulumiType = 'auth0:index/connectionProfile:ConnectionProfile';
|
|
92
|
+
//# sourceMappingURL=connectionProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connectionProfile.js","sourceRoot":"","sources":["../connectionProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AACH,MAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA8B,EAAE,IAAmC;QAC5H,OAAO,IAAI,iBAAiB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACxE,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,iBAAiB,CAAC,YAAY,CAAC;IAClE,CAAC;IAmCD,YAAY,IAAY,EAAE,WAA4D,EAAE,IAAmC;QACvH,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAiD,CAAC;YAChE,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,EAAE,4BAA4B,CAAC;YACrF,cAAc,CAAC,iBAAiB,CAAC,GAAG,KAAK,EAAE,eAAe,CAAC;YAC3D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;SAClE;aAAM;YACH,MAAM,IAAI,GAAG,WAAgD,CAAC;YAC9D,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,EAAE,4BAA4B,CAAC;YACpF,cAAc,CAAC,iBAAiB,CAAC,GAAG,IAAI,EAAE,eAAe,CAAC;YAC1D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC;SACjE;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,iBAAiB,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACtE,CAAC;;AAnFL,8CAoFC;AAtEG,gBAAgB;AACO,8BAAY,GAAG,iDAAiD,CAAC"}
|
package/getClient.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export interface GetClientResult {
|
|
|
54
54
|
*/
|
|
55
55
|
readonly allowedOrigins: string[];
|
|
56
56
|
/**
|
|
57
|
-
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom
|
|
57
|
+
* Type of application the client represents. Possible values are: `native`, `spa`, `regularWeb`, `nonInteractive`, `resourceServer`,`ssoIntegration`. Specific SSO integrations types accepted as well are: `rms`, `box`, `cloudbees`, `concur`, `dropbox`, `mscrm`, `echosign`, `egnyte`, `newrelic`, `office365`, `salesforce`, `sentry`, `sharepoint`, `slack`, `springcm`, `zendesk`, `zoom`, `expressConfiguration`
|
|
58
58
|
*/
|
|
59
59
|
readonly appType: string;
|
|
60
60
|
/**
|
|
@@ -118,6 +118,10 @@ export interface GetClientResult {
|
|
|
118
118
|
readonly encryptionKey: {
|
|
119
119
|
[key: string]: string;
|
|
120
120
|
};
|
|
121
|
+
/**
|
|
122
|
+
* Express Configuration settings for the client. Used with OIN Express Configuration.
|
|
123
|
+
*/
|
|
124
|
+
readonly expressConfigurations: outputs.GetClientExpressConfiguration[];
|
|
121
125
|
/**
|
|
122
126
|
* HTML form template to be used for WS-Federation.
|
|
123
127
|
*/
|
package/getClient.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../getClient.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;
|
|
1
|
+
{"version":3,"file":"getClient.js","sourceRoot":"","sources":["../getClient.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,SAAS,CAAC,IAAoB,EAAE,IAA2B;IACvE,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iCAAiC,EAAE;QAC5D,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8BAOC;AA+ND;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAAiC;IACzF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iCAAiC,EAAE;QAClE,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,MAAM,EAAE,IAAI,CAAC,IAAI;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0CAOC"}
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieve information about an Auth0 connection profile.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
11
|
+
*
|
|
12
|
+
* const myProfile = new auth0.ConnectionProfile("my_profile", {
|
|
13
|
+
* name: "My-Profile",
|
|
14
|
+
* organization: {
|
|
15
|
+
* showAsButton: "optional",
|
|
16
|
+
* assignMembershipOnLogin: "required",
|
|
17
|
+
* },
|
|
18
|
+
* connectionNamePrefixTemplate: "template1",
|
|
19
|
+
* enabledFeatures: [
|
|
20
|
+
* "scim",
|
|
21
|
+
* "universal_logout",
|
|
22
|
+
* ],
|
|
23
|
+
* });
|
|
24
|
+
* const myProfileDs = auth0.getConnectionProfileOutput({
|
|
25
|
+
* id: myProfile.id,
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*/
|
|
29
|
+
export declare function getConnectionProfile(args: GetConnectionProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectionProfileResult>;
|
|
30
|
+
/**
|
|
31
|
+
* A collection of arguments for invoking getConnectionProfile.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetConnectionProfileArgs {
|
|
34
|
+
id: string;
|
|
35
|
+
}
|
|
36
|
+
/**
|
|
37
|
+
* A collection of values returned by getConnectionProfile.
|
|
38
|
+
*/
|
|
39
|
+
export interface GetConnectionProfileResult {
|
|
40
|
+
readonly connectionConfigs: outputs.GetConnectionProfileConnectionConfig[];
|
|
41
|
+
readonly connectionNamePrefixTemplate: string;
|
|
42
|
+
readonly enabledFeatures: string[];
|
|
43
|
+
readonly id: string;
|
|
44
|
+
readonly name: string;
|
|
45
|
+
readonly organizations: outputs.GetConnectionProfileOrganization[];
|
|
46
|
+
readonly strategyOverrides: outputs.GetConnectionProfileStrategyOverride[];
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Retrieve information about an Auth0 connection profile.
|
|
50
|
+
*
|
|
51
|
+
* ## Example Usage
|
|
52
|
+
*
|
|
53
|
+
* ```typescript
|
|
54
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
55
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
56
|
+
*
|
|
57
|
+
* const myProfile = new auth0.ConnectionProfile("my_profile", {
|
|
58
|
+
* name: "My-Profile",
|
|
59
|
+
* organization: {
|
|
60
|
+
* showAsButton: "optional",
|
|
61
|
+
* assignMembershipOnLogin: "required",
|
|
62
|
+
* },
|
|
63
|
+
* connectionNamePrefixTemplate: "template1",
|
|
64
|
+
* enabledFeatures: [
|
|
65
|
+
* "scim",
|
|
66
|
+
* "universal_logout",
|
|
67
|
+
* ],
|
|
68
|
+
* });
|
|
69
|
+
* const myProfileDs = auth0.getConnectionProfileOutput({
|
|
70
|
+
* id: myProfile.id,
|
|
71
|
+
* });
|
|
72
|
+
* ```
|
|
73
|
+
*/
|
|
74
|
+
export declare function getConnectionProfileOutput(args: GetConnectionProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectionProfileResult>;
|
|
75
|
+
/**
|
|
76
|
+
* A collection of arguments for invoking getConnectionProfile.
|
|
77
|
+
*/
|
|
78
|
+
export interface GetConnectionProfileOutputArgs {
|
|
79
|
+
id: pulumi.Input<string>;
|
|
80
|
+
}
|
|
@@ -0,0 +1,74 @@
|
|
|
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.getConnectionProfileOutput = exports.getConnectionProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieve information about an Auth0 connection profile.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
16
|
+
*
|
|
17
|
+
* const myProfile = new auth0.ConnectionProfile("my_profile", {
|
|
18
|
+
* name: "My-Profile",
|
|
19
|
+
* organization: {
|
|
20
|
+
* showAsButton: "optional",
|
|
21
|
+
* assignMembershipOnLogin: "required",
|
|
22
|
+
* },
|
|
23
|
+
* connectionNamePrefixTemplate: "template1",
|
|
24
|
+
* enabledFeatures: [
|
|
25
|
+
* "scim",
|
|
26
|
+
* "universal_logout",
|
|
27
|
+
* ],
|
|
28
|
+
* });
|
|
29
|
+
* const myProfileDs = auth0.getConnectionProfileOutput({
|
|
30
|
+
* id: myProfile.id,
|
|
31
|
+
* });
|
|
32
|
+
* ```
|
|
33
|
+
*/
|
|
34
|
+
function getConnectionProfile(args, opts) {
|
|
35
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
36
|
+
return pulumi.runtime.invoke("auth0:index/getConnectionProfile:getConnectionProfile", {
|
|
37
|
+
"id": args.id,
|
|
38
|
+
}, opts);
|
|
39
|
+
}
|
|
40
|
+
exports.getConnectionProfile = getConnectionProfile;
|
|
41
|
+
/**
|
|
42
|
+
* Retrieve information about an Auth0 connection profile.
|
|
43
|
+
*
|
|
44
|
+
* ## Example Usage
|
|
45
|
+
*
|
|
46
|
+
* ```typescript
|
|
47
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
48
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
49
|
+
*
|
|
50
|
+
* const myProfile = new auth0.ConnectionProfile("my_profile", {
|
|
51
|
+
* name: "My-Profile",
|
|
52
|
+
* organization: {
|
|
53
|
+
* showAsButton: "optional",
|
|
54
|
+
* assignMembershipOnLogin: "required",
|
|
55
|
+
* },
|
|
56
|
+
* connectionNamePrefixTemplate: "template1",
|
|
57
|
+
* enabledFeatures: [
|
|
58
|
+
* "scim",
|
|
59
|
+
* "universal_logout",
|
|
60
|
+
* ],
|
|
61
|
+
* });
|
|
62
|
+
* const myProfileDs = auth0.getConnectionProfileOutput({
|
|
63
|
+
* id: myProfile.id,
|
|
64
|
+
* });
|
|
65
|
+
* ```
|
|
66
|
+
*/
|
|
67
|
+
function getConnectionProfileOutput(args, opts) {
|
|
68
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
69
|
+
return pulumi.runtime.invokeOutput("auth0:index/getConnectionProfile:getConnectionProfile", {
|
|
70
|
+
"id": args.id,
|
|
71
|
+
}, opts);
|
|
72
|
+
}
|
|
73
|
+
exports.getConnectionProfileOutput = getConnectionProfileOutput;
|
|
74
|
+
//# sourceMappingURL=getConnectionProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getConnectionProfile.js","sourceRoot":"","sources":["../getConnectionProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,uDAAuD,EAAE;QAClF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,oDAKC;AAqBD;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAAiC;IAC9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,uDAAuD,EAAE;QACxF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,gEAKC"}
|
package/getResourceServer.d.ts
CHANGED
|
@@ -65,6 +65,10 @@ export interface GetResourceServerResult {
|
|
|
65
65
|
* Unique identifier for the resource server. Used as the audience parameter for authorization calls. If not provided, `resourceServerId` must be set.
|
|
66
66
|
*/
|
|
67
67
|
readonly identifier?: string;
|
|
68
|
+
/**
|
|
69
|
+
* Indicates whether this resource server is a special resource server created by Auth0. It cannot be modified or deleted directly.
|
|
70
|
+
*/
|
|
71
|
+
readonly isSystem: boolean;
|
|
68
72
|
/**
|
|
69
73
|
* Friendly name for the resource server. Cannot include `<` or `>` characters.
|
|
70
74
|
*/
|
package/getResourceServer.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getResourceServer.js","sourceRoot":"","sources":["../getResourceServer.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;
|
|
1
|
+
{"version":3,"file":"getResourceServer.js","sourceRoot":"","sources":["../getResourceServer.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,iBAAiB,CAAC,IAA4B,EAAE,IAA2B;IACvF,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,iDAAiD,EAAE;QAC5E,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;AAyGD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,uBAAuB,CAAC,IAAkC,EAAE,IAAiC;IACzG,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,iDAAiD,EAAE;QAClF,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;KAC5C,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0DAOC"}
|
package/index.d.ts
CHANGED
|
@@ -31,6 +31,9 @@ export declare const ConnectionClients: typeof import("./connectionClients").Con
|
|
|
31
31
|
export { ConnectionKeysArgs, ConnectionKeysState } from "./connectionKeys";
|
|
32
32
|
export type ConnectionKeys = import("./connectionKeys").ConnectionKeys;
|
|
33
33
|
export declare const ConnectionKeys: typeof import("./connectionKeys").ConnectionKeys;
|
|
34
|
+
export { ConnectionProfileArgs, ConnectionProfileState } from "./connectionProfile";
|
|
35
|
+
export type ConnectionProfile = import("./connectionProfile").ConnectionProfile;
|
|
36
|
+
export declare const ConnectionProfile: typeof import("./connectionProfile").ConnectionProfile;
|
|
34
37
|
export { ConnectionScimConfigurationArgs, ConnectionScimConfigurationState } from "./connectionScimConfiguration";
|
|
35
38
|
export type ConnectionScimConfiguration = import("./connectionScimConfiguration").ConnectionScimConfiguration;
|
|
36
39
|
export declare const ConnectionScimConfiguration: typeof import("./connectionScimConfiguration").ConnectionScimConfiguration;
|
|
@@ -91,6 +94,9 @@ export declare const getConnectionOutput: typeof import("./getConnection").getCo
|
|
|
91
94
|
export { GetConnectionKeysArgs, GetConnectionKeysResult, GetConnectionKeysOutputArgs } from "./getConnectionKeys";
|
|
92
95
|
export declare const getConnectionKeys: typeof import("./getConnectionKeys").getConnectionKeys;
|
|
93
96
|
export declare const getConnectionKeysOutput: typeof import("./getConnectionKeys").getConnectionKeysOutput;
|
|
97
|
+
export { GetConnectionProfileArgs, GetConnectionProfileResult, GetConnectionProfileOutputArgs } from "./getConnectionProfile";
|
|
98
|
+
export declare const getConnectionProfile: typeof import("./getConnectionProfile").getConnectionProfile;
|
|
99
|
+
export declare const getConnectionProfileOutput: typeof import("./getConnectionProfile").getConnectionProfileOutput;
|
|
94
100
|
export { GetConnectionScimConfigurationArgs, GetConnectionScimConfigurationResult, GetConnectionScimConfigurationOutputArgs } from "./getConnectionScimConfiguration";
|
|
95
101
|
export declare const getConnectionScimConfiguration: typeof import("./getConnectionScimConfiguration").getConnectionScimConfiguration;
|
|
96
102
|
export declare const getConnectionScimConfigurationOutput: typeof import("./getConnectionScimConfiguration").getConnectionScimConfigurationOutput;
|