waldur-js-client 7.7.7-dev.7 → 7.7.7-dev.9
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 +42 -9
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2639,6 +2639,7 @@ export type GoogleCredentials = {
|
|
|
2639
2639
|
readonly uuid?: string;
|
|
2640
2640
|
readonly created?: string;
|
|
2641
2641
|
description?: string;
|
|
2642
|
+
enable_notifications?: boolean;
|
|
2642
2643
|
customer?: string;
|
|
2643
2644
|
readonly customer_name?: string;
|
|
2644
2645
|
readonly customer_uuid?: string;
|
|
@@ -5709,6 +5710,20 @@ export type OpenStackNestedPortRequest = {
|
|
|
5709
5710
|
};
|
|
5710
5711
|
export type OpenStackNestedSecurityGroup = {
|
|
5711
5712
|
url?: string;
|
|
5713
|
+
readonly name?: string;
|
|
5714
|
+
readonly description?: string;
|
|
5715
|
+
readonly state?: string;
|
|
5716
|
+
readonly rules?: Array<{
|
|
5717
|
+
id?: number;
|
|
5718
|
+
protocol?: string | null;
|
|
5719
|
+
from_port?: number | null;
|
|
5720
|
+
to_port?: number | null;
|
|
5721
|
+
cidr?: string | null;
|
|
5722
|
+
remote_group?: string | null;
|
|
5723
|
+
direction?: string;
|
|
5724
|
+
ethertype?: string;
|
|
5725
|
+
description?: string | null;
|
|
5726
|
+
}>;
|
|
5712
5727
|
};
|
|
5713
5728
|
export type OpenStackNestedSecurityGroupRequest = {
|
|
5714
5729
|
url?: string;
|
|
@@ -6502,6 +6517,7 @@ export type OpenStackTenant = {
|
|
|
6502
6517
|
* ID of tenant in the OpenStack backend
|
|
6503
6518
|
*/
|
|
6504
6519
|
readonly backend_id?: string | null;
|
|
6520
|
+
readonly access_url?: string | null;
|
|
6505
6521
|
/**
|
|
6506
6522
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
6507
6523
|
*/
|
|
@@ -6514,6 +6530,14 @@ export type OpenStackTenant = {
|
|
|
6514
6530
|
* ID of external network connected to OpenStack tenant
|
|
6515
6531
|
*/
|
|
6516
6532
|
readonly external_network_id?: string;
|
|
6533
|
+
/**
|
|
6534
|
+
* Username of the tenant user
|
|
6535
|
+
*/
|
|
6536
|
+
user_username?: string;
|
|
6537
|
+
/**
|
|
6538
|
+
* Password of the tenant user
|
|
6539
|
+
*/
|
|
6540
|
+
user_password?: string;
|
|
6517
6541
|
readonly quotas?: Array<Quota>;
|
|
6518
6542
|
/**
|
|
6519
6543
|
* Volume type name to use when creating volumes.
|
|
@@ -10911,6 +10935,7 @@ export type ServiceProvider = {
|
|
|
10911
10935
|
readonly uuid?: string;
|
|
10912
10936
|
readonly created?: string;
|
|
10913
10937
|
description?: string;
|
|
10938
|
+
enable_notifications?: boolean;
|
|
10914
10939
|
customer?: string;
|
|
10915
10940
|
readonly customer_name?: string;
|
|
10916
10941
|
readonly customer_uuid?: string;
|
|
@@ -11881,6 +11906,14 @@ export type AzureSqlServerCreateOrderAttributes = {
|
|
|
11881
11906
|
export type OpenStackTenantCreateOrderAttributes = {
|
|
11882
11907
|
name: string;
|
|
11883
11908
|
description?: string;
|
|
11909
|
+
/**
|
|
11910
|
+
* Username of the tenant user
|
|
11911
|
+
*/
|
|
11912
|
+
user_username?: string;
|
|
11913
|
+
/**
|
|
11914
|
+
* Password of the tenant user
|
|
11915
|
+
*/
|
|
11916
|
+
user_password?: string;
|
|
11884
11917
|
subnet_cidr?: string;
|
|
11885
11918
|
skip_connection_extnet?: boolean;
|
|
11886
11919
|
skip_creation_of_default_router?: boolean;
|
|
@@ -18219,7 +18252,7 @@ export type GoogleAuthListData = {
|
|
|
18219
18252
|
body?: never;
|
|
18220
18253
|
path?: never;
|
|
18221
18254
|
query?: {
|
|
18222
|
-
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18255
|
+
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18223
18256
|
/**
|
|
18224
18257
|
* has_credentials
|
|
18225
18258
|
*/
|
|
@@ -18270,7 +18303,7 @@ export type GoogleAuthRetrieveData = {
|
|
|
18270
18303
|
uuid: string;
|
|
18271
18304
|
};
|
|
18272
18305
|
query?: {
|
|
18273
|
-
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18306
|
+
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18274
18307
|
};
|
|
18275
18308
|
url: '/api/google-auth/{uuid}/';
|
|
18276
18309
|
};
|
|
@@ -18284,7 +18317,7 @@ export type GoogleAuthAuthorizeRetrieveData = {
|
|
|
18284
18317
|
uuid: string;
|
|
18285
18318
|
};
|
|
18286
18319
|
query?: {
|
|
18287
|
-
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18320
|
+
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18288
18321
|
};
|
|
18289
18322
|
url: '/api/google-auth/{uuid}/authorize/';
|
|
18290
18323
|
};
|
|
@@ -22930,7 +22963,7 @@ export type MarketplaceOrdersListData = {
|
|
|
22930
22963
|
*/
|
|
22931
22964
|
created?: string;
|
|
22932
22965
|
customer_uuid?: string;
|
|
22933
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22966
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22934
22967
|
/**
|
|
22935
22968
|
* Modified after
|
|
22936
22969
|
*/
|
|
@@ -23064,7 +23097,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
23064
23097
|
uuid: string;
|
|
23065
23098
|
};
|
|
23066
23099
|
query?: {
|
|
23067
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
23100
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
23068
23101
|
};
|
|
23069
23102
|
url: '/api/marketplace-orders/{uuid}/';
|
|
23070
23103
|
};
|
|
@@ -27115,7 +27148,7 @@ export type MarketplaceServiceProvidersListData = {
|
|
|
27115
27148
|
customer?: string;
|
|
27116
27149
|
customer_keyword?: string;
|
|
27117
27150
|
customer_uuid?: string;
|
|
27118
|
-
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27151
|
+
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27119
27152
|
/**
|
|
27120
27153
|
* Ordering
|
|
27121
27154
|
*
|
|
@@ -27770,7 +27803,7 @@ export type MarketplaceServiceProvidersRetrieveData = {
|
|
|
27770
27803
|
uuid: string;
|
|
27771
27804
|
};
|
|
27772
27805
|
query?: {
|
|
27773
|
-
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27806
|
+
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27774
27807
|
};
|
|
27775
27808
|
url: '/api/marketplace-service-providers/{uuid}/';
|
|
27776
27809
|
};
|
|
@@ -32035,7 +32068,7 @@ export type OpenstackTenantsListData = {
|
|
|
32035
32068
|
customer_uuid?: string;
|
|
32036
32069
|
description?: string;
|
|
32037
32070
|
external_ip?: string;
|
|
32038
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
32071
|
+
field?: Array<'access_url' | 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'user_password' | 'user_username' | 'uuid'>;
|
|
32039
32072
|
name?: string;
|
|
32040
32073
|
name_exact?: string;
|
|
32041
32074
|
/**
|
|
@@ -32133,7 +32166,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
32133
32166
|
uuid: string;
|
|
32134
32167
|
};
|
|
32135
32168
|
query?: {
|
|
32136
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
32169
|
+
field?: Array<'access_url' | 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'user_password' | 'user_username' | 'uuid'>;
|
|
32137
32170
|
};
|
|
32138
32171
|
url: '/api/openstack-tenants/{uuid}/';
|
|
32139
32172
|
};
|