waldur-js-client 1.0.4-dev.101 → 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.
@@ -2503,7 +2503,7 @@ export type IdentityProvider = {
2503
2503
  /**
2504
2504
  * Space-separated list of scopes to request during authentication.
2505
2505
  */
2506
- scope?: string | null;
2506
+ extra_scope?: string | null;
2507
2507
  };
2508
2508
  export type IdentityProviderRequest = {
2509
2509
  provider: string;
@@ -2531,7 +2531,7 @@ export type IdentityProviderRequest = {
2531
2531
  /**
2532
2532
  * Space-separated list of scopes to request during authentication.
2533
2533
  */
2534
- scope?: string | null;
2534
+ extra_scope?: string | null;
2535
2535
  };
2536
2536
  export type ImageCreateRequest = {
2537
2537
  name: string;
@@ -3246,6 +3246,18 @@ export type MergedPluginOptions = {
3246
3246
  managed_rancher_load_balancer_system_volume_type_name?: string;
3247
3247
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3248
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;
3249
3261
  /**
3250
3262
  * Slurm account name generation policy
3251
3263
  */
@@ -3372,6 +3384,18 @@ export type MergedPluginOptionsRequest = {
3372
3384
  managed_rancher_load_balancer_system_volume_type_name?: string;
3373
3385
  managed_rancher_load_balancer_data_volume_size_gb?: number;
3374
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;
3375
3399
  /**
3376
3400
  * Slurm account name generation policy
3377
3401
  */
@@ -6120,7 +6144,7 @@ export type PatchedIdentityProviderRequest = {
6120
6144
  /**
6121
6145
  * Space-separated list of scopes to request during authentication.
6122
6146
  */
6123
- scope?: string | null;
6147
+ extra_scope?: string | null;
6124
6148
  };
6125
6149
  export type PatchedInvoiceItemUpdateRequest = {
6126
6150
  article_code?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "1.0.4-dev.101",
3
+ "version": "1.0.4-dev.103",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",