@pulumi/auth0 3.51.0-alpha.1786940924 → 3.51.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/clientCredentials.d.ts +12 -0
- package/clientCredentials.d.ts.map +1 -1
- package/clientCredentials.js +2 -0
- package/clientCredentials.js.map +1 -1
- package/connectionDirectory.d.ts +3 -3
- package/connectionDirectorySynchronizedGroups.d.ts +39 -15
- package/connectionDirectorySynchronizedGroups.d.ts.map +1 -1
- package/connectionDirectorySynchronizedGroups.js +13 -10
- package/connectionDirectorySynchronizedGroups.js.map +1 -1
- package/getClientGrantOrganizations.d.ts +68 -0
- package/getClientGrantOrganizations.d.ts.map +1 -0
- package/getClientGrantOrganizations.js +73 -0
- package/getClientGrantOrganizations.js.map +1 -0
- package/getConnectionDirectory.d.ts +1 -1
- package/getConnectionDirectorySynchronizedGroups.d.ts +23 -10
- package/getConnectionDirectorySynchronizedGroups.d.ts.map +1 -1
- package/getConnectionDirectorySynchronizedGroups.js +4 -6
- package/getConnectionDirectorySynchronizedGroups.js.map +1 -1
- package/getOrganization.d.ts +4 -0
- package/getOrganization.d.ts.map +1 -1
- package/getOrganization.js.map +1 -1
- package/getOrganizationClient.d.ts +105 -0
- package/getOrganizationClient.d.ts.map +1 -0
- package/getOrganizationClient.js +77 -0
- package/getOrganizationClient.js.map +1 -0
- package/getOrganizationClients.d.ts +68 -0
- package/getOrganizationClients.d.ts.map +1 -0
- package/getOrganizationClients.js +73 -0
- package/getOrganizationClients.js.map +1 -0
- package/getOrganizationRoleGroups.d.ts +84 -0
- package/getOrganizationRoleGroups.d.ts.map +1 -0
- package/getOrganizationRoleGroups.js +79 -0
- package/getOrganizationRoleGroups.js.map +1 -0
- package/getOrganizationRoleMembers.d.ts +84 -0
- package/getOrganizationRoleMembers.d.ts.map +1 -0
- package/getOrganizationRoleMembers.js +79 -0
- package/getOrganizationRoleMembers.js.map +1 -0
- package/getOrganizations.d.ts +76 -0
- package/getOrganizations.d.ts.map +1 -0
- package/getOrganizations.js +83 -0
- package/getOrganizations.js.map +1 -0
- package/getRole.d.ts +40 -0
- package/getRole.d.ts.map +1 -1
- package/getRole.js +20 -0
- package/getRole.js.map +1 -1
- package/getUserOrganizations.d.ts +68 -0
- package/getUserOrganizations.d.ts.map +1 -0
- package/getUserOrganizations.js +73 -0
- package/getUserOrganizations.js.map +1 -0
- package/index.d.ts +27 -0
- package/index.d.ts.map +1 -1
- package/index.js +35 -4
- package/index.js.map +1 -1
- package/organization.d.ts +12 -0
- package/organization.d.ts.map +1 -1
- package/organization.js +2 -0
- package/organization.js.map +1 -1
- package/organizationClient.d.ts +157 -0
- package/organizationClient.d.ts.map +1 -0
- package/organizationClient.js +130 -0
- package/organizationClient.js.map +1 -0
- package/organizationClients.d.ts +105 -0
- package/organizationClients.d.ts.map +1 -0
- package/organizationClients.js +122 -0
- package/organizationClients.js.map +1 -0
- package/package.json +2 -2
- package/role.d.ts +36 -0
- package/role.d.ts.map +1 -1
- package/role.js +16 -0
- package/role.js.map +1 -1
- package/types/input.d.ts +95 -1
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +415 -3
- package/types/output.d.ts.map +1 -1
package/clientCredentials.d.ts
CHANGED
|
@@ -73,6 +73,10 @@ export declare class ClientCredentials extends pulumi.CustomResource {
|
|
|
73
73
|
* Defines `tlsClientAuth` client authentication method.
|
|
74
74
|
*/
|
|
75
75
|
readonly tlsClientAuth: pulumi.Output<outputs.ClientCredentialsTlsClientAuth | undefined>;
|
|
76
|
+
/**
|
|
77
|
+
* Configures the client as a Token Vault privileged worker, allowing it to request Token Vault tokens on behalf of other users. This is an Early Access feature and must be enabled for your tenant.
|
|
78
|
+
*/
|
|
79
|
+
readonly tokenVaultPrivilegedAccess: pulumi.Output<outputs.ClientCredentialsTokenVaultPrivilegedAccess | undefined>;
|
|
76
80
|
/**
|
|
77
81
|
* Create a ClientCredentials resource with the given unique name, arguments, and options.
|
|
78
82
|
*
|
|
@@ -123,6 +127,10 @@ export interface ClientCredentialsState {
|
|
|
123
127
|
* Defines `tlsClientAuth` client authentication method.
|
|
124
128
|
*/
|
|
125
129
|
tlsClientAuth?: pulumi.Input<inputs.ClientCredentialsTlsClientAuth | undefined>;
|
|
130
|
+
/**
|
|
131
|
+
* Configures the client as a Token Vault privileged worker, allowing it to request Token Vault tokens on behalf of other users. This is an Early Access feature and must be enabled for your tenant.
|
|
132
|
+
*/
|
|
133
|
+
tokenVaultPrivilegedAccess?: pulumi.Input<inputs.ClientCredentialsTokenVaultPrivilegedAccess | undefined>;
|
|
126
134
|
}
|
|
127
135
|
/**
|
|
128
136
|
* The set of arguments for constructing a ClientCredentials resource.
|
|
@@ -165,5 +173,9 @@ export interface ClientCredentialsArgs {
|
|
|
165
173
|
* Defines `tlsClientAuth` client authentication method.
|
|
166
174
|
*/
|
|
167
175
|
tlsClientAuth?: pulumi.Input<inputs.ClientCredentialsTlsClientAuth | undefined>;
|
|
176
|
+
/**
|
|
177
|
+
* Configures the client as a Token Vault privileged worker, allowing it to request Token Vault tokens on behalf of other users. This is an Early Access feature and must be enabled for your tenant.
|
|
178
|
+
*/
|
|
179
|
+
tokenVaultPrivilegedAccess?: pulumi.Input<inputs.ClientCredentialsTokenVaultPrivilegedAccess | undefined>;
|
|
168
180
|
}
|
|
169
181
|
//# sourceMappingURL=clientCredentials.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientCredentials.d.ts","sourceRoot":"","sources":["../clientCredentials.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,qBAAa,iBAAkB,SAAQ,MAAM,CAAC,cAAc;IACxD;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,sBAAsB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,iBAAiB;IAOpJ;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,iBAAiB;IAO5D;;OAEG;IACH,SAAwB,oBAAoB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACpE;;OAEG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IACxD;;OAEG;IACH,SAAwB,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5D;;;OAGG;IACH,SAAwB,cAAc,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAC1E;;OAEG;IACH,SAAwB,qBAAqB,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACjF;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,8BAA8B,GAAG,SAAS,CAAC,CAAC;IACzG;;OAEG;IACH,SAAwB,uBAAuB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,wCAAwC,GAAG,SAAS,CAAC,CAAC;IAC7H;;OAEG;IACH,SAAwB,mBAAmB,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,oCAAoC,GAAG,SAAS,CAAC,CAAC;IACrH;;OAEG;IACH,SAAwB,aAAa,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,8BAA8B,GAAG,SAAS,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"clientCredentials.d.ts","sourceRoot":"","sources":["../clientCredentials.ts"],"names":[],"mappings":"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"}
|
package/clientCredentials.js
CHANGED
|
@@ -86,6 +86,7 @@ class ClientCredentials extends pulumi.CustomResource {
|
|
|
86
86
|
resourceInputs["selfSignedTlsClientAuth"] = state?.selfSignedTlsClientAuth;
|
|
87
87
|
resourceInputs["signedRequestObject"] = state?.signedRequestObject;
|
|
88
88
|
resourceInputs["tlsClientAuth"] = state?.tlsClientAuth;
|
|
89
|
+
resourceInputs["tokenVaultPrivilegedAccess"] = state?.tokenVaultPrivilegedAccess;
|
|
89
90
|
}
|
|
90
91
|
else {
|
|
91
92
|
const args = argsOrState;
|
|
@@ -101,6 +102,7 @@ class ClientCredentials extends pulumi.CustomResource {
|
|
|
101
102
|
resourceInputs["selfSignedTlsClientAuth"] = args?.selfSignedTlsClientAuth;
|
|
102
103
|
resourceInputs["signedRequestObject"] = args?.signedRequestObject;
|
|
103
104
|
resourceInputs["tlsClientAuth"] = args?.tlsClientAuth;
|
|
105
|
+
resourceInputs["tokenVaultPrivilegedAccess"] = args?.tokenVaultPrivilegedAccess;
|
|
104
106
|
}
|
|
105
107
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
106
108
|
const secretOpts = { additionalSecretOutputs: ["clientSecret", "clientSecretWo"] };
|
package/clientCredentials.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clientCredentials.js","sourceRoot":"","sources":["../clientCredentials.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;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;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,iDAAiD,CAAC;IAExF;;;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;
|
|
1
|
+
{"version":3,"file":"clientCredentials.js","sourceRoot":"","sources":["../clientCredentials.ts"],"names":[],"mappings":"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"}
|
package/connectionDirectory.d.ts
CHANGED
|
@@ -113,7 +113,7 @@ export declare class ConnectionDirectory extends pulumi.CustomResource {
|
|
|
113
113
|
*/
|
|
114
114
|
readonly synchronizeAutomatically: pulumi.Output<boolean>;
|
|
115
115
|
/**
|
|
116
|
-
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
116
|
+
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
117
117
|
*/
|
|
118
118
|
readonly synchronizeGroups: pulumi.Output<string>;
|
|
119
119
|
/**
|
|
@@ -170,7 +170,7 @@ export interface ConnectionDirectoryState {
|
|
|
170
170
|
*/
|
|
171
171
|
synchronizeAutomatically?: pulumi.Input<boolean | undefined>;
|
|
172
172
|
/**
|
|
173
|
-
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
173
|
+
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
174
174
|
*/
|
|
175
175
|
synchronizeGroups?: pulumi.Input<string | undefined>;
|
|
176
176
|
/**
|
|
@@ -195,7 +195,7 @@ export interface ConnectionDirectoryArgs {
|
|
|
195
195
|
*/
|
|
196
196
|
synchronizeAutomatically?: pulumi.Input<boolean | undefined>;
|
|
197
197
|
/**
|
|
198
|
-
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
198
|
+
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
199
199
|
*/
|
|
200
200
|
synchronizeGroups?: pulumi.Input<string | undefined>;
|
|
201
201
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "./types/input";
|
|
3
|
+
import * as outputs from "./types/output";
|
|
2
4
|
/**
|
|
3
|
-
* With this resource, you can manage the set of Google Workspace
|
|
4
|
-
*
|
|
5
|
-
* > This resource is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
5
|
+
* With this resource, you can manage the set of Google Workspace groups synchronized via directory provisioning for an Auth0 connection.
|
|
6
6
|
*
|
|
7
7
|
* ## Example Usage
|
|
8
8
|
*
|
|
@@ -28,10 +28,16 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
28
28
|
* });
|
|
29
29
|
* const myGroups = new auth0.ConnectionDirectorySynchronizedGroups("my_groups", {
|
|
30
30
|
* connectionId: myConnection.id,
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
31
|
+
* groups: [
|
|
32
|
+
* {
|
|
33
|
+
* id: "group1",
|
|
34
|
+
* },
|
|
35
|
+
* {
|
|
36
|
+
* id: "group2",
|
|
37
|
+
* name: "test",
|
|
38
|
+
* email: "test@test.com",
|
|
39
|
+
* directMembersCount: 123,
|
|
40
|
+
* },
|
|
35
41
|
* ],
|
|
36
42
|
* }, {
|
|
37
43
|
* dependsOn: [myDirectory],
|
|
@@ -61,13 +67,19 @@ export declare class ConnectionDirectorySynchronizedGroups extends pulumi.Custom
|
|
|
61
67
|
*/
|
|
62
68
|
static isInstance(obj: any): obj is ConnectionDirectorySynchronizedGroups;
|
|
63
69
|
/**
|
|
64
|
-
* ID of the connection for which to manage synchronized groups.
|
|
70
|
+
* ID of the connection for which to manage synchronized groups.
|
|
65
71
|
*/
|
|
66
72
|
readonly connectionId: pulumi.Output<string>;
|
|
67
73
|
/**
|
|
68
|
-
*
|
|
74
|
+
* IDs of the Google Workspace Directory groups to synchronize.
|
|
75
|
+
*
|
|
76
|
+
* @deprecated Use `groups` instead, which exposes each group's name, email and member count alongside its ID.
|
|
77
|
+
*/
|
|
78
|
+
readonly groupIds: pulumi.Output<string[] | undefined>;
|
|
79
|
+
/**
|
|
80
|
+
* Google Workspace Directory groups to synchronize.
|
|
69
81
|
*/
|
|
70
|
-
readonly
|
|
82
|
+
readonly groups: pulumi.Output<outputs.ConnectionDirectorySynchronizedGroupsGroup[] | undefined>;
|
|
71
83
|
/**
|
|
72
84
|
* Create a ConnectionDirectorySynchronizedGroups resource with the given unique name, arguments, and options.
|
|
73
85
|
*
|
|
@@ -82,25 +94,37 @@ export declare class ConnectionDirectorySynchronizedGroups extends pulumi.Custom
|
|
|
82
94
|
*/
|
|
83
95
|
export interface ConnectionDirectorySynchronizedGroupsState {
|
|
84
96
|
/**
|
|
85
|
-
* ID of the connection for which to manage synchronized groups.
|
|
97
|
+
* ID of the connection for which to manage synchronized groups.
|
|
86
98
|
*/
|
|
87
99
|
connectionId?: pulumi.Input<string | undefined>;
|
|
88
100
|
/**
|
|
89
|
-
*
|
|
101
|
+
* IDs of the Google Workspace Directory groups to synchronize.
|
|
102
|
+
*
|
|
103
|
+
* @deprecated Use `groups` instead, which exposes each group's name, email and member count alongside its ID.
|
|
90
104
|
*/
|
|
91
105
|
groupIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
106
|
+
/**
|
|
107
|
+
* Google Workspace Directory groups to synchronize.
|
|
108
|
+
*/
|
|
109
|
+
groups?: pulumi.Input<pulumi.Input<inputs.ConnectionDirectorySynchronizedGroupsGroup>[] | undefined>;
|
|
92
110
|
}
|
|
93
111
|
/**
|
|
94
112
|
* The set of arguments for constructing a ConnectionDirectorySynchronizedGroups resource.
|
|
95
113
|
*/
|
|
96
114
|
export interface ConnectionDirectorySynchronizedGroupsArgs {
|
|
97
115
|
/**
|
|
98
|
-
* ID of the connection for which to manage synchronized groups.
|
|
116
|
+
* ID of the connection for which to manage synchronized groups.
|
|
99
117
|
*/
|
|
100
118
|
connectionId: pulumi.Input<string>;
|
|
101
119
|
/**
|
|
102
|
-
*
|
|
120
|
+
* IDs of the Google Workspace Directory groups to synchronize.
|
|
121
|
+
*
|
|
122
|
+
* @deprecated Use `groups` instead, which exposes each group's name, email and member count alongside its ID.
|
|
123
|
+
*/
|
|
124
|
+
groupIds?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
125
|
+
/**
|
|
126
|
+
* Google Workspace Directory groups to synchronize.
|
|
103
127
|
*/
|
|
104
|
-
|
|
128
|
+
groups?: pulumi.Input<pulumi.Input<inputs.ConnectionDirectorySynchronizedGroupsGroup>[] | undefined>;
|
|
105
129
|
}
|
|
106
130
|
//# sourceMappingURL=connectionDirectorySynchronizedGroups.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connectionDirectorySynchronizedGroups.d.ts","sourceRoot":"","sources":["../connectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"connectionDirectorySynchronizedGroups.d.ts","sourceRoot":"","sources":["../connectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AACzC,OAAO,KAAK,MAAM,MAAM,eAAe,CAAC;AACxC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,qBAAa,qCAAsC,SAAQ,MAAM,CAAC,cAAc;IAC5E;;;;;;;;OAQG;WACW,GAAG,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,CAAC,EAAE,KAAK,CAAC,EAAE,0CAA0C,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB,GAAG,qCAAqC;IAO5L;;;OAGG;WACW,UAAU,CAAC,GAAG,EAAE,GAAG,GAAG,GAAG,IAAI,qCAAqC;IAOhF;;OAEG;IACH,SAAwB,YAAY,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC;IAC5D;;;;OAIG;IACH,SAAwB,QAAQ,EAAE,MAAM,CAAC,MAAM,CAAC,MAAM,EAAE,GAAG,SAAS,CAAC,CAAC;IACtE;;OAEG;IACH,SAAwB,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,OAAO,CAAC,0CAA0C,EAAE,GAAG,SAAS,CAAC,CAAC;IAEhH;;;;;;OAMG;gBACS,IAAI,EAAE,MAAM,EAAE,IAAI,EAAE,yCAAyC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,qBAAqB;CAqBjH;AAED;;GAEG;AACH,MAAM,WAAW,0CAA0C;IACvD;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAChD;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IAC5D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,0CAA0C,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CACxG;AAED;;GAEG;AACH,MAAM,WAAW,yCAAyC;IACtD;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACnC;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;IAC5D;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,0CAA0C,CAAC,EAAE,GAAG,SAAS,CAAC,CAAC;CACxG"}
|
|
@@ -29,9 +29,7 @@ exports.ConnectionDirectorySynchronizedGroups = void 0;
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* With this resource, you can manage the set of Google Workspace
|
|
33
|
-
*
|
|
34
|
-
* > This resource is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
32
|
+
* With this resource, you can manage the set of Google Workspace groups synchronized via directory provisioning for an Auth0 connection.
|
|
35
33
|
*
|
|
36
34
|
* ## Example Usage
|
|
37
35
|
*
|
|
@@ -57,10 +55,16 @@ const utilities = __importStar(require("./utilities"));
|
|
|
57
55
|
* });
|
|
58
56
|
* const myGroups = new auth0.ConnectionDirectorySynchronizedGroups("my_groups", {
|
|
59
57
|
* connectionId: myConnection.id,
|
|
60
|
-
*
|
|
61
|
-
*
|
|
62
|
-
*
|
|
63
|
-
*
|
|
58
|
+
* groups: [
|
|
59
|
+
* {
|
|
60
|
+
* id: "group1",
|
|
61
|
+
* },
|
|
62
|
+
* {
|
|
63
|
+
* id: "group2",
|
|
64
|
+
* name: "test",
|
|
65
|
+
* email: "test@test.com",
|
|
66
|
+
* directMembersCount: 123,
|
|
67
|
+
* },
|
|
64
68
|
* ],
|
|
65
69
|
* }, {
|
|
66
70
|
* dependsOn: [myDirectory],
|
|
@@ -105,17 +109,16 @@ class ConnectionDirectorySynchronizedGroups extends pulumi.CustomResource {
|
|
|
105
109
|
const state = argsOrState;
|
|
106
110
|
resourceInputs["connectionId"] = state?.connectionId;
|
|
107
111
|
resourceInputs["groupIds"] = state?.groupIds;
|
|
112
|
+
resourceInputs["groups"] = state?.groups;
|
|
108
113
|
}
|
|
109
114
|
else {
|
|
110
115
|
const args = argsOrState;
|
|
111
116
|
if (args?.connectionId === undefined && !opts.urn) {
|
|
112
117
|
throw new Error("Missing required property 'connectionId'");
|
|
113
118
|
}
|
|
114
|
-
if (args?.groupIds === undefined && !opts.urn) {
|
|
115
|
-
throw new Error("Missing required property 'groupIds'");
|
|
116
|
-
}
|
|
117
119
|
resourceInputs["connectionId"] = args?.connectionId;
|
|
118
120
|
resourceInputs["groupIds"] = args?.groupIds;
|
|
121
|
+
resourceInputs["groups"] = args?.groups;
|
|
119
122
|
}
|
|
120
123
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
121
124
|
super(ConnectionDirectorySynchronizedGroups.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connectionDirectorySynchronizedGroups.js","sourceRoot":"","sources":["../connectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;
|
|
1
|
+
{"version":3,"file":"connectionDirectorySynchronizedGroups.js","sourceRoot":"","sources":["../connectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgDG;AACH,MAAa,qCAAsC,SAAQ,MAAM,CAAC,cAAc;IAC5E;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAkD,EAAE,IAAmC;QAChJ,OAAO,IAAI,qCAAqC,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IAC5F,CAAC;IAED,gBAAgB;IACT,MAAM,CAAU,YAAY,GAAG,yFAAyF,CAAC;IAEhI;;;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,qCAAqC,CAAC,YAAY,CAAC;IACtF,CAAC;IAyBD,YAAY,IAAY,EAAE,WAAoG,EAAE,IAAmC;QAC/J,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAAqE,CAAC;YACpF,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;SAC5C;aAAM;YACH,MAAM,IAAI,GAAG,WAAoE,CAAC;YAClF,IAAI,IAAI,EAAE,YAAY,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC/C,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;SAC3C;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,qCAAqC,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC1F,CAAC;;AAtEL,sFAuEC"}
|
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data source to retrieve all organizations associated with a specific client grant (EA only).
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
11
|
+
*
|
|
12
|
+
* const myClientGrantOrganizations = auth0.getClientGrantOrganizations({
|
|
13
|
+
* clientGrantId: "cgr_XXXXX",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getClientGrantOrganizations(args: GetClientGrantOrganizationsArgs, opts?: pulumi.InvokeOptions): Promise<GetClientGrantOrganizationsResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getClientGrantOrganizations.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetClientGrantOrganizationsArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the client grant to retrieve the associated organizations for.
|
|
24
|
+
*/
|
|
25
|
+
clientGrantId: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getClientGrantOrganizations.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetClientGrantOrganizationsResult {
|
|
31
|
+
/**
|
|
32
|
+
* The ID of the client grant to retrieve the associated organizations for.
|
|
33
|
+
*/
|
|
34
|
+
readonly clientGrantId: string;
|
|
35
|
+
/**
|
|
36
|
+
* The provider-assigned unique ID for this managed resource.
|
|
37
|
+
*/
|
|
38
|
+
readonly id: string;
|
|
39
|
+
/**
|
|
40
|
+
* The list of organizations associated with the client grant.
|
|
41
|
+
*/
|
|
42
|
+
readonly organizations: outputs.GetClientGrantOrganizationsOrganization[];
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Data source to retrieve all organizations associated with a specific client grant (EA only).
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
52
|
+
*
|
|
53
|
+
* const myClientGrantOrganizations = auth0.getClientGrantOrganizations({
|
|
54
|
+
* clientGrantId: "cgr_XXXXX",
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
58
|
+
export declare function getClientGrantOrganizationsOutput(args: GetClientGrantOrganizationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetClientGrantOrganizationsResult>;
|
|
59
|
+
/**
|
|
60
|
+
* A collection of arguments for invoking getClientGrantOrganizations.
|
|
61
|
+
*/
|
|
62
|
+
export interface GetClientGrantOrganizationsOutputArgs {
|
|
63
|
+
/**
|
|
64
|
+
* The ID of the client grant to retrieve the associated organizations for.
|
|
65
|
+
*/
|
|
66
|
+
clientGrantId: pulumi.Input<string>;
|
|
67
|
+
}
|
|
68
|
+
//# sourceMappingURL=getClientGrantOrganizations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getClientGrantOrganizations.d.ts","sourceRoot":"","sources":["../getClientGrantOrganizations.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;GAaG;AACH,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,+BAA+B,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,iCAAiC,CAAC,CAK1J;AAED;;GAEG;AACH,MAAM,WAAW,+BAA+B;IAC5C;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,iCAAiC;IAC9C;;OAEG;IACH,QAAQ,CAAC,aAAa,EAAE,MAAM,CAAC;IAC/B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,aAAa,EAAE,OAAO,CAAC,uCAAuC,EAAE,CAAC;CAC7E;AACD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,qCAAqC,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,iCAAiC,CAAC,CAKlL;AAED;;GAEG;AACH,MAAM,WAAW,qCAAqC;IAClD;;OAEG;IACH,aAAa,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;CACvC"}
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
|
+
if (k2 === undefined) k2 = k;
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
11
|
+
}) : (function(o, m, k, k2) {
|
|
12
|
+
if (k2 === undefined) k2 = k;
|
|
13
|
+
o[k2] = m[k];
|
|
14
|
+
}));
|
|
15
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
16
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
17
|
+
}) : function(o, v) {
|
|
18
|
+
o["default"] = v;
|
|
19
|
+
});
|
|
20
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
21
|
+
if (mod && mod.__esModule) return mod;
|
|
22
|
+
var result = {};
|
|
23
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
24
|
+
__setModuleDefault(result, mod);
|
|
25
|
+
return result;
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
exports.getClientGrantOrganizationsOutput = exports.getClientGrantOrganizations = void 0;
|
|
29
|
+
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
|
+
const utilities = __importStar(require("./utilities"));
|
|
31
|
+
/**
|
|
32
|
+
* Data source to retrieve all organizations associated with a specific client grant (EA only).
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
39
|
+
*
|
|
40
|
+
* const myClientGrantOrganizations = auth0.getClientGrantOrganizations({
|
|
41
|
+
* clientGrantId: "cgr_XXXXX",
|
|
42
|
+
* });
|
|
43
|
+
* ```
|
|
44
|
+
*/
|
|
45
|
+
function getClientGrantOrganizations(args, opts) {
|
|
46
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
47
|
+
return pulumi.runtime.invoke("auth0:index/getClientGrantOrganizations:getClientGrantOrganizations", {
|
|
48
|
+
"clientGrantId": args.clientGrantId,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getClientGrantOrganizations = getClientGrantOrganizations;
|
|
52
|
+
/**
|
|
53
|
+
* Data source to retrieve all organizations associated with a specific client grant (EA only).
|
|
54
|
+
*
|
|
55
|
+
* ## Example Usage
|
|
56
|
+
*
|
|
57
|
+
* ```typescript
|
|
58
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
59
|
+
* import * as auth0 from "@pulumi/auth0";
|
|
60
|
+
*
|
|
61
|
+
* const myClientGrantOrganizations = auth0.getClientGrantOrganizations({
|
|
62
|
+
* clientGrantId: "cgr_XXXXX",
|
|
63
|
+
* });
|
|
64
|
+
* ```
|
|
65
|
+
*/
|
|
66
|
+
function getClientGrantOrganizationsOutput(args, opts) {
|
|
67
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
68
|
+
return pulumi.runtime.invokeOutput("auth0:index/getClientGrantOrganizations:getClientGrantOrganizations", {
|
|
69
|
+
"clientGrantId": args.clientGrantId,
|
|
70
|
+
}, opts);
|
|
71
|
+
}
|
|
72
|
+
exports.getClientGrantOrganizationsOutput = getClientGrantOrganizationsOutput;
|
|
73
|
+
//# sourceMappingURL=getClientGrantOrganizations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getClientGrantOrganizations.js","sourceRoot":"","sources":["../getClientGrantOrganizations.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qEAAqE,EAAE;QAChG,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kEAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,iCAAiC,CAAC,IAA2C,EAAE,IAAiC;IAC5H,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,qEAAqE,EAAE;QACtG,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8EAKC"}
|
|
@@ -69,7 +69,7 @@ export interface GetConnectionDirectoryResult {
|
|
|
69
69
|
*/
|
|
70
70
|
readonly synchronizeAutomatically: boolean;
|
|
71
71
|
/**
|
|
72
|
-
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
72
|
+
* Group synchronization configuration. Valid values are: off, all, selected.
|
|
73
73
|
*/
|
|
74
74
|
readonly synchronizeGroups: string;
|
|
75
75
|
/**
|
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
2
3
|
/**
|
|
3
|
-
* Data source to retrieve the selected synchronized
|
|
4
|
-
*
|
|
5
|
-
* > This data source is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
4
|
+
* Data source to retrieve the selected synchronized groups for a connection's directory provisioning configuration.
|
|
6
5
|
*
|
|
7
6
|
* ## Example Usage
|
|
8
7
|
*
|
|
@@ -21,31 +20,41 @@ export declare function getConnectionDirectorySynchronizedGroups(args: GetConnec
|
|
|
21
20
|
*/
|
|
22
21
|
export interface GetConnectionDirectorySynchronizedGroupsArgs {
|
|
23
22
|
/**
|
|
24
|
-
* ID of the connection for which to manage synchronized groups.
|
|
23
|
+
* ID of the connection for which to manage synchronized groups.
|
|
25
24
|
*/
|
|
26
25
|
connectionId: string;
|
|
26
|
+
/**
|
|
27
|
+
* Filter the synchronized groups by a prefix search on a single field. Only `name` and `email` are searchable, and only as a prefix, so the term must take the form `name:<value>*` or `email:<value>*` (for example `name:engineering*`). Returns all synchronized groups when omitted.
|
|
28
|
+
*/
|
|
29
|
+
query?: string;
|
|
27
30
|
}
|
|
28
31
|
/**
|
|
29
32
|
* A collection of values returned by getConnectionDirectorySynchronizedGroups.
|
|
30
33
|
*/
|
|
31
34
|
export interface GetConnectionDirectorySynchronizedGroupsResult {
|
|
32
35
|
/**
|
|
33
|
-
* ID of the connection for which to manage synchronized groups.
|
|
36
|
+
* ID of the connection for which to manage synchronized groups.
|
|
34
37
|
*/
|
|
35
38
|
readonly connectionId: string;
|
|
36
39
|
/**
|
|
37
|
-
*
|
|
40
|
+
* IDs of the synchronized Google Workspace Directory groups. Limited to the groups matching `query`, when one is given.
|
|
38
41
|
*/
|
|
39
42
|
readonly groupIds: string[];
|
|
43
|
+
/**
|
|
44
|
+
* Details of the synchronized Google Workspace Directory groups. Limited to the groups matching `query`, when one is given.
|
|
45
|
+
*/
|
|
46
|
+
readonly groups: outputs.GetConnectionDirectorySynchronizedGroupsGroup[];
|
|
40
47
|
/**
|
|
41
48
|
* The provider-assigned unique ID for this managed resource.
|
|
42
49
|
*/
|
|
43
50
|
readonly id: string;
|
|
51
|
+
/**
|
|
52
|
+
* Filter the synchronized groups by a prefix search on a single field. Only `name` and `email` are searchable, and only as a prefix, so the term must take the form `name:<value>*` or `email:<value>*` (for example `name:engineering*`). Returns all synchronized groups when omitted.
|
|
53
|
+
*/
|
|
54
|
+
readonly query?: string;
|
|
44
55
|
}
|
|
45
56
|
/**
|
|
46
|
-
* Data source to retrieve the selected synchronized
|
|
47
|
-
*
|
|
48
|
-
* > This data source is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
57
|
+
* Data source to retrieve the selected synchronized groups for a connection's directory provisioning configuration.
|
|
49
58
|
*
|
|
50
59
|
* ## Example Usage
|
|
51
60
|
*
|
|
@@ -64,8 +73,12 @@ export declare function getConnectionDirectorySynchronizedGroupsOutput(args: Get
|
|
|
64
73
|
*/
|
|
65
74
|
export interface GetConnectionDirectorySynchronizedGroupsOutputArgs {
|
|
66
75
|
/**
|
|
67
|
-
* ID of the connection for which to manage synchronized groups.
|
|
76
|
+
* ID of the connection for which to manage synchronized groups.
|
|
68
77
|
*/
|
|
69
78
|
connectionId: pulumi.Input<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Filter the synchronized groups by a prefix search on a single field. Only `name` and `email` are searchable, and only as a prefix, so the term must take the form `name:<value>*` or `email:<value>*` (for example `name:engineering*`). Returns all synchronized groups when omitted.
|
|
81
|
+
*/
|
|
82
|
+
query?: pulumi.Input<string | undefined>;
|
|
70
83
|
}
|
|
71
84
|
//# sourceMappingURL=getConnectionDirectorySynchronizedGroups.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getConnectionDirectorySynchronizedGroups.d.ts","sourceRoot":"","sources":["../getConnectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;
|
|
1
|
+
{"version":3,"file":"getConnectionDirectorySynchronizedGroups.d.ts","sourceRoot":"","sources":["../getConnectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;GAaG;AACH,wBAAgB,wCAAwC,CAAC,IAAI,EAAE,4CAA4C,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,8CAA8C,CAAC,CAMjM;AAED;;GAEG;AACH,MAAM,WAAW,4CAA4C;IACzD;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,8CAA8C;IAC3D;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE,MAAM,EAAE,CAAC;IAC5B;;OAEG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC,6CAA6C,EAAE,CAAC;IACzE;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;CAC3B;AACD;;;;;;;;;;;;;GAaG;AACH,wBAAgB,8CAA8C,CAAC,IAAI,EAAE,kDAAkD,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,8CAA8C,CAAC,CAMzN;AAED;;GAEG;AACH,MAAM,WAAW,kDAAkD;IAC/D;;OAEG;IACH,YAAY,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;IACnC;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;CAC5C"}
|
|
@@ -29,9 +29,7 @@ exports.getConnectionDirectorySynchronizedGroupsOutput = exports.getConnectionDi
|
|
|
29
29
|
const pulumi = __importStar(require("@pulumi/pulumi"));
|
|
30
30
|
const utilities = __importStar(require("./utilities"));
|
|
31
31
|
/**
|
|
32
|
-
* Data source to retrieve the selected synchronized
|
|
33
|
-
*
|
|
34
|
-
* > This data source is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
32
|
+
* Data source to retrieve the selected synchronized groups for a connection's directory provisioning configuration.
|
|
35
33
|
*
|
|
36
34
|
* ## Example Usage
|
|
37
35
|
*
|
|
@@ -48,13 +46,12 @@ function getConnectionDirectorySynchronizedGroups(args, opts) {
|
|
|
48
46
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
49
47
|
return pulumi.runtime.invoke("auth0:index/getConnectionDirectorySynchronizedGroups:getConnectionDirectorySynchronizedGroups", {
|
|
50
48
|
"connectionId": args.connectionId,
|
|
49
|
+
"query": args.query,
|
|
51
50
|
}, opts);
|
|
52
51
|
}
|
|
53
52
|
exports.getConnectionDirectorySynchronizedGroups = getConnectionDirectorySynchronizedGroups;
|
|
54
53
|
/**
|
|
55
|
-
* Data source to retrieve the selected synchronized
|
|
56
|
-
*
|
|
57
|
-
* > This data source is only available for [EA](https://auth0.com/docs/troubleshoot/product-lifecycle/product-release-stages#early-access) users.
|
|
54
|
+
* Data source to retrieve the selected synchronized groups for a connection's directory provisioning configuration.
|
|
58
55
|
*
|
|
59
56
|
* ## Example Usage
|
|
60
57
|
*
|
|
@@ -71,6 +68,7 @@ function getConnectionDirectorySynchronizedGroupsOutput(args, opts) {
|
|
|
71
68
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
72
69
|
return pulumi.runtime.invokeOutput("auth0:index/getConnectionDirectorySynchronizedGroups:getConnectionDirectorySynchronizedGroups", {
|
|
73
70
|
"connectionId": args.connectionId,
|
|
71
|
+
"query": args.query,
|
|
74
72
|
}, opts);
|
|
75
73
|
}
|
|
76
74
|
exports.getConnectionDirectorySynchronizedGroupsOutput = getConnectionDirectorySynchronizedGroupsOutput;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getConnectionDirectorySynchronizedGroups.js","sourceRoot":"","sources":["../getConnectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;
|
|
1
|
+
{"version":3,"file":"getConnectionDirectorySynchronizedGroups.js","sourceRoot":"","sources":["../getConnectionDirectorySynchronizedGroups.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,wCAAwC,CAAC,IAAkD,EAAE,IAA2B;IACpI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,+FAA+F,EAAE;QAC1H,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4FAMC;AAyCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,8CAA8C,CAAC,IAAwD,EAAE,IAAiC;IACtJ,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,+FAA+F,EAAE;QAChI,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,OAAO,EAAE,IAAI,CAAC,KAAK;KACtB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wGAMC"}
|
package/getOrganization.d.ts
CHANGED
|
@@ -69,6 +69,10 @@ export interface GetOrganizationResult {
|
|
|
69
69
|
* The provider-assigned unique ID for this managed resource.
|
|
70
70
|
*/
|
|
71
71
|
readonly id: string;
|
|
72
|
+
/**
|
|
73
|
+
* Controls whether this organization's app entitlement is active, determining whether members of this organization can access applications associated with it (EA only). This is distinct from `auth0.ClientGrant`'s `organizationUsage` attribute, which controls whether organizations can be used with client credentials exchanges for a given client grant.
|
|
74
|
+
*/
|
|
75
|
+
readonly isAppEntitlementActive: boolean;
|
|
72
76
|
/**
|
|
73
77
|
* User ID(s) that are members of the organization. Skips populating if `skipMembers` is `true`.
|
|
74
78
|
*/
|
package/getOrganization.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOrganization.d.ts","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,eAAe,CAAC,IAAI,CAAC,EAAE,mBAAmB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAUvH;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC,uBAAuB,EAAE,CAAC;IACtD;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAChC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC,yBAAyB,EAAE,CAAC;IAC1D;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC;IAC3B;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IACpC;;OAEG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;IAC/B;;OAEG;IACH,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAC;IACxC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC,yBAAyB,EAAE,CAAC;CAC7D;AACD;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAU/I;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACrD;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;CACnD"}
|
|
1
|
+
{"version":3,"file":"getOrganization.d.ts","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":"AAGA,OAAO,KAAK,MAAM,MAAM,gBAAgB,CAAC;AAEzC,OAAO,KAAK,OAAO,MAAM,gBAAgB,CAAC;AAG1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,eAAe,CAAC,IAAI,CAAC,EAAE,mBAAmB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,aAAa,GAAG,OAAO,CAAC,qBAAqB,CAAC,CAUvH;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAChC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC;IACd;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB;;OAEG;IACH,gBAAgB,CAAC,EAAE,OAAO,CAAC;IAC3B;;OAEG;IACH,eAAe,CAAC,EAAE,OAAO,CAAC;IAC1B;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC;;OAEG;IACH,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC,uBAAuB,EAAE,CAAC;IACtD;;OAEG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,CAAC;IAChC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC,yBAAyB,EAAE,CAAC;IAC1D;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,QAAQ,CAAC,sBAAsB,EAAE,OAAO,CAAC;IACzC;;OAEG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,EAAE,CAAC;IAC3B;;OAEG;IACH,QAAQ,CAAC,QAAQ,EAAE;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAAA;KAAC,CAAC;IAC3C;;OAEG;IACH,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;IACvB;;OAEG;IACH,QAAQ,CAAC,cAAc,CAAC,EAAE,MAAM,CAAC;IACjC;;OAEG;IACH,QAAQ,CAAC,gBAAgB,CAAC,EAAE,OAAO,CAAC;IACpC;;OAEG;IACH,QAAQ,CAAC,eAAe,CAAC,EAAE,OAAO,CAAC;IACnC;;OAEG;IACH,QAAQ,CAAC,WAAW,CAAC,EAAE,OAAO,CAAC;IAC/B;;OAEG;IACH,QAAQ,CAAC,sBAAsB,EAAE,MAAM,CAAC;IACxC;;OAEG;IACH,QAAQ,CAAC,WAAW,EAAE,OAAO,CAAC,yBAAyB,EAAE,CAAC;CAC7D;AACD;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,qBAAqB,CAAC,IAAI,CAAC,EAAE,yBAAyB,EAAE,IAAI,CAAC,EAAE,MAAM,CAAC,mBAAmB,GAAG,MAAM,CAAC,MAAM,CAAC,qBAAqB,CAAC,CAU/I;AAED;;GAEG;AACH,MAAM,WAAW,yBAAyB;IACtC;;OAEG;IACH,IAAI,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IACxC;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC;IAClD;;OAEG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACrD;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;IACpD;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,OAAO,GAAG,SAAS,CAAC,CAAC;CACnD"}
|
package/getOrganization.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOrganization.js","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,6CAA6C,EAAE;QACxE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,0CAUC;
|
|
1
|
+
{"version":3,"file":"getOrganization.js","sourceRoot":"","sources":["../getOrganization.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;;;;;;;;;;;;;;;;;;;;;;;;AAEjF,uDAAyC;AAGzC,uDAAyC;AAEzC;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,eAAe,CAAC,IAA0B,EAAE,IAA2B;IACnF,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,6CAA6C,EAAE;QACxE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,0CAUC;AA6FD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,qBAAqB,CAAC,IAAgC,EAAE,IAAiC;IACrG,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,6CAA6C,EAAE;QAC9E,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,aAAa,EAAE,IAAI,CAAC,WAAW;KAClC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAVD,sDAUC"}
|