waldur-js-client 8.0.8-dev.15 → 8.0.8-dev.16

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
@@ -39601,6 +39601,54 @@ export const openstackRoutersAddRouterInterface = (options) => {
39601
39601
  }
39602
39602
  });
39603
39603
  };
39604
+ /**
39605
+ * List available external networks
39606
+ * Returns a merged list of external networks available for this router's tenant, from both global external networks and RBAC-exposed networks.
39607
+ */
39608
+ export const openstackRoutersAvailableExternalNetworksList = (options) => {
39609
+ return (options.client ?? _heyApiClient).get({
39610
+ security: [
39611
+ {
39612
+ name: 'Authorization',
39613
+ type: 'apiKey'
39614
+ },
39615
+ {
39616
+ scheme: 'bearer',
39617
+ type: 'http'
39618
+ },
39619
+ {
39620
+ scheme: 'bearer',
39621
+ type: 'http'
39622
+ }
39623
+ ],
39624
+ url: '/api/openstack-routers/{uuid}/available_external_networks/',
39625
+ ...options
39626
+ });
39627
+ };
39628
+ /**
39629
+ * Remove external gateway
39630
+ * Remove the external gateway from this router.
39631
+ */
39632
+ export const openstackRoutersRemoveExternalGateway = (options) => {
39633
+ return (options.client ?? _heyApiClient).post({
39634
+ security: [
39635
+ {
39636
+ name: 'Authorization',
39637
+ type: 'apiKey'
39638
+ },
39639
+ {
39640
+ scheme: 'bearer',
39641
+ type: 'http'
39642
+ },
39643
+ {
39644
+ scheme: 'bearer',
39645
+ type: 'http'
39646
+ }
39647
+ ],
39648
+ url: '/api/openstack-routers/{uuid}/remove_external_gateway/',
39649
+ ...options
39650
+ });
39651
+ };
39604
39652
  /**
39605
39653
  * Remove router interface
39606
39654
  * Remove interface from router. Either subnet or port must be provided.
@@ -39657,6 +39705,34 @@ export const openstackRoutersSetErred = (options) => {
39657
39705
  }
39658
39706
  });
39659
39707
  };
39708
+ /**
39709
+ * Set external gateway
39710
+ * Set an external network as the gateway for this router. Advanced options (SNAT control, fixed IPs) require additional permissions.
39711
+ */
39712
+ export const openstackRoutersSetExternalGateway = (options) => {
39713
+ return (options.client ?? _heyApiClient).post({
39714
+ security: [
39715
+ {
39716
+ name: 'Authorization',
39717
+ type: 'apiKey'
39718
+ },
39719
+ {
39720
+ scheme: 'bearer',
39721
+ type: 'http'
39722
+ },
39723
+ {
39724
+ scheme: 'bearer',
39725
+ type: 'http'
39726
+ }
39727
+ ],
39728
+ url: '/api/openstack-routers/{uuid}/set_external_gateway/',
39729
+ ...options,
39730
+ headers: {
39731
+ 'Content-Type': 'application/json',
39732
+ ...options.headers
39733
+ }
39734
+ });
39735
+ };
39660
39736
  /**
39661
39737
  * Mark router as OK
39662
39738
  * Manually transition the router to OK state and clear error fields. Staff-only operation.
@@ -515,7 +515,7 @@ export type Allocation = {
515
515
  readonly created?: string;
516
516
  readonly modified?: string;
517
517
  readonly backend_id?: string;
518
- readonly access_url?: string | null;
518
+ access_url?: Array<string> | string | null;
519
519
  node_limit?: number;
520
520
  groupname?: string | null;
521
521
  readonly node_usage?: string;
@@ -1688,6 +1688,16 @@ export type AvailableChecklistsResponse = {
1688
1688
  [key: string]: unknown;
1689
1689
  } | null;
1690
1690
  };
1691
+ export type AvailableExternalNetwork = {
1692
+ backend_id: string;
1693
+ name: string;
1694
+ description: string;
1695
+ source: AvailableExternalNetworkSourceEnum;
1696
+ subnets: Array<{
1697
+ [key: string]: unknown;
1698
+ }>;
1699
+ };
1700
+ export type AvailableExternalNetworkSourceEnum = 'global' | 'rbac';
1691
1701
  export type AvailableScope = {
1692
1702
  permission: string;
1693
1703
  description: string;
@@ -1723,7 +1733,7 @@ export type AwsInstance = {
1723
1733
  readonly created?: string;
1724
1734
  readonly modified?: string;
1725
1735
  readonly backend_id?: string;
1726
- readonly access_url?: string | null;
1736
+ access_url?: Array<string> | string | null;
1727
1737
  readonly start_time?: string | null;
1728
1738
  /**
1729
1739
  * Number of cores in a VM
@@ -1839,7 +1849,7 @@ export type AwsVolume = {
1839
1849
  readonly created?: string;
1840
1850
  readonly modified?: string;
1841
1851
  readonly backend_id?: string;
1842
- readonly access_url?: string | null;
1852
+ access_url?: Array<string> | string | null;
1843
1853
  /**
1844
1854
  * Size of volume in gigabytes
1845
1855
  */
@@ -1928,7 +1938,7 @@ export type AzurePublicIp = {
1928
1938
  readonly created?: string;
1929
1939
  readonly modified?: string;
1930
1940
  readonly backend_id?: string;
1931
- readonly access_url?: string | null;
1941
+ access_url?: Array<string> | string | null;
1932
1942
  location?: string;
1933
1943
  resource_group?: string;
1934
1944
  readonly marketplace_offering_uuid?: string | null;
@@ -1978,7 +1988,7 @@ export type AzureResourceGroup = {
1978
1988
  readonly created?: string;
1979
1989
  readonly modified?: string;
1980
1990
  readonly backend_id?: string;
1981
- readonly access_url?: string | null;
1991
+ access_url?: Array<string> | string | null;
1982
1992
  location?: string;
1983
1993
  readonly marketplace_offering_uuid?: string | null;
1984
1994
  readonly marketplace_offering_name?: string | null;
@@ -2029,7 +2039,7 @@ export type AzureSqlDatabase = {
2029
2039
  readonly created?: string;
2030
2040
  readonly modified?: string;
2031
2041
  readonly backend_id?: string;
2032
- readonly access_url?: string | null;
2042
+ access_url?: Array<string> | string | null;
2033
2043
  server?: string;
2034
2044
  charset?: string | null;
2035
2045
  collation?: string | null;
@@ -2094,7 +2104,7 @@ export type AzureSqlServer = {
2094
2104
  readonly created?: string;
2095
2105
  readonly modified?: string;
2096
2106
  readonly backend_id?: string;
2097
- readonly access_url?: string | null;
2107
+ access_url?: Array<string> | string | null;
2098
2108
  readonly resource_group?: string;
2099
2109
  readonly username?: string;
2100
2110
  readonly password?: string;
@@ -2149,7 +2159,7 @@ export type AzureVirtualMachine = {
2149
2159
  readonly created?: string;
2150
2160
  readonly modified?: string;
2151
2161
  readonly backend_id?: string;
2152
- readonly access_url?: string | null;
2162
+ access_url?: Array<string> | string | null;
2153
2163
  readonly start_time?: string | null;
2154
2164
  /**
2155
2165
  * Number of cores in a VM
@@ -5046,8 +5056,8 @@ export type CourseAccount = {
5046
5056
  readonly project_uuid: string;
5047
5057
  readonly project_name: string;
5048
5058
  readonly project_slug: string;
5049
- readonly project_start_date: string;
5050
- readonly project_end_date: string;
5059
+ readonly project_start_date: string | null;
5060
+ readonly project_end_date: string | null;
5051
5061
  readonly user_uuid: string;
5052
5062
  readonly username: string;
5053
5063
  readonly customer_uuid: string;
@@ -6141,7 +6151,7 @@ export type DigitalOceanDroplet = {
6141
6151
  readonly created?: string;
6142
6152
  readonly modified?: string;
6143
6153
  readonly backend_id?: string;
6144
- readonly access_url?: string | null;
6154
+ access_url?: Array<string> | string | null;
6145
6155
  readonly start_time?: string | null;
6146
6156
  /**
6147
6157
  * Number of cores in a VM
@@ -7169,7 +7179,7 @@ export type FirecrestJob = {
7169
7179
  readonly created?: string;
7170
7180
  readonly modified?: string;
7171
7181
  readonly backend_id?: string;
7172
- readonly access_url?: string | null;
7182
+ access_url?: Array<string> | string | null;
7173
7183
  runtime_state?: string;
7174
7184
  /**
7175
7185
  * Batch script file
@@ -12960,7 +12970,7 @@ export type OpenStackBackup = {
12960
12970
  readonly created?: string;
12961
12971
  readonly modified?: string;
12962
12972
  readonly backend_id?: string;
12963
- readonly access_url?: string | null;
12973
+ access_url?: Array<string> | string | null;
12964
12974
  /**
12965
12975
  * Guaranteed time of backup retention. If null - keep forever.
12966
12976
  */
@@ -13166,7 +13176,7 @@ export type OpenStackFloatingIp = {
13166
13176
  readonly created?: string;
13167
13177
  readonly modified?: string;
13168
13178
  readonly backend_id?: string;
13169
- readonly access_url?: string | null;
13179
+ access_url?: Array<string> | string | null;
13170
13180
  readonly runtime_state?: string;
13171
13181
  /**
13172
13182
  * The public IPv4 address of the floating IP
@@ -13248,7 +13258,7 @@ export type OpenStackHealthMonitor = {
13248
13258
  * Health monitor ID in Octavia
13249
13259
  */
13250
13260
  backend_id?: string | null;
13251
- readonly access_url?: string | null;
13261
+ access_url?: Array<string> | string | null;
13252
13262
  /**
13253
13263
  * Pool this health monitor belongs to
13254
13264
  */
@@ -13323,7 +13333,7 @@ export type OpenStackInstance = {
13323
13333
  * Instance ID in the OpenStack backend
13324
13334
  */
13325
13335
  readonly backend_id?: string | null;
13326
- readonly access_url?: string | null;
13336
+ access_url?: Array<string> | string | null;
13327
13337
  readonly start_time?: string | null;
13328
13338
  /**
13329
13339
  * Number of cores in a VM
@@ -13634,7 +13644,7 @@ export type OpenStackListener = {
13634
13644
  * Listener ID in Octavia
13635
13645
  */
13636
13646
  backend_id?: string | null;
13637
- readonly access_url?: string | null;
13647
+ access_url?: Array<string> | string | null;
13638
13648
  /**
13639
13649
  * Load balancer this listener belongs to
13640
13650
  */
@@ -13691,7 +13701,7 @@ export type OpenStackLoadBalancer = {
13691
13701
  * Load balancer ID in Octavia
13692
13702
  */
13693
13703
  backend_id?: string | null;
13694
- readonly access_url?: string | null;
13704
+ access_url?: Array<string> | string | null;
13695
13705
  /**
13696
13706
  * OpenStack tenant this load balancer belongs to
13697
13707
  */
@@ -13933,7 +13943,7 @@ export type OpenStackNetwork = {
13933
13943
  readonly created?: string;
13934
13944
  readonly modified?: string;
13935
13945
  readonly backend_id?: string;
13936
- readonly access_url?: string | null;
13946
+ access_url?: Array<string> | string | null;
13937
13947
  /**
13938
13948
  * OpenStack tenant this network belongs to
13939
13949
  */
@@ -14004,7 +14014,7 @@ export type OpenStackPool = {
14004
14014
  * Pool ID in Octavia
14005
14015
  */
14006
14016
  backend_id?: string | null;
14007
- readonly access_url?: string | null;
14017
+ access_url?: Array<string> | string | null;
14008
14018
  /**
14009
14019
  * Load balancer this pool belongs to
14010
14020
  */
@@ -14057,7 +14067,7 @@ export type OpenStackPoolMember = {
14057
14067
  * Member ID in Octavia
14058
14068
  */
14059
14069
  backend_id?: string | null;
14060
- readonly access_url?: string | null;
14070
+ access_url?: Array<string> | string | null;
14061
14071
  /**
14062
14072
  * Pool this member belongs to
14063
14073
  */
@@ -14116,7 +14126,7 @@ export type OpenStackPort = {
14116
14126
  * Port ID in OpenStack
14117
14127
  */
14118
14128
  readonly backend_id?: string | null;
14119
- readonly access_url?: string | null;
14129
+ access_url?: Array<string> | string | null;
14120
14130
  fixed_ips?: Array<OpenStackFixedIp>;
14121
14131
  /**
14122
14132
  * MAC address of the port
@@ -14240,7 +14250,7 @@ export type OpenStackRouter = {
14240
14250
  * Router ID in OpenStack
14241
14251
  */
14242
14252
  backend_id?: string | null;
14243
- readonly access_url?: string | null;
14253
+ access_url?: Array<string> | string | null;
14244
14254
  /**
14245
14255
  * OpenStack tenant this router belongs to
14246
14256
  */
@@ -14250,6 +14260,18 @@ export type OpenStackRouter = {
14250
14260
  routes?: Array<OpenStackStaticRoute>;
14251
14261
  readonly fixed_ips?: Array<OpenStackFixedIp>;
14252
14262
  readonly ports?: Array<OpenStackNestedPort>;
14263
+ /**
14264
+ * Backend ID of the external network used as gateway
14265
+ */
14266
+ external_network_id?: string;
14267
+ readonly external_network_uuid?: string | null;
14268
+ readonly external_network_name?: string | null;
14269
+ readonly has_external_gateway?: boolean;
14270
+ /**
14271
+ * Whether SNAT is enabled on the external gateway. None means OpenStack default (True).
14272
+ */
14273
+ enable_snat?: boolean | null;
14274
+ readonly external_fixed_ips?: unknown;
14253
14275
  readonly marketplace_offering_uuid?: string | null;
14254
14276
  readonly marketplace_offering_name?: string | null;
14255
14277
  readonly marketplace_offering_type?: string | null;
@@ -14306,7 +14328,7 @@ export type OpenStackSecurityGroup = {
14306
14328
  readonly created?: string;
14307
14329
  readonly modified?: string;
14308
14330
  readonly backend_id?: string;
14309
- readonly access_url?: string | null;
14331
+ access_url?: Array<string> | string | null;
14310
14332
  readonly tenant?: string;
14311
14333
  readonly tenant_name?: string;
14312
14334
  readonly tenant_uuid?: string;
@@ -14491,7 +14513,7 @@ export type OpenStackServerGroup = {
14491
14513
  readonly created?: string;
14492
14514
  readonly modified?: string;
14493
14515
  readonly backend_id?: string;
14494
- readonly access_url?: string | null;
14516
+ access_url?: Array<string> | string | null;
14495
14517
  readonly tenant?: string;
14496
14518
  readonly tenant_name?: string;
14497
14519
  readonly tenant_uuid?: string;
@@ -14551,7 +14573,7 @@ export type OpenStackSnapshot = {
14551
14573
  * Snapshot ID in the OpenStack backend
14552
14574
  */
14553
14575
  readonly backend_id?: string | null;
14554
- readonly access_url?: string | null;
14576
+ access_url?: Array<string> | string | null;
14555
14577
  /**
14556
14578
  * Volume from which this snapshot was created
14557
14579
  */
@@ -14666,7 +14688,7 @@ export type OpenStackSubNet = {
14666
14688
  readonly created?: string;
14667
14689
  readonly modified?: string;
14668
14690
  readonly backend_id?: string;
14669
- readonly access_url?: string | null;
14691
+ access_url?: Array<string> | string | null;
14670
14692
  readonly tenant?: string;
14671
14693
  readonly tenant_name?: string;
14672
14694
  /**
@@ -14782,7 +14804,7 @@ export type OpenStackTenant = {
14782
14804
  * ID of tenant in the OpenStack backend
14783
14805
  */
14784
14806
  readonly backend_id?: string | null;
14785
- readonly access_url?: string | null;
14807
+ access_url?: Array<string> | string | null;
14786
14808
  /**
14787
14809
  * Optional availability group. Will be used for all instances provisioned in this tenant
14788
14810
  */
@@ -14904,7 +14926,7 @@ export type OpenStackVolume = {
14904
14926
  * Volume ID in the OpenStack backend
14905
14927
  */
14906
14928
  readonly backend_id?: string | null;
14907
- readonly access_url?: string | null;
14929
+ access_url?: Array<string> | string | null;
14908
14930
  /**
14909
14931
  * Snapshot that this volume was created from, if any
14910
14932
  */
@@ -17531,13 +17553,13 @@ export type PermissionMetadataResponse = {
17531
17553
  * Map of permission keys to permission enum values from PermissionEnum
17532
17554
  */
17533
17555
  permissions: {
17534
- [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
17556
+ [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
17535
17557
  };
17536
17558
  /**
17537
17559
  * Map of resource types to create permission enums
17538
17560
  */
17539
17561
  permission_map: {
17540
- [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
17562
+ [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
17541
17563
  };
17542
17564
  /**
17543
17565
  * Grouped permission descriptions for UI
@@ -19947,7 +19969,7 @@ export type RancherApplication = {
19947
19969
  readonly created?: string;
19948
19970
  readonly modified?: string;
19949
19971
  backend_id?: string;
19950
- readonly access_url?: string | null;
19972
+ access_url?: Array<string> | string | null;
19951
19973
  runtime_state?: string;
19952
19974
  template?: string;
19953
19975
  rancher_project?: string;
@@ -20085,7 +20107,7 @@ export type RancherCluster = {
20085
20107
  readonly created?: string;
20086
20108
  readonly modified?: string;
20087
20109
  readonly backend_id?: string;
20088
- readonly access_url?: string | null;
20110
+ access_url?: Array<string> | string | null;
20089
20111
  nodes?: Array<RancherNestedNode>;
20090
20112
  tenant?: string;
20091
20113
  readonly tenant_uuid?: string;
@@ -20305,7 +20327,7 @@ export type RancherIngress = {
20305
20327
  readonly created?: string;
20306
20328
  readonly modified?: string;
20307
20329
  backend_id?: string;
20308
- readonly access_url?: string | null;
20330
+ access_url?: Array<string> | string | null;
20309
20331
  runtime_state?: string;
20310
20332
  rancher_project?: string;
20311
20333
  readonly rancher_project_name?: string;
@@ -20494,7 +20516,7 @@ export type RancherService = {
20494
20516
  readonly created?: string;
20495
20517
  readonly modified?: string;
20496
20518
  backend_id?: string;
20497
- readonly access_url?: string | null;
20519
+ access_url?: Array<string> | string | null;
20498
20520
  runtime_state?: string;
20499
20521
  namespace?: string;
20500
20522
  readonly namespace_name?: string;
@@ -20543,7 +20565,7 @@ export type RancherServiceCreate = {
20543
20565
  readonly created: string;
20544
20566
  readonly modified: string;
20545
20567
  backend_id?: string;
20546
- readonly access_url: string | null;
20568
+ access_url: Array<string> | string | null;
20547
20569
  runtime_state?: string;
20548
20570
  namespace?: string;
20549
20571
  readonly namespace_name: string;
@@ -20763,7 +20785,7 @@ export type RemoteAllocation = {
20763
20785
  readonly created?: string;
20764
20786
  readonly modified?: string;
20765
20787
  readonly backend_id?: string;
20766
- readonly access_url?: string | null;
20788
+ access_url?: Array<string> | string | null;
20767
20789
  node_limit?: number;
20768
20790
  /**
20769
20791
  * The identifier of the project in the remote OpenPortal instance.
@@ -23138,6 +23160,22 @@ export type SetErredRequest = {
23138
23160
  export type SetErredResponse = {
23139
23161
  detail: string;
23140
23162
  };
23163
+ export type SetExternalGatewayRequest = {
23164
+ /**
23165
+ * Backend ID (OpenStack UUID) of the external network.
23166
+ */
23167
+ external_network_id: string;
23168
+ /**
23169
+ * Whether to enable SNAT on the gateway. None means use OpenStack default (True). Requires advanced permissions.
23170
+ */
23171
+ enable_snat?: boolean | null;
23172
+ /**
23173
+ * List of fixed IP specifications for the gateway port. Each entry should have 'ip_address' and optionally 'subnet_id'. Requires advanced permissions.
23174
+ */
23175
+ external_fixed_ips?: Array<{
23176
+ [key: string]: unknown;
23177
+ }>;
23178
+ };
23141
23179
  export type SetMtu = {
23142
23180
  mtu: number;
23143
23181
  };
@@ -23236,7 +23274,7 @@ export type SlurmAllocation = {
23236
23274
  readonly created?: string;
23237
23275
  readonly modified?: string;
23238
23276
  readonly backend_id?: string;
23239
- readonly access_url?: string | null;
23277
+ access_url?: Array<string> | string | null;
23240
23278
  readonly cpu_limit?: number;
23241
23279
  readonly cpu_usage?: number;
23242
23280
  readonly gpu_limit?: number;
@@ -25367,7 +25405,7 @@ export type VmwareDisk = {
25367
25405
  readonly created?: string;
25368
25406
  readonly modified?: string;
25369
25407
  readonly backend_id?: string;
25370
- readonly access_url?: string | null;
25408
+ access_url?: Array<string> | string | null;
25371
25409
  /**
25372
25410
  * Size in MiB
25373
25411
  */
@@ -25482,7 +25520,7 @@ export type VmwarePort = {
25482
25520
  readonly created?: string;
25483
25521
  readonly modified?: string;
25484
25522
  readonly backend_id?: string;
25485
- readonly access_url?: string | null;
25523
+ access_url?: Array<string> | string | null;
25486
25524
  readonly mac_address?: string;
25487
25525
  readonly vm?: string;
25488
25526
  readonly vm_uuid?: string;
@@ -25561,7 +25599,7 @@ export type VmwareVirtualMachine = {
25561
25599
  readonly created?: string;
25562
25600
  readonly modified?: string;
25563
25601
  readonly backend_id?: string;
25564
- readonly access_url?: string | null;
25602
+ access_url?: Array<string> | string | null;
25565
25603
  guest_os?: GuestOsEnum | NullEnum | null;
25566
25604
  readonly guest_os_name?: string;
25567
25605
  /**
@@ -27882,7 +27920,7 @@ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_i
27882
27920
  export type OpenStackPoolFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'lb_algorithm' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
27883
27921
  export type OpenStackPortFieldEnum = '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_type' | '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';
27884
27922
  export type OpenStackPortOEnum = '-admin_state_up' | '-created' | '-device_owner' | '-instance_name' | '-mac_address' | '-name' | '-network_name' | '-status' | '-subnet_name' | 'admin_state_up' | 'created' | 'device_owner' | 'instance_name' | 'mac_address' | 'name' | 'network_name' | 'status' | 'subnet_name';
27885
- export type OpenStackRouterFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'offering_external_ips' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'routes' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27923
+ export type OpenStackRouterFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'enable_snat' | 'error_message' | 'error_traceback' | 'external_fixed_ips' | 'external_network_id' | 'external_network_name' | 'external_network_uuid' | 'fixed_ips' | 'has_external_gateway' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'offering_external_ips' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'routes' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27886
27924
  export type OpenStackSecurityGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'rules' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27887
27925
  export type OpenStackServerGroupFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'display_name' | 'error_message' | 'error_traceback' | 'instances' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'policy' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27888
27926
  export type OpenStackSnapshotFieldEnum = 'access_url' | 'action' | 'action_details' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'kept_until' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'restorations' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_volume' | 'source_volume_marketplace_uuid' | 'source_volume_name' | 'state' | 'url' | 'uuid';
@@ -66151,6 +66189,63 @@ export type OpenstackRoutersAddRouterInterfaceResponses = {
66151
66189
  */
66152
66190
  200: unknown;
66153
66191
  };
66192
+ export type OpenstackRoutersAvailableExternalNetworksListData = {
66193
+ body?: never;
66194
+ path: {
66195
+ uuid: string;
66196
+ };
66197
+ query?: {
66198
+ /**
66199
+ * Name
66200
+ */
66201
+ name?: string;
66202
+ /**
66203
+ * Name (exact)
66204
+ */
66205
+ name_exact?: string;
66206
+ /**
66207
+ * A page number within the paginated result set.
66208
+ */
66209
+ page?: number;
66210
+ /**
66211
+ * Number of results to return per page.
66212
+ */
66213
+ page_size?: number;
66214
+ /**
66215
+ * State
66216
+ *
66217
+ *
66218
+ */
66219
+ state?: Array<CoreStates>;
66220
+ /**
66221
+ * Tenant URL
66222
+ */
66223
+ tenant?: string;
66224
+ /**
66225
+ * Tenant UUID
66226
+ */
66227
+ tenant_uuid?: string;
66228
+ };
66229
+ url: '/api/openstack-routers/{uuid}/available_external_networks/';
66230
+ };
66231
+ export type OpenstackRoutersAvailableExternalNetworksListResponses = {
66232
+ 200: Array<AvailableExternalNetwork>;
66233
+ };
66234
+ export type OpenstackRoutersAvailableExternalNetworksListResponse = OpenstackRoutersAvailableExternalNetworksListResponses[keyof OpenstackRoutersAvailableExternalNetworksListResponses];
66235
+ export type OpenstackRoutersRemoveExternalGatewayData = {
66236
+ body?: never;
66237
+ path: {
66238
+ uuid: string;
66239
+ };
66240
+ query?: never;
66241
+ url: '/api/openstack-routers/{uuid}/remove_external_gateway/';
66242
+ };
66243
+ export type OpenstackRoutersRemoveExternalGatewayResponses = {
66244
+ /**
66245
+ * No response body
66246
+ */
66247
+ 202: unknown;
66248
+ };
66154
66249
  export type OpenstackRoutersRemoveRouterInterfaceData = {
66155
66250
  body?: OpenStackRouterInterfaceRequest;
66156
66251
  path: {
@@ -66177,6 +66272,20 @@ export type OpenstackRoutersSetErredResponses = {
66177
66272
  200: RouterSetErredResponse;
66178
66273
  };
66179
66274
  export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
66275
+ export type OpenstackRoutersSetExternalGatewayData = {
66276
+ body: SetExternalGatewayRequest;
66277
+ path: {
66278
+ uuid: string;
66279
+ };
66280
+ query?: never;
66281
+ url: '/api/openstack-routers/{uuid}/set_external_gateway/';
66282
+ };
66283
+ export type OpenstackRoutersSetExternalGatewayResponses = {
66284
+ /**
66285
+ * No response body
66286
+ */
66287
+ 202: unknown;
66288
+ };
66180
66289
  export type OpenstackRoutersSetOkData = {
66181
66290
  body?: never;
66182
66291
  path: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "waldur-js-client",
3
- "version": "8.0.8-dev.15",
3
+ "version": "8.0.8-dev.16",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",