waldur-js-client 7.8.7-dev.1 → 7.8.7-dev.2
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 +53 -6
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -6699,6 +6699,10 @@ export type OpenStackCreatePortRequest = {
|
|
|
6699
6699
|
*/
|
|
6700
6700
|
subnet?: string | null;
|
|
6701
6701
|
port?: string;
|
|
6702
|
+
/**
|
|
6703
|
+
* Target tenant for port creation. If not specified, uses subnet's tenant.
|
|
6704
|
+
*/
|
|
6705
|
+
tenant?: string;
|
|
6702
6706
|
};
|
|
6703
6707
|
export type OpenStackFixedIp = {
|
|
6704
6708
|
/**
|
|
@@ -7341,6 +7345,10 @@ export type OpenStackPortRequest = {
|
|
|
7341
7345
|
*/
|
|
7342
7346
|
mac_address?: string;
|
|
7343
7347
|
allowed_address_pairs?: Array<OpenStackAllowedAddressPairRequest>;
|
|
7348
|
+
/**
|
|
7349
|
+
* Target tenant for shared network port creation. If not specified, defaults to network's tenant.
|
|
7350
|
+
*/
|
|
7351
|
+
target_tenant?: string;
|
|
7344
7352
|
/**
|
|
7345
7353
|
* Network to which this port belongs
|
|
7346
7354
|
*/
|
|
@@ -9012,6 +9020,10 @@ export type PatchedOpenStackNetworkRequest = {
|
|
|
9012
9020
|
export type PatchedOpenStackPortRequest = {
|
|
9013
9021
|
name?: string;
|
|
9014
9022
|
description?: string;
|
|
9023
|
+
/**
|
|
9024
|
+
* Target tenant for shared network port creation. If not specified, defaults to network's tenant.
|
|
9025
|
+
*/
|
|
9026
|
+
target_tenant?: string;
|
|
9015
9027
|
security_groups?: Array<OpenStackPortNestedSecurityGroupRequest>;
|
|
9016
9028
|
};
|
|
9017
9029
|
export type PatchedOpenStackSecurityGroupUpdateRequest = {
|
|
@@ -9460,7 +9472,8 @@ export type PatchedRuleRequest = {
|
|
|
9460
9472
|
name?: string;
|
|
9461
9473
|
user_affiliations?: Array<string>;
|
|
9462
9474
|
user_email_patterns?: Array<string>;
|
|
9463
|
-
customer?: string;
|
|
9475
|
+
customer?: string | null;
|
|
9476
|
+
use_user_organization_as_customer_name?: boolean;
|
|
9464
9477
|
project_role?: string | null;
|
|
9465
9478
|
project_role_name?: string | null;
|
|
9466
9479
|
plan?: string | null;
|
|
@@ -12675,9 +12688,10 @@ export type Rule = {
|
|
|
12675
12688
|
readonly url: string;
|
|
12676
12689
|
user_affiliations?: Array<string>;
|
|
12677
12690
|
user_email_patterns?: Array<string>;
|
|
12678
|
-
customer
|
|
12691
|
+
customer?: string | null;
|
|
12679
12692
|
readonly customer_name: string;
|
|
12680
12693
|
readonly customer_uuid: string;
|
|
12694
|
+
use_user_organization_as_customer_name?: boolean;
|
|
12681
12695
|
project_role?: string | null;
|
|
12682
12696
|
readonly project_role_display_name: string;
|
|
12683
12697
|
readonly project_role_description: string;
|
|
@@ -12698,7 +12712,8 @@ export type RuleRequest = {
|
|
|
12698
12712
|
name: string;
|
|
12699
12713
|
user_affiliations?: Array<string>;
|
|
12700
12714
|
user_email_patterns?: Array<string>;
|
|
12701
|
-
customer
|
|
12715
|
+
customer?: string | null;
|
|
12716
|
+
use_user_organization_as_customer_name?: boolean;
|
|
12702
12717
|
project_role?: string | null;
|
|
12703
12718
|
project_role_name?: string | null;
|
|
12704
12719
|
plan?: string | null;
|
|
@@ -13918,6 +13933,14 @@ export type OpenStackTenantCreateOrderAttributes = {
|
|
|
13918
13933
|
*/
|
|
13919
13934
|
availability_zone?: string;
|
|
13920
13935
|
};
|
|
13936
|
+
export type OpenStackCreateInstancePortRequest = {
|
|
13937
|
+
fixed_ips?: Array<OpenStackFixedIpRequest>;
|
|
13938
|
+
/**
|
|
13939
|
+
* Subnet to which this port belongs
|
|
13940
|
+
*/
|
|
13941
|
+
subnet?: string | null;
|
|
13942
|
+
port?: string;
|
|
13943
|
+
};
|
|
13921
13944
|
export type OpenStackDataVolumeRequest = {
|
|
13922
13945
|
size: number;
|
|
13923
13946
|
volume_type?: string | null;
|
|
@@ -13947,7 +13970,7 @@ export type OpenStackInstanceCreateOrderAttributes = {
|
|
|
13947
13970
|
/**
|
|
13948
13971
|
* Network ports to attach to the instance
|
|
13949
13972
|
*/
|
|
13950
|
-
ports: Array<
|
|
13973
|
+
ports: Array<OpenStackCreateInstancePortRequest>;
|
|
13951
13974
|
/**
|
|
13952
13975
|
* Floating IPs to assign to the instance
|
|
13953
13976
|
*/
|
|
@@ -36715,7 +36738,11 @@ export type OpenstackPortsListData = {
|
|
|
36715
36738
|
* Exclude Subnet UUIDs (comma-separated)
|
|
36716
36739
|
*/
|
|
36717
36740
|
exclude_subnet_uuids?: string;
|
|
36718
|
-
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | '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' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
36741
|
+
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | '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' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
36742
|
+
/**
|
|
36743
|
+
* Search by fixed IP
|
|
36744
|
+
*/
|
|
36745
|
+
fixed_ips?: string;
|
|
36719
36746
|
/**
|
|
36720
36747
|
* Has device owner
|
|
36721
36748
|
*/
|
|
@@ -36723,6 +36750,14 @@ export type OpenstackPortsListData = {
|
|
|
36723
36750
|
mac_address?: string;
|
|
36724
36751
|
name?: string;
|
|
36725
36752
|
name_exact?: string;
|
|
36753
|
+
/**
|
|
36754
|
+
* Search by network name
|
|
36755
|
+
*/
|
|
36756
|
+
network_name?: string;
|
|
36757
|
+
/**
|
|
36758
|
+
* Search by network UUID
|
|
36759
|
+
*/
|
|
36760
|
+
network_uuid?: string;
|
|
36726
36761
|
/**
|
|
36727
36762
|
* Ordering
|
|
36728
36763
|
*
|
|
@@ -36763,6 +36798,10 @@ export type OpenstackPortsCountData = {
|
|
|
36763
36798
|
* Exclude Subnet UUIDs (comma-separated)
|
|
36764
36799
|
*/
|
|
36765
36800
|
exclude_subnet_uuids?: string;
|
|
36801
|
+
/**
|
|
36802
|
+
* Search by fixed IP
|
|
36803
|
+
*/
|
|
36804
|
+
fixed_ips?: string;
|
|
36766
36805
|
/**
|
|
36767
36806
|
* Has device owner
|
|
36768
36807
|
*/
|
|
@@ -36770,6 +36809,14 @@ export type OpenstackPortsCountData = {
|
|
|
36770
36809
|
mac_address?: string;
|
|
36771
36810
|
name?: string;
|
|
36772
36811
|
name_exact?: string;
|
|
36812
|
+
/**
|
|
36813
|
+
* Search by network name
|
|
36814
|
+
*/
|
|
36815
|
+
network_name?: string;
|
|
36816
|
+
/**
|
|
36817
|
+
* Search by network UUID
|
|
36818
|
+
*/
|
|
36819
|
+
network_uuid?: string;
|
|
36773
36820
|
/**
|
|
36774
36821
|
* Ordering
|
|
36775
36822
|
*
|
|
@@ -36831,7 +36878,7 @@ export type OpenstackPortsRetrieveData = {
|
|
|
36831
36878
|
uuid: string;
|
|
36832
36879
|
};
|
|
36833
36880
|
query?: {
|
|
36834
|
-
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | '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' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
36881
|
+
field?: Array<'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | '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' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid'>;
|
|
36835
36882
|
};
|
|
36836
36883
|
url: '/api/openstack-ports/{uuid}/';
|
|
36837
36884
|
};
|