@pulumi/auth0 3.5.0 → 3.5.1
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 +5 -5
- package/getClient.d.ts +2 -2
- package/hook.d.ts +6 -6
- package/package.json +2 -2
- package/types/input.d.ts +2 -2
- package/types/output.d.ts +4 -4
package/client.d.ts
CHANGED
|
@@ -140,7 +140,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
140
140
|
* Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: `:,-+=_*?"/\()<>@ [Tab] [Space]`.
|
|
141
141
|
*/
|
|
142
142
|
readonly clientMetadata: pulumi.Output<{
|
|
143
|
-
[key: string]:
|
|
143
|
+
[key: string]: string;
|
|
144
144
|
} | undefined>;
|
|
145
145
|
/**
|
|
146
146
|
* Whether this client can be used to make cross-origin authentication requests (`true`) or it is not allowed to make such requests (`false`).
|
|
@@ -236,7 +236,7 @@ export declare class Client extends pulumi.CustomResource {
|
|
|
236
236
|
* List containing a map of the public cert of the signing key and the public cert of the signing key in PKCS7.
|
|
237
237
|
*/
|
|
238
238
|
readonly signingKeys: pulumi.Output<{
|
|
239
|
-
[key: string]:
|
|
239
|
+
[key: string]: string;
|
|
240
240
|
}[]>;
|
|
241
241
|
/**
|
|
242
242
|
* Applies only to SSO clients and determines whether Auth0 will handle Single Sign-On (true) or whether the identity provider will (false).
|
|
@@ -299,7 +299,7 @@ export interface ClientState {
|
|
|
299
299
|
* Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: `:,-+=_*?"/\()<>@ [Tab] [Space]`.
|
|
300
300
|
*/
|
|
301
301
|
clientMetadata?: pulumi.Input<{
|
|
302
|
-
[key: string]:
|
|
302
|
+
[key: string]: pulumi.Input<string>;
|
|
303
303
|
}>;
|
|
304
304
|
/**
|
|
305
305
|
* Whether this client can be used to make cross-origin authentication requests (`true`) or it is not allowed to make such requests (`false`).
|
|
@@ -395,7 +395,7 @@ export interface ClientState {
|
|
|
395
395
|
* List containing a map of the public cert of the signing key and the public cert of the signing key in PKCS7.
|
|
396
396
|
*/
|
|
397
397
|
signingKeys?: pulumi.Input<pulumi.Input<{
|
|
398
|
-
[key: string]:
|
|
398
|
+
[key: string]: pulumi.Input<string>;
|
|
399
399
|
}>[]>;
|
|
400
400
|
/**
|
|
401
401
|
* Applies only to SSO clients and determines whether Auth0 will handle Single Sign-On (true) or whether the identity provider will (false).
|
|
@@ -446,7 +446,7 @@ export interface ClientArgs {
|
|
|
446
446
|
* Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: `:,-+=_*?"/\()<>@ [Tab] [Space]`.
|
|
447
447
|
*/
|
|
448
448
|
clientMetadata?: pulumi.Input<{
|
|
449
|
-
[key: string]:
|
|
449
|
+
[key: string]: pulumi.Input<string>;
|
|
450
450
|
}>;
|
|
451
451
|
/**
|
|
452
452
|
* Whether this client can be used to make cross-origin authentication requests (`true`) or it is not allowed to make such requests (`false`).
|
package/getClient.d.ts
CHANGED
|
@@ -73,7 +73,7 @@ export interface GetClientResult {
|
|
|
73
73
|
* Metadata associated with the client, in the form of an object with string values (max 255 chars). Maximum of 10 metadata properties allowed. Field names (max 255 chars) are alphanumeric and may only include the following special characters: `:,-+=_*?"/\()<>@ [Tab] [Space]`.
|
|
74
74
|
*/
|
|
75
75
|
readonly clientMetadata: {
|
|
76
|
-
[key: string]:
|
|
76
|
+
[key: string]: string;
|
|
77
77
|
};
|
|
78
78
|
readonly clientSecret: string;
|
|
79
79
|
/**
|
|
@@ -174,7 +174,7 @@ export interface GetClientResult {
|
|
|
174
174
|
* List containing a map of the public cert of the signing key and the public cert of the signing key in PKCS7.
|
|
175
175
|
*/
|
|
176
176
|
readonly signingKeys: {
|
|
177
|
-
[key: string]:
|
|
177
|
+
[key: string]: string;
|
|
178
178
|
}[];
|
|
179
179
|
/**
|
|
180
180
|
* Applies only to SSO clients and determines whether Auth0 will handle Single Sign-On (true) or whether the identity provider will (false).
|
package/hook.d.ts
CHANGED
|
@@ -59,7 +59,7 @@ export declare class Hook extends pulumi.CustomResource {
|
|
|
59
59
|
* Dependencies of this hook used by the WebTask server.
|
|
60
60
|
*/
|
|
61
61
|
readonly dependencies: pulumi.Output<{
|
|
62
|
-
[key: string]:
|
|
62
|
+
[key: string]: string;
|
|
63
63
|
} | undefined>;
|
|
64
64
|
/**
|
|
65
65
|
* Whether the hook is enabled, or disabled.
|
|
@@ -77,7 +77,7 @@ export declare class Hook extends pulumi.CustomResource {
|
|
|
77
77
|
* The secrets associated with the hook.
|
|
78
78
|
*/
|
|
79
79
|
readonly secrets: pulumi.Output<{
|
|
80
|
-
[key: string]:
|
|
80
|
+
[key: string]: string;
|
|
81
81
|
} | undefined>;
|
|
82
82
|
/**
|
|
83
83
|
* Execution stage of this rule. Can be credentials-exchange, pre-user-registration, post-user-registration, post-change-password, or send-phone-message.
|
|
@@ -100,7 +100,7 @@ export interface HookState {
|
|
|
100
100
|
* Dependencies of this hook used by the WebTask server.
|
|
101
101
|
*/
|
|
102
102
|
dependencies?: pulumi.Input<{
|
|
103
|
-
[key: string]:
|
|
103
|
+
[key: string]: pulumi.Input<string>;
|
|
104
104
|
}>;
|
|
105
105
|
/**
|
|
106
106
|
* Whether the hook is enabled, or disabled.
|
|
@@ -118,7 +118,7 @@ export interface HookState {
|
|
|
118
118
|
* The secrets associated with the hook.
|
|
119
119
|
*/
|
|
120
120
|
secrets?: pulumi.Input<{
|
|
121
|
-
[key: string]:
|
|
121
|
+
[key: string]: pulumi.Input<string>;
|
|
122
122
|
}>;
|
|
123
123
|
/**
|
|
124
124
|
* Execution stage of this rule. Can be credentials-exchange, pre-user-registration, post-user-registration, post-change-password, or send-phone-message.
|
|
@@ -133,7 +133,7 @@ export interface HookArgs {
|
|
|
133
133
|
* Dependencies of this hook used by the WebTask server.
|
|
134
134
|
*/
|
|
135
135
|
dependencies?: pulumi.Input<{
|
|
136
|
-
[key: string]:
|
|
136
|
+
[key: string]: pulumi.Input<string>;
|
|
137
137
|
}>;
|
|
138
138
|
/**
|
|
139
139
|
* Whether the hook is enabled, or disabled.
|
|
@@ -151,7 +151,7 @@ export interface HookArgs {
|
|
|
151
151
|
* The secrets associated with the hook.
|
|
152
152
|
*/
|
|
153
153
|
secrets?: pulumi.Input<{
|
|
154
|
-
[key: string]:
|
|
154
|
+
[key: string]: pulumi.Input<string>;
|
|
155
155
|
}>;
|
|
156
156
|
/**
|
|
157
157
|
* Execution stage of this rule. Can be credentials-exchange, pre-user-registration, post-user-registration, post-change-password, or send-phone-message.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/auth0",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing auth0 cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "auth0",
|
|
26
|
-
"version": "3.5.
|
|
26
|
+
"version": "3.5.1"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -785,7 +785,7 @@ export interface ClientAddonsSamlp {
|
|
|
785
785
|
* Mappings between the Auth0 user profile property name (`name`) and the output attributes on the SAML attribute in the assertion (`value`).
|
|
786
786
|
*/
|
|
787
787
|
mappings?: pulumi.Input<{
|
|
788
|
-
[key: string]:
|
|
788
|
+
[key: string]: pulumi.Input<string>;
|
|
789
789
|
}>;
|
|
790
790
|
/**
|
|
791
791
|
* Format of the name identifier. Defaults to `urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified`.
|
|
@@ -1095,7 +1095,7 @@ export interface ConnectionOptions {
|
|
|
1095
1095
|
* A case-sensitive map of key value pairs used as configuration variables for the `customScript`.
|
|
1096
1096
|
*/
|
|
1097
1097
|
configuration?: pulumi.Input<{
|
|
1098
|
-
[key: string]:
|
|
1098
|
+
[key: string]: pulumi.Input<string>;
|
|
1099
1099
|
}>;
|
|
1100
1100
|
/**
|
|
1101
1101
|
* Proof Key for Code Exchange (PKCE) configuration settings for an OIDC or Okta Workforce connection.
|
package/types/output.d.ts
CHANGED
|
@@ -784,7 +784,7 @@ export interface ClientAddonsSamlp {
|
|
|
784
784
|
* Mappings between the Auth0 user profile property name (`name`) and the output attributes on the SAML attribute in the assertion (`value`).
|
|
785
785
|
*/
|
|
786
786
|
mappings?: {
|
|
787
|
-
[key: string]:
|
|
787
|
+
[key: string]: string;
|
|
788
788
|
};
|
|
789
789
|
/**
|
|
790
790
|
* Format of the name identifier. Defaults to `urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified`.
|
|
@@ -1094,7 +1094,7 @@ export interface ConnectionOptions {
|
|
|
1094
1094
|
* A case-sensitive map of key value pairs used as configuration variables for the `customScript`.
|
|
1095
1095
|
*/
|
|
1096
1096
|
configuration?: {
|
|
1097
|
-
[key: string]:
|
|
1097
|
+
[key: string]: string;
|
|
1098
1098
|
};
|
|
1099
1099
|
/**
|
|
1100
1100
|
* Proof Key for Code Exchange (PKCE) configuration settings for an OIDC or Okta Workforce connection.
|
|
@@ -2376,7 +2376,7 @@ export interface GetClientAddonSamlp {
|
|
|
2376
2376
|
* Mappings between the Auth0 user profile property name (`name`) and the output attributes on the SAML attribute in the assertion (`value`).
|
|
2377
2377
|
*/
|
|
2378
2378
|
mappings: {
|
|
2379
|
-
[key: string]:
|
|
2379
|
+
[key: string]: string;
|
|
2380
2380
|
};
|
|
2381
2381
|
/**
|
|
2382
2382
|
* Format of the name identifier. Defaults to `urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified`.
|
|
@@ -2638,7 +2638,7 @@ export interface GetConnectionOption {
|
|
|
2638
2638
|
* A case-sensitive map of key value pairs used as configuration variables for the `customScript`.
|
|
2639
2639
|
*/
|
|
2640
2640
|
configuration: {
|
|
2641
|
-
[key: string]:
|
|
2641
|
+
[key: string]: string;
|
|
2642
2642
|
};
|
|
2643
2643
|
/**
|
|
2644
2644
|
* Proof Key for Code Exchange (PKCE) configuration settings for an OIDC or Okta Workforce connection.
|