waldur-js-client 7.9.6 → 7.9.7-dev.0

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/sdk.gen.js CHANGED
@@ -25774,7 +25774,11 @@ export const openstackTenantsCreateFloatingIp = (options) => {
25774
25774
  }
25775
25775
  ],
25776
25776
  url: '/api/openstack-tenants/{uuid}/create_floating_ip/',
25777
- ...options
25777
+ ...options,
25778
+ headers: {
25779
+ 'Content-Type': 'application/json',
25780
+ ...options.headers
25781
+ }
25778
25782
  });
25779
25783
  };
25780
25784
  /**
@@ -8706,6 +8706,12 @@ export type OpenStackFloatingIpDescriptionUpdateRequest = {
8706
8706
  */
8707
8707
  description?: string;
8708
8708
  };
8709
+ export type OpenStackFloatingIpRequest = {
8710
+ /**
8711
+ * Optional router to use for external network detection
8712
+ */
8713
+ router?: string | null;
8714
+ };
8709
8715
  export type OpenStackImage = {
8710
8716
  readonly url: string;
8711
8717
  readonly uuid: string;
@@ -45241,7 +45247,7 @@ export type OpenstackFloatingIpsListData = {
45241
45247
  * External IP
45242
45248
  */
45243
45249
  external_ip?: string;
45244
- field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | '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' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
45250
+ field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | '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' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'router' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
45245
45251
  /**
45246
45252
  * Is free
45247
45253
  */
@@ -45438,7 +45444,7 @@ export type OpenstackFloatingIpsRetrieveData = {
45438
45444
  uuid: string;
45439
45445
  };
45440
45446
  query?: {
45441
- field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | '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' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
45447
+ field?: Array<'access_url' | 'address' | 'backend_id' | 'backend_network_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'external_address' | 'instance_name' | 'instance_url' | 'instance_uuid' | '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' | 'port' | 'port_fixed_ips' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'router' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
45442
45448
  };
45443
45449
  url: '/api/openstack-floating-ips/{uuid}/';
45444
45450
  };
@@ -47456,6 +47462,7 @@ export type OpenstackRoutersListData = {
47456
47462
  * Number of results to return per page.
47457
47463
  */
47458
47464
  page_size?: number;
47465
+ state?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
47459
47466
  /**
47460
47467
  * Tenant URL
47461
47468
  */
@@ -47491,6 +47498,7 @@ export type OpenstackRoutersCountData = {
47491
47498
  * Number of results to return per page.
47492
47499
  */
47493
47500
  page_size?: number;
47501
+ state?: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8;
47494
47502
  /**
47495
47503
  * Tenant URL
47496
47504
  */
@@ -49354,7 +49362,7 @@ export type OpenstackTenantsChangePasswordResponses = {
49354
49362
  200: unknown;
49355
49363
  };
49356
49364
  export type OpenstackTenantsCreateFloatingIpData = {
49357
- body?: never;
49365
+ body?: OpenStackFloatingIpRequest;
49358
49366
  path: {
49359
49367
  uuid: string;
49360
49368
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "7.9.6",
3
+ "version": "7.9.7-dev.0",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",