@pulumi/keycloak 5.3.2 → 5.3.3
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/package.json +3 -2
- package/types/input.d.ts +33 -0
- package/types/output.d.ts +33 -0
- package/package.json.bak +0 -27
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/keycloak",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.3.3",
|
|
4
4
|
"description": "A Pulumi package for creating and managing keycloak cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
|
-
"name": "keycloak"
|
|
25
|
+
"name": "keycloak",
|
|
26
|
+
"version": "5.3.3"
|
|
26
27
|
}
|
|
27
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -296,23 +296,50 @@ export interface RealmUserProfileAttribute {
|
|
|
296
296
|
annotations?: pulumi.Input<{
|
|
297
297
|
[key: string]: pulumi.Input<string>;
|
|
298
298
|
}>;
|
|
299
|
+
/**
|
|
300
|
+
* The display name of the attribute.
|
|
301
|
+
*/
|
|
299
302
|
displayName?: pulumi.Input<string>;
|
|
303
|
+
/**
|
|
304
|
+
* A list of scopes. The attribute will only be enabled when these scopes are requested by clients.
|
|
305
|
+
*/
|
|
300
306
|
enabledWhenScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
301
307
|
/**
|
|
302
308
|
* A list of groups.
|
|
303
309
|
*/
|
|
304
310
|
group?: pulumi.Input<string>;
|
|
305
311
|
name: pulumi.Input<string>;
|
|
312
|
+
/**
|
|
313
|
+
* The permissions configuration information.
|
|
314
|
+
*/
|
|
306
315
|
permissions?: pulumi.Input<inputs.RealmUserProfileAttributePermissions>;
|
|
316
|
+
/**
|
|
317
|
+
* A list of roles for which the attribute will be required.
|
|
318
|
+
*/
|
|
307
319
|
requiredForRoles?: pulumi.Input<pulumi.Input<string>[]>;
|
|
320
|
+
/**
|
|
321
|
+
* A list of scopes for which the attribute will be required.
|
|
322
|
+
*/
|
|
308
323
|
requiredForScopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
324
|
+
/**
|
|
325
|
+
* A list of validators for the attribute.
|
|
326
|
+
*/
|
|
309
327
|
validators?: pulumi.Input<pulumi.Input<inputs.RealmUserProfileAttributeValidator>[]>;
|
|
310
328
|
}
|
|
311
329
|
export interface RealmUserProfileAttributePermissions {
|
|
330
|
+
/**
|
|
331
|
+
* A list of profiles that will be able to edit the attribute. One of `admin`, `user`.
|
|
332
|
+
*/
|
|
312
333
|
edits: pulumi.Input<pulumi.Input<string>[]>;
|
|
334
|
+
/**
|
|
335
|
+
* A list of profiles that will be able to view the attribute. One of `admin`, `user`.
|
|
336
|
+
*/
|
|
313
337
|
views: pulumi.Input<pulumi.Input<string>[]>;
|
|
314
338
|
}
|
|
315
339
|
export interface RealmUserProfileAttributeValidator {
|
|
340
|
+
/**
|
|
341
|
+
* A map defining the configuration of the validator. Values can be a String or a json object.
|
|
342
|
+
*/
|
|
316
343
|
config?: pulumi.Input<{
|
|
317
344
|
[key: string]: pulumi.Input<string>;
|
|
318
345
|
}>;
|
|
@@ -322,7 +349,13 @@ export interface RealmUserProfileGroup {
|
|
|
322
349
|
annotations?: pulumi.Input<{
|
|
323
350
|
[key: string]: pulumi.Input<string>;
|
|
324
351
|
}>;
|
|
352
|
+
/**
|
|
353
|
+
* The display description of the group.
|
|
354
|
+
*/
|
|
325
355
|
displayDescription?: pulumi.Input<string>;
|
|
356
|
+
/**
|
|
357
|
+
* The display header of the group.
|
|
358
|
+
*/
|
|
326
359
|
displayHeader?: pulumi.Input<string>;
|
|
327
360
|
name: pulumi.Input<string>;
|
|
328
361
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -209,23 +209,50 @@ export interface RealmUserProfileAttribute {
|
|
|
209
209
|
annotations?: {
|
|
210
210
|
[key: string]: string;
|
|
211
211
|
};
|
|
212
|
+
/**
|
|
213
|
+
* The display name of the attribute.
|
|
214
|
+
*/
|
|
212
215
|
displayName?: string;
|
|
216
|
+
/**
|
|
217
|
+
* A list of scopes. The attribute will only be enabled when these scopes are requested by clients.
|
|
218
|
+
*/
|
|
213
219
|
enabledWhenScopes?: string[];
|
|
214
220
|
/**
|
|
215
221
|
* A list of groups.
|
|
216
222
|
*/
|
|
217
223
|
group?: string;
|
|
218
224
|
name: string;
|
|
225
|
+
/**
|
|
226
|
+
* The permissions configuration information.
|
|
227
|
+
*/
|
|
219
228
|
permissions?: outputs.RealmUserProfileAttributePermissions;
|
|
229
|
+
/**
|
|
230
|
+
* A list of roles for which the attribute will be required.
|
|
231
|
+
*/
|
|
220
232
|
requiredForRoles?: string[];
|
|
233
|
+
/**
|
|
234
|
+
* A list of scopes for which the attribute will be required.
|
|
235
|
+
*/
|
|
221
236
|
requiredForScopes?: string[];
|
|
237
|
+
/**
|
|
238
|
+
* A list of validators for the attribute.
|
|
239
|
+
*/
|
|
222
240
|
validators?: outputs.RealmUserProfileAttributeValidator[];
|
|
223
241
|
}
|
|
224
242
|
export interface RealmUserProfileAttributePermissions {
|
|
243
|
+
/**
|
|
244
|
+
* A list of profiles that will be able to edit the attribute. One of `admin`, `user`.
|
|
245
|
+
*/
|
|
225
246
|
edits: string[];
|
|
247
|
+
/**
|
|
248
|
+
* A list of profiles that will be able to view the attribute. One of `admin`, `user`.
|
|
249
|
+
*/
|
|
226
250
|
views: string[];
|
|
227
251
|
}
|
|
228
252
|
export interface RealmUserProfileAttributeValidator {
|
|
253
|
+
/**
|
|
254
|
+
* A map defining the configuration of the validator. Values can be a String or a json object.
|
|
255
|
+
*/
|
|
229
256
|
config?: {
|
|
230
257
|
[key: string]: string;
|
|
231
258
|
};
|
|
@@ -235,7 +262,13 @@ export interface RealmUserProfileGroup {
|
|
|
235
262
|
annotations?: {
|
|
236
263
|
[key: string]: string;
|
|
237
264
|
};
|
|
265
|
+
/**
|
|
266
|
+
* The display description of the group.
|
|
267
|
+
*/
|
|
238
268
|
displayDescription?: string;
|
|
269
|
+
/**
|
|
270
|
+
* The display header of the group.
|
|
271
|
+
*/
|
|
239
272
|
displayHeader?: string;
|
|
240
273
|
name: string;
|
|
241
274
|
}
|
package/package.json.bak
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@pulumi/keycloak",
|
|
3
|
-
"version": "${VERSION}",
|
|
4
|
-
"description": "A Pulumi package for creating and managing keycloak cloud resources.",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"pulumi",
|
|
7
|
-
"keycloak"
|
|
8
|
-
],
|
|
9
|
-
"homepage": "https://pulumi.io",
|
|
10
|
-
"repository": "https://github.com/pulumi/pulumi-keycloak",
|
|
11
|
-
"license": "Apache-2.0",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsc"
|
|
14
|
-
},
|
|
15
|
-
"dependencies": {
|
|
16
|
-
"@pulumi/pulumi": "^3.0.0"
|
|
17
|
-
},
|
|
18
|
-
"devDependencies": {
|
|
19
|
-
"@types/mime": "^2.0.0",
|
|
20
|
-
"@types/node": "^10.0.0",
|
|
21
|
-
"typescript": "^4.3.5"
|
|
22
|
-
},
|
|
23
|
-
"pulumi": {
|
|
24
|
-
"resource": true,
|
|
25
|
-
"name": "keycloak"
|
|
26
|
-
}
|
|
27
|
-
}
|