waldur-js-client 8.0.8-dev.14 → 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.
@@ -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;
@@ -5896,17 +5906,29 @@ export type DailyOrderStats = {
5896
5906
  };
5897
5907
  };
5898
5908
  export type DailyProjectUsageReport = {
5909
+ /**
5910
+ * local_username → Usage
5911
+ */
5899
5912
  reports: {
5900
5913
  [key: string]: Usage;
5901
5914
  };
5915
+ /**
5916
+ * component_name → local_username → Usage. e.g. { "cpu": { "chris.aiproject": { "seconds": 41055 } } }
5917
+ */
5902
5918
  components?: {
5903
5919
  [key: string]: {
5904
5920
  [key: string]: Usage;
5905
5921
  };
5906
5922
  };
5923
+ /**
5924
+ * local_username → job count
5925
+ */
5907
5926
  user_job_counts?: {
5908
5927
  [key: string]: number;
5909
5928
  };
5929
+ /**
5930
+ * local_username → wait seconds
5931
+ */
5910
5932
  user_wait_seconds?: {
5911
5933
  [key: string]: number;
5912
5934
  };
@@ -5916,10 +5938,19 @@ export type DailyProjectUsageReport = {
5916
5938
  };
5917
5939
  export type DailyStorageReport = {
5918
5940
  project: string;
5941
+ /**
5942
+ * RFC3339 timestamp
5943
+ */
5919
5944
  generated_at: string;
5945
+ /**
5946
+ * Volume → Quota
5947
+ */
5920
5948
  project_quotas: {
5921
5949
  [key: string]: OpenPortalQuota;
5922
5950
  };
5951
+ /**
5952
+ * UserIdentifier → (Volume → Quota)
5953
+ */
5923
5954
  user_quotas: {
5924
5955
  [key: string]: {
5925
5956
  [key: string]: OpenPortalQuota;
@@ -6120,7 +6151,7 @@ export type DigitalOceanDroplet = {
6120
6151
  readonly created?: string;
6121
6152
  readonly modified?: string;
6122
6153
  readonly backend_id?: string;
6123
- readonly access_url?: string | null;
6154
+ access_url?: Array<string> | string | null;
6124
6155
  readonly start_time?: string | null;
6125
6156
  /**
6126
6157
  * Number of cores in a VM
@@ -7148,7 +7179,7 @@ export type FirecrestJob = {
7148
7179
  readonly created?: string;
7149
7180
  readonly modified?: string;
7150
7181
  readonly backend_id?: string;
7151
- readonly access_url?: string | null;
7182
+ access_url?: Array<string> | string | null;
7152
7183
  runtime_state?: string;
7153
7184
  /**
7154
7185
  * Batch script file
@@ -12857,7 +12888,13 @@ export type OnboardingVerificationRequest = {
12857
12888
  };
12858
12889
  export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
12859
12890
  export type OpenPortalQuota = {
12891
+ /**
12892
+ * Size limit. "unlimited" or a size string e.g. "1024.00 GB"
12893
+ */
12860
12894
  limit: string;
12895
+ /**
12896
+ * Size usage e.g. "24.00 KB". Absent when the server has no usage data.
12897
+ */
12861
12898
  usage?: string;
12862
12899
  };
12863
12900
  export type OpenStackAllowedAddressPair = {
@@ -12933,7 +12970,7 @@ export type OpenStackBackup = {
12933
12970
  readonly created?: string;
12934
12971
  readonly modified?: string;
12935
12972
  readonly backend_id?: string;
12936
- readonly access_url?: string | null;
12973
+ access_url?: Array<string> | string | null;
12937
12974
  /**
12938
12975
  * Guaranteed time of backup retention. If null - keep forever.
12939
12976
  */
@@ -13139,7 +13176,7 @@ export type OpenStackFloatingIp = {
13139
13176
  readonly created?: string;
13140
13177
  readonly modified?: string;
13141
13178
  readonly backend_id?: string;
13142
- readonly access_url?: string | null;
13179
+ access_url?: Array<string> | string | null;
13143
13180
  readonly runtime_state?: string;
13144
13181
  /**
13145
13182
  * The public IPv4 address of the floating IP
@@ -13221,7 +13258,7 @@ export type OpenStackHealthMonitor = {
13221
13258
  * Health monitor ID in Octavia
13222
13259
  */
13223
13260
  backend_id?: string | null;
13224
- readonly access_url?: string | null;
13261
+ access_url?: Array<string> | string | null;
13225
13262
  /**
13226
13263
  * Pool this health monitor belongs to
13227
13264
  */
@@ -13296,7 +13333,7 @@ export type OpenStackInstance = {
13296
13333
  * Instance ID in the OpenStack backend
13297
13334
  */
13298
13335
  readonly backend_id?: string | null;
13299
- readonly access_url?: string | null;
13336
+ access_url?: Array<string> | string | null;
13300
13337
  readonly start_time?: string | null;
13301
13338
  /**
13302
13339
  * Number of cores in a VM
@@ -13607,7 +13644,7 @@ export type OpenStackListener = {
13607
13644
  * Listener ID in Octavia
13608
13645
  */
13609
13646
  backend_id?: string | null;
13610
- readonly access_url?: string | null;
13647
+ access_url?: Array<string> | string | null;
13611
13648
  /**
13612
13649
  * Load balancer this listener belongs to
13613
13650
  */
@@ -13664,7 +13701,7 @@ export type OpenStackLoadBalancer = {
13664
13701
  * Load balancer ID in Octavia
13665
13702
  */
13666
13703
  backend_id?: string | null;
13667
- readonly access_url?: string | null;
13704
+ access_url?: Array<string> | string | null;
13668
13705
  /**
13669
13706
  * OpenStack tenant this load balancer belongs to
13670
13707
  */
@@ -13906,7 +13943,7 @@ export type OpenStackNetwork = {
13906
13943
  readonly created?: string;
13907
13944
  readonly modified?: string;
13908
13945
  readonly backend_id?: string;
13909
- readonly access_url?: string | null;
13946
+ access_url?: Array<string> | string | null;
13910
13947
  /**
13911
13948
  * OpenStack tenant this network belongs to
13912
13949
  */
@@ -13977,7 +14014,7 @@ export type OpenStackPool = {
13977
14014
  * Pool ID in Octavia
13978
14015
  */
13979
14016
  backend_id?: string | null;
13980
- readonly access_url?: string | null;
14017
+ access_url?: Array<string> | string | null;
13981
14018
  /**
13982
14019
  * Load balancer this pool belongs to
13983
14020
  */
@@ -14030,7 +14067,7 @@ export type OpenStackPoolMember = {
14030
14067
  * Member ID in Octavia
14031
14068
  */
14032
14069
  backend_id?: string | null;
14033
- readonly access_url?: string | null;
14070
+ access_url?: Array<string> | string | null;
14034
14071
  /**
14035
14072
  * Pool this member belongs to
14036
14073
  */
@@ -14089,7 +14126,7 @@ export type OpenStackPort = {
14089
14126
  * Port ID in OpenStack
14090
14127
  */
14091
14128
  readonly backend_id?: string | null;
14092
- readonly access_url?: string | null;
14129
+ access_url?: Array<string> | string | null;
14093
14130
  fixed_ips?: Array<OpenStackFixedIp>;
14094
14131
  /**
14095
14132
  * MAC address of the port
@@ -14213,7 +14250,7 @@ export type OpenStackRouter = {
14213
14250
  * Router ID in OpenStack
14214
14251
  */
14215
14252
  backend_id?: string | null;
14216
- readonly access_url?: string | null;
14253
+ access_url?: Array<string> | string | null;
14217
14254
  /**
14218
14255
  * OpenStack tenant this router belongs to
14219
14256
  */
@@ -14223,6 +14260,18 @@ export type OpenStackRouter = {
14223
14260
  routes?: Array<OpenStackStaticRoute>;
14224
14261
  readonly fixed_ips?: Array<OpenStackFixedIp>;
14225
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;
14226
14275
  readonly marketplace_offering_uuid?: string | null;
14227
14276
  readonly marketplace_offering_name?: string | null;
14228
14277
  readonly marketplace_offering_type?: string | null;
@@ -14279,7 +14328,7 @@ export type OpenStackSecurityGroup = {
14279
14328
  readonly created?: string;
14280
14329
  readonly modified?: string;
14281
14330
  readonly backend_id?: string;
14282
- readonly access_url?: string | null;
14331
+ access_url?: Array<string> | string | null;
14283
14332
  readonly tenant?: string;
14284
14333
  readonly tenant_name?: string;
14285
14334
  readonly tenant_uuid?: string;
@@ -14464,7 +14513,7 @@ export type OpenStackServerGroup = {
14464
14513
  readonly created?: string;
14465
14514
  readonly modified?: string;
14466
14515
  readonly backend_id?: string;
14467
- readonly access_url?: string | null;
14516
+ access_url?: Array<string> | string | null;
14468
14517
  readonly tenant?: string;
14469
14518
  readonly tenant_name?: string;
14470
14519
  readonly tenant_uuid?: string;
@@ -14524,7 +14573,7 @@ export type OpenStackSnapshot = {
14524
14573
  * Snapshot ID in the OpenStack backend
14525
14574
  */
14526
14575
  readonly backend_id?: string | null;
14527
- readonly access_url?: string | null;
14576
+ access_url?: Array<string> | string | null;
14528
14577
  /**
14529
14578
  * Volume from which this snapshot was created
14530
14579
  */
@@ -14639,7 +14688,7 @@ export type OpenStackSubNet = {
14639
14688
  readonly created?: string;
14640
14689
  readonly modified?: string;
14641
14690
  readonly backend_id?: string;
14642
- readonly access_url?: string | null;
14691
+ access_url?: Array<string> | string | null;
14643
14692
  readonly tenant?: string;
14644
14693
  readonly tenant_name?: string;
14645
14694
  /**
@@ -14755,7 +14804,7 @@ export type OpenStackTenant = {
14755
14804
  * ID of tenant in the OpenStack backend
14756
14805
  */
14757
14806
  readonly backend_id?: string | null;
14758
- readonly access_url?: string | null;
14807
+ access_url?: Array<string> | string | null;
14759
14808
  /**
14760
14809
  * Optional availability group. Will be used for all instances provisioned in this tenant
14761
14810
  */
@@ -14877,7 +14926,7 @@ export type OpenStackVolume = {
14877
14926
  * Volume ID in the OpenStack backend
14878
14927
  */
14879
14928
  readonly backend_id?: string | null;
14880
- readonly access_url?: string | null;
14929
+ access_url?: Array<string> | string | null;
14881
14930
  /**
14882
14931
  * Snapshot that this volume was created from, if any
14883
14932
  */
@@ -17504,13 +17553,13 @@ export type PermissionMetadataResponse = {
17504
17553
  * Map of permission keys to permission enum values from PermissionEnum
17505
17554
  */
17506
17555
  permissions: {
17507
- [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';
17508
17557
  };
17509
17558
  /**
17510
17559
  * Map of resource types to create permission enums
17511
17560
  */
17512
17561
  permission_map: {
17513
- [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';
17514
17563
  };
17515
17564
  /**
17516
17565
  * Grouped permission descriptions for UI
@@ -18290,18 +18339,33 @@ export type ProjectServiceAccountRequest = {
18290
18339
  };
18291
18340
  export type ProjectStorageReport = {
18292
18341
  project: string;
18342
+ /**
18343
+ * RFC3339 timestamp
18344
+ */
18293
18345
  generated_at: string;
18346
+ /**
18347
+ * Volume → Quota
18348
+ */
18294
18349
  project_quotas: {
18295
18350
  [key: string]: OpenPortalQuota;
18296
18351
  };
18352
+ /**
18353
+ * UserIdentifier → (Volume → Quota)
18354
+ */
18297
18355
  user_quotas: {
18298
18356
  [key: string]: {
18299
18357
  [key: string]: OpenPortalQuota;
18300
18358
  };
18301
18359
  };
18360
+ /**
18361
+ * UserIdentifier → local_username
18362
+ */
18302
18363
  users: {
18303
18364
  [key: string]: string;
18304
18365
  };
18366
+ /**
18367
+ * "YYYY-MM-DD" → DailyStorageReportJson. Absent from JSON when there are no daily snapshots.
18368
+ */
18305
18369
  daily_reports?: {
18306
18370
  [key: string]: DailyStorageReport;
18307
18371
  };
@@ -18391,10 +18455,19 @@ export type ProjectType = {
18391
18455
  description?: string;
18392
18456
  };
18393
18457
  export type ProjectUsageReport = {
18458
+ /**
18459
+ * ProjectIdentifier string e.g. "aiproject.brics"
18460
+ */
18394
18461
  project: string;
18462
+ /**
18463
+ * "YYYY-MM-DD" → DailyProjectUsageReportJson
18464
+ */
18395
18465
  reports: {
18396
18466
  [key: string]: DailyProjectUsageReport;
18397
18467
  };
18468
+ /**
18469
+ * UserIdentifier → local_username. e.g. { "chris.aiproject.brics": "chris.aiproject" }
18470
+ */
18398
18471
  users: {
18399
18472
  [key: string]: string;
18400
18473
  };
@@ -19896,7 +19969,7 @@ export type RancherApplication = {
19896
19969
  readonly created?: string;
19897
19970
  readonly modified?: string;
19898
19971
  backend_id?: string;
19899
- readonly access_url?: string | null;
19972
+ access_url?: Array<string> | string | null;
19900
19973
  runtime_state?: string;
19901
19974
  template?: string;
19902
19975
  rancher_project?: string;
@@ -20034,7 +20107,7 @@ export type RancherCluster = {
20034
20107
  readonly created?: string;
20035
20108
  readonly modified?: string;
20036
20109
  readonly backend_id?: string;
20037
- readonly access_url?: string | null;
20110
+ access_url?: Array<string> | string | null;
20038
20111
  nodes?: Array<RancherNestedNode>;
20039
20112
  tenant?: string;
20040
20113
  readonly tenant_uuid?: string;
@@ -20254,7 +20327,7 @@ export type RancherIngress = {
20254
20327
  readonly created?: string;
20255
20328
  readonly modified?: string;
20256
20329
  backend_id?: string;
20257
- readonly access_url?: string | null;
20330
+ access_url?: Array<string> | string | null;
20258
20331
  runtime_state?: string;
20259
20332
  rancher_project?: string;
20260
20333
  readonly rancher_project_name?: string;
@@ -20443,7 +20516,7 @@ export type RancherService = {
20443
20516
  readonly created?: string;
20444
20517
  readonly modified?: string;
20445
20518
  backend_id?: string;
20446
- readonly access_url?: string | null;
20519
+ access_url?: Array<string> | string | null;
20447
20520
  runtime_state?: string;
20448
20521
  namespace?: string;
20449
20522
  readonly namespace_name?: string;
@@ -20492,7 +20565,7 @@ export type RancherServiceCreate = {
20492
20565
  readonly created: string;
20493
20566
  readonly modified: string;
20494
20567
  backend_id?: string;
20495
- readonly access_url: string | null;
20568
+ access_url: Array<string> | string | null;
20496
20569
  runtime_state?: string;
20497
20570
  namespace?: string;
20498
20571
  readonly namespace_name: string;
@@ -20712,7 +20785,7 @@ export type RemoteAllocation = {
20712
20785
  readonly created?: string;
20713
20786
  readonly modified?: string;
20714
20787
  readonly backend_id?: string;
20715
- readonly access_url?: string | null;
20788
+ access_url?: Array<string> | string | null;
20716
20789
  node_limit?: number;
20717
20790
  /**
20718
20791
  * The identifier of the project in the remote OpenPortal instance.
@@ -23087,6 +23160,22 @@ export type SetErredRequest = {
23087
23160
  export type SetErredResponse = {
23088
23161
  detail: string;
23089
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
+ };
23090
23179
  export type SetMtu = {
23091
23180
  mtu: number;
23092
23181
  };
@@ -23185,7 +23274,7 @@ export type SlurmAllocation = {
23185
23274
  readonly created?: string;
23186
23275
  readonly modified?: string;
23187
23276
  readonly backend_id?: string;
23188
- readonly access_url?: string | null;
23277
+ access_url?: Array<string> | string | null;
23189
23278
  readonly cpu_limit?: number;
23190
23279
  readonly cpu_usage?: number;
23191
23280
  readonly gpu_limit?: number;
@@ -24819,7 +24908,7 @@ export type UserAgreementRequest = {
24819
24908
  */
24820
24909
  language: string;
24821
24910
  };
24822
- export type UserAttributeEnum = 'username' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
24911
+ export type UserAttributeEnum = 'username' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
24823
24912
  export type UserAuthMethodCount = {
24824
24913
  /**
24825
24914
  * Authentication method
@@ -25316,7 +25405,7 @@ export type VmwareDisk = {
25316
25405
  readonly created?: string;
25317
25406
  readonly modified?: string;
25318
25407
  readonly backend_id?: string;
25319
- readonly access_url?: string | null;
25408
+ access_url?: Array<string> | string | null;
25320
25409
  /**
25321
25410
  * Size in MiB
25322
25411
  */
@@ -25431,7 +25520,7 @@ export type VmwarePort = {
25431
25520
  readonly created?: string;
25432
25521
  readonly modified?: string;
25433
25522
  readonly backend_id?: string;
25434
- readonly access_url?: string | null;
25523
+ access_url?: Array<string> | string | null;
25435
25524
  readonly mac_address?: string;
25436
25525
  readonly vm?: string;
25437
25526
  readonly vm_uuid?: string;
@@ -25510,7 +25599,7 @@ export type VmwareVirtualMachine = {
25510
25599
  readonly created?: string;
25511
25600
  readonly modified?: string;
25512
25601
  readonly backend_id?: string;
25513
- readonly access_url?: string | null;
25602
+ access_url?: Array<string> | string | null;
25514
25603
  guest_os?: GuestOsEnum | NullEnum | null;
25515
25604
  readonly guest_os_name?: string;
25516
25605
  /**
@@ -27831,7 +27920,7 @@ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_i
27831
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';
27832
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';
27833
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';
27834
- 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';
27835
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';
27836
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';
27837
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';
@@ -66100,6 +66189,63 @@ export type OpenstackRoutersAddRouterInterfaceResponses = {
66100
66189
  */
66101
66190
  200: unknown;
66102
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
+ };
66103
66249
  export type OpenstackRoutersRemoveRouterInterfaceData = {
66104
66250
  body?: OpenStackRouterInterfaceRequest;
66105
66251
  path: {
@@ -66126,6 +66272,20 @@ export type OpenstackRoutersSetErredResponses = {
66126
66272
  200: RouterSetErredResponse;
66127
66273
  };
66128
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
+ };
66129
66289
  export type OpenstackRoutersSetOkData = {
66130
66290
  body?: never;
66131
66291
  path: {