waldur-js-client 1.0.4-dev.25 → 1.0.4-dev.27
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 +34 -18
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3270,6 +3270,7 @@ export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
|
|
|
3270
3270
|
export type MountPointEnum = '/var/lib/docker' | '/var/lib/etcd' | '/opt/media01';
|
|
3271
3271
|
export type MoveProjectRequest = {
|
|
3272
3272
|
customer: string;
|
|
3273
|
+
preserve_permissions: boolean;
|
|
3273
3274
|
};
|
|
3274
3275
|
export type NameUuid = {
|
|
3275
3276
|
readonly name: string;
|
|
@@ -5337,22 +5338,22 @@ export type OrderDetails = {
|
|
|
5337
5338
|
/**
|
|
5338
5339
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5339
5340
|
*/
|
|
5340
|
-
readonly consumer_reviewed_by?: string;
|
|
5341
|
-
readonly consumer_reviewed_by_full_name?: string;
|
|
5341
|
+
readonly consumer_reviewed_by?: string | null;
|
|
5342
|
+
readonly consumer_reviewed_by_full_name?: string | null;
|
|
5342
5343
|
/**
|
|
5343
5344
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5344
5345
|
*/
|
|
5345
|
-
readonly consumer_reviewed_by_username?: string;
|
|
5346
|
+
readonly consumer_reviewed_by_username?: string | null;
|
|
5346
5347
|
readonly consumer_reviewed_at?: string | null;
|
|
5347
5348
|
/**
|
|
5348
5349
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5349
5350
|
*/
|
|
5350
|
-
readonly provider_reviewed_by?: string;
|
|
5351
|
-
readonly provider_reviewed_by_full_name?: string;
|
|
5351
|
+
readonly provider_reviewed_by?: string | null;
|
|
5352
|
+
readonly provider_reviewed_by_full_name?: string | null;
|
|
5352
5353
|
/**
|
|
5353
5354
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
5354
5355
|
*/
|
|
5355
|
-
readonly provider_reviewed_by_username?: string;
|
|
5356
|
+
readonly provider_reviewed_by_username?: string | null;
|
|
5356
5357
|
readonly provider_reviewed_at?: string | null;
|
|
5357
5358
|
/**
|
|
5358
5359
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -5367,10 +5368,10 @@ export type OrderDetails = {
|
|
|
5367
5368
|
readonly project_uuid?: string;
|
|
5368
5369
|
readonly project_description?: string;
|
|
5369
5370
|
readonly project_slug?: string;
|
|
5370
|
-
readonly old_plan_name?: string;
|
|
5371
|
-
readonly new_plan_name?: string;
|
|
5372
|
-
readonly old_plan_uuid?: string;
|
|
5373
|
-
readonly new_plan_uuid?: string;
|
|
5371
|
+
readonly old_plan_name?: string | null;
|
|
5372
|
+
readonly new_plan_name?: string | null;
|
|
5373
|
+
readonly old_plan_uuid?: string | null;
|
|
5374
|
+
readonly new_plan_uuid?: string | null;
|
|
5374
5375
|
readonly old_cost_estimate?: string | null;
|
|
5375
5376
|
readonly new_cost_estimate?: string | null;
|
|
5376
5377
|
readonly can_terminate?: boolean;
|
|
@@ -7111,10 +7112,6 @@ export type RancherCluster = {
|
|
|
7111
7112
|
readonly modified?: string;
|
|
7112
7113
|
readonly backend_id?: string;
|
|
7113
7114
|
readonly access_url?: string | null;
|
|
7114
|
-
/**
|
|
7115
|
-
* Rancher generated node installation command base.
|
|
7116
|
-
*/
|
|
7117
|
-
readonly node_command?: string;
|
|
7118
7115
|
nodes?: Array<RancherNestedNode>;
|
|
7119
7116
|
tenant?: string;
|
|
7120
7117
|
readonly tenant_uuid?: string;
|
|
@@ -7376,7 +7373,6 @@ export type RancherNode = {
|
|
|
7376
7373
|
controlplane_role?: boolean;
|
|
7377
7374
|
etcd_role?: boolean;
|
|
7378
7375
|
worker_role?: boolean;
|
|
7379
|
-
readonly get_node_command: string;
|
|
7380
7376
|
readonly k8s_version: string;
|
|
7381
7377
|
readonly docker_version: string;
|
|
7382
7378
|
readonly cpu_allocated: number | null;
|
|
@@ -11548,6 +11544,10 @@ export type CustomersListData = {
|
|
|
11548
11544
|
* organization_group_uuid
|
|
11549
11545
|
*/
|
|
11550
11546
|
organization_group_uuid?: Array<string>;
|
|
11547
|
+
/**
|
|
11548
|
+
* Return a list of customers where current user is owner.
|
|
11549
|
+
*/
|
|
11550
|
+
owned_by_current_user?: boolean;
|
|
11551
11551
|
/**
|
|
11552
11552
|
* A page number within the paginated result set.
|
|
11553
11553
|
*/
|
|
@@ -11850,6 +11850,10 @@ export type CustomersCountriesListData = {
|
|
|
11850
11850
|
* organization_group_uuid
|
|
11851
11851
|
*/
|
|
11852
11852
|
organization_group_uuid?: Array<string>;
|
|
11853
|
+
/**
|
|
11854
|
+
* Return a list of customers where current user is owner.
|
|
11855
|
+
*/
|
|
11856
|
+
owned_by_current_user?: boolean;
|
|
11853
11857
|
/**
|
|
11854
11858
|
* A page number within the paginated result set.
|
|
11855
11859
|
*/
|
|
@@ -12447,6 +12451,10 @@ export type FinancialReportsListData = {
|
|
|
12447
12451
|
* organization_group_uuid
|
|
12448
12452
|
*/
|
|
12449
12453
|
organization_group_uuid?: Array<string>;
|
|
12454
|
+
/**
|
|
12455
|
+
* Return a list of customers where current user is owner.
|
|
12456
|
+
*/
|
|
12457
|
+
owned_by_current_user?: boolean;
|
|
12450
12458
|
/**
|
|
12451
12459
|
* A page number within the paginated result set.
|
|
12452
12460
|
*/
|
|
@@ -18372,6 +18380,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
|
|
|
18372
18380
|
* organization_group_uuid
|
|
18373
18381
|
*/
|
|
18374
18382
|
organization_group_uuid?: Array<string>;
|
|
18383
|
+
/**
|
|
18384
|
+
* Return a list of customers where current user is owner.
|
|
18385
|
+
*/
|
|
18386
|
+
owned_by_current_user?: boolean;
|
|
18375
18387
|
/**
|
|
18376
18388
|
* A page number within the paginated result set.
|
|
18377
18389
|
*/
|
|
@@ -18656,6 +18668,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
18656
18668
|
* organization_group_uuid
|
|
18657
18669
|
*/
|
|
18658
18670
|
organization_group_uuid?: Array<string>;
|
|
18671
|
+
/**
|
|
18672
|
+
* Return a list of customers where current user is owner.
|
|
18673
|
+
*/
|
|
18674
|
+
owned_by_current_user?: boolean;
|
|
18659
18675
|
/**
|
|
18660
18676
|
* A page number within the paginated result set.
|
|
18661
18677
|
*/
|
|
@@ -24169,7 +24185,7 @@ export type RancherClustersListData = {
|
|
|
24169
24185
|
customer_uuid?: string;
|
|
24170
24186
|
description?: string;
|
|
24171
24187
|
external_ip?: string;
|
|
24172
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | '
|
|
24188
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
24173
24189
|
name?: string;
|
|
24174
24190
|
name_exact?: string;
|
|
24175
24191
|
/**
|
|
@@ -24225,7 +24241,7 @@ export type RancherClustersRetrieveData = {
|
|
|
24225
24241
|
uuid: string;
|
|
24226
24242
|
};
|
|
24227
24243
|
query?: {
|
|
24228
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | '
|
|
24244
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
24229
24245
|
};
|
|
24230
24246
|
url: '/api/rancher-clusters/{uuid}/';
|
|
24231
24247
|
};
|
|
@@ -24287,7 +24303,7 @@ export type RancherClustersKubeconfigFileRetrieveData = {
|
|
|
24287
24303
|
uuid: string;
|
|
24288
24304
|
};
|
|
24289
24305
|
query?: {
|
|
24290
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | '
|
|
24306
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'install_longhorn' | 'is_limit_based' | 'is_usage_based' | 'management_security_group' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'nodes' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
24291
24307
|
};
|
|
24292
24308
|
url: '/api/rancher-clusters/{uuid}/kubeconfig_file/';
|
|
24293
24309
|
};
|