@pulumi/rancher2 11.2.0-alpha.1776753849 → 12.0.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/appV2.d.ts CHANGED
@@ -19,7 +19,7 @@ import * as pulumi from "@pulumi/pulumi";
19
19
  * chartVersion: "9.4.200",
20
20
  * values: std.file({
21
21
  * input: "values.yaml",
22
- * }).then(invoke => invoke.result),
22
+ * }).result,
23
23
  * });
24
24
  * ```
25
25
  *
package/appV2.js CHANGED
@@ -25,7 +25,7 @@ const utilities = require("./utilities");
25
25
  * chartVersion: "9.4.200",
26
26
  * values: std.file({
27
27
  * input: "values.yaml",
28
- * }).then(invoke => invoke.result),
28
+ * }).result,
29
29
  * });
30
30
  * ```
31
31
  *
@@ -0,0 +1,301 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ export declare class AuthConfigCognito extends pulumi.CustomResource {
3
+ /**
4
+ * Get an existing AuthConfigCognito resource's state with the given name, ID, and optional extra
5
+ * properties used to qualify the lookup.
6
+ *
7
+ * @param name The _unique_ name of the resulting resource.
8
+ * @param id The _unique_ provider ID of the resource to lookup.
9
+ * @param state Any extra arguments used during the lookup.
10
+ * @param opts Optional settings to control the behavior of the CustomResource.
11
+ */
12
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AuthConfigCognitoState, opts?: pulumi.CustomResourceOptions): AuthConfigCognito;
13
+ /**
14
+ * Returns true if the given object is an instance of AuthConfigCognito. This is designed to work even
15
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
16
+ */
17
+ static isInstance(obj: any): obj is AuthConfigCognito;
18
+ readonly accessMode: pulumi.Output<string | undefined>;
19
+ readonly allowedPrincipalIds: pulumi.Output<string[] | undefined>;
20
+ /**
21
+ * Annotations of the resource
22
+ */
23
+ readonly annotations: pulumi.Output<{
24
+ [key: string]: string;
25
+ }>;
26
+ /**
27
+ * The OIDC Auth Endpoint URL.
28
+ */
29
+ readonly authEndpoint: pulumi.Output<string>;
30
+ /**
31
+ * A PEM-encoded CA certificate for the OIDC provider.
32
+ */
33
+ readonly certificate: pulumi.Output<string | undefined>;
34
+ /**
35
+ * The OIDC Client ID.
36
+ */
37
+ readonly clientId: pulumi.Output<string>;
38
+ /**
39
+ * The OIDC Client Secret.
40
+ */
41
+ readonly clientSecret: pulumi.Output<string>;
42
+ /**
43
+ * The OIDC Claim to use for the user email.
44
+ */
45
+ readonly emailClaim: pulumi.Output<string | undefined>;
46
+ readonly enabled: pulumi.Output<boolean | undefined>;
47
+ /**
48
+ * The provider specific URL used for logging a user out of their session.
49
+ */
50
+ readonly endSessionEndpoint: pulumi.Output<string | undefined>;
51
+ /**
52
+ * Enable group search.
53
+ */
54
+ readonly groupSearchEnabled: pulumi.Output<boolean | undefined>;
55
+ /**
56
+ * The name of the OIDC claim to use for the user's group memberships.
57
+ */
58
+ readonly groupsField: pulumi.Output<string | undefined>;
59
+ /**
60
+ * The OIDC issuer URL.
61
+ */
62
+ readonly issuer: pulumi.Output<string>;
63
+ /**
64
+ * The OIDC JWKS URL.
65
+ */
66
+ readonly jwksUrl: pulumi.Output<string>;
67
+ /**
68
+ * Labels of the resource
69
+ */
70
+ readonly labels: pulumi.Output<{
71
+ [key: string]: string;
72
+ }>;
73
+ /**
74
+ * Allow the user to choose whether or not to logout of their session with the IdP.
75
+ */
76
+ readonly logoutAllEnabled: pulumi.Output<boolean | undefined>;
77
+ /**
78
+ * Force the user to logout of their session with the IdP.
79
+ */
80
+ readonly logoutAllForced: pulumi.Output<boolean | undefined>;
81
+ readonly name: pulumi.Output<string>;
82
+ /**
83
+ * The OIDC Claim to use for the user name.
84
+ */
85
+ readonly nameClaim: pulumi.Output<string | undefined>;
86
+ /**
87
+ * A PEM-encoded private key for the OIDC provider.
88
+ */
89
+ readonly privateKey: pulumi.Output<string | undefined>;
90
+ /**
91
+ * The URL of the Rancher server. This is used as the redirect URI for the OIDC provider.
92
+ */
93
+ readonly rancherUrl: pulumi.Output<string>;
94
+ /**
95
+ * The OIDC scopes to request. Defaults to `openid profile email`.
96
+ */
97
+ readonly scopes: pulumi.Output<string>;
98
+ /**
99
+ * The OIDC Token Endpoint URL.
100
+ */
101
+ readonly tokenEndpoint: pulumi.Output<string>;
102
+ readonly type: pulumi.Output<string>;
103
+ /**
104
+ * The OIDC User Info Endpoint URL.
105
+ */
106
+ readonly userinfoEndpoint: pulumi.Output<string>;
107
+ /**
108
+ * Create a AuthConfigCognito resource with the given unique name, arguments, and options.
109
+ *
110
+ * @param name The _unique_ name of the resource.
111
+ * @param args The arguments to use to populate this resource's properties.
112
+ * @param opts A bag of options that control this resource's behavior.
113
+ */
114
+ constructor(name: string, args: AuthConfigCognitoArgs, opts?: pulumi.CustomResourceOptions);
115
+ }
116
+ /**
117
+ * Input properties used for looking up and filtering AuthConfigCognito resources.
118
+ */
119
+ export interface AuthConfigCognitoState {
120
+ accessMode?: pulumi.Input<string>;
121
+ allowedPrincipalIds?: pulumi.Input<pulumi.Input<string>[]>;
122
+ /**
123
+ * Annotations of the resource
124
+ */
125
+ annotations?: pulumi.Input<{
126
+ [key: string]: pulumi.Input<string>;
127
+ }>;
128
+ /**
129
+ * The OIDC Auth Endpoint URL.
130
+ */
131
+ authEndpoint?: pulumi.Input<string>;
132
+ /**
133
+ * A PEM-encoded CA certificate for the OIDC provider.
134
+ */
135
+ certificate?: pulumi.Input<string>;
136
+ /**
137
+ * The OIDC Client ID.
138
+ */
139
+ clientId?: pulumi.Input<string>;
140
+ /**
141
+ * The OIDC Client Secret.
142
+ */
143
+ clientSecret?: pulumi.Input<string>;
144
+ /**
145
+ * The OIDC Claim to use for the user email.
146
+ */
147
+ emailClaim?: pulumi.Input<string>;
148
+ enabled?: pulumi.Input<boolean>;
149
+ /**
150
+ * The provider specific URL used for logging a user out of their session.
151
+ */
152
+ endSessionEndpoint?: pulumi.Input<string>;
153
+ /**
154
+ * Enable group search.
155
+ */
156
+ groupSearchEnabled?: pulumi.Input<boolean>;
157
+ /**
158
+ * The name of the OIDC claim to use for the user's group memberships.
159
+ */
160
+ groupsField?: pulumi.Input<string>;
161
+ /**
162
+ * The OIDC issuer URL.
163
+ */
164
+ issuer?: pulumi.Input<string>;
165
+ /**
166
+ * The OIDC JWKS URL.
167
+ */
168
+ jwksUrl?: pulumi.Input<string>;
169
+ /**
170
+ * Labels of the resource
171
+ */
172
+ labels?: pulumi.Input<{
173
+ [key: string]: pulumi.Input<string>;
174
+ }>;
175
+ /**
176
+ * Allow the user to choose whether or not to logout of their session with the IdP.
177
+ */
178
+ logoutAllEnabled?: pulumi.Input<boolean>;
179
+ /**
180
+ * Force the user to logout of their session with the IdP.
181
+ */
182
+ logoutAllForced?: pulumi.Input<boolean>;
183
+ name?: pulumi.Input<string>;
184
+ /**
185
+ * The OIDC Claim to use for the user name.
186
+ */
187
+ nameClaim?: pulumi.Input<string>;
188
+ /**
189
+ * A PEM-encoded private key for the OIDC provider.
190
+ */
191
+ privateKey?: pulumi.Input<string>;
192
+ /**
193
+ * The URL of the Rancher server. This is used as the redirect URI for the OIDC provider.
194
+ */
195
+ rancherUrl?: pulumi.Input<string>;
196
+ /**
197
+ * The OIDC scopes to request. Defaults to `openid profile email`.
198
+ */
199
+ scopes?: pulumi.Input<string>;
200
+ /**
201
+ * The OIDC Token Endpoint URL.
202
+ */
203
+ tokenEndpoint?: pulumi.Input<string>;
204
+ type?: pulumi.Input<string>;
205
+ /**
206
+ * The OIDC User Info Endpoint URL.
207
+ */
208
+ userinfoEndpoint?: pulumi.Input<string>;
209
+ }
210
+ /**
211
+ * The set of arguments for constructing a AuthConfigCognito resource.
212
+ */
213
+ export interface AuthConfigCognitoArgs {
214
+ accessMode?: pulumi.Input<string>;
215
+ allowedPrincipalIds?: pulumi.Input<pulumi.Input<string>[]>;
216
+ /**
217
+ * Annotations of the resource
218
+ */
219
+ annotations?: pulumi.Input<{
220
+ [key: string]: pulumi.Input<string>;
221
+ }>;
222
+ /**
223
+ * The OIDC Auth Endpoint URL.
224
+ */
225
+ authEndpoint?: pulumi.Input<string>;
226
+ /**
227
+ * A PEM-encoded CA certificate for the OIDC provider.
228
+ */
229
+ certificate?: pulumi.Input<string>;
230
+ /**
231
+ * The OIDC Client ID.
232
+ */
233
+ clientId: pulumi.Input<string>;
234
+ /**
235
+ * The OIDC Client Secret.
236
+ */
237
+ clientSecret: pulumi.Input<string>;
238
+ /**
239
+ * The OIDC Claim to use for the user email.
240
+ */
241
+ emailClaim?: pulumi.Input<string>;
242
+ enabled?: pulumi.Input<boolean>;
243
+ /**
244
+ * The provider specific URL used for logging a user out of their session.
245
+ */
246
+ endSessionEndpoint?: pulumi.Input<string>;
247
+ /**
248
+ * Enable group search.
249
+ */
250
+ groupSearchEnabled?: pulumi.Input<boolean>;
251
+ /**
252
+ * The name of the OIDC claim to use for the user's group memberships.
253
+ */
254
+ groupsField?: pulumi.Input<string>;
255
+ /**
256
+ * The OIDC issuer URL.
257
+ */
258
+ issuer: pulumi.Input<string>;
259
+ /**
260
+ * The OIDC JWKS URL.
261
+ */
262
+ jwksUrl?: pulumi.Input<string>;
263
+ /**
264
+ * Labels of the resource
265
+ */
266
+ labels?: pulumi.Input<{
267
+ [key: string]: pulumi.Input<string>;
268
+ }>;
269
+ /**
270
+ * Allow the user to choose whether or not to logout of their session with the IdP.
271
+ */
272
+ logoutAllEnabled?: pulumi.Input<boolean>;
273
+ /**
274
+ * Force the user to logout of their session with the IdP.
275
+ */
276
+ logoutAllForced?: pulumi.Input<boolean>;
277
+ /**
278
+ * The OIDC Claim to use for the user name.
279
+ */
280
+ nameClaim?: pulumi.Input<string>;
281
+ /**
282
+ * A PEM-encoded private key for the OIDC provider.
283
+ */
284
+ privateKey?: pulumi.Input<string>;
285
+ /**
286
+ * The URL of the Rancher server. This is used as the redirect URI for the OIDC provider.
287
+ */
288
+ rancherUrl: pulumi.Input<string>;
289
+ /**
290
+ * The OIDC scopes to request. Defaults to `openid profile email`.
291
+ */
292
+ scopes?: pulumi.Input<string>;
293
+ /**
294
+ * The OIDC Token Endpoint URL.
295
+ */
296
+ tokenEndpoint?: pulumi.Input<string>;
297
+ /**
298
+ * The OIDC User Info Endpoint URL.
299
+ */
300
+ userinfoEndpoint?: pulumi.Input<string>;
301
+ }
@@ -0,0 +1,111 @@
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.AuthConfigCognito = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("./utilities");
8
+ class AuthConfigCognito extends pulumi.CustomResource {
9
+ /**
10
+ * Get an existing AuthConfigCognito resource's state with the given name, ID, and optional extra
11
+ * properties used to qualify the lookup.
12
+ *
13
+ * @param name The _unique_ name of the resulting resource.
14
+ * @param id The _unique_ provider ID of the resource to lookup.
15
+ * @param state Any extra arguments used during the lookup.
16
+ * @param opts Optional settings to control the behavior of the CustomResource.
17
+ */
18
+ static get(name, id, state, opts) {
19
+ return new AuthConfigCognito(name, state, { ...opts, id: id });
20
+ }
21
+ /**
22
+ * Returns true if the given object is an instance of AuthConfigCognito. This is designed to work even
23
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
24
+ */
25
+ static isInstance(obj) {
26
+ if (obj === undefined || obj === null) {
27
+ return false;
28
+ }
29
+ return obj['__pulumiType'] === AuthConfigCognito.__pulumiType;
30
+ }
31
+ constructor(name, argsOrState, opts) {
32
+ let resourceInputs = {};
33
+ opts = opts || {};
34
+ if (opts.id) {
35
+ const state = argsOrState;
36
+ resourceInputs["accessMode"] = state?.accessMode;
37
+ resourceInputs["allowedPrincipalIds"] = state?.allowedPrincipalIds;
38
+ resourceInputs["annotations"] = state?.annotations;
39
+ resourceInputs["authEndpoint"] = state?.authEndpoint;
40
+ resourceInputs["certificate"] = state?.certificate;
41
+ resourceInputs["clientId"] = state?.clientId;
42
+ resourceInputs["clientSecret"] = state?.clientSecret;
43
+ resourceInputs["emailClaim"] = state?.emailClaim;
44
+ resourceInputs["enabled"] = state?.enabled;
45
+ resourceInputs["endSessionEndpoint"] = state?.endSessionEndpoint;
46
+ resourceInputs["groupSearchEnabled"] = state?.groupSearchEnabled;
47
+ resourceInputs["groupsField"] = state?.groupsField;
48
+ resourceInputs["issuer"] = state?.issuer;
49
+ resourceInputs["jwksUrl"] = state?.jwksUrl;
50
+ resourceInputs["labels"] = state?.labels;
51
+ resourceInputs["logoutAllEnabled"] = state?.logoutAllEnabled;
52
+ resourceInputs["logoutAllForced"] = state?.logoutAllForced;
53
+ resourceInputs["name"] = state?.name;
54
+ resourceInputs["nameClaim"] = state?.nameClaim;
55
+ resourceInputs["privateKey"] = state?.privateKey;
56
+ resourceInputs["rancherUrl"] = state?.rancherUrl;
57
+ resourceInputs["scopes"] = state?.scopes;
58
+ resourceInputs["tokenEndpoint"] = state?.tokenEndpoint;
59
+ resourceInputs["type"] = state?.type;
60
+ resourceInputs["userinfoEndpoint"] = state?.userinfoEndpoint;
61
+ }
62
+ else {
63
+ const args = argsOrState;
64
+ if (args?.clientId === undefined && !opts.urn) {
65
+ throw new Error("Missing required property 'clientId'");
66
+ }
67
+ if (args?.clientSecret === undefined && !opts.urn) {
68
+ throw new Error("Missing required property 'clientSecret'");
69
+ }
70
+ if (args?.issuer === undefined && !opts.urn) {
71
+ throw new Error("Missing required property 'issuer'");
72
+ }
73
+ if (args?.rancherUrl === undefined && !opts.urn) {
74
+ throw new Error("Missing required property 'rancherUrl'");
75
+ }
76
+ resourceInputs["accessMode"] = args?.accessMode;
77
+ resourceInputs["allowedPrincipalIds"] = args?.allowedPrincipalIds;
78
+ resourceInputs["annotations"] = args?.annotations;
79
+ resourceInputs["authEndpoint"] = args?.authEndpoint;
80
+ resourceInputs["certificate"] = args?.certificate ? pulumi.secret(args.certificate) : undefined;
81
+ resourceInputs["clientId"] = args?.clientId ? pulumi.secret(args.clientId) : undefined;
82
+ resourceInputs["clientSecret"] = args?.clientSecret ? pulumi.secret(args.clientSecret) : undefined;
83
+ resourceInputs["emailClaim"] = args?.emailClaim;
84
+ resourceInputs["enabled"] = args?.enabled;
85
+ resourceInputs["endSessionEndpoint"] = args?.endSessionEndpoint;
86
+ resourceInputs["groupSearchEnabled"] = args?.groupSearchEnabled;
87
+ resourceInputs["groupsField"] = args?.groupsField;
88
+ resourceInputs["issuer"] = args?.issuer;
89
+ resourceInputs["jwksUrl"] = args?.jwksUrl;
90
+ resourceInputs["labels"] = args?.labels;
91
+ resourceInputs["logoutAllEnabled"] = args?.logoutAllEnabled;
92
+ resourceInputs["logoutAllForced"] = args?.logoutAllForced;
93
+ resourceInputs["nameClaim"] = args?.nameClaim;
94
+ resourceInputs["privateKey"] = args?.privateKey ? pulumi.secret(args.privateKey) : undefined;
95
+ resourceInputs["rancherUrl"] = args?.rancherUrl;
96
+ resourceInputs["scopes"] = args?.scopes;
97
+ resourceInputs["tokenEndpoint"] = args?.tokenEndpoint;
98
+ resourceInputs["userinfoEndpoint"] = args?.userinfoEndpoint;
99
+ resourceInputs["name"] = undefined /*out*/;
100
+ resourceInputs["type"] = undefined /*out*/;
101
+ }
102
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
103
+ const secretOpts = { additionalSecretOutputs: ["certificate", "clientId", "clientSecret", "privateKey"] };
104
+ opts = pulumi.mergeOptions(opts, secretOpts);
105
+ super(AuthConfigCognito.__pulumiType, name, resourceInputs, opts);
106
+ }
107
+ }
108
+ exports.AuthConfigCognito = AuthConfigCognito;
109
+ /** @internal */
110
+ AuthConfigCognito.__pulumiType = 'rancher2:index/authConfigCognito:AuthConfigCognito';
111
+ //# sourceMappingURL=authConfigCognito.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"authConfigCognito.js","sourceRoot":"","sources":["../authConfigCognito.ts"],"names":[],"mappings":"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"}
@@ -78,10 +78,18 @@ export declare class AuthConfigGenericOidc extends pulumi.CustomResource {
78
78
  * The OIDC Client Secret.
79
79
  */
80
80
  readonly clientSecret: pulumi.Output<string>;
81
+ /**
82
+ * The OIDC Claim to use for the user email.
83
+ */
84
+ readonly emailClaim: pulumi.Output<string | undefined>;
81
85
  /**
82
86
  * Enable the auth config provider. Default `true` (bool)
83
87
  */
84
88
  readonly enabled: pulumi.Output<boolean | undefined>;
89
+ /**
90
+ * The provider specific URL used for logging a user out of their session.
91
+ */
92
+ readonly endSessionEndpoint: pulumi.Output<string | undefined>;
85
93
  /**
86
94
  * Enable group search. Default `false` (bool)
87
95
  */
@@ -104,10 +112,22 @@ export declare class AuthConfigGenericOidc extends pulumi.CustomResource {
104
112
  readonly labels: pulumi.Output<{
105
113
  [key: string]: string;
106
114
  }>;
115
+ /**
116
+ * Allow the user to choose whether or not to logout of their session with the IdP.
117
+ */
118
+ readonly logoutAllEnabled: pulumi.Output<boolean | undefined>;
119
+ /**
120
+ * Force the user to logout of their session with the IdP.
121
+ */
122
+ readonly logoutAllForced: pulumi.Output<boolean | undefined>;
107
123
  /**
108
124
  * (Computed) The name of the resource (string)
109
125
  */
110
126
  readonly name: pulumi.Output<string>;
127
+ /**
128
+ * The OIDC Claim to use for the user name.
129
+ */
130
+ readonly nameClaim: pulumi.Output<string | undefined>;
111
131
  /**
112
132
  * A PEM-encoded private key for the OIDC provider.
113
133
  */
@@ -175,10 +195,18 @@ export interface AuthConfigGenericOidcState {
175
195
  * The OIDC Client Secret.
176
196
  */
177
197
  clientSecret?: pulumi.Input<string>;
198
+ /**
199
+ * The OIDC Claim to use for the user email.
200
+ */
201
+ emailClaim?: pulumi.Input<string>;
178
202
  /**
179
203
  * Enable the auth config provider. Default `true` (bool)
180
204
  */
181
205
  enabled?: pulumi.Input<boolean>;
206
+ /**
207
+ * The provider specific URL used for logging a user out of their session.
208
+ */
209
+ endSessionEndpoint?: pulumi.Input<string>;
182
210
  /**
183
211
  * Enable group search. Default `false` (bool)
184
212
  */
@@ -201,10 +229,22 @@ export interface AuthConfigGenericOidcState {
201
229
  labels?: pulumi.Input<{
202
230
  [key: string]: pulumi.Input<string>;
203
231
  }>;
232
+ /**
233
+ * Allow the user to choose whether or not to logout of their session with the IdP.
234
+ */
235
+ logoutAllEnabled?: pulumi.Input<boolean>;
236
+ /**
237
+ * Force the user to logout of their session with the IdP.
238
+ */
239
+ logoutAllForced?: pulumi.Input<boolean>;
204
240
  /**
205
241
  * (Computed) The name of the resource (string)
206
242
  */
207
243
  name?: pulumi.Input<string>;
244
+ /**
245
+ * The OIDC Claim to use for the user name.
246
+ */
247
+ nameClaim?: pulumi.Input<string>;
208
248
  /**
209
249
  * A PEM-encoded private key for the OIDC provider.
210
250
  */
@@ -264,10 +304,18 @@ export interface AuthConfigGenericOidcArgs {
264
304
  * The OIDC Client Secret.
265
305
  */
266
306
  clientSecret: pulumi.Input<string>;
307
+ /**
308
+ * The OIDC Claim to use for the user email.
309
+ */
310
+ emailClaim?: pulumi.Input<string>;
267
311
  /**
268
312
  * Enable the auth config provider. Default `true` (bool)
269
313
  */
270
314
  enabled?: pulumi.Input<boolean>;
315
+ /**
316
+ * The provider specific URL used for logging a user out of their session.
317
+ */
318
+ endSessionEndpoint?: pulumi.Input<string>;
271
319
  /**
272
320
  * Enable group search. Default `false` (bool)
273
321
  */
@@ -290,6 +338,18 @@ export interface AuthConfigGenericOidcArgs {
290
338
  labels?: pulumi.Input<{
291
339
  [key: string]: pulumi.Input<string>;
292
340
  }>;
341
+ /**
342
+ * Allow the user to choose whether or not to logout of their session with the IdP.
343
+ */
344
+ logoutAllEnabled?: pulumi.Input<boolean>;
345
+ /**
346
+ * Force the user to logout of their session with the IdP.
347
+ */
348
+ logoutAllForced?: pulumi.Input<boolean>;
349
+ /**
350
+ * The OIDC Claim to use for the user name.
351
+ */
352
+ nameClaim?: pulumi.Input<string>;
293
353
  /**
294
354
  * A PEM-encoded private key for the OIDC provider.
295
355
  */
@@ -73,13 +73,18 @@ class AuthConfigGenericOidc extends pulumi.CustomResource {
73
73
  resourceInputs["certificate"] = state?.certificate;
74
74
  resourceInputs["clientId"] = state?.clientId;
75
75
  resourceInputs["clientSecret"] = state?.clientSecret;
76
+ resourceInputs["emailClaim"] = state?.emailClaim;
76
77
  resourceInputs["enabled"] = state?.enabled;
78
+ resourceInputs["endSessionEndpoint"] = state?.endSessionEndpoint;
77
79
  resourceInputs["groupSearchEnabled"] = state?.groupSearchEnabled;
78
80
  resourceInputs["groupsField"] = state?.groupsField;
79
81
  resourceInputs["issuer"] = state?.issuer;
80
82
  resourceInputs["jwksUrl"] = state?.jwksUrl;
81
83
  resourceInputs["labels"] = state?.labels;
84
+ resourceInputs["logoutAllEnabled"] = state?.logoutAllEnabled;
85
+ resourceInputs["logoutAllForced"] = state?.logoutAllForced;
82
86
  resourceInputs["name"] = state?.name;
87
+ resourceInputs["nameClaim"] = state?.nameClaim;
83
88
  resourceInputs["privateKey"] = state?.privateKey;
84
89
  resourceInputs["rancherUrl"] = state?.rancherUrl;
85
90
  resourceInputs["scopes"] = state?.scopes;
@@ -108,12 +113,17 @@ class AuthConfigGenericOidc extends pulumi.CustomResource {
108
113
  resourceInputs["certificate"] = args?.certificate ? pulumi.secret(args.certificate) : undefined;
109
114
  resourceInputs["clientId"] = args?.clientId ? pulumi.secret(args.clientId) : undefined;
110
115
  resourceInputs["clientSecret"] = args?.clientSecret ? pulumi.secret(args.clientSecret) : undefined;
116
+ resourceInputs["emailClaim"] = args?.emailClaim;
111
117
  resourceInputs["enabled"] = args?.enabled;
118
+ resourceInputs["endSessionEndpoint"] = args?.endSessionEndpoint;
112
119
  resourceInputs["groupSearchEnabled"] = args?.groupSearchEnabled;
113
120
  resourceInputs["groupsField"] = args?.groupsField;
114
121
  resourceInputs["issuer"] = args?.issuer;
115
122
  resourceInputs["jwksUrl"] = args?.jwksUrl;
116
123
  resourceInputs["labels"] = args?.labels;
124
+ resourceInputs["logoutAllEnabled"] = args?.logoutAllEnabled;
125
+ resourceInputs["logoutAllForced"] = args?.logoutAllForced;
126
+ resourceInputs["nameClaim"] = args?.nameClaim;
117
127
  resourceInputs["privateKey"] = args?.privateKey ? pulumi.secret(args.privateKey) : undefined;
118
128
  resourceInputs["rancherUrl"] = args?.rancherUrl;
119
129
  resourceInputs["scopes"] = args?.scopes;
@@ -1 +1 @@
1
- {"version":3,"file":"authConfigGenericOidc.js","sourceRoot":"","sources":["../authConfigGenericOidc.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"authConfigGenericOidc.js","sourceRoot":"","sources":["../authConfigGenericOidc.ts"],"names":[],"mappings":"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"}