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

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
@@ -3722,18 +3732,6 @@ export type ChatResponse = {
3722
3732
  * State display name filters (e.g. ['OK', 'Erred']). Present when k='resource_list'.
3723
3733
  */
3724
3734
  state?: Array<unknown>;
3725
- /**
3726
- * Table headers - list of column names. Present when k='table'.
3727
- */
3728
- h?: Array<unknown>;
3729
- /**
3730
- * Table rows - list of row data (each row is a list of strings). Present when k='table'.
3731
- */
3732
- r?: Array<unknown>;
3733
- /**
3734
- * Total count of rows in the table (used for pagination display). Present when k='table'.
3735
- */
3736
- n?: number | null;
3737
3735
  };
3738
3736
  export type ChatSession = {
3739
3737
  readonly uuid?: string;
@@ -5046,8 +5044,8 @@ export type CourseAccount = {
5046
5044
  readonly project_uuid: string;
5047
5045
  readonly project_name: string;
5048
5046
  readonly project_slug: string;
5049
- readonly project_start_date: string;
5050
- readonly project_end_date: string;
5047
+ readonly project_start_date: string | null;
5048
+ readonly project_end_date: string | null;
5051
5049
  readonly user_uuid: string;
5052
5050
  readonly username: string;
5053
5051
  readonly customer_uuid: string;
@@ -6141,7 +6139,7 @@ export type DigitalOceanDroplet = {
6141
6139
  readonly created?: string;
6142
6140
  readonly modified?: string;
6143
6141
  readonly backend_id?: string;
6144
- readonly access_url?: string | null;
6142
+ access_url?: Array<string> | string | null;
6145
6143
  readonly start_time?: string | null;
6146
6144
  /**
6147
6145
  * Number of cores in a VM
@@ -7169,7 +7167,7 @@ export type FirecrestJob = {
7169
7167
  readonly created?: string;
7170
7168
  readonly modified?: string;
7171
7169
  readonly backend_id?: string;
7172
- readonly access_url?: string | null;
7170
+ access_url?: Array<string> | string | null;
7173
7171
  runtime_state?: string;
7174
7172
  /**
7175
7173
  * Batch script file
@@ -10315,9 +10313,13 @@ export type Message = {
10315
10313
  readonly uuid: string;
10316
10314
  readonly thread: string;
10317
10315
  role: MessageRoleEnum;
10318
- content?: string;
10319
- readonly content_display: string;
10320
- readonly tool_calls: unknown;
10316
+ readonly blocks: Array<{
10317
+ id: string;
10318
+ key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool';
10319
+ status: string;
10320
+ [key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool');
10321
+ }>;
10322
+ readonly warning: string;
10321
10323
  readonly sequence_index: number;
10322
10324
  readonly replaces: string | null;
10323
10325
  readonly created: string;
@@ -11415,7 +11417,7 @@ export type OfferingComponent = {
11415
11417
  * The conversion factor from backend units to measured_unit
11416
11418
  */
11417
11419
  unit_factor?: number;
11418
- limit_period?: LimitPeriodEnum | BlankEnum | NullEnum | null;
11420
+ limit_period?: LimitPeriodEnum | NullEnum | null;
11419
11421
  limit_amount?: number | null;
11420
11422
  article_code?: string;
11421
11423
  max_value?: number | null;
@@ -11479,7 +11481,7 @@ export type OfferingComponentRequest = {
11479
11481
  * The conversion factor from backend units to measured_unit
11480
11482
  */
11481
11483
  unit_factor?: number;
11482
- limit_period?: LimitPeriodEnum | BlankEnum | NullEnum | null;
11484
+ limit_period?: LimitPeriodEnum | NullEnum | null;
11483
11485
  limit_amount?: number | null;
11484
11486
  article_code?: string;
11485
11487
  max_value?: number | null;
@@ -12960,7 +12962,7 @@ export type OpenStackBackup = {
12960
12962
  readonly created?: string;
12961
12963
  readonly modified?: string;
12962
12964
  readonly backend_id?: string;
12963
- readonly access_url?: string | null;
12965
+ access_url?: Array<string> | string | null;
12964
12966
  /**
12965
12967
  * Guaranteed time of backup retention. If null - keep forever.
12966
12968
  */
@@ -13166,7 +13168,7 @@ export type OpenStackFloatingIp = {
13166
13168
  readonly created?: string;
13167
13169
  readonly modified?: string;
13168
13170
  readonly backend_id?: string;
13169
- readonly access_url?: string | null;
13171
+ access_url?: Array<string> | string | null;
13170
13172
  readonly runtime_state?: string;
13171
13173
  /**
13172
13174
  * The public IPv4 address of the floating IP
@@ -13248,7 +13250,7 @@ export type OpenStackHealthMonitor = {
13248
13250
  * Health monitor ID in Octavia
13249
13251
  */
13250
13252
  backend_id?: string | null;
13251
- readonly access_url?: string | null;
13253
+ access_url?: Array<string> | string | null;
13252
13254
  /**
13253
13255
  * Pool this health monitor belongs to
13254
13256
  */
@@ -13323,7 +13325,7 @@ export type OpenStackInstance = {
13323
13325
  * Instance ID in the OpenStack backend
13324
13326
  */
13325
13327
  readonly backend_id?: string | null;
13326
- readonly access_url?: string | null;
13328
+ access_url?: Array<string> | string | null;
13327
13329
  readonly start_time?: string | null;
13328
13330
  /**
13329
13331
  * Number of cores in a VM
@@ -13634,7 +13636,7 @@ export type OpenStackListener = {
13634
13636
  * Listener ID in Octavia
13635
13637
  */
13636
13638
  backend_id?: string | null;
13637
- readonly access_url?: string | null;
13639
+ access_url?: Array<string> | string | null;
13638
13640
  /**
13639
13641
  * Load balancer this listener belongs to
13640
13642
  */
@@ -13691,7 +13693,7 @@ export type OpenStackLoadBalancer = {
13691
13693
  * Load balancer ID in Octavia
13692
13694
  */
13693
13695
  backend_id?: string | null;
13694
- readonly access_url?: string | null;
13696
+ access_url?: Array<string> | string | null;
13695
13697
  /**
13696
13698
  * OpenStack tenant this load balancer belongs to
13697
13699
  */
@@ -13933,7 +13935,7 @@ export type OpenStackNetwork = {
13933
13935
  readonly created?: string;
13934
13936
  readonly modified?: string;
13935
13937
  readonly backend_id?: string;
13936
- readonly access_url?: string | null;
13938
+ access_url?: Array<string> | string | null;
13937
13939
  /**
13938
13940
  * OpenStack tenant this network belongs to
13939
13941
  */
@@ -14004,7 +14006,7 @@ export type OpenStackPool = {
14004
14006
  * Pool ID in Octavia
14005
14007
  */
14006
14008
  backend_id?: string | null;
14007
- readonly access_url?: string | null;
14009
+ access_url?: Array<string> | string | null;
14008
14010
  /**
14009
14011
  * Load balancer this pool belongs to
14010
14012
  */
@@ -14057,7 +14059,7 @@ export type OpenStackPoolMember = {
14057
14059
  * Member ID in Octavia
14058
14060
  */
14059
14061
  backend_id?: string | null;
14060
- readonly access_url?: string | null;
14062
+ access_url?: Array<string> | string | null;
14061
14063
  /**
14062
14064
  * Pool this member belongs to
14063
14065
  */
@@ -14116,7 +14118,7 @@ export type OpenStackPort = {
14116
14118
  * Port ID in OpenStack
14117
14119
  */
14118
14120
  readonly backend_id?: string | null;
14119
- readonly access_url?: string | null;
14121
+ access_url?: Array<string> | string | null;
14120
14122
  fixed_ips?: Array<OpenStackFixedIp>;
14121
14123
  /**
14122
14124
  * MAC address of the port
@@ -14240,7 +14242,7 @@ export type OpenStackRouter = {
14240
14242
  * Router ID in OpenStack
14241
14243
  */
14242
14244
  backend_id?: string | null;
14243
- readonly access_url?: string | null;
14245
+ access_url?: Array<string> | string | null;
14244
14246
  /**
14245
14247
  * OpenStack tenant this router belongs to
14246
14248
  */
@@ -14250,6 +14252,18 @@ export type OpenStackRouter = {
14250
14252
  routes?: Array<OpenStackStaticRoute>;
14251
14253
  readonly fixed_ips?: Array<OpenStackFixedIp>;
14252
14254
  readonly ports?: Array<OpenStackNestedPort>;
14255
+ /**
14256
+ * Backend ID of the external network used as gateway
14257
+ */
14258
+ external_network_id?: string;
14259
+ readonly external_network_uuid?: string | null;
14260
+ readonly external_network_name?: string | null;
14261
+ readonly has_external_gateway?: boolean;
14262
+ /**
14263
+ * Whether SNAT is enabled on the external gateway. None means OpenStack default (True).
14264
+ */
14265
+ enable_snat?: boolean | null;
14266
+ readonly external_fixed_ips?: unknown;
14253
14267
  readonly marketplace_offering_uuid?: string | null;
14254
14268
  readonly marketplace_offering_name?: string | null;
14255
14269
  readonly marketplace_offering_type?: string | null;
@@ -14306,7 +14320,7 @@ export type OpenStackSecurityGroup = {
14306
14320
  readonly created?: string;
14307
14321
  readonly modified?: string;
14308
14322
  readonly backend_id?: string;
14309
- readonly access_url?: string | null;
14323
+ access_url?: Array<string> | string | null;
14310
14324
  readonly tenant?: string;
14311
14325
  readonly tenant_name?: string;
14312
14326
  readonly tenant_uuid?: string;
@@ -14491,7 +14505,7 @@ export type OpenStackServerGroup = {
14491
14505
  readonly created?: string;
14492
14506
  readonly modified?: string;
14493
14507
  readonly backend_id?: string;
14494
- readonly access_url?: string | null;
14508
+ access_url?: Array<string> | string | null;
14495
14509
  readonly tenant?: string;
14496
14510
  readonly tenant_name?: string;
14497
14511
  readonly tenant_uuid?: string;
@@ -14551,7 +14565,7 @@ export type OpenStackSnapshot = {
14551
14565
  * Snapshot ID in the OpenStack backend
14552
14566
  */
14553
14567
  readonly backend_id?: string | null;
14554
- readonly access_url?: string | null;
14568
+ access_url?: Array<string> | string | null;
14555
14569
  /**
14556
14570
  * Volume from which this snapshot was created
14557
14571
  */
@@ -14666,7 +14680,7 @@ export type OpenStackSubNet = {
14666
14680
  readonly created?: string;
14667
14681
  readonly modified?: string;
14668
14682
  readonly backend_id?: string;
14669
- readonly access_url?: string | null;
14683
+ access_url?: Array<string> | string | null;
14670
14684
  readonly tenant?: string;
14671
14685
  readonly tenant_name?: string;
14672
14686
  /**
@@ -14782,7 +14796,7 @@ export type OpenStackTenant = {
14782
14796
  * ID of tenant in the OpenStack backend
14783
14797
  */
14784
14798
  readonly backend_id?: string | null;
14785
- readonly access_url?: string | null;
14799
+ access_url?: Array<string> | string | null;
14786
14800
  /**
14787
14801
  * Optional availability group. Will be used for all instances provisioned in this tenant
14788
14802
  */
@@ -14904,7 +14918,7 @@ export type OpenStackVolume = {
14904
14918
  * Volume ID in the OpenStack backend
14905
14919
  */
14906
14920
  readonly backend_id?: string | null;
14907
- readonly access_url?: string | null;
14921
+ access_url?: Array<string> | string | null;
14908
14922
  /**
14909
14923
  * Snapshot that this volume was created from, if any
14910
14924
  */
@@ -17531,13 +17545,13 @@ export type PermissionMetadataResponse = {
17531
17545
  * Map of permission keys to permission enum values from PermissionEnum
17532
17546
  */
17533
17547
  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';
17548
+ [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
17549
  };
17536
17550
  /**
17537
17551
  * Map of resource types to create permission enums
17538
17552
  */
17539
17553
  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';
17554
+ [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
17555
  };
17542
17556
  /**
17543
17557
  * Grouped permission descriptions for UI
@@ -19947,7 +19961,7 @@ export type RancherApplication = {
19947
19961
  readonly created?: string;
19948
19962
  readonly modified?: string;
19949
19963
  backend_id?: string;
19950
- readonly access_url?: string | null;
19964
+ access_url?: Array<string> | string | null;
19951
19965
  runtime_state?: string;
19952
19966
  template?: string;
19953
19967
  rancher_project?: string;
@@ -20085,7 +20099,7 @@ export type RancherCluster = {
20085
20099
  readonly created?: string;
20086
20100
  readonly modified?: string;
20087
20101
  readonly backend_id?: string;
20088
- readonly access_url?: string | null;
20102
+ access_url?: Array<string> | string | null;
20089
20103
  nodes?: Array<RancherNestedNode>;
20090
20104
  tenant?: string;
20091
20105
  readonly tenant_uuid?: string;
@@ -20305,7 +20319,7 @@ export type RancherIngress = {
20305
20319
  readonly created?: string;
20306
20320
  readonly modified?: string;
20307
20321
  backend_id?: string;
20308
- readonly access_url?: string | null;
20322
+ access_url?: Array<string> | string | null;
20309
20323
  runtime_state?: string;
20310
20324
  rancher_project?: string;
20311
20325
  readonly rancher_project_name?: string;
@@ -20494,7 +20508,7 @@ export type RancherService = {
20494
20508
  readonly created?: string;
20495
20509
  readonly modified?: string;
20496
20510
  backend_id?: string;
20497
- readonly access_url?: string | null;
20511
+ access_url?: Array<string> | string | null;
20498
20512
  runtime_state?: string;
20499
20513
  namespace?: string;
20500
20514
  readonly namespace_name?: string;
@@ -20543,7 +20557,7 @@ export type RancherServiceCreate = {
20543
20557
  readonly created: string;
20544
20558
  readonly modified: string;
20545
20559
  backend_id?: string;
20546
- readonly access_url: string | null;
20560
+ access_url: Array<string> | string | null;
20547
20561
  runtime_state?: string;
20548
20562
  namespace?: string;
20549
20563
  readonly namespace_name: string;
@@ -20763,7 +20777,7 @@ export type RemoteAllocation = {
20763
20777
  readonly created?: string;
20764
20778
  readonly modified?: string;
20765
20779
  readonly backend_id?: string;
20766
- readonly access_url?: string | null;
20780
+ access_url?: Array<string> | string | null;
20767
20781
  node_limit?: number;
20768
20782
  /**
20769
20783
  * The identifier of the project in the remote OpenPortal instance.
@@ -23138,6 +23152,22 @@ export type SetErredRequest = {
23138
23152
  export type SetErredResponse = {
23139
23153
  detail: string;
23140
23154
  };
23155
+ export type SetExternalGatewayRequest = {
23156
+ /**
23157
+ * Backend ID (OpenStack UUID) of the external network.
23158
+ */
23159
+ external_network_id: string;
23160
+ /**
23161
+ * Whether to enable SNAT on the gateway. None means use OpenStack default (True). Requires advanced permissions.
23162
+ */
23163
+ enable_snat?: boolean | null;
23164
+ /**
23165
+ * List of fixed IP specifications for the gateway port. Each entry should have 'ip_address' and optionally 'subnet_id'. Requires advanced permissions.
23166
+ */
23167
+ external_fixed_ips?: Array<{
23168
+ [key: string]: unknown;
23169
+ }>;
23170
+ };
23141
23171
  export type SetMtu = {
23142
23172
  mtu: number;
23143
23173
  };
@@ -23236,7 +23266,7 @@ export type SlurmAllocation = {
23236
23266
  readonly created?: string;
23237
23267
  readonly modified?: string;
23238
23268
  readonly backend_id?: string;
23239
- readonly access_url?: string | null;
23269
+ access_url?: Array<string> | string | null;
23240
23270
  readonly cpu_limit?: number;
23241
23271
  readonly cpu_usage?: number;
23242
23272
  readonly gpu_limit?: number;
@@ -24590,7 +24620,7 @@ export type UpdateOfferingComponentRequest = {
24590
24620
  * The conversion factor from backend units to measured_unit
24591
24621
  */
24592
24622
  unit_factor?: number;
24593
- limit_period?: LimitPeriodEnum | BlankEnum | NullEnum | null;
24623
+ limit_period?: LimitPeriodEnum | NullEnum | null;
24594
24624
  limit_amount?: number | null;
24595
24625
  article_code?: string;
24596
24626
  max_value?: number | null;
@@ -25367,7 +25397,7 @@ export type VmwareDisk = {
25367
25397
  readonly created?: string;
25368
25398
  readonly modified?: string;
25369
25399
  readonly backend_id?: string;
25370
- readonly access_url?: string | null;
25400
+ access_url?: Array<string> | string | null;
25371
25401
  /**
25372
25402
  * Size in MiB
25373
25403
  */
@@ -25482,7 +25512,7 @@ export type VmwarePort = {
25482
25512
  readonly created?: string;
25483
25513
  readonly modified?: string;
25484
25514
  readonly backend_id?: string;
25485
- readonly access_url?: string | null;
25515
+ access_url?: Array<string> | string | null;
25486
25516
  readonly mac_address?: string;
25487
25517
  readonly vm?: string;
25488
25518
  readonly vm_uuid?: string;
@@ -25561,7 +25591,7 @@ export type VmwareVirtualMachine = {
25561
25591
  readonly created?: string;
25562
25592
  readonly modified?: string;
25563
25593
  readonly backend_id?: string;
25564
- readonly access_url?: string | null;
25594
+ access_url?: Array<string> | string | null;
25565
25595
  guest_os?: GuestOsEnum | NullEnum | null;
25566
25596
  readonly guest_os_name?: string;
25567
25597
  /**
@@ -27789,6 +27819,7 @@ export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expe
27789
27819
  export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
27790
27820
  export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'input_tokens' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'output_tokens' | 'title_gen_input_tokens' | 'title_gen_output_tokens' | 'total_tokens' | 'user_full_name' | 'user_username' | 'uuid';
27791
27821
  export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
27822
+ export type ThreadSessionScopeEnum = 'own';
27792
27823
  export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
27793
27824
  export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
27794
27825
  export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
@@ -27882,7 +27913,7 @@ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_i
27882
27913
  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
27914
  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
27915
  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';
27916
+ 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
27917
  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
27918
  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
27919
  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';
@@ -34612,6 +34643,7 @@ export type ChatThreadsListData = {
34612
34643
  */
34613
34644
  page_size?: number;
34614
34645
  query?: string;
34646
+ scope?: ThreadSessionScopeEnum;
34615
34647
  total_tokens_max?: number;
34616
34648
  total_tokens_min?: number;
34617
34649
  user?: string;
@@ -66151,6 +66183,63 @@ export type OpenstackRoutersAddRouterInterfaceResponses = {
66151
66183
  */
66152
66184
  200: unknown;
66153
66185
  };
66186
+ export type OpenstackRoutersAvailableExternalNetworksListData = {
66187
+ body?: never;
66188
+ path: {
66189
+ uuid: string;
66190
+ };
66191
+ query?: {
66192
+ /**
66193
+ * Name
66194
+ */
66195
+ name?: string;
66196
+ /**
66197
+ * Name (exact)
66198
+ */
66199
+ name_exact?: string;
66200
+ /**
66201
+ * A page number within the paginated result set.
66202
+ */
66203
+ page?: number;
66204
+ /**
66205
+ * Number of results to return per page.
66206
+ */
66207
+ page_size?: number;
66208
+ /**
66209
+ * State
66210
+ *
66211
+ *
66212
+ */
66213
+ state?: Array<CoreStates>;
66214
+ /**
66215
+ * Tenant URL
66216
+ */
66217
+ tenant?: string;
66218
+ /**
66219
+ * Tenant UUID
66220
+ */
66221
+ tenant_uuid?: string;
66222
+ };
66223
+ url: '/api/openstack-routers/{uuid}/available_external_networks/';
66224
+ };
66225
+ export type OpenstackRoutersAvailableExternalNetworksListResponses = {
66226
+ 200: Array<AvailableExternalNetwork>;
66227
+ };
66228
+ export type OpenstackRoutersAvailableExternalNetworksListResponse = OpenstackRoutersAvailableExternalNetworksListResponses[keyof OpenstackRoutersAvailableExternalNetworksListResponses];
66229
+ export type OpenstackRoutersRemoveExternalGatewayData = {
66230
+ body?: never;
66231
+ path: {
66232
+ uuid: string;
66233
+ };
66234
+ query?: never;
66235
+ url: '/api/openstack-routers/{uuid}/remove_external_gateway/';
66236
+ };
66237
+ export type OpenstackRoutersRemoveExternalGatewayResponses = {
66238
+ /**
66239
+ * No response body
66240
+ */
66241
+ 202: unknown;
66242
+ };
66154
66243
  export type OpenstackRoutersRemoveRouterInterfaceData = {
66155
66244
  body?: OpenStackRouterInterfaceRequest;
66156
66245
  path: {
@@ -66177,6 +66266,20 @@ export type OpenstackRoutersSetErredResponses = {
66177
66266
  200: RouterSetErredResponse;
66178
66267
  };
66179
66268
  export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
66269
+ export type OpenstackRoutersSetExternalGatewayData = {
66270
+ body: SetExternalGatewayRequest;
66271
+ path: {
66272
+ uuid: string;
66273
+ };
66274
+ query?: never;
66275
+ url: '/api/openstack-routers/{uuid}/set_external_gateway/';
66276
+ };
66277
+ export type OpenstackRoutersSetExternalGatewayResponses = {
66278
+ /**
66279
+ * No response body
66280
+ */
66281
+ 202: unknown;
66282
+ };
66180
66283
  export type OpenstackRoutersSetOkData = {
66181
66284
  body?: never;
66182
66285
  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.17",
4
4
  "description": "JavaScript client for Waldur MasterMind generated from OpenAPI schema",
5
5
  "author": "Waldur Platform",
6
6
  "license": "MIT",