waldur-js-client 1.0.4-dev.102 → 1.0.4-dev.103
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/dist/types.gen.d.ts +27 -51
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2503,23 +2503,7 @@ export type IdentityProvider = {
|
|
|
2503
2503
|
/**
|
|
2504
2504
|
* Space-separated list of scopes to request during authentication.
|
|
2505
2505
|
*/
|
|
2506
|
-
|
|
2507
|
-
/**
|
|
2508
|
-
* The field in Waldur User model to be used for looking up the user
|
|
2509
|
-
*/
|
|
2510
|
-
user_field?: string;
|
|
2511
|
-
/**
|
|
2512
|
-
* The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
|
|
2513
|
-
*/
|
|
2514
|
-
user_claim?: string;
|
|
2515
|
-
/**
|
|
2516
|
-
* A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
|
|
2517
|
-
*/
|
|
2518
|
-
attribute_mapping?: unknown;
|
|
2519
|
-
/**
|
|
2520
|
-
* Space-separated list of extra fields to persist.
|
|
2521
|
-
*/
|
|
2522
|
-
extra_fields?: string | null;
|
|
2506
|
+
extra_scope?: string | null;
|
|
2523
2507
|
};
|
|
2524
2508
|
export type IdentityProviderRequest = {
|
|
2525
2509
|
provider: string;
|
|
@@ -2547,23 +2531,7 @@ export type IdentityProviderRequest = {
|
|
|
2547
2531
|
/**
|
|
2548
2532
|
* Space-separated list of scopes to request during authentication.
|
|
2549
2533
|
*/
|
|
2550
|
-
|
|
2551
|
-
/**
|
|
2552
|
-
* The field in Waldur User model to be used for looking up the user
|
|
2553
|
-
*/
|
|
2554
|
-
user_field?: string;
|
|
2555
|
-
/**
|
|
2556
|
-
* The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
|
|
2557
|
-
*/
|
|
2558
|
-
user_claim?: string;
|
|
2559
|
-
/**
|
|
2560
|
-
* A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
|
|
2561
|
-
*/
|
|
2562
|
-
attribute_mapping?: unknown;
|
|
2563
|
-
/**
|
|
2564
|
-
* Space-separated list of extra fields to persist.
|
|
2565
|
-
*/
|
|
2566
|
-
extra_fields?: string | null;
|
|
2534
|
+
extra_scope?: string | null;
|
|
2567
2535
|
};
|
|
2568
2536
|
export type ImageCreateRequest = {
|
|
2569
2537
|
name: string;
|
|
@@ -3278,6 +3246,18 @@ export type MergedPluginOptions = {
|
|
|
3278
3246
|
managed_rancher_load_balancer_system_volume_type_name?: string;
|
|
3279
3247
|
managed_rancher_load_balancer_data_volume_size_gb?: number;
|
|
3280
3248
|
managed_rancher_load_balancer_data_volume_type_name?: string;
|
|
3249
|
+
/**
|
|
3250
|
+
* Max number of vCPUs for tenants
|
|
3251
|
+
*/
|
|
3252
|
+
managed_rancher_tenant_max_cpu?: number;
|
|
3253
|
+
/**
|
|
3254
|
+
* Max number of RAM for tenants
|
|
3255
|
+
*/
|
|
3256
|
+
managed_rancher_tenant_max_ram?: number;
|
|
3257
|
+
/**
|
|
3258
|
+
* Max size of disk space for tenants (GB)
|
|
3259
|
+
*/
|
|
3260
|
+
managed_rancher_tenant_max_disk?: number;
|
|
3281
3261
|
/**
|
|
3282
3262
|
* Slurm account name generation policy
|
|
3283
3263
|
*/
|
|
@@ -3404,6 +3384,18 @@ export type MergedPluginOptionsRequest = {
|
|
|
3404
3384
|
managed_rancher_load_balancer_system_volume_type_name?: string;
|
|
3405
3385
|
managed_rancher_load_balancer_data_volume_size_gb?: number;
|
|
3406
3386
|
managed_rancher_load_balancer_data_volume_type_name?: string;
|
|
3387
|
+
/**
|
|
3388
|
+
* Max number of vCPUs for tenants
|
|
3389
|
+
*/
|
|
3390
|
+
managed_rancher_tenant_max_cpu?: number;
|
|
3391
|
+
/**
|
|
3392
|
+
* Max number of RAM for tenants
|
|
3393
|
+
*/
|
|
3394
|
+
managed_rancher_tenant_max_ram?: number;
|
|
3395
|
+
/**
|
|
3396
|
+
* Max size of disk space for tenants (GB)
|
|
3397
|
+
*/
|
|
3398
|
+
managed_rancher_tenant_max_disk?: number;
|
|
3407
3399
|
/**
|
|
3408
3400
|
* Slurm account name generation policy
|
|
3409
3401
|
*/
|
|
@@ -6152,23 +6144,7 @@ export type PatchedIdentityProviderRequest = {
|
|
|
6152
6144
|
/**
|
|
6153
6145
|
* Space-separated list of scopes to request during authentication.
|
|
6154
6146
|
*/
|
|
6155
|
-
|
|
6156
|
-
/**
|
|
6157
|
-
* The field in Waldur User model to be used for looking up the user
|
|
6158
|
-
*/
|
|
6159
|
-
user_field?: string;
|
|
6160
|
-
/**
|
|
6161
|
-
* The OIDC claim from the userinfo endpoint to be used as the value for the lookup field.
|
|
6162
|
-
*/
|
|
6163
|
-
user_claim?: string;
|
|
6164
|
-
/**
|
|
6165
|
-
* A JSON object mapping Waldur User model fields to OIDC claims. Example: {"first_name": "given_name", "last_name": "family_name", "email": "email"}
|
|
6166
|
-
*/
|
|
6167
|
-
attribute_mapping?: unknown;
|
|
6168
|
-
/**
|
|
6169
|
-
* Space-separated list of extra fields to persist.
|
|
6170
|
-
*/
|
|
6171
|
-
extra_fields?: string | null;
|
|
6147
|
+
extra_scope?: string | null;
|
|
6172
6148
|
};
|
|
6173
6149
|
export type PatchedInvoiceItemUpdateRequest = {
|
|
6174
6150
|
article_code?: string;
|