@pulumi/auth0 2.20.0 → 2.21.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client.d.ts +23 -5
- package/client.js.map +1 -1
- package/clientCredentials.d.ts +161 -0
- package/clientCredentials.js +129 -0
- package/clientCredentials.js.map +1 -0
- package/globalClient.d.ts +27 -6
- package/globalClient.js.map +1 -1
- package/hook.d.ts +3 -0
- package/hook.js +3 -0
- package/hook.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.js +17 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/package.json.dev +2 -2
- package/resourceServer.d.ts +6 -0
- package/resourceServer.js.map +1 -1
- package/resourceServerScope.d.ts +102 -0
- package/resourceServerScope.js +89 -0
- package/resourceServerScope.js.map +1 -0
- package/resourceServerScopes.d.ts +88 -0
- package/resourceServerScopes.js +92 -0
- package/resourceServerScopes.js.map +1 -0
- package/rule.d.ts +3 -0
- package/rule.js +3 -0
- package/rule.js.map +1 -1
- package/types/input.d.ts +32 -1
- package/types/output.d.ts +33 -2
package/types/input.d.ts
CHANGED
|
@@ -456,6 +456,27 @@ export interface ClientAddonsSamlp {
|
|
|
456
456
|
signingCert?: pulumi.Input<string>;
|
|
457
457
|
typedAttributes?: pulumi.Input<boolean>;
|
|
458
458
|
}
|
|
459
|
+
export interface ClientCredentialsPrivateKeyJwt {
|
|
460
|
+
/**
|
|
461
|
+
* Client credentials available for use when Private Key JWT is in use as the client authentication method. A maximum of 2 client credentials can be set.
|
|
462
|
+
*/
|
|
463
|
+
credentials: pulumi.Input<pulumi.Input<inputs.ClientCredentialsPrivateKeyJwtCredential>[]>;
|
|
464
|
+
}
|
|
465
|
+
export interface ClientCredentialsPrivateKeyJwtCredential {
|
|
466
|
+
algorithm?: pulumi.Input<string>;
|
|
467
|
+
createdAt?: pulumi.Input<string>;
|
|
468
|
+
credentialType: pulumi.Input<string>;
|
|
469
|
+
expiresAt?: pulumi.Input<string>;
|
|
470
|
+
/**
|
|
471
|
+
* The ID of this resource.
|
|
472
|
+
*/
|
|
473
|
+
id?: pulumi.Input<string>;
|
|
474
|
+
keyId?: pulumi.Input<string>;
|
|
475
|
+
name?: pulumi.Input<string>;
|
|
476
|
+
parseExpiryFromCert?: pulumi.Input<boolean>;
|
|
477
|
+
pem: pulumi.Input<string>;
|
|
478
|
+
updatedAt?: pulumi.Input<string>;
|
|
479
|
+
}
|
|
459
480
|
export interface ClientJwtConfiguration {
|
|
460
481
|
/**
|
|
461
482
|
* Algorithm used to sign JWTs.
|
|
@@ -776,7 +797,7 @@ export interface ConnectionOptions {
|
|
|
776
797
|
[key: string]: pulumi.Input<string>;
|
|
777
798
|
}>;
|
|
778
799
|
/**
|
|
779
|
-
* Determines whether
|
|
800
|
+
* Determines whether to sync user profile attributes (`name`, `givenName`, `familyName`, `nickname`, `picture`) at each login or only on the first login. Options include: `onEachLogin`, `onFirstLogin`. Default value: `onEachLogin`.
|
|
780
801
|
*/
|
|
781
802
|
setUserRootAttributes?: pulumi.Input<string>;
|
|
782
803
|
/**
|
|
@@ -1438,6 +1459,16 @@ export interface ResourceServerScope {
|
|
|
1438
1459
|
*/
|
|
1439
1460
|
value: pulumi.Input<string>;
|
|
1440
1461
|
}
|
|
1462
|
+
export interface ResourceServerScopesScope {
|
|
1463
|
+
/**
|
|
1464
|
+
* User-friendly description of the scope (permission).
|
|
1465
|
+
*/
|
|
1466
|
+
description?: pulumi.Input<string>;
|
|
1467
|
+
/**
|
|
1468
|
+
* Name of the scope (permission). Examples include `read:appointments` or `delete:appointments`.
|
|
1469
|
+
*/
|
|
1470
|
+
name: pulumi.Input<string>;
|
|
1471
|
+
}
|
|
1441
1472
|
export interface RolePermission {
|
|
1442
1473
|
/**
|
|
1443
1474
|
* Description of the permission.
|
package/types/output.d.ts
CHANGED
|
@@ -455,6 +455,27 @@ export interface ClientAddonsSamlp {
|
|
|
455
455
|
signingCert?: string;
|
|
456
456
|
typedAttributes?: boolean;
|
|
457
457
|
}
|
|
458
|
+
export interface ClientCredentialsPrivateKeyJwt {
|
|
459
|
+
/**
|
|
460
|
+
* Client credentials available for use when Private Key JWT is in use as the client authentication method. A maximum of 2 client credentials can be set.
|
|
461
|
+
*/
|
|
462
|
+
credentials: outputs.ClientCredentialsPrivateKeyJwtCredential[];
|
|
463
|
+
}
|
|
464
|
+
export interface ClientCredentialsPrivateKeyJwtCredential {
|
|
465
|
+
algorithm?: string;
|
|
466
|
+
createdAt: string;
|
|
467
|
+
credentialType: string;
|
|
468
|
+
expiresAt: string;
|
|
469
|
+
/**
|
|
470
|
+
* The ID of this resource.
|
|
471
|
+
*/
|
|
472
|
+
id: string;
|
|
473
|
+
keyId: string;
|
|
474
|
+
name?: string;
|
|
475
|
+
parseExpiryFromCert?: boolean;
|
|
476
|
+
pem: string;
|
|
477
|
+
updatedAt: string;
|
|
478
|
+
}
|
|
458
479
|
export interface ClientJwtConfiguration {
|
|
459
480
|
/**
|
|
460
481
|
* Algorithm used to sign JWTs.
|
|
@@ -775,9 +796,9 @@ export interface ConnectionOptions {
|
|
|
775
796
|
[key: string]: string;
|
|
776
797
|
};
|
|
777
798
|
/**
|
|
778
|
-
* Determines whether
|
|
799
|
+
* Determines whether to sync user profile attributes (`name`, `givenName`, `familyName`, `nickname`, `picture`) at each login or only on the first login. Options include: `onEachLogin`, `onFirstLogin`. Default value: `onEachLogin`.
|
|
779
800
|
*/
|
|
780
|
-
setUserRootAttributes
|
|
801
|
+
setUserRootAttributes?: string;
|
|
781
802
|
/**
|
|
782
803
|
* Choose how Auth0 sets the emailVerified field in the user profile.
|
|
783
804
|
*/
|
|
@@ -2090,6 +2111,16 @@ export interface ResourceServerScope {
|
|
|
2090
2111
|
*/
|
|
2091
2112
|
value: string;
|
|
2092
2113
|
}
|
|
2114
|
+
export interface ResourceServerScopesScope {
|
|
2115
|
+
/**
|
|
2116
|
+
* User-friendly description of the scope (permission).
|
|
2117
|
+
*/
|
|
2118
|
+
description?: string;
|
|
2119
|
+
/**
|
|
2120
|
+
* Name of the scope (permission). Examples include `read:appointments` or `delete:appointments`.
|
|
2121
|
+
*/
|
|
2122
|
+
name: string;
|
|
2123
|
+
}
|
|
2093
2124
|
export interface RolePermission {
|
|
2094
2125
|
/**
|
|
2095
2126
|
* Description of the permission.
|