waldur-js-client 8.0.8-dev.3 → 8.0.8-dev.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +155 -1
- package/dist/sdk.gen.js +1370 -0
- package/dist/types.gen.d.ts +2304 -634
- package/package.json +4 -2
package/dist/types.gen.d.ts
CHANGED
|
@@ -1,4 +1,22 @@
|
|
|
1
1
|
export type AiassistantenabledrolesEnum = 'disabled' | 'staff' | 'staff_and_support' | 'all';
|
|
2
|
+
export type AccessProject = {
|
|
3
|
+
name: string;
|
|
4
|
+
resources: Array<AccessResource>;
|
|
5
|
+
};
|
|
6
|
+
export type AccessResource = {
|
|
7
|
+
name: string;
|
|
8
|
+
username: string;
|
|
9
|
+
};
|
|
10
|
+
export type AccessResponse = {
|
|
11
|
+
email: string;
|
|
12
|
+
status: string;
|
|
13
|
+
short_name: string;
|
|
14
|
+
projects: {
|
|
15
|
+
[key: string]: AccessProject;
|
|
16
|
+
};
|
|
17
|
+
invited_by: string;
|
|
18
|
+
reason: string;
|
|
19
|
+
};
|
|
2
20
|
export type AccessSubnet = {
|
|
3
21
|
readonly uuid: string;
|
|
4
22
|
inet: string;
|
|
@@ -102,6 +120,53 @@ export type AdministrativeAccess = {
|
|
|
102
120
|
support_count?: number;
|
|
103
121
|
users?: Array<AdminUser>;
|
|
104
122
|
};
|
|
123
|
+
export type AffiliatedOrganization = {
|
|
124
|
+
readonly uuid?: string;
|
|
125
|
+
readonly url?: string;
|
|
126
|
+
name?: string;
|
|
127
|
+
/**
|
|
128
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
129
|
+
*/
|
|
130
|
+
code?: string;
|
|
131
|
+
abbreviation?: string;
|
|
132
|
+
description?: string;
|
|
133
|
+
email?: string;
|
|
134
|
+
homepage?: string;
|
|
135
|
+
country?: string;
|
|
136
|
+
address?: string;
|
|
137
|
+
readonly created?: string;
|
|
138
|
+
readonly modified?: string;
|
|
139
|
+
/**
|
|
140
|
+
* Number of active projects affiliated with this organization
|
|
141
|
+
*/
|
|
142
|
+
readonly projects_count?: number;
|
|
143
|
+
};
|
|
144
|
+
export type AffiliatedOrganizationReportRow = {
|
|
145
|
+
org_uuid: string | null;
|
|
146
|
+
org_name: string;
|
|
147
|
+
org_abbreviation: string;
|
|
148
|
+
projects_count: number;
|
|
149
|
+
resources_count: number;
|
|
150
|
+
estimated_cost: string;
|
|
151
|
+
};
|
|
152
|
+
export type AffiliatedOrganizationRequest = {
|
|
153
|
+
name: string;
|
|
154
|
+
/**
|
|
155
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
156
|
+
*/
|
|
157
|
+
code: string;
|
|
158
|
+
abbreviation?: string;
|
|
159
|
+
description?: string;
|
|
160
|
+
email?: string;
|
|
161
|
+
homepage?: string;
|
|
162
|
+
country?: string;
|
|
163
|
+
address?: string;
|
|
164
|
+
};
|
|
165
|
+
export type AffiliatedOrganizationStats = {
|
|
166
|
+
active_projects_count: number;
|
|
167
|
+
resources_count: number;
|
|
168
|
+
estimated_monthly_cost: string;
|
|
169
|
+
};
|
|
105
170
|
export type AffiliationTypeEnum = 'employment' | 'education' | 'visiting' | 'honorary' | 'consulting';
|
|
106
171
|
export type AffinityMatrixEntry = {
|
|
107
172
|
uuid: string;
|
|
@@ -465,7 +530,7 @@ export type Allocation = {
|
|
|
465
530
|
readonly created?: string;
|
|
466
531
|
readonly modified?: string;
|
|
467
532
|
readonly backend_id?: string;
|
|
468
|
-
|
|
533
|
+
access_url?: Array<string> | string | null;
|
|
469
534
|
node_limit?: number;
|
|
470
535
|
groupname?: string | null;
|
|
471
536
|
readonly node_usage?: string;
|
|
@@ -1638,6 +1703,16 @@ export type AvailableChecklistsResponse = {
|
|
|
1638
1703
|
[key: string]: unknown;
|
|
1639
1704
|
} | null;
|
|
1640
1705
|
};
|
|
1706
|
+
export type AvailableExternalNetwork = {
|
|
1707
|
+
backend_id: string;
|
|
1708
|
+
name: string;
|
|
1709
|
+
description: string;
|
|
1710
|
+
source: AvailableExternalNetworkSourceEnum;
|
|
1711
|
+
subnets: Array<{
|
|
1712
|
+
[key: string]: unknown;
|
|
1713
|
+
}>;
|
|
1714
|
+
};
|
|
1715
|
+
export type AvailableExternalNetworkSourceEnum = 'global' | 'rbac';
|
|
1641
1716
|
export type AvailableScope = {
|
|
1642
1717
|
permission: string;
|
|
1643
1718
|
description: string;
|
|
@@ -1673,7 +1748,7 @@ export type AwsInstance = {
|
|
|
1673
1748
|
readonly created?: string;
|
|
1674
1749
|
readonly modified?: string;
|
|
1675
1750
|
readonly backend_id?: string;
|
|
1676
|
-
|
|
1751
|
+
access_url?: Array<string> | string | null;
|
|
1677
1752
|
readonly start_time?: string | null;
|
|
1678
1753
|
/**
|
|
1679
1754
|
* Number of cores in a VM
|
|
@@ -1789,7 +1864,7 @@ export type AwsVolume = {
|
|
|
1789
1864
|
readonly created?: string;
|
|
1790
1865
|
readonly modified?: string;
|
|
1791
1866
|
readonly backend_id?: string;
|
|
1792
|
-
|
|
1867
|
+
access_url?: Array<string> | string | null;
|
|
1793
1868
|
/**
|
|
1794
1869
|
* Size of volume in gigabytes
|
|
1795
1870
|
*/
|
|
@@ -1878,7 +1953,7 @@ export type AzurePublicIp = {
|
|
|
1878
1953
|
readonly created?: string;
|
|
1879
1954
|
readonly modified?: string;
|
|
1880
1955
|
readonly backend_id?: string;
|
|
1881
|
-
|
|
1956
|
+
access_url?: Array<string> | string | null;
|
|
1882
1957
|
location?: string;
|
|
1883
1958
|
resource_group?: string;
|
|
1884
1959
|
readonly marketplace_offering_uuid?: string | null;
|
|
@@ -1928,7 +2003,7 @@ export type AzureResourceGroup = {
|
|
|
1928
2003
|
readonly created?: string;
|
|
1929
2004
|
readonly modified?: string;
|
|
1930
2005
|
readonly backend_id?: string;
|
|
1931
|
-
|
|
2006
|
+
access_url?: Array<string> | string | null;
|
|
1932
2007
|
location?: string;
|
|
1933
2008
|
readonly marketplace_offering_uuid?: string | null;
|
|
1934
2009
|
readonly marketplace_offering_name?: string | null;
|
|
@@ -1979,7 +2054,7 @@ export type AzureSqlDatabase = {
|
|
|
1979
2054
|
readonly created?: string;
|
|
1980
2055
|
readonly modified?: string;
|
|
1981
2056
|
readonly backend_id?: string;
|
|
1982
|
-
|
|
2057
|
+
access_url?: Array<string> | string | null;
|
|
1983
2058
|
server?: string;
|
|
1984
2059
|
charset?: string | null;
|
|
1985
2060
|
collation?: string | null;
|
|
@@ -2044,7 +2119,7 @@ export type AzureSqlServer = {
|
|
|
2044
2119
|
readonly created?: string;
|
|
2045
2120
|
readonly modified?: string;
|
|
2046
2121
|
readonly backend_id?: string;
|
|
2047
|
-
|
|
2122
|
+
access_url?: Array<string> | string | null;
|
|
2048
2123
|
readonly resource_group?: string;
|
|
2049
2124
|
readonly username?: string;
|
|
2050
2125
|
readonly password?: string;
|
|
@@ -2099,7 +2174,7 @@ export type AzureVirtualMachine = {
|
|
|
2099
2174
|
readonly created?: string;
|
|
2100
2175
|
readonly modified?: string;
|
|
2101
2176
|
readonly backend_id?: string;
|
|
2102
|
-
|
|
2177
|
+
access_url?: Array<string> | string | null;
|
|
2103
2178
|
readonly start_time?: string | null;
|
|
2104
2179
|
/**
|
|
2105
2180
|
* Number of cores in a VM
|
|
@@ -2295,11 +2370,11 @@ export type BaseProviderPlan = {
|
|
|
2295
2370
|
[key: string]: string;
|
|
2296
2371
|
};
|
|
2297
2372
|
readonly quotas?: {
|
|
2298
|
-
[key: string]:
|
|
2373
|
+
[key: string]: number;
|
|
2299
2374
|
};
|
|
2300
2375
|
readonly resources_count?: number;
|
|
2301
2376
|
readonly plan_type?: string;
|
|
2302
|
-
readonly minimal_price?:
|
|
2377
|
+
readonly minimal_price?: string;
|
|
2303
2378
|
};
|
|
2304
2379
|
export type BaseProviderPlanRequest = {
|
|
2305
2380
|
name: string;
|
|
@@ -2346,11 +2421,11 @@ export type BasePublicPlan = {
|
|
|
2346
2421
|
[key: string]: string;
|
|
2347
2422
|
};
|
|
2348
2423
|
readonly quotas?: {
|
|
2349
|
-
[key: string]:
|
|
2424
|
+
[key: string]: number;
|
|
2350
2425
|
};
|
|
2351
2426
|
readonly resources_count?: number;
|
|
2352
2427
|
readonly plan_type?: string;
|
|
2353
|
-
readonly minimal_price?:
|
|
2428
|
+
readonly minimal_price?: string;
|
|
2354
2429
|
};
|
|
2355
2430
|
export type BasePublicPlanRequest = {
|
|
2356
2431
|
url: string;
|
|
@@ -2373,6 +2448,14 @@ export type BasicCustomer = {
|
|
|
2373
2448
|
readonly uuid: string;
|
|
2374
2449
|
name: string;
|
|
2375
2450
|
};
|
|
2451
|
+
export type BasicCustomerRequest = {
|
|
2452
|
+
name: string;
|
|
2453
|
+
};
|
|
2454
|
+
export type BasicProject = {
|
|
2455
|
+
readonly url: string;
|
|
2456
|
+
readonly uuid: string;
|
|
2457
|
+
name: string;
|
|
2458
|
+
};
|
|
2376
2459
|
export type BasicUser = {
|
|
2377
2460
|
readonly url?: string;
|
|
2378
2461
|
readonly uuid?: string;
|
|
@@ -2459,6 +2542,10 @@ export type BookingResource = {
|
|
|
2459
2542
|
* Effective project end date including grace period. After this date, resources will be terminated.
|
|
2460
2543
|
*/
|
|
2461
2544
|
readonly project_effective_end_date?: string | null;
|
|
2545
|
+
/**
|
|
2546
|
+
* True if the project is past its end date but still within the grace period.
|
|
2547
|
+
*/
|
|
2548
|
+
readonly project_is_in_grace_period?: boolean;
|
|
2462
2549
|
readonly project_end_date_requested_by?: string | null;
|
|
2463
2550
|
readonly customer_uuid?: string;
|
|
2464
2551
|
readonly customer_name?: string;
|
|
@@ -2686,6 +2773,23 @@ export type CachePerformance = {
|
|
|
2686
2773
|
*/
|
|
2687
2774
|
readonly effective_cache_size: string;
|
|
2688
2775
|
};
|
|
2776
|
+
export type CachedProjectStorageReport = {
|
|
2777
|
+
readonly id: number;
|
|
2778
|
+
year: number;
|
|
2779
|
+
month: number;
|
|
2780
|
+
project_identifier: string;
|
|
2781
|
+
resource: string;
|
|
2782
|
+
report: ProjectStorageReport;
|
|
2783
|
+
};
|
|
2784
|
+
export type CachedProjectUsageReport = {
|
|
2785
|
+
readonly id: number;
|
|
2786
|
+
year: number;
|
|
2787
|
+
month: number;
|
|
2788
|
+
project_identifier: string;
|
|
2789
|
+
resource: string;
|
|
2790
|
+
is_complete?: boolean;
|
|
2791
|
+
report: ProjectUsageReport;
|
|
2792
|
+
};
|
|
2689
2793
|
export type CallApplicantAttributeConfig = {
|
|
2690
2794
|
readonly uuid: string;
|
|
2691
2795
|
readonly call_uuid: string;
|
|
@@ -3284,7 +3388,6 @@ export type CategoryComponentsRequest = {
|
|
|
3284
3388
|
measured_unit?: string;
|
|
3285
3389
|
category: CategorySerializerForForNestedFieldsRequest;
|
|
3286
3390
|
};
|
|
3287
|
-
export type CategoryEnum = 'view' | 'approve' | 'reject' | 'extend' | 'terminate' | 'backup' | 'migrate' | 'contact' | 'escalate' | 'configure' | 'repair' | 'monitor';
|
|
3288
3391
|
export type CategoryGroup = {
|
|
3289
3392
|
readonly url?: string;
|
|
3290
3393
|
readonly uuid?: string;
|
|
@@ -3550,7 +3653,7 @@ export type ChatRequestRequest = {
|
|
|
3550
3653
|
};
|
|
3551
3654
|
export type ChatResponse = {
|
|
3552
3655
|
/**
|
|
3553
|
-
* Component key (e.g. 'markdown', 'code', '
|
|
3656
|
+
* Component key (e.g. 'markdown', 'code', 'vm_order', 'resource_list').
|
|
3554
3657
|
*/
|
|
3555
3658
|
k?: string;
|
|
3556
3659
|
/**
|
|
@@ -3565,18 +3668,6 @@ export type ChatResponse = {
|
|
|
3565
3668
|
* Error message.
|
|
3566
3669
|
*/
|
|
3567
3670
|
e?: string;
|
|
3568
|
-
/**
|
|
3569
|
-
* Table headers.
|
|
3570
|
-
*/
|
|
3571
|
-
h?: Array<unknown>;
|
|
3572
|
-
/**
|
|
3573
|
-
* Table rows.
|
|
3574
|
-
*/
|
|
3575
|
-
r?: Array<unknown>;
|
|
3576
|
-
/**
|
|
3577
|
-
* Total row count.
|
|
3578
|
-
*/
|
|
3579
|
-
n?: number;
|
|
3580
3671
|
/**
|
|
3581
3672
|
* System metadata (thread_uuid, message UUIDs).
|
|
3582
3673
|
*/
|
|
@@ -3616,7 +3707,7 @@ export type ChatResponse = {
|
|
|
3616
3707
|
*/
|
|
3617
3708
|
organization?: string;
|
|
3618
3709
|
/**
|
|
3619
|
-
* Project UUID.
|
|
3710
|
+
* Project UUID. Present when k='vm_order' or k='resource_list'.
|
|
3620
3711
|
*/
|
|
3621
3712
|
project_uuid?: string;
|
|
3622
3713
|
/**
|
|
@@ -3647,6 +3738,18 @@ export type ChatResponse = {
|
|
|
3647
3738
|
* Available offering options [{uuid, name}]. Present when status='offering_form'.
|
|
3648
3739
|
*/
|
|
3649
3740
|
offerings?: Array<unknown>;
|
|
3741
|
+
/**
|
|
3742
|
+
* Customer/organization UUID filter hint. Present when k='resource_list'.
|
|
3743
|
+
*/
|
|
3744
|
+
customer_uuid?: string;
|
|
3745
|
+
/**
|
|
3746
|
+
* Category UUID filter hint. Present when k='resource_list'.
|
|
3747
|
+
*/
|
|
3748
|
+
category_uuid?: string;
|
|
3749
|
+
/**
|
|
3750
|
+
* State display name filters (e.g. ['OK', 'Erred']). Present when k='resource_list'.
|
|
3751
|
+
*/
|
|
3752
|
+
state?: Array<unknown>;
|
|
3650
3753
|
};
|
|
3651
3754
|
export type ChatSession = {
|
|
3652
3755
|
readonly uuid?: string;
|
|
@@ -4293,6 +4396,7 @@ export type ConstanceSettings = {
|
|
|
4293
4396
|
CURRENCY_NAME?: string;
|
|
4294
4397
|
THUMBNAIL_SIZE?: string;
|
|
4295
4398
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
4399
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
4296
4400
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
4297
4401
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
4298
4402
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -4493,6 +4597,7 @@ export type ConstanceSettings = {
|
|
|
4493
4597
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
4494
4598
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
4495
4599
|
AI_ASSISTANT_NAME?: string;
|
|
4600
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
4496
4601
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
4497
4602
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
4498
4603
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -4524,6 +4629,7 @@ export type ConstanceSettings = {
|
|
|
4524
4629
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
4525
4630
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
4526
4631
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
4632
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
4527
4633
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
4528
4634
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
4529
4635
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -4548,6 +4654,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4548
4654
|
CURRENCY_NAME?: string;
|
|
4549
4655
|
THUMBNAIL_SIZE?: string;
|
|
4550
4656
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
4657
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
4551
4658
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
4552
4659
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
4553
4660
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -4748,6 +4855,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4748
4855
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
4749
4856
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
4750
4857
|
AI_ASSISTANT_NAME?: string;
|
|
4858
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
4751
4859
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
4752
4860
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
4753
4861
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -4779,6 +4887,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4779
4887
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
4780
4888
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
4781
4889
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
4890
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
4782
4891
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
4783
4892
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
4784
4893
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -4816,7 +4925,7 @@ export type CoreAuthToken = {
|
|
|
4816
4925
|
export type CoreStates = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
|
|
4817
4926
|
export type CorrectiveAction = {
|
|
4818
4927
|
label: string;
|
|
4819
|
-
category:
|
|
4928
|
+
category: CorrectiveActionCategoryEnum;
|
|
4820
4929
|
severity: CorrectiveActionSeverityEnum;
|
|
4821
4930
|
method?: string;
|
|
4822
4931
|
api_endpoint?: boolean;
|
|
@@ -4830,6 +4939,7 @@ export type CorrectiveAction = {
|
|
|
4830
4939
|
[key: string]: unknown;
|
|
4831
4940
|
};
|
|
4832
4941
|
};
|
|
4942
|
+
export type CorrectiveActionCategoryEnum = 'view' | 'approve' | 'reject' | 'extend' | 'terminate' | 'backup' | 'migrate' | 'contact' | 'escalate' | 'configure' | 'repair' | 'monitor';
|
|
4833
4943
|
export type CorrectiveActionSeverityEnum = 'safe' | 'low' | 'medium' | 'high' | 'critical';
|
|
4834
4944
|
export type CostsForPeriod = {
|
|
4835
4945
|
readonly total_price: string;
|
|
@@ -4957,8 +5067,8 @@ export type CourseAccount = {
|
|
|
4957
5067
|
readonly project_uuid: string;
|
|
4958
5068
|
readonly project_name: string;
|
|
4959
5069
|
readonly project_slug: string;
|
|
4960
|
-
readonly project_start_date: string;
|
|
4961
|
-
readonly project_end_date: string;
|
|
5070
|
+
readonly project_start_date: string | null;
|
|
5071
|
+
readonly project_end_date: string | null;
|
|
4962
5072
|
readonly user_uuid: string;
|
|
4963
5073
|
readonly username: string;
|
|
4964
5074
|
readonly customer_uuid: string;
|
|
@@ -5323,6 +5433,10 @@ export type Customer = {
|
|
|
5323
5433
|
house_nr?: string;
|
|
5324
5434
|
apartment_nr?: string;
|
|
5325
5435
|
household?: string;
|
|
5436
|
+
/**
|
|
5437
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
5438
|
+
*/
|
|
5439
|
+
project_slug_template?: string | null;
|
|
5326
5440
|
readonly payment_profiles?: Array<PaymentProfile>;
|
|
5327
5441
|
readonly customer_credit?: number | null;
|
|
5328
5442
|
readonly customer_unallocated_credit?: number | null;
|
|
@@ -5490,7 +5604,7 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
5490
5604
|
limit_cost: number;
|
|
5491
5605
|
period?: PolicyPeriodEnum;
|
|
5492
5606
|
readonly period_name: string;
|
|
5493
|
-
readonly customer_credit:
|
|
5607
|
+
readonly customer_credit: string | null;
|
|
5494
5608
|
billing_price_estimate: NestedPriceEstimate;
|
|
5495
5609
|
};
|
|
5496
5610
|
export type CustomerEstimatedCostPolicyRequest = {
|
|
@@ -5693,6 +5807,10 @@ export type CustomerRequest = {
|
|
|
5693
5807
|
house_nr?: string;
|
|
5694
5808
|
apartment_nr?: string;
|
|
5695
5809
|
household?: string;
|
|
5810
|
+
/**
|
|
5811
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
5812
|
+
*/
|
|
5813
|
+
project_slug_template?: string | null;
|
|
5696
5814
|
};
|
|
5697
5815
|
export type CustomerServiceAccount = {
|
|
5698
5816
|
readonly url: string;
|
|
@@ -5806,6 +5924,58 @@ export type DailyOrderStats = {
|
|
|
5806
5924
|
[key: string]: number;
|
|
5807
5925
|
};
|
|
5808
5926
|
};
|
|
5927
|
+
export type DailyProjectUsageReport = {
|
|
5928
|
+
/**
|
|
5929
|
+
* local_username → Usage
|
|
5930
|
+
*/
|
|
5931
|
+
reports: {
|
|
5932
|
+
[key: string]: Usage;
|
|
5933
|
+
};
|
|
5934
|
+
/**
|
|
5935
|
+
* component_name → local_username → Usage. e.g. { "cpu": { "chris.aiproject": { "seconds": 41055 } } }
|
|
5936
|
+
*/
|
|
5937
|
+
components?: {
|
|
5938
|
+
[key: string]: {
|
|
5939
|
+
[key: string]: Usage;
|
|
5940
|
+
};
|
|
5941
|
+
};
|
|
5942
|
+
/**
|
|
5943
|
+
* local_username → job count
|
|
5944
|
+
*/
|
|
5945
|
+
user_job_counts?: {
|
|
5946
|
+
[key: string]: number;
|
|
5947
|
+
};
|
|
5948
|
+
/**
|
|
5949
|
+
* local_username → wait seconds
|
|
5950
|
+
*/
|
|
5951
|
+
user_wait_seconds?: {
|
|
5952
|
+
[key: string]: number;
|
|
5953
|
+
};
|
|
5954
|
+
num_jobs?: number;
|
|
5955
|
+
total_wait_seconds?: number;
|
|
5956
|
+
is_complete: boolean;
|
|
5957
|
+
};
|
|
5958
|
+
export type DailyStorageReport = {
|
|
5959
|
+
project: string;
|
|
5960
|
+
/**
|
|
5961
|
+
* RFC3339 timestamp
|
|
5962
|
+
*/
|
|
5963
|
+
generated_at: string;
|
|
5964
|
+
/**
|
|
5965
|
+
* Volume → Quota
|
|
5966
|
+
*/
|
|
5967
|
+
project_quotas: {
|
|
5968
|
+
[key: string]: OpenPortalQuota;
|
|
5969
|
+
};
|
|
5970
|
+
/**
|
|
5971
|
+
* UserIdentifier → (Volume → Quota)
|
|
5972
|
+
*/
|
|
5973
|
+
user_quotas: {
|
|
5974
|
+
[key: string]: {
|
|
5975
|
+
[key: string]: OpenPortalQuota;
|
|
5976
|
+
};
|
|
5977
|
+
};
|
|
5978
|
+
};
|
|
5809
5979
|
export type DataAccessSummary = {
|
|
5810
5980
|
total_administrative_access: number | null;
|
|
5811
5981
|
total_organizational_access: number;
|
|
@@ -6000,7 +6170,7 @@ export type DigitalOceanDroplet = {
|
|
|
6000
6170
|
readonly created?: string;
|
|
6001
6171
|
readonly modified?: string;
|
|
6002
6172
|
readonly backend_id?: string;
|
|
6003
|
-
|
|
6173
|
+
access_url?: Array<string> | string | null;
|
|
6004
6174
|
readonly start_time?: string | null;
|
|
6005
6175
|
/**
|
|
6006
6176
|
* Number of cores in a VM
|
|
@@ -6512,7 +6682,7 @@ export type EventMetadataResponse = {
|
|
|
6512
6682
|
* Map of event group keys to lists of event type enums from EventType
|
|
6513
6683
|
*/
|
|
6514
6684
|
event_groups: {
|
|
6515
|
-
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
|
|
6685
|
+
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
|
|
6516
6686
|
};
|
|
6517
6687
|
};
|
|
6518
6688
|
export type EventStats = {
|
|
@@ -6591,7 +6761,7 @@ export type EventSubscriptionRequest = {
|
|
|
6591
6761
|
*/
|
|
6592
6762
|
observable_objects?: unknown;
|
|
6593
6763
|
};
|
|
6594
|
-
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
|
|
6764
|
+
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
|
|
6595
6765
|
export type ExecuteActionErrorResponse = {
|
|
6596
6766
|
error: string;
|
|
6597
6767
|
};
|
|
@@ -6897,6 +7067,7 @@ export type Feedback = {
|
|
|
6897
7067
|
readonly issue_key: string;
|
|
6898
7068
|
readonly issue_summary: string;
|
|
6899
7069
|
};
|
|
7070
|
+
export type FeedbackCategoryEnum = 'inaccurate' | 'incomplete' | 'misunderstood' | 'slow_or_failed' | 'other';
|
|
6900
7071
|
export type FetchBillingExportRequestRequest = {
|
|
6901
7072
|
/**
|
|
6902
7073
|
* YYYY-MM format
|
|
@@ -7028,7 +7199,7 @@ export type FirecrestJob = {
|
|
|
7028
7199
|
readonly created?: string;
|
|
7029
7200
|
readonly modified?: string;
|
|
7030
7201
|
readonly backend_id?: string;
|
|
7031
|
-
|
|
7202
|
+
access_url?: Array<string> | string | null;
|
|
7032
7203
|
runtime_state?: string;
|
|
7033
7204
|
/**
|
|
7034
7205
|
* Batch script file
|
|
@@ -7450,6 +7621,64 @@ export type GroupInvitationUpdateRequest = {
|
|
|
7450
7621
|
export type GrowthPeriodEnum = 'weekly' | 'monthly';
|
|
7451
7622
|
export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
|
|
7452
7623
|
export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
|
|
7624
|
+
export type Hypervisor = {
|
|
7625
|
+
readonly url: string;
|
|
7626
|
+
readonly uuid: string;
|
|
7627
|
+
name: string;
|
|
7628
|
+
settings: string;
|
|
7629
|
+
backend_id: string;
|
|
7630
|
+
/**
|
|
7631
|
+
* Hypervisor type, e.g. KVM, QEMU, VMware
|
|
7632
|
+
*/
|
|
7633
|
+
hypervisor_type?: string;
|
|
7634
|
+
/**
|
|
7635
|
+
* Total vCPUs
|
|
7636
|
+
*/
|
|
7637
|
+
vcpus?: number;
|
|
7638
|
+
/**
|
|
7639
|
+
* Used vCPUs
|
|
7640
|
+
*/
|
|
7641
|
+
vcpus_used?: number;
|
|
7642
|
+
/**
|
|
7643
|
+
* Total RAM in MiB
|
|
7644
|
+
*/
|
|
7645
|
+
memory_mb?: number;
|
|
7646
|
+
/**
|
|
7647
|
+
* Used RAM in MiB
|
|
7648
|
+
*/
|
|
7649
|
+
memory_mb_used?: number;
|
|
7650
|
+
/**
|
|
7651
|
+
* Total disk in GiB
|
|
7652
|
+
*/
|
|
7653
|
+
local_gb?: number;
|
|
7654
|
+
/**
|
|
7655
|
+
* Used disk in GiB
|
|
7656
|
+
*/
|
|
7657
|
+
local_gb_used?: number;
|
|
7658
|
+
/**
|
|
7659
|
+
* Number of running VMs
|
|
7660
|
+
*/
|
|
7661
|
+
running_vms?: number;
|
|
7662
|
+
/**
|
|
7663
|
+
* Hypervisor state, e.g. up or down
|
|
7664
|
+
*/
|
|
7665
|
+
state?: string;
|
|
7666
|
+
/**
|
|
7667
|
+
* Hypervisor status, e.g. enabled or disabled
|
|
7668
|
+
*/
|
|
7669
|
+
status?: string;
|
|
7670
|
+
};
|
|
7671
|
+
export type HypervisorSummary = {
|
|
7672
|
+
total_vcpus: number;
|
|
7673
|
+
used_vcpus: number;
|
|
7674
|
+
total_memory_mb: number;
|
|
7675
|
+
used_memory_mb: number;
|
|
7676
|
+
total_local_gb: number;
|
|
7677
|
+
used_local_gb: number;
|
|
7678
|
+
total_running_vms: number;
|
|
7679
|
+
cpu_allocation_ratio: number;
|
|
7680
|
+
effective_vcpus: number;
|
|
7681
|
+
};
|
|
7453
7682
|
export type IpMapping = {
|
|
7454
7683
|
/**
|
|
7455
7684
|
* Floating IP
|
|
@@ -7493,6 +7722,7 @@ export type IdentityBridgeRemoveResult = {
|
|
|
7493
7722
|
uuid: string;
|
|
7494
7723
|
deactivated: boolean;
|
|
7495
7724
|
};
|
|
7725
|
+
export type IdentityBridgeRequestGenderEnum = 'male' | 'female' | 'unknown';
|
|
7496
7726
|
export type IdentityBridgeRequestRequest = {
|
|
7497
7727
|
/**
|
|
7498
7728
|
* CUID / username of the user to create or update.
|
|
@@ -7510,10 +7740,11 @@ export type IdentityBridgeRequestRequest = {
|
|
|
7510
7740
|
civil_number?: string;
|
|
7511
7741
|
phone_number?: string;
|
|
7512
7742
|
identity_source?: string;
|
|
7513
|
-
gender?:
|
|
7743
|
+
gender?: IdentityBridgeRequestGenderEnum | NullEnum | null;
|
|
7514
7744
|
personal_title?: string;
|
|
7515
7745
|
birth_date?: string | null;
|
|
7516
7746
|
place_of_birth?: string;
|
|
7747
|
+
address?: string;
|
|
7517
7748
|
country_of_residence?: string;
|
|
7518
7749
|
nationality?: string;
|
|
7519
7750
|
nationalities?: Array<string>;
|
|
@@ -8652,6 +8883,15 @@ export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
|
|
|
8652
8883
|
export type LoadBalancerSetSecurityGroupsRequest = {
|
|
8653
8884
|
security_groups: Array<string>;
|
|
8654
8885
|
};
|
|
8886
|
+
export type LoadScienceDomainPresetRequest = {
|
|
8887
|
+
preset: PresetEnum;
|
|
8888
|
+
};
|
|
8889
|
+
export type LoadScienceDomainPresetResponse = {
|
|
8890
|
+
created_domains: number;
|
|
8891
|
+
created_subdomains: number;
|
|
8892
|
+
skipped_domains: number;
|
|
8893
|
+
skipped_subdomains: number;
|
|
8894
|
+
};
|
|
8655
8895
|
export type LockStats = {
|
|
8656
8896
|
/**
|
|
8657
8897
|
* Total number of locks currently held
|
|
@@ -8815,7 +9055,7 @@ export type MaintenanceAnnouncementTemplate = {
|
|
|
8815
9055
|
* Service provider announcing the maintenance
|
|
8816
9056
|
*/
|
|
8817
9057
|
service_provider: string;
|
|
8818
|
-
readonly affected_offerings: Array<
|
|
9058
|
+
readonly affected_offerings: Array<MaintenanceAnnouncementOfferingTemplate>;
|
|
8819
9059
|
};
|
|
8820
9060
|
export type MaintenanceAnnouncementTemplateRequest = {
|
|
8821
9061
|
name: string;
|
|
@@ -8962,7 +9202,7 @@ export type ManagedProject = {
|
|
|
8962
9202
|
*/
|
|
8963
9203
|
readonly details: unknown;
|
|
8964
9204
|
project: string;
|
|
8965
|
-
project_data:
|
|
9205
|
+
project_data: BasicProject;
|
|
8966
9206
|
project_template: string;
|
|
8967
9207
|
project_template_data: ProjectTemplate;
|
|
8968
9208
|
/**
|
|
@@ -9127,6 +9367,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9127
9367
|
*/
|
|
9128
9368
|
personal_title?: string;
|
|
9129
9369
|
place_of_birth?: string;
|
|
9370
|
+
address?: string;
|
|
9130
9371
|
country_of_residence?: string;
|
|
9131
9372
|
/**
|
|
9132
9373
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -9312,6 +9553,10 @@ export type MergedPluginOptions = {
|
|
|
9312
9553
|
* If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
|
|
9313
9554
|
*/
|
|
9314
9555
|
lbaas_enabled?: boolean;
|
|
9556
|
+
/**
|
|
9557
|
+
* Interval in minutes between usage polling for this offering (default: 60)
|
|
9558
|
+
*/
|
|
9559
|
+
usage_poll_interval_minutes?: number;
|
|
9315
9560
|
/**
|
|
9316
9561
|
* HEAppE cluster id
|
|
9317
9562
|
*/
|
|
@@ -9614,6 +9859,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
9614
9859
|
* If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
|
|
9615
9860
|
*/
|
|
9616
9861
|
lbaas_enabled?: boolean;
|
|
9862
|
+
/**
|
|
9863
|
+
* Interval in minutes between usage polling for this offering (default: 60)
|
|
9864
|
+
*/
|
|
9865
|
+
usage_poll_interval_minutes?: number;
|
|
9617
9866
|
/**
|
|
9618
9867
|
* HEAppE cluster id
|
|
9619
9868
|
*/
|
|
@@ -10115,9 +10364,13 @@ export type Message = {
|
|
|
10115
10364
|
readonly uuid: string;
|
|
10116
10365
|
readonly thread: string;
|
|
10117
10366
|
role: MessageRoleEnum;
|
|
10118
|
-
|
|
10119
|
-
|
|
10120
|
-
|
|
10367
|
+
readonly blocks: Array<{
|
|
10368
|
+
id: string;
|
|
10369
|
+
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool';
|
|
10370
|
+
status: string;
|
|
10371
|
+
[key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool');
|
|
10372
|
+
}>;
|
|
10373
|
+
readonly warning: string;
|
|
10121
10374
|
readonly sequence_index: number;
|
|
10122
10375
|
readonly replaces: string | null;
|
|
10123
10376
|
readonly created: string;
|
|
@@ -10128,6 +10381,36 @@ export type Message = {
|
|
|
10128
10381
|
readonly injection_categories: unknown;
|
|
10129
10382
|
readonly pii_categories: unknown;
|
|
10130
10383
|
action_taken: ActionTakenEnum;
|
|
10384
|
+
/**
|
|
10385
|
+
* User feedback: True=thumbs up, False=thumbs down, None=no feedback.
|
|
10386
|
+
*/
|
|
10387
|
+
readonly feedback_score: boolean | null;
|
|
10388
|
+
/**
|
|
10389
|
+
* Optional user comment accompanying feedback.
|
|
10390
|
+
*/
|
|
10391
|
+
readonly feedback_comment: string | null;
|
|
10392
|
+
/**
|
|
10393
|
+
* Category tag when feedback_score is False (thumbs down); null otherwise.
|
|
10394
|
+
*/
|
|
10395
|
+
feedback_category: FeedbackCategoryEnum | NullEnum | null;
|
|
10396
|
+
/**
|
|
10397
|
+
* Timestamp of the most recent feedback submission; overwritten on resubmit.
|
|
10398
|
+
*/
|
|
10399
|
+
readonly feedback_submitted_at: string | null;
|
|
10400
|
+
};
|
|
10401
|
+
export type MessageFeedbackRequest = {
|
|
10402
|
+
/**
|
|
10403
|
+
* Feedback score: true=thumbs up, false=thumbs down.
|
|
10404
|
+
*/
|
|
10405
|
+
score: boolean;
|
|
10406
|
+
/**
|
|
10407
|
+
* Optional comment.
|
|
10408
|
+
*/
|
|
10409
|
+
comment?: string | null;
|
|
10410
|
+
/**
|
|
10411
|
+
* Optional category tag (only accepted when score=false).
|
|
10412
|
+
*/
|
|
10413
|
+
category?: FeedbackCategoryEnum | NullEnum | null;
|
|
10131
10414
|
};
|
|
10132
10415
|
export type MessageResponse = {
|
|
10133
10416
|
message: string;
|
|
@@ -11197,6 +11480,7 @@ export type OfferingComplianceChecklistUpdateRequest = {
|
|
|
11197
11480
|
};
|
|
11198
11481
|
export type OfferingComponent = {
|
|
11199
11482
|
readonly uuid?: string;
|
|
11483
|
+
readonly offering_uuid?: string;
|
|
11200
11484
|
billing_type?: BillingTypeEnum;
|
|
11201
11485
|
/**
|
|
11202
11486
|
* Unique internal name of the measured unit, for example floating_ip.
|
|
@@ -11215,7 +11499,7 @@ export type OfferingComponent = {
|
|
|
11215
11499
|
* The conversion factor from backend units to measured_unit
|
|
11216
11500
|
*/
|
|
11217
11501
|
unit_factor?: number;
|
|
11218
|
-
limit_period?: LimitPeriodEnum |
|
|
11502
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
11219
11503
|
limit_amount?: number | null;
|
|
11220
11504
|
article_code?: string;
|
|
11221
11505
|
max_value?: number | null;
|
|
@@ -11279,7 +11563,7 @@ export type OfferingComponentRequest = {
|
|
|
11279
11563
|
* The conversion factor from backend units to measured_unit
|
|
11280
11564
|
*/
|
|
11281
11565
|
unit_factor?: number;
|
|
11282
|
-
limit_period?: LimitPeriodEnum |
|
|
11566
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
11283
11567
|
limit_amount?: number | null;
|
|
11284
11568
|
article_code?: string;
|
|
11285
11569
|
max_value?: number | null;
|
|
@@ -11746,6 +12030,12 @@ export type OfferingLocationUpdateRequest = {
|
|
|
11746
12030
|
latitude: number;
|
|
11747
12031
|
longitude: number;
|
|
11748
12032
|
};
|
|
12033
|
+
export type OfferingMappingResponse = {
|
|
12034
|
+
uuid: string;
|
|
12035
|
+
name: string;
|
|
12036
|
+
description: string;
|
|
12037
|
+
slug: string;
|
|
12038
|
+
};
|
|
11749
12039
|
export type OfferingOptions = {
|
|
11750
12040
|
order?: Array<string>;
|
|
11751
12041
|
options?: {
|
|
@@ -12249,6 +12539,7 @@ export type OfferingUser = {
|
|
|
12249
12539
|
*/
|
|
12250
12540
|
readonly user_personal_title?: string;
|
|
12251
12541
|
readonly user_place_of_birth?: string;
|
|
12542
|
+
readonly user_address?: string;
|
|
12252
12543
|
readonly user_country_of_residence?: string;
|
|
12253
12544
|
/**
|
|
12254
12545
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -12307,6 +12598,7 @@ export type OfferingUser = {
|
|
|
12307
12598
|
* Check if the user needs to re-consent due to ToS changes.
|
|
12308
12599
|
*/
|
|
12309
12600
|
readonly requires_reconsent?: boolean;
|
|
12601
|
+
readonly offering_has_active_tos?: boolean;
|
|
12310
12602
|
/**
|
|
12311
12603
|
* Check if the offering user has a connected compliance checklist completion.
|
|
12312
12604
|
*/
|
|
@@ -12336,6 +12628,7 @@ export type OfferingUserAttributeConfig = {
|
|
|
12336
12628
|
expose_gender?: boolean;
|
|
12337
12629
|
expose_personal_title?: boolean;
|
|
12338
12630
|
expose_place_of_birth?: boolean;
|
|
12631
|
+
expose_address?: boolean;
|
|
12339
12632
|
expose_country_of_residence?: boolean;
|
|
12340
12633
|
expose_nationality?: boolean;
|
|
12341
12634
|
expose_nationalities?: boolean;
|
|
@@ -12368,6 +12661,7 @@ export type OfferingUserAttributeConfigRequest = {
|
|
|
12368
12661
|
expose_gender?: boolean;
|
|
12369
12662
|
expose_personal_title?: boolean;
|
|
12370
12663
|
expose_place_of_birth?: boolean;
|
|
12664
|
+
expose_address?: boolean;
|
|
12371
12665
|
expose_country_of_residence?: boolean;
|
|
12372
12666
|
expose_nationality?: boolean;
|
|
12373
12667
|
expose_nationalities?: boolean;
|
|
@@ -12674,6 +12968,16 @@ export type OnboardingVerificationRequest = {
|
|
|
12674
12968
|
expires_at?: string | null;
|
|
12675
12969
|
};
|
|
12676
12970
|
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
12971
|
+
export type OpenPortalQuota = {
|
|
12972
|
+
/**
|
|
12973
|
+
* Size limit. "unlimited" or a size string e.g. "1024.00 GB"
|
|
12974
|
+
*/
|
|
12975
|
+
limit: string;
|
|
12976
|
+
/**
|
|
12977
|
+
* Size usage e.g. "24.00 KB". Absent when the server has no usage data.
|
|
12978
|
+
*/
|
|
12979
|
+
usage?: string;
|
|
12980
|
+
};
|
|
12677
12981
|
export type OpenStackAllowedAddressPair = {
|
|
12678
12982
|
mac_address?: string;
|
|
12679
12983
|
};
|
|
@@ -12747,7 +13051,7 @@ export type OpenStackBackup = {
|
|
|
12747
13051
|
readonly created?: string;
|
|
12748
13052
|
readonly modified?: string;
|
|
12749
13053
|
readonly backend_id?: string;
|
|
12750
|
-
|
|
13054
|
+
access_url?: Array<string> | string | null;
|
|
12751
13055
|
/**
|
|
12752
13056
|
* Guaranteed time of backup retention. If null - keep forever.
|
|
12753
13057
|
*/
|
|
@@ -12953,7 +13257,7 @@ export type OpenStackFloatingIp = {
|
|
|
12953
13257
|
readonly created?: string;
|
|
12954
13258
|
readonly modified?: string;
|
|
12955
13259
|
readonly backend_id?: string;
|
|
12956
|
-
|
|
13260
|
+
access_url?: Array<string> | string | null;
|
|
12957
13261
|
readonly runtime_state?: string;
|
|
12958
13262
|
/**
|
|
12959
13263
|
* The public IPv4 address of the floating IP
|
|
@@ -13035,7 +13339,7 @@ export type OpenStackHealthMonitor = {
|
|
|
13035
13339
|
* Health monitor ID in Octavia
|
|
13036
13340
|
*/
|
|
13037
13341
|
backend_id?: string | null;
|
|
13038
|
-
|
|
13342
|
+
access_url?: Array<string> | string | null;
|
|
13039
13343
|
/**
|
|
13040
13344
|
* Pool this health monitor belongs to
|
|
13041
13345
|
*/
|
|
@@ -13110,7 +13414,7 @@ export type OpenStackInstance = {
|
|
|
13110
13414
|
* Instance ID in the OpenStack backend
|
|
13111
13415
|
*/
|
|
13112
13416
|
readonly backend_id?: string | null;
|
|
13113
|
-
|
|
13417
|
+
access_url?: Array<string> | string | null;
|
|
13114
13418
|
readonly start_time?: string | null;
|
|
13115
13419
|
/**
|
|
13116
13420
|
* Number of cores in a VM
|
|
@@ -13421,7 +13725,7 @@ export type OpenStackListener = {
|
|
|
13421
13725
|
* Listener ID in Octavia
|
|
13422
13726
|
*/
|
|
13423
13727
|
backend_id?: string | null;
|
|
13424
|
-
|
|
13728
|
+
access_url?: Array<string> | string | null;
|
|
13425
13729
|
/**
|
|
13426
13730
|
* Load balancer this listener belongs to
|
|
13427
13731
|
*/
|
|
@@ -13478,7 +13782,7 @@ export type OpenStackLoadBalancer = {
|
|
|
13478
13782
|
* Load balancer ID in Octavia
|
|
13479
13783
|
*/
|
|
13480
13784
|
backend_id?: string | null;
|
|
13481
|
-
|
|
13785
|
+
access_url?: Array<string> | string | null;
|
|
13482
13786
|
/**
|
|
13483
13787
|
* OpenStack tenant this load balancer belongs to
|
|
13484
13788
|
*/
|
|
@@ -13720,7 +14024,7 @@ export type OpenStackNetwork = {
|
|
|
13720
14024
|
readonly created?: string;
|
|
13721
14025
|
readonly modified?: string;
|
|
13722
14026
|
readonly backend_id?: string;
|
|
13723
|
-
|
|
14027
|
+
access_url?: Array<string> | string | null;
|
|
13724
14028
|
/**
|
|
13725
14029
|
* OpenStack tenant this network belongs to
|
|
13726
14030
|
*/
|
|
@@ -13791,7 +14095,7 @@ export type OpenStackPool = {
|
|
|
13791
14095
|
* Pool ID in Octavia
|
|
13792
14096
|
*/
|
|
13793
14097
|
backend_id?: string | null;
|
|
13794
|
-
|
|
14098
|
+
access_url?: Array<string> | string | null;
|
|
13795
14099
|
/**
|
|
13796
14100
|
* Load balancer this pool belongs to
|
|
13797
14101
|
*/
|
|
@@ -13844,7 +14148,7 @@ export type OpenStackPoolMember = {
|
|
|
13844
14148
|
* Member ID in Octavia
|
|
13845
14149
|
*/
|
|
13846
14150
|
backend_id?: string | null;
|
|
13847
|
-
|
|
14151
|
+
access_url?: Array<string> | string | null;
|
|
13848
14152
|
/**
|
|
13849
14153
|
* Pool this member belongs to
|
|
13850
14154
|
*/
|
|
@@ -13903,7 +14207,7 @@ export type OpenStackPort = {
|
|
|
13903
14207
|
* Port ID in OpenStack
|
|
13904
14208
|
*/
|
|
13905
14209
|
readonly backend_id?: string | null;
|
|
13906
|
-
|
|
14210
|
+
access_url?: Array<string> | string | null;
|
|
13907
14211
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
13908
14212
|
/**
|
|
13909
14213
|
* MAC address of the port
|
|
@@ -14027,7 +14331,7 @@ export type OpenStackRouter = {
|
|
|
14027
14331
|
* Router ID in OpenStack
|
|
14028
14332
|
*/
|
|
14029
14333
|
backend_id?: string | null;
|
|
14030
|
-
|
|
14334
|
+
access_url?: Array<string> | string | null;
|
|
14031
14335
|
/**
|
|
14032
14336
|
* OpenStack tenant this router belongs to
|
|
14033
14337
|
*/
|
|
@@ -14037,6 +14341,18 @@ export type OpenStackRouter = {
|
|
|
14037
14341
|
routes?: Array<OpenStackStaticRoute>;
|
|
14038
14342
|
readonly fixed_ips?: Array<OpenStackFixedIp>;
|
|
14039
14343
|
readonly ports?: Array<OpenStackNestedPort>;
|
|
14344
|
+
/**
|
|
14345
|
+
* Backend ID of the external network used as gateway
|
|
14346
|
+
*/
|
|
14347
|
+
external_network_id?: string;
|
|
14348
|
+
readonly external_network_uuid?: string | null;
|
|
14349
|
+
readonly external_network_name?: string | null;
|
|
14350
|
+
readonly has_external_gateway?: boolean;
|
|
14351
|
+
/**
|
|
14352
|
+
* Whether SNAT is enabled on the external gateway. None means OpenStack default (True).
|
|
14353
|
+
*/
|
|
14354
|
+
enable_snat?: boolean | null;
|
|
14355
|
+
readonly external_fixed_ips?: unknown;
|
|
14040
14356
|
readonly marketplace_offering_uuid?: string | null;
|
|
14041
14357
|
readonly marketplace_offering_name?: string | null;
|
|
14042
14358
|
readonly marketplace_offering_type?: string | null;
|
|
@@ -14093,7 +14409,7 @@ export type OpenStackSecurityGroup = {
|
|
|
14093
14409
|
readonly created?: string;
|
|
14094
14410
|
readonly modified?: string;
|
|
14095
14411
|
readonly backend_id?: string;
|
|
14096
|
-
|
|
14412
|
+
access_url?: Array<string> | string | null;
|
|
14097
14413
|
readonly tenant?: string;
|
|
14098
14414
|
readonly tenant_name?: string;
|
|
14099
14415
|
readonly tenant_uuid?: string;
|
|
@@ -14278,7 +14594,7 @@ export type OpenStackServerGroup = {
|
|
|
14278
14594
|
readonly created?: string;
|
|
14279
14595
|
readonly modified?: string;
|
|
14280
14596
|
readonly backend_id?: string;
|
|
14281
|
-
|
|
14597
|
+
access_url?: Array<string> | string | null;
|
|
14282
14598
|
readonly tenant?: string;
|
|
14283
14599
|
readonly tenant_name?: string;
|
|
14284
14600
|
readonly tenant_uuid?: string;
|
|
@@ -14338,7 +14654,7 @@ export type OpenStackSnapshot = {
|
|
|
14338
14654
|
* Snapshot ID in the OpenStack backend
|
|
14339
14655
|
*/
|
|
14340
14656
|
readonly backend_id?: string | null;
|
|
14341
|
-
|
|
14657
|
+
access_url?: Array<string> | string | null;
|
|
14342
14658
|
/**
|
|
14343
14659
|
* Volume from which this snapshot was created
|
|
14344
14660
|
*/
|
|
@@ -14354,6 +14670,7 @@ export type OpenStackSnapshot = {
|
|
|
14354
14670
|
readonly action?: string;
|
|
14355
14671
|
readonly action_details?: unknown;
|
|
14356
14672
|
readonly restorations?: Array<OpenStackSnapshotRestoration>;
|
|
14673
|
+
readonly backups?: Array<OpenStackSnapshotBackup>;
|
|
14357
14674
|
/**
|
|
14358
14675
|
* Guaranteed time of snapshot retention. If null - keep forever.
|
|
14359
14676
|
*/
|
|
@@ -14372,6 +14689,10 @@ export type OpenStackSnapshot = {
|
|
|
14372
14689
|
readonly is_usage_based?: boolean | null;
|
|
14373
14690
|
readonly is_limit_based?: boolean | null;
|
|
14374
14691
|
};
|
|
14692
|
+
export type OpenStackSnapshotBackup = {
|
|
14693
|
+
readonly uuid?: string;
|
|
14694
|
+
readonly name?: string;
|
|
14695
|
+
};
|
|
14375
14696
|
export type OpenStackSnapshotRequest = {
|
|
14376
14697
|
name: string;
|
|
14377
14698
|
description?: string;
|
|
@@ -14453,7 +14774,7 @@ export type OpenStackSubNet = {
|
|
|
14453
14774
|
readonly created?: string;
|
|
14454
14775
|
readonly modified?: string;
|
|
14455
14776
|
readonly backend_id?: string;
|
|
14456
|
-
|
|
14777
|
+
access_url?: Array<string> | string | null;
|
|
14457
14778
|
readonly tenant?: string;
|
|
14458
14779
|
readonly tenant_name?: string;
|
|
14459
14780
|
/**
|
|
@@ -14569,7 +14890,7 @@ export type OpenStackTenant = {
|
|
|
14569
14890
|
* ID of tenant in the OpenStack backend
|
|
14570
14891
|
*/
|
|
14571
14892
|
readonly backend_id?: string | null;
|
|
14572
|
-
|
|
14893
|
+
access_url?: Array<string> | string | null;
|
|
14573
14894
|
/**
|
|
14574
14895
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
14575
14896
|
*/
|
|
@@ -14691,7 +15012,7 @@ export type OpenStackVolume = {
|
|
|
14691
15012
|
* Volume ID in the OpenStack backend
|
|
14692
15013
|
*/
|
|
14693
15014
|
readonly backend_id?: string | null;
|
|
14694
|
-
|
|
15015
|
+
access_url?: Array<string> | string | null;
|
|
14695
15016
|
/**
|
|
14696
15017
|
* Snapshot that this volume was created from, if any
|
|
14697
15018
|
*/
|
|
@@ -15213,6 +15534,19 @@ export type PatchedAdminAnnouncementRequest = {
|
|
|
15213
15534
|
active_to?: string;
|
|
15214
15535
|
type?: AdminAnnouncementTypeEnum;
|
|
15215
15536
|
};
|
|
15537
|
+
export type PatchedAffiliatedOrganizationRequest = {
|
|
15538
|
+
name?: string;
|
|
15539
|
+
/**
|
|
15540
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
15541
|
+
*/
|
|
15542
|
+
code?: string;
|
|
15543
|
+
abbreviation?: string;
|
|
15544
|
+
description?: string;
|
|
15545
|
+
email?: string;
|
|
15546
|
+
homepage?: string;
|
|
15547
|
+
country?: string;
|
|
15548
|
+
address?: string;
|
|
15549
|
+
};
|
|
15216
15550
|
export type PatchedAllocationRequest = {
|
|
15217
15551
|
name?: string;
|
|
15218
15552
|
description?: string;
|
|
@@ -15633,6 +15967,10 @@ export type PatchedCustomerRequest = {
|
|
|
15633
15967
|
house_nr?: string;
|
|
15634
15968
|
apartment_nr?: string;
|
|
15635
15969
|
household?: string;
|
|
15970
|
+
/**
|
|
15971
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
15972
|
+
*/
|
|
15973
|
+
project_slug_template?: string | null;
|
|
15636
15974
|
};
|
|
15637
15975
|
export type PatchedCustomerServiceAccountRequest = {
|
|
15638
15976
|
username?: string;
|
|
@@ -16099,6 +16437,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
|
|
|
16099
16437
|
expose_gender?: boolean;
|
|
16100
16438
|
expose_personal_title?: boolean;
|
|
16101
16439
|
expose_place_of_birth?: boolean;
|
|
16440
|
+
expose_address?: boolean;
|
|
16102
16441
|
expose_country_of_residence?: boolean;
|
|
16103
16442
|
expose_nationality?: boolean;
|
|
16104
16443
|
expose_nationalities?: boolean;
|
|
@@ -16372,6 +16711,7 @@ export type PatchedProjectRequest = {
|
|
|
16372
16711
|
* List of allowed identity sources (identity providers).
|
|
16373
16712
|
*/
|
|
16374
16713
|
user_identity_sources?: unknown;
|
|
16714
|
+
science_sub_domain?: string | null;
|
|
16375
16715
|
};
|
|
16376
16716
|
export type PatchedProjectServiceAccountRequest = {
|
|
16377
16717
|
username?: string;
|
|
@@ -16917,6 +17257,21 @@ export type PatchedRuleRequest = {
|
|
|
16917
17257
|
[key: string]: unknown;
|
|
16918
17258
|
};
|
|
16919
17259
|
};
|
|
17260
|
+
export type PatchedScienceDomainRequest = {
|
|
17261
|
+
/**
|
|
17262
|
+
* Domain code (e.g. '1'). Auto-derived if left blank.
|
|
17263
|
+
*/
|
|
17264
|
+
code?: string;
|
|
17265
|
+
name?: string;
|
|
17266
|
+
};
|
|
17267
|
+
export type PatchedScienceSubDomainRequest = {
|
|
17268
|
+
/**
|
|
17269
|
+
* Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
|
|
17270
|
+
*/
|
|
17271
|
+
code?: string;
|
|
17272
|
+
name?: string;
|
|
17273
|
+
domain?: string;
|
|
17274
|
+
};
|
|
16920
17275
|
export type PatchedScreenshotRequest = {
|
|
16921
17276
|
name?: string;
|
|
16922
17277
|
description?: string;
|
|
@@ -17040,6 +17395,14 @@ export type PatchedSoftwarePackageRequest = {
|
|
|
17040
17395
|
*/
|
|
17041
17396
|
is_extension?: boolean;
|
|
17042
17397
|
};
|
|
17398
|
+
export type PatchedSystemPromptRequest = {
|
|
17399
|
+
name?: string;
|
|
17400
|
+
description?: string;
|
|
17401
|
+
/**
|
|
17402
|
+
* Additional instructions injected into the system prompt. Use this for organisation-specific context, terminology, FAQ content, or behavioural guidelines. Supports {assistant_name} and {organization} placeholders.
|
|
17403
|
+
*/
|
|
17404
|
+
custom_instructions?: string;
|
|
17405
|
+
};
|
|
17043
17406
|
export type PatchedTagRequest = {
|
|
17044
17407
|
name?: string;
|
|
17045
17408
|
description?: string;
|
|
@@ -17149,6 +17512,7 @@ export type PatchedUserRequest = {
|
|
|
17149
17512
|
*/
|
|
17150
17513
|
personal_title?: string;
|
|
17151
17514
|
place_of_birth?: string;
|
|
17515
|
+
address?: string;
|
|
17152
17516
|
country_of_residence?: string;
|
|
17153
17517
|
/**
|
|
17154
17518
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -17303,13 +17667,13 @@ export type PermissionMetadataResponse = {
|
|
|
17303
17667
|
* Map of permission keys to permission enum values from PermissionEnum
|
|
17304
17668
|
*/
|
|
17305
17669
|
permissions: {
|
|
17306
|
-
[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';
|
|
17670
|
+
[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' | 'ORDER.SET_CONSUMER_INFO' | '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';
|
|
17307
17671
|
};
|
|
17308
17672
|
/**
|
|
17309
17673
|
* Map of resource types to create permission enums
|
|
17310
17674
|
*/
|
|
17311
17675
|
permission_map: {
|
|
17312
|
-
[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';
|
|
17676
|
+
[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' | 'ORDER.SET_CONSUMER_INFO' | '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';
|
|
17313
17677
|
};
|
|
17314
17678
|
/**
|
|
17315
17679
|
* Grouped permission descriptions for UI
|
|
@@ -17481,6 +17845,7 @@ export type PluginOfferingType = {
|
|
|
17481
17845
|
export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
|
|
17482
17846
|
export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
|
|
17483
17847
|
export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
|
|
17848
|
+
export type PresetEnum = 'cscs' | 'oecd_fos_2007';
|
|
17484
17849
|
export type PreviewServiceAttributesRequestRequest = {
|
|
17485
17850
|
/**
|
|
17486
17851
|
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
@@ -17667,12 +18032,39 @@ export type Project = {
|
|
|
17667
18032
|
* List of allowed identity sources (identity providers).
|
|
17668
18033
|
*/
|
|
17669
18034
|
user_identity_sources?: unknown;
|
|
18035
|
+
readonly affiliated_organizations?: Array<AffiliatedOrganization>;
|
|
18036
|
+
science_sub_domain?: string | null;
|
|
18037
|
+
readonly science_sub_domain_name?: string;
|
|
18038
|
+
/**
|
|
18039
|
+
* Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
|
|
18040
|
+
*/
|
|
18041
|
+
readonly science_sub_domain_code?: string;
|
|
18042
|
+
readonly science_domain_uuid?: string;
|
|
18043
|
+
readonly science_domain_name?: string;
|
|
18044
|
+
/**
|
|
18045
|
+
* Domain code (e.g. '1'). Auto-derived if left blank.
|
|
18046
|
+
*/
|
|
18047
|
+
readonly science_domain_code?: string;
|
|
17670
18048
|
readonly project_credit?: number | null;
|
|
17671
18049
|
readonly marketplace_resource_count?: {
|
|
17672
18050
|
[key: string]: number;
|
|
17673
18051
|
};
|
|
17674
18052
|
billing_price_estimate?: NestedPriceEstimate;
|
|
17675
18053
|
};
|
|
18054
|
+
export type ProjectAccountingSummary = {
|
|
18055
|
+
readonly project_uuid: string;
|
|
18056
|
+
readonly project_name: string;
|
|
18057
|
+
readonly customer_uuid: string;
|
|
18058
|
+
readonly customer_name: string;
|
|
18059
|
+
readonly start_date: string | null;
|
|
18060
|
+
readonly end_date: string | null;
|
|
18061
|
+
readonly total_credits: string;
|
|
18062
|
+
readonly total_spend: string;
|
|
18063
|
+
readonly current_month_spend: string;
|
|
18064
|
+
};
|
|
18065
|
+
export type ProjectAffiliatedOrganizationsUpdateRequest = {
|
|
18066
|
+
affiliated_organizations?: Array<string>;
|
|
18067
|
+
};
|
|
17676
18068
|
export type ProjectAnswer = {
|
|
17677
18069
|
readonly project_uuid: string;
|
|
17678
18070
|
readonly project_name: string;
|
|
@@ -17896,8 +18288,8 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
17896
18288
|
limit_cost: number;
|
|
17897
18289
|
period?: PolicyPeriodEnum;
|
|
17898
18290
|
readonly period_name: string;
|
|
17899
|
-
readonly project_credit:
|
|
17900
|
-
readonly customer_credit:
|
|
18291
|
+
readonly project_credit: string | null;
|
|
18292
|
+
readonly customer_credit: string | null;
|
|
17901
18293
|
billing_price_estimate: NestedPriceEstimate;
|
|
17902
18294
|
};
|
|
17903
18295
|
export type ProjectEstimatedCostPolicyRequest = {
|
|
@@ -17935,6 +18327,12 @@ export type ProjectInfoRequest = {
|
|
|
17935
18327
|
*/
|
|
17936
18328
|
allowed_destinations?: string | null;
|
|
17937
18329
|
};
|
|
18330
|
+
export type ProjectMappingResponse = {
|
|
18331
|
+
uuid: string;
|
|
18332
|
+
name: string;
|
|
18333
|
+
customer_uuid: string;
|
|
18334
|
+
customer_name: string;
|
|
18335
|
+
};
|
|
17938
18336
|
export type ProjectPermissionLog = {
|
|
17939
18337
|
readonly created?: string;
|
|
17940
18338
|
expiration_time?: string | null;
|
|
@@ -18045,6 +18443,7 @@ export type ProjectRequest = {
|
|
|
18045
18443
|
* List of allowed identity sources (identity providers).
|
|
18046
18444
|
*/
|
|
18047
18445
|
user_identity_sources?: unknown;
|
|
18446
|
+
science_sub_domain?: string | null;
|
|
18048
18447
|
};
|
|
18049
18448
|
export type ProjectServiceAccount = {
|
|
18050
18449
|
readonly url: string;
|
|
@@ -18075,6 +18474,39 @@ export type ProjectServiceAccountRequest = {
|
|
|
18075
18474
|
preferred_identifier?: string;
|
|
18076
18475
|
project: string | null;
|
|
18077
18476
|
};
|
|
18477
|
+
export type ProjectStorageReport = {
|
|
18478
|
+
project: string;
|
|
18479
|
+
/**
|
|
18480
|
+
* RFC3339 timestamp
|
|
18481
|
+
*/
|
|
18482
|
+
generated_at: string;
|
|
18483
|
+
/**
|
|
18484
|
+
* Volume → Quota
|
|
18485
|
+
*/
|
|
18486
|
+
project_quotas: {
|
|
18487
|
+
[key: string]: OpenPortalQuota;
|
|
18488
|
+
};
|
|
18489
|
+
/**
|
|
18490
|
+
* UserIdentifier → (Volume → Quota)
|
|
18491
|
+
*/
|
|
18492
|
+
user_quotas: {
|
|
18493
|
+
[key: string]: {
|
|
18494
|
+
[key: string]: OpenPortalQuota;
|
|
18495
|
+
};
|
|
18496
|
+
};
|
|
18497
|
+
/**
|
|
18498
|
+
* UserIdentifier → local_username
|
|
18499
|
+
*/
|
|
18500
|
+
users: {
|
|
18501
|
+
[key: string]: string;
|
|
18502
|
+
};
|
|
18503
|
+
/**
|
|
18504
|
+
* "YYYY-MM-DD" → DailyStorageReportJson. Absent from JSON when there are no daily snapshots.
|
|
18505
|
+
*/
|
|
18506
|
+
daily_reports?: {
|
|
18507
|
+
[key: string]: DailyStorageReport;
|
|
18508
|
+
};
|
|
18509
|
+
};
|
|
18078
18510
|
export type ProjectTemplate = {
|
|
18079
18511
|
readonly uuid: string;
|
|
18080
18512
|
name: string;
|
|
@@ -18083,17 +18515,17 @@ export type ProjectTemplate = {
|
|
|
18083
18515
|
*/
|
|
18084
18516
|
offering?: string | null;
|
|
18085
18517
|
provider: string;
|
|
18086
|
-
provider_data:
|
|
18518
|
+
provider_data: BasicCustomer;
|
|
18087
18519
|
portal: string;
|
|
18088
18520
|
/**
|
|
18089
18521
|
* The key that is used to authenticate requests for this class.
|
|
18090
18522
|
*/
|
|
18091
18523
|
key?: string | null;
|
|
18092
18524
|
customer: string;
|
|
18093
|
-
customer_data:
|
|
18525
|
+
customer_data: BasicCustomer;
|
|
18094
18526
|
shortname?: string | null;
|
|
18095
18527
|
offerings: Array<string>;
|
|
18096
|
-
readonly offerings_data: Array<
|
|
18528
|
+
readonly offerings_data: Array<ResourceOffering>;
|
|
18097
18529
|
/**
|
|
18098
18530
|
* The credit limit beyond which requests need to be approved by a local admin. If this is None, then no local approval is required. If this is set to 0, then all requests (including creating the project) need to be approved.
|
|
18099
18531
|
*/
|
|
@@ -18159,6 +18591,24 @@ export type ProjectType = {
|
|
|
18159
18591
|
name: string;
|
|
18160
18592
|
description?: string;
|
|
18161
18593
|
};
|
|
18594
|
+
export type ProjectUsageReport = {
|
|
18595
|
+
/**
|
|
18596
|
+
* ProjectIdentifier string e.g. "aiproject.brics"
|
|
18597
|
+
*/
|
|
18598
|
+
project: string;
|
|
18599
|
+
/**
|
|
18600
|
+
* "YYYY-MM-DD" → DailyProjectUsageReportJson
|
|
18601
|
+
*/
|
|
18602
|
+
reports: {
|
|
18603
|
+
[key: string]: DailyProjectUsageReport;
|
|
18604
|
+
};
|
|
18605
|
+
/**
|
|
18606
|
+
* UserIdentifier → local_username. e.g. { "chris.aiproject.brics": "chris.aiproject" }
|
|
18607
|
+
*/
|
|
18608
|
+
users: {
|
|
18609
|
+
[key: string]: string;
|
|
18610
|
+
};
|
|
18611
|
+
};
|
|
18162
18612
|
export type ProjectUser = {
|
|
18163
18613
|
readonly url: string;
|
|
18164
18614
|
readonly uuid: string;
|
|
@@ -18243,6 +18693,10 @@ export type Proposal = {
|
|
|
18243
18693
|
readonly call_managing_organisation_uuid: string;
|
|
18244
18694
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
18245
18695
|
readonly oecd_fos_2007_label: string;
|
|
18696
|
+
science_sub_domain?: string | null;
|
|
18697
|
+
readonly science_sub_domain_name: string;
|
|
18698
|
+
readonly science_domain_uuid: string;
|
|
18699
|
+
readonly science_domain_name: string;
|
|
18246
18700
|
readonly allocation_comment: string | null;
|
|
18247
18701
|
readonly created: string;
|
|
18248
18702
|
readonly compliance_status: {
|
|
@@ -18304,6 +18758,7 @@ export type ProposalRequest = {
|
|
|
18304
18758
|
duration_in_days?: number | null;
|
|
18305
18759
|
round_uuid: string;
|
|
18306
18760
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
18761
|
+
science_sub_domain?: string | null;
|
|
18307
18762
|
};
|
|
18308
18763
|
export type ProposalReview = {
|
|
18309
18764
|
readonly url: string;
|
|
@@ -18762,55 +19217,6 @@ export type ProviderOfferingDetails = {
|
|
|
18762
19217
|
*/
|
|
18763
19218
|
readonly google_calendar_link?: string | null;
|
|
18764
19219
|
};
|
|
18765
|
-
export type ProviderOfferingDetailsRequest = {
|
|
18766
|
-
name: string;
|
|
18767
|
-
/**
|
|
18768
|
-
* URL-friendly identifier. Only editable by staff users.
|
|
18769
|
-
*/
|
|
18770
|
-
slug?: string;
|
|
18771
|
-
description?: string;
|
|
18772
|
-
full_description?: string;
|
|
18773
|
-
privacy_policy_link?: string;
|
|
18774
|
-
helpdesk_url?: string;
|
|
18775
|
-
documentation_url?: string;
|
|
18776
|
-
/**
|
|
18777
|
-
* Publicly accessible offering access URL
|
|
18778
|
-
*/
|
|
18779
|
-
access_url?: string;
|
|
18780
|
-
customer?: string | null;
|
|
18781
|
-
category: string;
|
|
18782
|
-
attributes?: unknown;
|
|
18783
|
-
components?: Array<OfferingComponentRequest>;
|
|
18784
|
-
vendor_details?: string;
|
|
18785
|
-
getting_started?: string;
|
|
18786
|
-
integration_guide?: string;
|
|
18787
|
-
thumbnail?: (Blob | File) | null;
|
|
18788
|
-
plans?: Array<BaseProviderPlanRequest>;
|
|
18789
|
-
type: string;
|
|
18790
|
-
/**
|
|
18791
|
-
* Accessible to all customers.
|
|
18792
|
-
*/
|
|
18793
|
-
shared?: boolean;
|
|
18794
|
-
/**
|
|
18795
|
-
* Purchase and usage is invoiced.
|
|
18796
|
-
*/
|
|
18797
|
-
billable?: boolean;
|
|
18798
|
-
datacite_doi?: string;
|
|
18799
|
-
latitude?: number | null;
|
|
18800
|
-
longitude?: number | null;
|
|
18801
|
-
/**
|
|
18802
|
-
* Country code (ISO 3166-1 alpha-2)
|
|
18803
|
-
*/
|
|
18804
|
-
country?: CountryEnum | BlankEnum;
|
|
18805
|
-
backend_id?: string;
|
|
18806
|
-
/**
|
|
18807
|
-
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
18808
|
-
*/
|
|
18809
|
-
backend_id_rules?: unknown;
|
|
18810
|
-
image?: (Blob | File) | null;
|
|
18811
|
-
backend_metadata?: unknown;
|
|
18812
|
-
compliance_checklist?: string | null;
|
|
18813
|
-
};
|
|
18814
19220
|
export type ProviderOfferingStats = {
|
|
18815
19221
|
/**
|
|
18816
19222
|
* Offering statistics including resources, revenue, and utilization
|
|
@@ -18849,11 +19255,11 @@ export type ProviderPlanDetails = {
|
|
|
18849
19255
|
[key: string]: string;
|
|
18850
19256
|
};
|
|
18851
19257
|
readonly quotas: {
|
|
18852
|
-
[key: string]:
|
|
19258
|
+
[key: string]: number;
|
|
18853
19259
|
};
|
|
18854
19260
|
readonly resources_count: number;
|
|
18855
19261
|
readonly plan_type: string;
|
|
18856
|
-
readonly minimal_price:
|
|
19262
|
+
readonly minimal_price: string;
|
|
18857
19263
|
};
|
|
18858
19264
|
export type ProviderPlanDetailsRequest = {
|
|
18859
19265
|
name: string;
|
|
@@ -19705,7 +20111,7 @@ export type RancherApplication = {
|
|
|
19705
20111
|
readonly created?: string;
|
|
19706
20112
|
readonly modified?: string;
|
|
19707
20113
|
backend_id?: string;
|
|
19708
|
-
|
|
20114
|
+
access_url?: Array<string> | string | null;
|
|
19709
20115
|
runtime_state?: string;
|
|
19710
20116
|
template?: string;
|
|
19711
20117
|
rancher_project?: string;
|
|
@@ -19843,7 +20249,7 @@ export type RancherCluster = {
|
|
|
19843
20249
|
readonly created?: string;
|
|
19844
20250
|
readonly modified?: string;
|
|
19845
20251
|
readonly backend_id?: string;
|
|
19846
|
-
|
|
20252
|
+
access_url?: Array<string> | string | null;
|
|
19847
20253
|
nodes?: Array<RancherNestedNode>;
|
|
19848
20254
|
tenant?: string;
|
|
19849
20255
|
readonly tenant_uuid?: string;
|
|
@@ -20063,7 +20469,7 @@ export type RancherIngress = {
|
|
|
20063
20469
|
readonly created?: string;
|
|
20064
20470
|
readonly modified?: string;
|
|
20065
20471
|
backend_id?: string;
|
|
20066
|
-
|
|
20472
|
+
access_url?: Array<string> | string | null;
|
|
20067
20473
|
runtime_state?: string;
|
|
20068
20474
|
rancher_project?: string;
|
|
20069
20475
|
readonly rancher_project_name?: string;
|
|
@@ -20252,7 +20658,7 @@ export type RancherService = {
|
|
|
20252
20658
|
readonly created?: string;
|
|
20253
20659
|
readonly modified?: string;
|
|
20254
20660
|
backend_id?: string;
|
|
20255
|
-
|
|
20661
|
+
access_url?: Array<string> | string | null;
|
|
20256
20662
|
runtime_state?: string;
|
|
20257
20663
|
namespace?: string;
|
|
20258
20664
|
readonly namespace_name?: string;
|
|
@@ -20301,7 +20707,7 @@ export type RancherServiceCreate = {
|
|
|
20301
20707
|
readonly created: string;
|
|
20302
20708
|
readonly modified: string;
|
|
20303
20709
|
backend_id?: string;
|
|
20304
|
-
|
|
20710
|
+
access_url: Array<string> | string | null;
|
|
20305
20711
|
runtime_state?: string;
|
|
20306
20712
|
namespace?: string;
|
|
20307
20713
|
readonly namespace_name: string;
|
|
@@ -20521,7 +20927,7 @@ export type RemoteAllocation = {
|
|
|
20521
20927
|
readonly created?: string;
|
|
20522
20928
|
readonly modified?: string;
|
|
20523
20929
|
readonly backend_id?: string;
|
|
20524
|
-
|
|
20930
|
+
access_url?: Array<string> | string | null;
|
|
20525
20931
|
node_limit?: number;
|
|
20526
20932
|
/**
|
|
20527
20933
|
* The identifier of the project in the remote OpenPortal instance.
|
|
@@ -20960,6 +21366,10 @@ export type Resource = {
|
|
|
20960
21366
|
* Effective project end date including grace period. After this date, resources will be terminated.
|
|
20961
21367
|
*/
|
|
20962
21368
|
readonly project_effective_end_date?: string | null;
|
|
21369
|
+
/**
|
|
21370
|
+
* True if the project is past its end date but still within the grace period.
|
|
21371
|
+
*/
|
|
21372
|
+
readonly project_is_in_grace_period?: boolean;
|
|
20963
21373
|
readonly project_end_date_requested_by?: string | null;
|
|
20964
21374
|
readonly customer_uuid?: string;
|
|
20965
21375
|
readonly customer_name?: string;
|
|
@@ -21097,54 +21507,18 @@ export type ResourceLimitPeriod = {
|
|
|
21097
21507
|
total?: string;
|
|
21098
21508
|
};
|
|
21099
21509
|
export type ResourceMissingUsage = {
|
|
21100
|
-
|
|
21101
|
-
* UUID of the resource
|
|
21102
|
-
*/
|
|
21103
|
-
uuid: string;
|
|
21104
|
-
/**
|
|
21105
|
-
* Name of the resource
|
|
21106
|
-
*/
|
|
21510
|
+
readonly uuid: string;
|
|
21107
21511
|
name: string;
|
|
21108
|
-
|
|
21109
|
-
|
|
21110
|
-
|
|
21111
|
-
|
|
21112
|
-
|
|
21113
|
-
|
|
21114
|
-
|
|
21115
|
-
|
|
21116
|
-
|
|
21117
|
-
|
|
21118
|
-
*/
|
|
21119
|
-
offering_name: string;
|
|
21120
|
-
/**
|
|
21121
|
-
* UUID of the offering
|
|
21122
|
-
*/
|
|
21123
|
-
offering_uuid: string;
|
|
21124
|
-
/**
|
|
21125
|
-
* Name of the service provider
|
|
21126
|
-
*/
|
|
21127
|
-
provider_name: string;
|
|
21128
|
-
/**
|
|
21129
|
-
* UUID of the service provider
|
|
21130
|
-
*/
|
|
21131
|
-
provider_uuid: string;
|
|
21132
|
-
/**
|
|
21133
|
-
* Name of the customer organization
|
|
21134
|
-
*/
|
|
21135
|
-
customer_name: string;
|
|
21136
|
-
/**
|
|
21137
|
-
* UUID of the customer organization
|
|
21138
|
-
*/
|
|
21139
|
-
customer_uuid: string;
|
|
21140
|
-
/**
|
|
21141
|
-
* Name of the project
|
|
21142
|
-
*/
|
|
21143
|
-
project_name: string;
|
|
21144
|
-
/**
|
|
21145
|
-
* UUID of the project
|
|
21146
|
-
*/
|
|
21147
|
-
project_uuid: string;
|
|
21512
|
+
readonly state: string;
|
|
21513
|
+
readonly created: string;
|
|
21514
|
+
readonly offering_name: string;
|
|
21515
|
+
readonly offering_uuid: string;
|
|
21516
|
+
readonly provider_name: string;
|
|
21517
|
+
readonly provider_uuid: string;
|
|
21518
|
+
readonly customer_name: string;
|
|
21519
|
+
readonly customer_uuid: string;
|
|
21520
|
+
readonly project_name: string;
|
|
21521
|
+
readonly project_uuid: string;
|
|
21148
21522
|
/**
|
|
21149
21523
|
* Date of the last usage report
|
|
21150
21524
|
*/
|
|
@@ -21152,12 +21526,15 @@ export type ResourceMissingUsage = {
|
|
|
21152
21526
|
/**
|
|
21153
21527
|
* Number of days since last usage report
|
|
21154
21528
|
*/
|
|
21155
|
-
days_since_last_report: number | null;
|
|
21529
|
+
readonly days_since_last_report: number | null;
|
|
21156
21530
|
};
|
|
21157
21531
|
export type ResourceOffering = {
|
|
21158
21532
|
name: string;
|
|
21159
21533
|
readonly uuid: string;
|
|
21160
21534
|
};
|
|
21535
|
+
export type ResourceOfferingRequest = {
|
|
21536
|
+
name: string;
|
|
21537
|
+
};
|
|
21161
21538
|
export type ResourceOptionsRequest = {
|
|
21162
21539
|
options?: unknown;
|
|
21163
21540
|
};
|
|
@@ -21330,6 +21707,10 @@ export type ResourceUpdateLimitsRequest = {
|
|
|
21330
21707
|
[key: string]: number;
|
|
21331
21708
|
};
|
|
21332
21709
|
request_comment?: string | null;
|
|
21710
|
+
/**
|
|
21711
|
+
* Optional PDF attachment for the limit update request.
|
|
21712
|
+
*/
|
|
21713
|
+
attachment?: Blob | File;
|
|
21333
21714
|
};
|
|
21334
21715
|
export type ResourceUpdateRequest = {
|
|
21335
21716
|
name: string;
|
|
@@ -22657,6 +23038,63 @@ export type SaveSettingsResponse = {
|
|
|
22657
23038
|
mappings_created: number;
|
|
22658
23039
|
message: string;
|
|
22659
23040
|
};
|
|
23041
|
+
export type ScienceDomain = {
|
|
23042
|
+
readonly uuid: string;
|
|
23043
|
+
readonly url: string;
|
|
23044
|
+
/**
|
|
23045
|
+
* Domain code (e.g. '1'). Auto-derived if left blank.
|
|
23046
|
+
*/
|
|
23047
|
+
code?: string;
|
|
23048
|
+
name: string;
|
|
23049
|
+
readonly created: string;
|
|
23050
|
+
readonly modified: string;
|
|
23051
|
+
/**
|
|
23052
|
+
* Number of sub-domains in this domain
|
|
23053
|
+
*/
|
|
23054
|
+
readonly subdomains_count: number;
|
|
23055
|
+
};
|
|
23056
|
+
export type ScienceDomainPreset = {
|
|
23057
|
+
name: string;
|
|
23058
|
+
label: string;
|
|
23059
|
+
description: string;
|
|
23060
|
+
};
|
|
23061
|
+
export type ScienceDomainRequest = {
|
|
23062
|
+
/**
|
|
23063
|
+
* Domain code (e.g. '1'). Auto-derived if left blank.
|
|
23064
|
+
*/
|
|
23065
|
+
code?: string;
|
|
23066
|
+
name: string;
|
|
23067
|
+
};
|
|
23068
|
+
export type ScienceSubDomain = {
|
|
23069
|
+
readonly uuid: string;
|
|
23070
|
+
readonly url: string;
|
|
23071
|
+
/**
|
|
23072
|
+
* Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
|
|
23073
|
+
*/
|
|
23074
|
+
code?: string;
|
|
23075
|
+
name: string;
|
|
23076
|
+
domain: string;
|
|
23077
|
+
readonly domain_uuid: string;
|
|
23078
|
+
readonly domain_name: string;
|
|
23079
|
+
/**
|
|
23080
|
+
* Domain code (e.g. '1'). Auto-derived if left blank.
|
|
23081
|
+
*/
|
|
23082
|
+
readonly domain_code: string;
|
|
23083
|
+
readonly created: string;
|
|
23084
|
+
readonly modified: string;
|
|
23085
|
+
/**
|
|
23086
|
+
* Number of active projects using this sub-domain
|
|
23087
|
+
*/
|
|
23088
|
+
readonly projects_count: number;
|
|
23089
|
+
};
|
|
23090
|
+
export type ScienceSubDomainRequest = {
|
|
23091
|
+
/**
|
|
23092
|
+
* Sub-domain code (e.g. '1.1'). Auto-derived from domain code if left blank.
|
|
23093
|
+
*/
|
|
23094
|
+
code?: string;
|
|
23095
|
+
name: string;
|
|
23096
|
+
domain: string;
|
|
23097
|
+
};
|
|
22660
23098
|
export type ScimSyncAllResponse = {
|
|
22661
23099
|
detail: string;
|
|
22662
23100
|
};
|
|
@@ -22929,6 +23367,22 @@ export type SetErredRequest = {
|
|
|
22929
23367
|
export type SetErredResponse = {
|
|
22930
23368
|
detail: string;
|
|
22931
23369
|
};
|
|
23370
|
+
export type SetExternalGatewayRequest = {
|
|
23371
|
+
/**
|
|
23372
|
+
* Backend ID (OpenStack UUID) of the external network.
|
|
23373
|
+
*/
|
|
23374
|
+
external_network_id: string;
|
|
23375
|
+
/**
|
|
23376
|
+
* Whether to enable SNAT on the gateway. None means use OpenStack default (True). Requires advanced permissions.
|
|
23377
|
+
*/
|
|
23378
|
+
enable_snat?: boolean | null;
|
|
23379
|
+
/**
|
|
23380
|
+
* List of fixed IP specifications for the gateway port. Each entry should have 'ip_address' and optionally 'subnet_id'. Requires advanced permissions.
|
|
23381
|
+
*/
|
|
23382
|
+
external_fixed_ips?: Array<{
|
|
23383
|
+
[key: string]: unknown;
|
|
23384
|
+
}>;
|
|
23385
|
+
};
|
|
22932
23386
|
export type SetMtu = {
|
|
22933
23387
|
mtu: number;
|
|
22934
23388
|
};
|
|
@@ -23027,7 +23481,7 @@ export type SlurmAllocation = {
|
|
|
23027
23481
|
readonly created?: string;
|
|
23028
23482
|
readonly modified?: string;
|
|
23029
23483
|
readonly backend_id?: string;
|
|
23030
|
-
|
|
23484
|
+
access_url?: Array<string> | string | null;
|
|
23031
23485
|
readonly cpu_limit?: number;
|
|
23032
23486
|
readonly cpu_usage?: number;
|
|
23033
23487
|
readonly gpu_limit?: number;
|
|
@@ -23901,6 +24355,29 @@ export type SystemLogStatsResponse = {
|
|
|
23901
24355
|
readonly total_size_bytes: number;
|
|
23902
24356
|
readonly total_size_mb: number;
|
|
23903
24357
|
};
|
|
24358
|
+
export type SystemPrompt = {
|
|
24359
|
+
readonly uuid: string;
|
|
24360
|
+
name: string;
|
|
24361
|
+
description?: string;
|
|
24362
|
+
/**
|
|
24363
|
+
* Additional instructions injected into the system prompt. Use this for organisation-specific context, terminology, FAQ content, or behavioural guidelines. Supports {assistant_name} and {organization} placeholders.
|
|
24364
|
+
*/
|
|
24365
|
+
custom_instructions?: string;
|
|
24366
|
+
/**
|
|
24367
|
+
* Whether this prompt is currently used by the AI Assistant. Only one prompt can be active.
|
|
24368
|
+
*/
|
|
24369
|
+
readonly is_active: boolean;
|
|
24370
|
+
readonly created: string;
|
|
24371
|
+
readonly modified: string;
|
|
24372
|
+
};
|
|
24373
|
+
export type SystemPromptRequest = {
|
|
24374
|
+
name: string;
|
|
24375
|
+
description?: string;
|
|
24376
|
+
/**
|
|
24377
|
+
* Additional instructions injected into the system prompt. Use this for organisation-specific context, terminology, FAQ content, or behavioural guidelines. Supports {assistant_name} and {organization} placeholders.
|
|
24378
|
+
*/
|
|
24379
|
+
custom_instructions?: string;
|
|
24380
|
+
};
|
|
23904
24381
|
export type TableGrowthAlert = {
|
|
23905
24382
|
/**
|
|
23906
24383
|
* Name of the table triggering the alert
|
|
@@ -24105,6 +24582,7 @@ export type ThreadSession = {
|
|
|
24105
24582
|
readonly title_gen_output_tokens?: number | null;
|
|
24106
24583
|
readonly is_flagged?: boolean;
|
|
24107
24584
|
max_severity?: InjectionSeverityEnum;
|
|
24585
|
+
readonly has_feedback?: boolean;
|
|
24108
24586
|
readonly user_username?: string;
|
|
24109
24587
|
readonly user_full_name?: string;
|
|
24110
24588
|
readonly created?: string;
|
|
@@ -24381,7 +24859,7 @@ export type UpdateOfferingComponentRequest = {
|
|
|
24381
24859
|
* The conversion factor from backend units to measured_unit
|
|
24382
24860
|
*/
|
|
24383
24861
|
unit_factor?: number;
|
|
24384
|
-
limit_period?: LimitPeriodEnum |
|
|
24862
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
24385
24863
|
limit_amount?: number | null;
|
|
24386
24864
|
article_code?: string;
|
|
24387
24865
|
max_value?: number | null;
|
|
@@ -24429,6 +24907,9 @@ export type UpdatePoolRequest = {
|
|
|
24429
24907
|
name: string;
|
|
24430
24908
|
};
|
|
24431
24909
|
export type UrgencyEnum = 'low' | 'medium' | 'high';
|
|
24910
|
+
export type Usage = {
|
|
24911
|
+
seconds: number;
|
|
24912
|
+
};
|
|
24432
24913
|
export type User = {
|
|
24433
24914
|
readonly url?: string;
|
|
24434
24915
|
readonly uuid?: string;
|
|
@@ -24514,6 +24995,7 @@ export type User = {
|
|
|
24514
24995
|
*/
|
|
24515
24996
|
personal_title?: string;
|
|
24516
24997
|
place_of_birth?: string;
|
|
24998
|
+
address?: string;
|
|
24517
24999
|
country_of_residence?: string;
|
|
24518
25000
|
/**
|
|
24519
25001
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -24657,7 +25139,7 @@ export type UserAgreementRequest = {
|
|
|
24657
25139
|
*/
|
|
24658
25140
|
language: string;
|
|
24659
25141
|
};
|
|
24660
|
-
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';
|
|
25142
|
+
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';
|
|
24661
25143
|
export type UserAuthMethodCount = {
|
|
24662
25144
|
/**
|
|
24663
25145
|
* Authentication method
|
|
@@ -24788,6 +25270,12 @@ export type UserLanguageCount = {
|
|
|
24788
25270
|
language: string;
|
|
24789
25271
|
count: number;
|
|
24790
25272
|
};
|
|
25273
|
+
export type UserMappingResponse = {
|
|
25274
|
+
uuid: string;
|
|
25275
|
+
full_name: string;
|
|
25276
|
+
email: string;
|
|
25277
|
+
username: string;
|
|
25278
|
+
};
|
|
24791
25279
|
export type UserNationalityStats = {
|
|
24792
25280
|
/**
|
|
24793
25281
|
* Nationality code
|
|
@@ -24915,6 +25403,7 @@ export type UserRequest = {
|
|
|
24915
25403
|
*/
|
|
24916
25404
|
personal_title?: string;
|
|
24917
25405
|
place_of_birth?: string;
|
|
25406
|
+
address?: string;
|
|
24918
25407
|
country_of_residence?: string;
|
|
24919
25408
|
/**
|
|
24920
25409
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -25153,7 +25642,7 @@ export type VmwareDisk = {
|
|
|
25153
25642
|
readonly created?: string;
|
|
25154
25643
|
readonly modified?: string;
|
|
25155
25644
|
readonly backend_id?: string;
|
|
25156
|
-
|
|
25645
|
+
access_url?: Array<string> | string | null;
|
|
25157
25646
|
/**
|
|
25158
25647
|
* Size in MiB
|
|
25159
25648
|
*/
|
|
@@ -25268,7 +25757,7 @@ export type VmwarePort = {
|
|
|
25268
25757
|
readonly created?: string;
|
|
25269
25758
|
readonly modified?: string;
|
|
25270
25759
|
readonly backend_id?: string;
|
|
25271
|
-
|
|
25760
|
+
access_url?: Array<string> | string | null;
|
|
25272
25761
|
readonly mac_address?: string;
|
|
25273
25762
|
readonly vm?: string;
|
|
25274
25763
|
readonly vm_uuid?: string;
|
|
@@ -25347,7 +25836,7 @@ export type VmwareVirtualMachine = {
|
|
|
25347
25836
|
readonly created?: string;
|
|
25348
25837
|
readonly modified?: string;
|
|
25349
25838
|
readonly backend_id?: string;
|
|
25350
|
-
|
|
25839
|
+
access_url?: Array<string> | string | null;
|
|
25351
25840
|
guest_os?: GuestOsEnum | NullEnum | null;
|
|
25352
25841
|
readonly guest_os_name?: string;
|
|
25353
25842
|
/**
|
|
@@ -25776,92 +26265,100 @@ export type CustomerRequestForm = {
|
|
|
25776
26265
|
house_nr?: string;
|
|
25777
26266
|
apartment_nr?: string;
|
|
25778
26267
|
household?: string;
|
|
25779
|
-
};
|
|
25780
|
-
export type CustomerRequestMultipart = {
|
|
25781
26268
|
/**
|
|
25782
|
-
*
|
|
26269
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
25783
26270
|
*/
|
|
25784
|
-
|
|
25785
|
-
image?: (Blob | File) | null;
|
|
25786
|
-
blocked?: boolean;
|
|
25787
|
-
archived?: boolean;
|
|
25788
|
-
display_billing_info_in_projects?: boolean;
|
|
25789
|
-
default_tax_percent?: string;
|
|
25790
|
-
/**
|
|
25791
|
-
* Start date of accounting
|
|
25792
|
-
*/
|
|
25793
|
-
accounting_start_date?: string;
|
|
25794
|
-
/**
|
|
25795
|
-
* External ID of the sponsor covering the costs
|
|
25796
|
-
*/
|
|
25797
|
-
sponsor_number?: number | null;
|
|
25798
|
-
/**
|
|
25799
|
-
* Maximum number of service accounts allowed
|
|
25800
|
-
*/
|
|
25801
|
-
max_service_accounts?: number | null;
|
|
25802
|
-
/**
|
|
25803
|
-
* Checklist to be used for project metadata validation in this organization
|
|
25804
|
-
*/
|
|
25805
|
-
project_metadata_checklist?: string | null;
|
|
25806
|
-
/**
|
|
25807
|
-
* Number of extra days after project end date before resources are terminated
|
|
25808
|
-
*/
|
|
25809
|
-
grace_period_days?: number | null;
|
|
25810
|
-
user_email_patterns?: unknown;
|
|
25811
|
-
user_affiliations?: unknown;
|
|
25812
|
-
/**
|
|
25813
|
-
* List of allowed identity sources (identity providers).
|
|
25814
|
-
*/
|
|
25815
|
-
user_identity_sources?: unknown;
|
|
25816
|
-
name: string;
|
|
25817
|
-
/**
|
|
25818
|
-
* URL-friendly identifier. Only editable by staff users.
|
|
25819
|
-
*/
|
|
25820
|
-
slug?: string;
|
|
25821
|
-
native_name?: string;
|
|
25822
|
-
abbreviation?: string;
|
|
25823
|
-
description?: string;
|
|
25824
|
-
contact_details?: string;
|
|
25825
|
-
agreement_number?: string;
|
|
25826
|
-
/**
|
|
25827
|
-
* Email address
|
|
25828
|
-
*/
|
|
25829
|
-
email?: string;
|
|
25830
|
-
phone_number?: string;
|
|
25831
|
-
/**
|
|
25832
|
-
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
25833
|
-
*/
|
|
25834
|
-
access_subnets?: string;
|
|
25835
|
-
registration_code?: string;
|
|
25836
|
-
homepage?: string;
|
|
25837
|
-
domain?: string;
|
|
25838
|
-
/**
|
|
25839
|
-
* VAT number
|
|
25840
|
-
*/
|
|
25841
|
-
vat_code?: string;
|
|
25842
|
-
postal?: string;
|
|
25843
|
-
address?: string;
|
|
25844
|
-
bank_name?: string;
|
|
25845
|
-
latitude?: number | null;
|
|
25846
|
-
longitude?: number | null;
|
|
25847
|
-
bank_account?: string;
|
|
25848
|
-
/**
|
|
25849
|
-
* Country code (ISO 3166-1 alpha-2)
|
|
25850
|
-
*/
|
|
25851
|
-
country?: CountryEnum | BlankEnum;
|
|
25852
|
-
/**
|
|
25853
|
-
* Comma-separated list of notification email addresses
|
|
25854
|
-
*/
|
|
25855
|
-
notification_emails?: string;
|
|
25856
|
-
city?: string;
|
|
25857
|
-
state?: string;
|
|
25858
|
-
parish?: string;
|
|
25859
|
-
street?: string;
|
|
25860
|
-
house_nr?: string;
|
|
25861
|
-
apartment_nr?: string;
|
|
25862
|
-
household?: string;
|
|
26271
|
+
project_slug_template?: string | null;
|
|
25863
26272
|
};
|
|
25864
|
-
export type
|
|
26273
|
+
export type CustomerRequestMultipart = {
|
|
26274
|
+
/**
|
|
26275
|
+
* Organization identifier in another application.
|
|
26276
|
+
*/
|
|
26277
|
+
backend_id?: string;
|
|
26278
|
+
image?: (Blob | File) | null;
|
|
26279
|
+
blocked?: boolean;
|
|
26280
|
+
archived?: boolean;
|
|
26281
|
+
display_billing_info_in_projects?: boolean;
|
|
26282
|
+
default_tax_percent?: string;
|
|
26283
|
+
/**
|
|
26284
|
+
* Start date of accounting
|
|
26285
|
+
*/
|
|
26286
|
+
accounting_start_date?: string;
|
|
26287
|
+
/**
|
|
26288
|
+
* External ID of the sponsor covering the costs
|
|
26289
|
+
*/
|
|
26290
|
+
sponsor_number?: number | null;
|
|
26291
|
+
/**
|
|
26292
|
+
* Maximum number of service accounts allowed
|
|
26293
|
+
*/
|
|
26294
|
+
max_service_accounts?: number | null;
|
|
26295
|
+
/**
|
|
26296
|
+
* Checklist to be used for project metadata validation in this organization
|
|
26297
|
+
*/
|
|
26298
|
+
project_metadata_checklist?: string | null;
|
|
26299
|
+
/**
|
|
26300
|
+
* Number of extra days after project end date before resources are terminated
|
|
26301
|
+
*/
|
|
26302
|
+
grace_period_days?: number | null;
|
|
26303
|
+
user_email_patterns?: unknown;
|
|
26304
|
+
user_affiliations?: unknown;
|
|
26305
|
+
/**
|
|
26306
|
+
* List of allowed identity sources (identity providers).
|
|
26307
|
+
*/
|
|
26308
|
+
user_identity_sources?: unknown;
|
|
26309
|
+
name: string;
|
|
26310
|
+
/**
|
|
26311
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
26312
|
+
*/
|
|
26313
|
+
slug?: string;
|
|
26314
|
+
native_name?: string;
|
|
26315
|
+
abbreviation?: string;
|
|
26316
|
+
description?: string;
|
|
26317
|
+
contact_details?: string;
|
|
26318
|
+
agreement_number?: string;
|
|
26319
|
+
/**
|
|
26320
|
+
* Email address
|
|
26321
|
+
*/
|
|
26322
|
+
email?: string;
|
|
26323
|
+
phone_number?: string;
|
|
26324
|
+
/**
|
|
26325
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
26326
|
+
*/
|
|
26327
|
+
access_subnets?: string;
|
|
26328
|
+
registration_code?: string;
|
|
26329
|
+
homepage?: string;
|
|
26330
|
+
domain?: string;
|
|
26331
|
+
/**
|
|
26332
|
+
* VAT number
|
|
26333
|
+
*/
|
|
26334
|
+
vat_code?: string;
|
|
26335
|
+
postal?: string;
|
|
26336
|
+
address?: string;
|
|
26337
|
+
bank_name?: string;
|
|
26338
|
+
latitude?: number | null;
|
|
26339
|
+
longitude?: number | null;
|
|
26340
|
+
bank_account?: string;
|
|
26341
|
+
/**
|
|
26342
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
26343
|
+
*/
|
|
26344
|
+
country?: CountryEnum | BlankEnum;
|
|
26345
|
+
/**
|
|
26346
|
+
* Comma-separated list of notification email addresses
|
|
26347
|
+
*/
|
|
26348
|
+
notification_emails?: string;
|
|
26349
|
+
city?: string;
|
|
26350
|
+
state?: string;
|
|
26351
|
+
parish?: string;
|
|
26352
|
+
street?: string;
|
|
26353
|
+
house_nr?: string;
|
|
26354
|
+
apartment_nr?: string;
|
|
26355
|
+
household?: string;
|
|
26356
|
+
/**
|
|
26357
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
26358
|
+
*/
|
|
26359
|
+
project_slug_template?: string | null;
|
|
26360
|
+
};
|
|
26361
|
+
export type PatchedCustomerRequestForm = {
|
|
25865
26362
|
/**
|
|
25866
26363
|
* Organization identifier in another application.
|
|
25867
26364
|
*/
|
|
@@ -25944,6 +26441,10 @@ export type PatchedCustomerRequestForm = {
|
|
|
25944
26441
|
house_nr?: string;
|
|
25945
26442
|
apartment_nr?: string;
|
|
25946
26443
|
household?: string;
|
|
26444
|
+
/**
|
|
26445
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
26446
|
+
*/
|
|
26447
|
+
project_slug_template?: string | null;
|
|
25947
26448
|
};
|
|
25948
26449
|
export type PatchedCustomerRequestMultipart = {
|
|
25949
26450
|
/**
|
|
@@ -26028,6 +26529,10 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
26028
26529
|
house_nr?: string;
|
|
26029
26530
|
apartment_nr?: string;
|
|
26030
26531
|
household?: string;
|
|
26532
|
+
/**
|
|
26533
|
+
* Template for project slugs. Supports: {customer_slug}, {project_name}, {year}, {month}, {counter}, {counter_padded}. Default: slugified project name
|
|
26534
|
+
*/
|
|
26535
|
+
project_slug_template?: string | null;
|
|
26031
26536
|
};
|
|
26032
26537
|
export type ExternalLinkRequestForm = {
|
|
26033
26538
|
name: string;
|
|
@@ -26349,6 +26854,26 @@ export type ResourceRenewRequestMultipart = {
|
|
|
26349
26854
|
*/
|
|
26350
26855
|
attachment?: Blob | File;
|
|
26351
26856
|
};
|
|
26857
|
+
export type ResourceUpdateLimitsRequestForm = {
|
|
26858
|
+
limits: {
|
|
26859
|
+
[key: string]: number;
|
|
26860
|
+
};
|
|
26861
|
+
request_comment?: string | null;
|
|
26862
|
+
/**
|
|
26863
|
+
* Optional PDF attachment for the limit update request.
|
|
26864
|
+
*/
|
|
26865
|
+
attachment?: Blob | File;
|
|
26866
|
+
};
|
|
26867
|
+
export type ResourceUpdateLimitsRequestMultipart = {
|
|
26868
|
+
limits: {
|
|
26869
|
+
[key: string]: number;
|
|
26870
|
+
};
|
|
26871
|
+
request_comment?: string | null;
|
|
26872
|
+
/**
|
|
26873
|
+
* Optional PDF attachment for the limit update request.
|
|
26874
|
+
*/
|
|
26875
|
+
attachment?: Blob | File;
|
|
26876
|
+
};
|
|
26352
26877
|
export type ScreenshotRequestForm = {
|
|
26353
26878
|
name: string;
|
|
26354
26879
|
description?: string;
|
|
@@ -26459,6 +26984,7 @@ export type ProjectRequestForm = {
|
|
|
26459
26984
|
* List of allowed identity sources (identity providers).
|
|
26460
26985
|
*/
|
|
26461
26986
|
user_identity_sources?: unknown;
|
|
26987
|
+
science_sub_domain?: string | null;
|
|
26462
26988
|
};
|
|
26463
26989
|
export type ProjectRequestMultipart = {
|
|
26464
26990
|
name: string;
|
|
@@ -26508,6 +27034,7 @@ export type ProjectRequestMultipart = {
|
|
|
26508
27034
|
* List of allowed identity sources (identity providers).
|
|
26509
27035
|
*/
|
|
26510
27036
|
user_identity_sources?: unknown;
|
|
27037
|
+
science_sub_domain?: string | null;
|
|
26511
27038
|
};
|
|
26512
27039
|
export type PatchedProjectRequestForm = {
|
|
26513
27040
|
name?: string;
|
|
@@ -26557,6 +27084,7 @@ export type PatchedProjectRequestForm = {
|
|
|
26557
27084
|
* List of allowed identity sources (identity providers).
|
|
26558
27085
|
*/
|
|
26559
27086
|
user_identity_sources?: unknown;
|
|
27087
|
+
science_sub_domain?: string | null;
|
|
26560
27088
|
};
|
|
26561
27089
|
export type PatchedProjectRequestMultipart = {
|
|
26562
27090
|
name?: string;
|
|
@@ -26606,6 +27134,7 @@ export type PatchedProjectRequestMultipart = {
|
|
|
26606
27134
|
* List of allowed identity sources (identity providers).
|
|
26607
27135
|
*/
|
|
26608
27136
|
user_identity_sources?: unknown;
|
|
27137
|
+
science_sub_domain?: string | null;
|
|
26609
27138
|
};
|
|
26610
27139
|
export type ConstanceSettingsRequestForm = {
|
|
26611
27140
|
SITE_NAME?: string;
|
|
@@ -26619,6 +27148,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26619
27148
|
CURRENCY_NAME?: string;
|
|
26620
27149
|
THUMBNAIL_SIZE?: string;
|
|
26621
27150
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
27151
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
26622
27152
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
26623
27153
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
26624
27154
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -26819,6 +27349,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26819
27349
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
26820
27350
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
26821
27351
|
AI_ASSISTANT_NAME?: string;
|
|
27352
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
26822
27353
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
26823
27354
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
26824
27355
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -26850,6 +27381,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26850
27381
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
26851
27382
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
26852
27383
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
27384
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
26853
27385
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
26854
27386
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
26855
27387
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -26874,6 +27406,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26874
27406
|
CURRENCY_NAME?: string;
|
|
26875
27407
|
THUMBNAIL_SIZE?: string;
|
|
26876
27408
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
27409
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
26877
27410
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
26878
27411
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
26879
27412
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -27074,6 +27607,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27074
27607
|
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
27075
27608
|
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
27076
27609
|
AI_ASSISTANT_NAME?: string;
|
|
27610
|
+
AI_ASSISTANT_SYSTEM_PROMPT_CUSTOM_INSTRUCTIONS?: string;
|
|
27077
27611
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
27078
27612
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
27079
27613
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -27105,6 +27639,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
27105
27639
|
ARROW_CONSUMPTION_SYNC_ENABLED?: boolean;
|
|
27106
27640
|
ARROW_CONSUMPTION_SYNC_INTERVAL_HOURS?: number;
|
|
27107
27641
|
ARROW_BILLING_CHECK_INTERVAL_HOURS?: number;
|
|
27642
|
+
USAGE_POLL_RECORD_RETENTION_MONTHS?: number;
|
|
27108
27643
|
SLURM_POLICY_EVALUATION_LOG_RETENTION_DAYS?: number;
|
|
27109
27644
|
FEDERATED_IDENTITY_SYNC_ENABLED?: boolean;
|
|
27110
27645
|
FEDERATED_IDENTITY_SYNC_ALLOWED_ATTRIBUTES?: Array<UserAttributeEnum | BlankEnum>;
|
|
@@ -27239,6 +27774,7 @@ export type UserRequestForm = {
|
|
|
27239
27774
|
*/
|
|
27240
27775
|
personal_title?: string;
|
|
27241
27776
|
place_of_birth?: string;
|
|
27777
|
+
address?: string;
|
|
27242
27778
|
country_of_residence?: string;
|
|
27243
27779
|
/**
|
|
27244
27780
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27330,6 +27866,7 @@ export type UserRequestMultipart = {
|
|
|
27330
27866
|
*/
|
|
27331
27867
|
personal_title?: string;
|
|
27332
27868
|
place_of_birth?: string;
|
|
27869
|
+
address?: string;
|
|
27333
27870
|
country_of_residence?: string;
|
|
27334
27871
|
/**
|
|
27335
27872
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27420,6 +27957,7 @@ export type PatchedUserRequestForm = {
|
|
|
27420
27957
|
*/
|
|
27421
27958
|
personal_title?: string;
|
|
27422
27959
|
place_of_birth?: string;
|
|
27960
|
+
address?: string;
|
|
27423
27961
|
country_of_residence?: string;
|
|
27424
27962
|
/**
|
|
27425
27963
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27510,6 +28048,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
27510
28048
|
*/
|
|
27511
28049
|
personal_title?: string;
|
|
27512
28050
|
place_of_birth?: string;
|
|
28051
|
+
address?: string;
|
|
27513
28052
|
country_of_residence?: string;
|
|
27514
28053
|
/**
|
|
27515
28054
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27558,7 +28097,7 @@ export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' |
|
|
|
27558
28097
|
export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | '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' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
|
|
27559
28098
|
export type BackendResourceReqOEnum = '-created' | 'created';
|
|
27560
28099
|
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27561
|
-
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
28100
|
+
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
27562
28101
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
27563
28102
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
27564
28103
|
export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
|
|
@@ -27567,15 +28106,16 @@ export type UserRoleDetailsFieldEnum = 'created' | 'created_by_full_name' | 'cre
|
|
|
27567
28106
|
export type UserRoleDetailsOEnum = 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
27568
28107
|
export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expertise_match_score' | '-invited_at' | 'created' | 'current_assignments' | 'expertise_match_score' | 'invited_at';
|
|
27569
28108
|
export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27570
|
-
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';
|
|
28109
|
+
export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'has_feedback' | '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';
|
|
27571
28110
|
export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
|
|
28111
|
+
export type ThreadSessionScopeEnum = 'own';
|
|
27572
28112
|
export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
|
|
27573
28113
|
export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
|
|
27574
28114
|
export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
|
|
27575
28115
|
export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
|
|
27576
28116
|
export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
|
|
27577
28117
|
export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
|
|
27578
|
-
export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
|
|
28118
|
+
export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
|
|
27579
28119
|
export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
|
|
27580
28120
|
export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
|
|
27581
28121
|
export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
|
|
@@ -27593,7 +28133,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
|
|
|
27593
28133
|
export type SshKeyOEnum = '-name' | 'name';
|
|
27594
28134
|
export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
|
|
27595
28135
|
export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
|
|
27596
|
-
export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
28136
|
+
export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
27597
28137
|
export type MarketplaceCategoryFieldEnum = 'articles' | 'available_offerings_count' | 'columns' | 'components' | 'default_tenant_category' | 'default_vm_category' | 'default_volume_category' | 'description' | 'group' | 'icon' | 'offering_count' | 'sections' | 'title' | 'url' | 'uuid';
|
|
27598
28138
|
export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
|
|
27599
28139
|
export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
@@ -27610,7 +28150,7 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
|
|
|
27610
28150
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
27611
28151
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
27612
28152
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
27613
|
-
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
28153
|
+
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
27614
28154
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
27615
28155
|
export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
27616
28156
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
@@ -27618,8 +28158,8 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
|
|
|
27618
28158
|
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
27619
28159
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
27620
28160
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
27621
|
-
export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27622
|
-
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
28161
|
+
export type ProjectFieldEnum = 'affiliated_organizations' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
28162
|
+
export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
27623
28163
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27624
28164
|
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27625
28165
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
@@ -27629,7 +28169,7 @@ export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_ab
|
|
|
27629
28169
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
27630
28170
|
export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
|
|
27631
28171
|
export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
|
|
27632
|
-
export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
|
|
28172
|
+
export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
|
|
27633
28173
|
export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username';
|
|
27634
28174
|
export type AgentServiceStateEnum = 1 | 2 | 3;
|
|
27635
28175
|
export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
|
|
@@ -27662,10 +28202,10 @@ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_i
|
|
|
27662
28202
|
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';
|
|
27663
28203
|
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';
|
|
27664
28204
|
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';
|
|
27665
|
-
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';
|
|
28205
|
+
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';
|
|
27666
28206
|
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';
|
|
27667
28207
|
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';
|
|
27668
|
-
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';
|
|
28208
|
+
export type OpenStackSnapshotFieldEnum = 'access_url' | 'action' | 'action_details' | 'backend_id' | 'backups' | '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';
|
|
27669
28209
|
export type OpenStackSubNetFieldEnum = 'access_url' | 'allocation_pools' | 'backend_id' | 'cidr' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disable_gateway' | 'dns_nameservers' | 'enable_dhcp' | 'error_message' | 'error_traceback' | 'gateway_ip' | 'host_routes' | 'ip_version' | 'is_connected' | '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' | 'network' | 'network_name' | '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' | 'url' | 'uuid';
|
|
27670
28210
|
export type OpenStackTenantFieldEnum = 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'external_network_ref_name' | 'external_network_ref_uuid' | 'internal_network_id' | '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' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid';
|
|
27671
28211
|
export type OpenStackVolumeFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'bootable' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device' | 'error_message' | 'error_traceback' | 'extend_enabled' | 'image' | 'image_metadata' | 'image_name' | 'instance' | 'instance_marketplace_uuid' | 'instance_name' | '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' | 'metadata' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'source_snapshot' | 'state' | 'tenant' | 'tenant_uuid' | 'type' | 'type_name' | 'url' | 'uuid';
|
|
@@ -27694,6 +28234,8 @@ export type ReviewerBidOEnum = '-bid' | '-modified_at' | '-submitted_at' | 'bid'
|
|
|
27694
28234
|
export type ReviewerProfileOEnum = '-created' | '-user_email' | '-user_name' | 'created' | 'user_email' | 'user_name';
|
|
27695
28235
|
export type ReviewerSuggestionOEnum = '-affinity_score' | '-created' | '-reviewed_at' | '-status' | 'affinity_score' | 'created' | 'reviewed_at' | 'status';
|
|
27696
28236
|
export type RoleDetailsFieldEnum = 'content_type' | 'description' | 'description_ar' | 'description_cs' | 'description_da' | 'description_de' | 'description_en' | 'description_es' | 'description_et' | 'description_fr' | 'description_it' | 'description_lt' | 'description_lv' | 'description_nb' | 'description_ru' | 'description_sv' | 'is_active' | 'is_system_role' | 'name' | 'permissions' | 'users_count' | 'uuid';
|
|
28237
|
+
export type ScienceDomainOEnum = '-code' | '-name' | 'code' | 'name';
|
|
28238
|
+
export type ScienceSubDomainOEnum = '-code' | '-domain_name' | '-name' | '-projects_count' | 'code' | 'domain_name' | 'name' | 'projects_count';
|
|
27697
28239
|
export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_native_name' | 'error_message' | 'name' | 'options' | 'scope' | 'scope_uuid' | 'shared' | 'state' | 'terms_of_services' | 'type' | 'url' | 'uuid';
|
|
27698
28240
|
export type SlurmAllocationFieldEnum = 'access_url' | 'backend_id' | 'cpu_limit' | 'cpu_usage' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'gateway' | 'gpu_limit' | 'gpu_usage' | 'is_active' | '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' | 'ram_limit' | 'ram_usage' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'username' | 'uuid';
|
|
27699
28241
|
export type FirecrestJobFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'file' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'report' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'user' | 'user_username' | 'user_uuid' | 'uuid';
|
|
@@ -29111,6 +29653,271 @@ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
|
|
|
29111
29653
|
*/
|
|
29112
29654
|
200: unknown;
|
|
29113
29655
|
};
|
|
29656
|
+
export type AffiliatedOrganizationsListData = {
|
|
29657
|
+
body?: never;
|
|
29658
|
+
path?: never;
|
|
29659
|
+
query?: {
|
|
29660
|
+
/**
|
|
29661
|
+
* Abbreviation
|
|
29662
|
+
*/
|
|
29663
|
+
abbreviation?: string;
|
|
29664
|
+
/**
|
|
29665
|
+
* Code
|
|
29666
|
+
*/
|
|
29667
|
+
code?: string;
|
|
29668
|
+
/**
|
|
29669
|
+
* Country
|
|
29670
|
+
*/
|
|
29671
|
+
country?: string;
|
|
29672
|
+
/**
|
|
29673
|
+
* Name
|
|
29674
|
+
*/
|
|
29675
|
+
name?: string;
|
|
29676
|
+
/**
|
|
29677
|
+
* Name (exact)
|
|
29678
|
+
*/
|
|
29679
|
+
name_exact?: string;
|
|
29680
|
+
/**
|
|
29681
|
+
* Which field to use when ordering the results.
|
|
29682
|
+
*/
|
|
29683
|
+
o?: string;
|
|
29684
|
+
/**
|
|
29685
|
+
* A page number within the paginated result set.
|
|
29686
|
+
*/
|
|
29687
|
+
page?: number;
|
|
29688
|
+
/**
|
|
29689
|
+
* Number of results to return per page.
|
|
29690
|
+
*/
|
|
29691
|
+
page_size?: number;
|
|
29692
|
+
/**
|
|
29693
|
+
* Search
|
|
29694
|
+
*/
|
|
29695
|
+
query?: string;
|
|
29696
|
+
};
|
|
29697
|
+
url: '/api/affiliated-organizations/';
|
|
29698
|
+
};
|
|
29699
|
+
export type AffiliatedOrganizationsListResponses = {
|
|
29700
|
+
200: Array<AffiliatedOrganization>;
|
|
29701
|
+
};
|
|
29702
|
+
export type AffiliatedOrganizationsListResponse = AffiliatedOrganizationsListResponses[keyof AffiliatedOrganizationsListResponses];
|
|
29703
|
+
export type AffiliatedOrganizationsCountData = {
|
|
29704
|
+
body?: never;
|
|
29705
|
+
path?: never;
|
|
29706
|
+
query?: {
|
|
29707
|
+
/**
|
|
29708
|
+
* Abbreviation
|
|
29709
|
+
*/
|
|
29710
|
+
abbreviation?: string;
|
|
29711
|
+
/**
|
|
29712
|
+
* Code
|
|
29713
|
+
*/
|
|
29714
|
+
code?: string;
|
|
29715
|
+
/**
|
|
29716
|
+
* Country
|
|
29717
|
+
*/
|
|
29718
|
+
country?: string;
|
|
29719
|
+
/**
|
|
29720
|
+
* Name
|
|
29721
|
+
*/
|
|
29722
|
+
name?: string;
|
|
29723
|
+
/**
|
|
29724
|
+
* Name (exact)
|
|
29725
|
+
*/
|
|
29726
|
+
name_exact?: string;
|
|
29727
|
+
/**
|
|
29728
|
+
* Which field to use when ordering the results.
|
|
29729
|
+
*/
|
|
29730
|
+
o?: string;
|
|
29731
|
+
/**
|
|
29732
|
+
* A page number within the paginated result set.
|
|
29733
|
+
*/
|
|
29734
|
+
page?: number;
|
|
29735
|
+
/**
|
|
29736
|
+
* Number of results to return per page.
|
|
29737
|
+
*/
|
|
29738
|
+
page_size?: number;
|
|
29739
|
+
/**
|
|
29740
|
+
* Search
|
|
29741
|
+
*/
|
|
29742
|
+
query?: string;
|
|
29743
|
+
};
|
|
29744
|
+
url: '/api/affiliated-organizations/';
|
|
29745
|
+
};
|
|
29746
|
+
export type AffiliatedOrganizationsCountResponses = {
|
|
29747
|
+
/**
|
|
29748
|
+
* No response body
|
|
29749
|
+
*/
|
|
29750
|
+
200: unknown;
|
|
29751
|
+
};
|
|
29752
|
+
export type AffiliatedOrganizationsCreateData = {
|
|
29753
|
+
body: AffiliatedOrganizationRequest;
|
|
29754
|
+
path?: never;
|
|
29755
|
+
query?: never;
|
|
29756
|
+
url: '/api/affiliated-organizations/';
|
|
29757
|
+
};
|
|
29758
|
+
export type AffiliatedOrganizationsCreateResponses = {
|
|
29759
|
+
201: AffiliatedOrganization;
|
|
29760
|
+
};
|
|
29761
|
+
export type AffiliatedOrganizationsCreateResponse = AffiliatedOrganizationsCreateResponses[keyof AffiliatedOrganizationsCreateResponses];
|
|
29762
|
+
export type AffiliatedOrganizationsDestroyData = {
|
|
29763
|
+
body?: never;
|
|
29764
|
+
path: {
|
|
29765
|
+
uuid: string;
|
|
29766
|
+
};
|
|
29767
|
+
query?: never;
|
|
29768
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29769
|
+
};
|
|
29770
|
+
export type AffiliatedOrganizationsDestroyResponses = {
|
|
29771
|
+
/**
|
|
29772
|
+
* No response body
|
|
29773
|
+
*/
|
|
29774
|
+
204: void;
|
|
29775
|
+
};
|
|
29776
|
+
export type AffiliatedOrganizationsDestroyResponse = AffiliatedOrganizationsDestroyResponses[keyof AffiliatedOrganizationsDestroyResponses];
|
|
29777
|
+
export type AffiliatedOrganizationsRetrieveData = {
|
|
29778
|
+
body?: never;
|
|
29779
|
+
path: {
|
|
29780
|
+
uuid: string;
|
|
29781
|
+
};
|
|
29782
|
+
query?: never;
|
|
29783
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29784
|
+
};
|
|
29785
|
+
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
29786
|
+
200: AffiliatedOrganization;
|
|
29787
|
+
};
|
|
29788
|
+
export type AffiliatedOrganizationsRetrieveResponse = AffiliatedOrganizationsRetrieveResponses[keyof AffiliatedOrganizationsRetrieveResponses];
|
|
29789
|
+
export type AffiliatedOrganizationsPartialUpdateData = {
|
|
29790
|
+
body?: PatchedAffiliatedOrganizationRequest;
|
|
29791
|
+
path: {
|
|
29792
|
+
uuid: string;
|
|
29793
|
+
};
|
|
29794
|
+
query?: never;
|
|
29795
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29796
|
+
};
|
|
29797
|
+
export type AffiliatedOrganizationsPartialUpdateResponses = {
|
|
29798
|
+
200: AffiliatedOrganization;
|
|
29799
|
+
};
|
|
29800
|
+
export type AffiliatedOrganizationsPartialUpdateResponse = AffiliatedOrganizationsPartialUpdateResponses[keyof AffiliatedOrganizationsPartialUpdateResponses];
|
|
29801
|
+
export type AffiliatedOrganizationsUpdateData = {
|
|
29802
|
+
body: AffiliatedOrganizationRequest;
|
|
29803
|
+
path: {
|
|
29804
|
+
uuid: string;
|
|
29805
|
+
};
|
|
29806
|
+
query?: never;
|
|
29807
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29808
|
+
};
|
|
29809
|
+
export type AffiliatedOrganizationsUpdateResponses = {
|
|
29810
|
+
200: AffiliatedOrganization;
|
|
29811
|
+
};
|
|
29812
|
+
export type AffiliatedOrganizationsUpdateResponse = AffiliatedOrganizationsUpdateResponses[keyof AffiliatedOrganizationsUpdateResponses];
|
|
29813
|
+
export type AffiliatedOrganizationsStatsRetrieveData = {
|
|
29814
|
+
body?: never;
|
|
29815
|
+
path: {
|
|
29816
|
+
uuid: string;
|
|
29817
|
+
};
|
|
29818
|
+
query?: never;
|
|
29819
|
+
url: '/api/affiliated-organizations/{uuid}/stats/';
|
|
29820
|
+
};
|
|
29821
|
+
export type AffiliatedOrganizationsStatsRetrieveResponses = {
|
|
29822
|
+
200: AffiliatedOrganizationStats;
|
|
29823
|
+
};
|
|
29824
|
+
export type AffiliatedOrganizationsStatsRetrieveResponse = AffiliatedOrganizationsStatsRetrieveResponses[keyof AffiliatedOrganizationsStatsRetrieveResponses];
|
|
29825
|
+
export type AffiliatedOrganizationsReportListData = {
|
|
29826
|
+
body?: never;
|
|
29827
|
+
path?: never;
|
|
29828
|
+
query?: {
|
|
29829
|
+
/**
|
|
29830
|
+
* Abbreviation
|
|
29831
|
+
*/
|
|
29832
|
+
abbreviation?: string;
|
|
29833
|
+
/**
|
|
29834
|
+
* Code
|
|
29835
|
+
*/
|
|
29836
|
+
code?: string;
|
|
29837
|
+
/**
|
|
29838
|
+
* Country
|
|
29839
|
+
*/
|
|
29840
|
+
country?: string;
|
|
29841
|
+
/**
|
|
29842
|
+
* Name
|
|
29843
|
+
*/
|
|
29844
|
+
name?: string;
|
|
29845
|
+
/**
|
|
29846
|
+
* Name (exact)
|
|
29847
|
+
*/
|
|
29848
|
+
name_exact?: string;
|
|
29849
|
+
/**
|
|
29850
|
+
* Which field to use when ordering the results.
|
|
29851
|
+
*/
|
|
29852
|
+
o?: string;
|
|
29853
|
+
/**
|
|
29854
|
+
* A page number within the paginated result set.
|
|
29855
|
+
*/
|
|
29856
|
+
page?: number;
|
|
29857
|
+
/**
|
|
29858
|
+
* Number of results to return per page.
|
|
29859
|
+
*/
|
|
29860
|
+
page_size?: number;
|
|
29861
|
+
/**
|
|
29862
|
+
* Search
|
|
29863
|
+
*/
|
|
29864
|
+
query?: string;
|
|
29865
|
+
};
|
|
29866
|
+
url: '/api/affiliated-organizations/report/';
|
|
29867
|
+
};
|
|
29868
|
+
export type AffiliatedOrganizationsReportListResponses = {
|
|
29869
|
+
200: Array<AffiliatedOrganizationReportRow>;
|
|
29870
|
+
};
|
|
29871
|
+
export type AffiliatedOrganizationsReportListResponse = AffiliatedOrganizationsReportListResponses[keyof AffiliatedOrganizationsReportListResponses];
|
|
29872
|
+
export type AffiliatedOrganizationsReportCountData = {
|
|
29873
|
+
body?: never;
|
|
29874
|
+
path?: never;
|
|
29875
|
+
query?: {
|
|
29876
|
+
/**
|
|
29877
|
+
* Abbreviation
|
|
29878
|
+
*/
|
|
29879
|
+
abbreviation?: string;
|
|
29880
|
+
/**
|
|
29881
|
+
* Code
|
|
29882
|
+
*/
|
|
29883
|
+
code?: string;
|
|
29884
|
+
/**
|
|
29885
|
+
* Country
|
|
29886
|
+
*/
|
|
29887
|
+
country?: string;
|
|
29888
|
+
/**
|
|
29889
|
+
* Name
|
|
29890
|
+
*/
|
|
29891
|
+
name?: string;
|
|
29892
|
+
/**
|
|
29893
|
+
* Name (exact)
|
|
29894
|
+
*/
|
|
29895
|
+
name_exact?: string;
|
|
29896
|
+
/**
|
|
29897
|
+
* Which field to use when ordering the results.
|
|
29898
|
+
*/
|
|
29899
|
+
o?: string;
|
|
29900
|
+
/**
|
|
29901
|
+
* A page number within the paginated result set.
|
|
29902
|
+
*/
|
|
29903
|
+
page?: number;
|
|
29904
|
+
/**
|
|
29905
|
+
* Number of results to return per page.
|
|
29906
|
+
*/
|
|
29907
|
+
page_size?: number;
|
|
29908
|
+
/**
|
|
29909
|
+
* Search
|
|
29910
|
+
*/
|
|
29911
|
+
query?: string;
|
|
29912
|
+
};
|
|
29913
|
+
url: '/api/affiliated-organizations/report/';
|
|
29914
|
+
};
|
|
29915
|
+
export type AffiliatedOrganizationsReportCountResponses = {
|
|
29916
|
+
/**
|
|
29917
|
+
* No response body
|
|
29918
|
+
*/
|
|
29919
|
+
200: unknown;
|
|
29920
|
+
};
|
|
29114
29921
|
export type AssignmentBatchesListData = {
|
|
29115
29922
|
body?: never;
|
|
29116
29923
|
path?: never;
|
|
@@ -29799,10 +30606,6 @@ export type AwsInstancesListData = {
|
|
|
29799
30606
|
*
|
|
29800
30607
|
*/
|
|
29801
30608
|
state?: Array<CoreStates>;
|
|
29802
|
-
/**
|
|
29803
|
-
* UUID
|
|
29804
|
-
*/
|
|
29805
|
-
uuid?: string;
|
|
29806
30609
|
};
|
|
29807
30610
|
url: '/api/aws-instances/';
|
|
29808
30611
|
};
|
|
@@ -29889,10 +30692,6 @@ export type AwsInstancesCountData = {
|
|
|
29889
30692
|
*
|
|
29890
30693
|
*/
|
|
29891
30694
|
state?: Array<CoreStates>;
|
|
29892
|
-
/**
|
|
29893
|
-
* UUID
|
|
29894
|
-
*/
|
|
29895
|
-
uuid?: string;
|
|
29896
30695
|
};
|
|
29897
30696
|
url: '/api/aws-instances/';
|
|
29898
30697
|
};
|
|
@@ -30656,10 +31455,6 @@ export type AzurePublicIpsListData = {
|
|
|
30656
31455
|
*
|
|
30657
31456
|
*/
|
|
30658
31457
|
state?: Array<CoreStates>;
|
|
30659
|
-
/**
|
|
30660
|
-
* UUID
|
|
30661
|
-
*/
|
|
30662
|
-
uuid?: string;
|
|
30663
31458
|
};
|
|
30664
31459
|
url: '/api/azure-public-ips/';
|
|
30665
31460
|
};
|
|
@@ -30751,10 +31546,6 @@ export type AzurePublicIpsCountData = {
|
|
|
30751
31546
|
*
|
|
30752
31547
|
*/
|
|
30753
31548
|
state?: Array<CoreStates>;
|
|
30754
|
-
/**
|
|
30755
|
-
* UUID
|
|
30756
|
-
*/
|
|
30757
|
-
uuid?: string;
|
|
30758
31549
|
};
|
|
30759
31550
|
url: '/api/azure-public-ips/';
|
|
30760
31551
|
};
|
|
@@ -31114,10 +31905,6 @@ export type AzureSqlDatabasesListData = {
|
|
|
31114
31905
|
*
|
|
31115
31906
|
*/
|
|
31116
31907
|
state?: Array<CoreStates>;
|
|
31117
|
-
/**
|
|
31118
|
-
* UUID
|
|
31119
|
-
*/
|
|
31120
|
-
uuid?: string;
|
|
31121
31908
|
};
|
|
31122
31909
|
url: '/api/azure-sql-databases/';
|
|
31123
31910
|
};
|
|
@@ -31211,10 +31998,6 @@ export type AzureSqlDatabasesCountData = {
|
|
|
31211
31998
|
*
|
|
31212
31999
|
*/
|
|
31213
32000
|
state?: Array<CoreStates>;
|
|
31214
|
-
/**
|
|
31215
|
-
* UUID
|
|
31216
|
-
*/
|
|
31217
|
-
uuid?: string;
|
|
31218
32001
|
};
|
|
31219
32002
|
url: '/api/azure-sql-databases/';
|
|
31220
32003
|
};
|
|
@@ -31427,10 +32210,6 @@ export type AzureSqlServersListData = {
|
|
|
31427
32210
|
*
|
|
31428
32211
|
*/
|
|
31429
32212
|
state?: Array<CoreStates>;
|
|
31430
|
-
/**
|
|
31431
|
-
* UUID
|
|
31432
|
-
*/
|
|
31433
|
-
uuid?: string;
|
|
31434
32213
|
};
|
|
31435
32214
|
url: '/api/azure-sql-servers/';
|
|
31436
32215
|
};
|
|
@@ -31522,10 +32301,6 @@ export type AzureSqlServersCountData = {
|
|
|
31522
32301
|
*
|
|
31523
32302
|
*/
|
|
31524
32303
|
state?: Array<CoreStates>;
|
|
31525
|
-
/**
|
|
31526
|
-
* UUID
|
|
31527
|
-
*/
|
|
31528
|
-
uuid?: string;
|
|
31529
32304
|
};
|
|
31530
32305
|
url: '/api/azure-sql-servers/';
|
|
31531
32306
|
};
|
|
@@ -31750,10 +32525,6 @@ export type AzureVirtualmachinesListData = {
|
|
|
31750
32525
|
*
|
|
31751
32526
|
*/
|
|
31752
32527
|
state?: Array<CoreStates>;
|
|
31753
|
-
/**
|
|
31754
|
-
* UUID
|
|
31755
|
-
*/
|
|
31756
|
-
uuid?: string;
|
|
31757
32528
|
};
|
|
31758
32529
|
url: '/api/azure-virtualmachines/';
|
|
31759
32530
|
};
|
|
@@ -31845,10 +32616,6 @@ export type AzureVirtualmachinesCountData = {
|
|
|
31845
32616
|
*
|
|
31846
32617
|
*/
|
|
31847
32618
|
state?: Array<CoreStates>;
|
|
31848
|
-
/**
|
|
31849
|
-
* UUID
|
|
31850
|
-
*/
|
|
31851
|
-
uuid?: string;
|
|
31852
32619
|
};
|
|
31853
32620
|
url: '/api/azure-virtualmachines/';
|
|
31854
32621
|
};
|
|
@@ -34017,6 +34784,7 @@ export type ChatMessagesListData = {
|
|
|
34017
34784
|
body?: never;
|
|
34018
34785
|
path?: never;
|
|
34019
34786
|
query?: {
|
|
34787
|
+
feedback_score?: boolean;
|
|
34020
34788
|
include_history?: boolean;
|
|
34021
34789
|
is_flagged?: boolean;
|
|
34022
34790
|
thread?: string;
|
|
@@ -34027,6 +34795,18 @@ export type ChatMessagesListResponses = {
|
|
|
34027
34795
|
200: Array<Message>;
|
|
34028
34796
|
};
|
|
34029
34797
|
export type ChatMessagesListResponse = ChatMessagesListResponses[keyof ChatMessagesListResponses];
|
|
34798
|
+
export type ChatMessagesFeedbackData = {
|
|
34799
|
+
body: MessageFeedbackRequest;
|
|
34800
|
+
path: {
|
|
34801
|
+
uuid: string;
|
|
34802
|
+
};
|
|
34803
|
+
query?: never;
|
|
34804
|
+
url: '/api/chat-messages/{uuid}/feedback/';
|
|
34805
|
+
};
|
|
34806
|
+
export type ChatMessagesFeedbackResponses = {
|
|
34807
|
+
200: Message;
|
|
34808
|
+
};
|
|
34809
|
+
export type ChatMessagesFeedbackResponse = ChatMessagesFeedbackResponses[keyof ChatMessagesFeedbackResponses];
|
|
34030
34810
|
export type ChatQuotaSetQuotaData = {
|
|
34031
34811
|
body: SetTokenQuotaRequest;
|
|
34032
34812
|
path?: never;
|
|
@@ -34098,12 +34878,138 @@ export type ChatSessionsCurrentRetrieveResponses = {
|
|
|
34098
34878
|
200: ChatSession;
|
|
34099
34879
|
};
|
|
34100
34880
|
export type ChatSessionsCurrentRetrieveResponse = ChatSessionsCurrentRetrieveResponses[keyof ChatSessionsCurrentRetrieveResponses];
|
|
34881
|
+
export type ChatSystemPromptsListData = {
|
|
34882
|
+
body?: never;
|
|
34883
|
+
path?: never;
|
|
34884
|
+
query?: {
|
|
34885
|
+
/**
|
|
34886
|
+
* A page number within the paginated result set.
|
|
34887
|
+
*/
|
|
34888
|
+
page?: number;
|
|
34889
|
+
/**
|
|
34890
|
+
* Number of results to return per page.
|
|
34891
|
+
*/
|
|
34892
|
+
page_size?: number;
|
|
34893
|
+
};
|
|
34894
|
+
url: '/api/chat-system-prompts/';
|
|
34895
|
+
};
|
|
34896
|
+
export type ChatSystemPromptsListResponses = {
|
|
34897
|
+
200: Array<SystemPrompt>;
|
|
34898
|
+
};
|
|
34899
|
+
export type ChatSystemPromptsListResponse = ChatSystemPromptsListResponses[keyof ChatSystemPromptsListResponses];
|
|
34900
|
+
export type ChatSystemPromptsCountData = {
|
|
34901
|
+
body?: never;
|
|
34902
|
+
path?: never;
|
|
34903
|
+
query?: {
|
|
34904
|
+
/**
|
|
34905
|
+
* A page number within the paginated result set.
|
|
34906
|
+
*/
|
|
34907
|
+
page?: number;
|
|
34908
|
+
/**
|
|
34909
|
+
* Number of results to return per page.
|
|
34910
|
+
*/
|
|
34911
|
+
page_size?: number;
|
|
34912
|
+
};
|
|
34913
|
+
url: '/api/chat-system-prompts/';
|
|
34914
|
+
};
|
|
34915
|
+
export type ChatSystemPromptsCountResponses = {
|
|
34916
|
+
/**
|
|
34917
|
+
* No response body
|
|
34918
|
+
*/
|
|
34919
|
+
200: unknown;
|
|
34920
|
+
};
|
|
34921
|
+
export type ChatSystemPromptsCreateData = {
|
|
34922
|
+
body: SystemPromptRequest;
|
|
34923
|
+
path?: never;
|
|
34924
|
+
query?: never;
|
|
34925
|
+
url: '/api/chat-system-prompts/';
|
|
34926
|
+
};
|
|
34927
|
+
export type ChatSystemPromptsCreateResponses = {
|
|
34928
|
+
201: SystemPrompt;
|
|
34929
|
+
};
|
|
34930
|
+
export type ChatSystemPromptsCreateResponse = ChatSystemPromptsCreateResponses[keyof ChatSystemPromptsCreateResponses];
|
|
34931
|
+
export type ChatSystemPromptsDestroyData = {
|
|
34932
|
+
body?: never;
|
|
34933
|
+
path: {
|
|
34934
|
+
uuid: string;
|
|
34935
|
+
};
|
|
34936
|
+
query?: never;
|
|
34937
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34938
|
+
};
|
|
34939
|
+
export type ChatSystemPromptsDestroyResponses = {
|
|
34940
|
+
/**
|
|
34941
|
+
* No response body
|
|
34942
|
+
*/
|
|
34943
|
+
204: void;
|
|
34944
|
+
};
|
|
34945
|
+
export type ChatSystemPromptsDestroyResponse = ChatSystemPromptsDestroyResponses[keyof ChatSystemPromptsDestroyResponses];
|
|
34946
|
+
export type ChatSystemPromptsRetrieveData = {
|
|
34947
|
+
body?: never;
|
|
34948
|
+
path: {
|
|
34949
|
+
uuid: string;
|
|
34950
|
+
};
|
|
34951
|
+
query?: never;
|
|
34952
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34953
|
+
};
|
|
34954
|
+
export type ChatSystemPromptsRetrieveResponses = {
|
|
34955
|
+
200: SystemPrompt;
|
|
34956
|
+
};
|
|
34957
|
+
export type ChatSystemPromptsRetrieveResponse = ChatSystemPromptsRetrieveResponses[keyof ChatSystemPromptsRetrieveResponses];
|
|
34958
|
+
export type ChatSystemPromptsPartialUpdateData = {
|
|
34959
|
+
body?: PatchedSystemPromptRequest;
|
|
34960
|
+
path: {
|
|
34961
|
+
uuid: string;
|
|
34962
|
+
};
|
|
34963
|
+
query?: never;
|
|
34964
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34965
|
+
};
|
|
34966
|
+
export type ChatSystemPromptsPartialUpdateResponses = {
|
|
34967
|
+
200: SystemPrompt;
|
|
34968
|
+
};
|
|
34969
|
+
export type ChatSystemPromptsPartialUpdateResponse = ChatSystemPromptsPartialUpdateResponses[keyof ChatSystemPromptsPartialUpdateResponses];
|
|
34970
|
+
export type ChatSystemPromptsUpdateData = {
|
|
34971
|
+
body: SystemPromptRequest;
|
|
34972
|
+
path: {
|
|
34973
|
+
uuid: string;
|
|
34974
|
+
};
|
|
34975
|
+
query?: never;
|
|
34976
|
+
url: '/api/chat-system-prompts/{uuid}/';
|
|
34977
|
+
};
|
|
34978
|
+
export type ChatSystemPromptsUpdateResponses = {
|
|
34979
|
+
200: SystemPrompt;
|
|
34980
|
+
};
|
|
34981
|
+
export type ChatSystemPromptsUpdateResponse = ChatSystemPromptsUpdateResponses[keyof ChatSystemPromptsUpdateResponses];
|
|
34982
|
+
export type ChatSystemPromptsActivateData = {
|
|
34983
|
+
body: SystemPromptRequest;
|
|
34984
|
+
path: {
|
|
34985
|
+
uuid: string;
|
|
34986
|
+
};
|
|
34987
|
+
query?: never;
|
|
34988
|
+
url: '/api/chat-system-prompts/{uuid}/activate/';
|
|
34989
|
+
};
|
|
34990
|
+
export type ChatSystemPromptsActivateResponses = {
|
|
34991
|
+
200: SystemPrompt;
|
|
34992
|
+
};
|
|
34993
|
+
export type ChatSystemPromptsActivateResponse = ChatSystemPromptsActivateResponses[keyof ChatSystemPromptsActivateResponses];
|
|
34994
|
+
export type ChatSystemPromptsDeactivateData = {
|
|
34995
|
+
body: SystemPromptRequest;
|
|
34996
|
+
path: {
|
|
34997
|
+
uuid: string;
|
|
34998
|
+
};
|
|
34999
|
+
query?: never;
|
|
35000
|
+
url: '/api/chat-system-prompts/{uuid}/deactivate/';
|
|
35001
|
+
};
|
|
35002
|
+
export type ChatSystemPromptsDeactivateResponses = {
|
|
35003
|
+
200: SystemPrompt;
|
|
35004
|
+
};
|
|
35005
|
+
export type ChatSystemPromptsDeactivateResponse = ChatSystemPromptsDeactivateResponses[keyof ChatSystemPromptsDeactivateResponses];
|
|
34101
35006
|
export type ChatThreadsListData = {
|
|
34102
35007
|
body?: never;
|
|
34103
35008
|
path?: never;
|
|
34104
35009
|
query?: {
|
|
34105
35010
|
created?: string;
|
|
34106
35011
|
field?: Array<ThreadSessionFieldEnum>;
|
|
35012
|
+
has_feedback?: boolean;
|
|
34107
35013
|
input_tokens_max?: number;
|
|
34108
35014
|
input_tokens_min?: number;
|
|
34109
35015
|
is_archived?: boolean;
|
|
@@ -34127,6 +35033,7 @@ export type ChatThreadsListData = {
|
|
|
34127
35033
|
*/
|
|
34128
35034
|
page_size?: number;
|
|
34129
35035
|
query?: string;
|
|
35036
|
+
scope?: ThreadSessionScopeEnum;
|
|
34130
35037
|
total_tokens_max?: number;
|
|
34131
35038
|
total_tokens_min?: number;
|
|
34132
35039
|
user?: string;
|
|
@@ -36759,10 +37666,6 @@ export type DigitaloceanDropletsListData = {
|
|
|
36759
37666
|
*
|
|
36760
37667
|
*/
|
|
36761
37668
|
state?: Array<CoreStates>;
|
|
36762
|
-
/**
|
|
36763
|
-
* UUID
|
|
36764
|
-
*/
|
|
36765
|
-
uuid?: string;
|
|
36766
37669
|
};
|
|
36767
37670
|
url: '/api/digitalocean-droplets/';
|
|
36768
37671
|
};
|
|
@@ -36849,10 +37752,6 @@ export type DigitaloceanDropletsCountData = {
|
|
|
36849
37752
|
*
|
|
36850
37753
|
*/
|
|
36851
37754
|
state?: Array<CoreStates>;
|
|
36852
|
-
/**
|
|
36853
|
-
* UUID
|
|
36854
|
-
*/
|
|
36855
|
-
uuid?: string;
|
|
36856
37755
|
};
|
|
36857
37756
|
url: '/api/digitalocean-droplets/';
|
|
36858
37757
|
};
|
|
@@ -38405,14 +39304,15 @@ export type HooksListData = {
|
|
|
38405
39304
|
body?: never;
|
|
38406
39305
|
path?: never;
|
|
38407
39306
|
query?: {
|
|
39307
|
+
author_email?: string;
|
|
38408
39308
|
/**
|
|
38409
|
-
*
|
|
39309
|
+
* User full name contains
|
|
38410
39310
|
*/
|
|
39311
|
+
author_fullname?: string;
|
|
39312
|
+
author_username?: string;
|
|
38411
39313
|
author_uuid?: string;
|
|
38412
|
-
/**
|
|
38413
|
-
* Filter by active status.
|
|
38414
|
-
*/
|
|
38415
39314
|
is_active?: boolean;
|
|
39315
|
+
last_published?: string;
|
|
38416
39316
|
/**
|
|
38417
39317
|
* A page number within the paginated result set.
|
|
38418
39318
|
*/
|
|
@@ -38421,6 +39321,10 @@ export type HooksListData = {
|
|
|
38421
39321
|
* Number of results to return per page.
|
|
38422
39322
|
*/
|
|
38423
39323
|
page_size?: number;
|
|
39324
|
+
/**
|
|
39325
|
+
* Filter by author name, username and email
|
|
39326
|
+
*/
|
|
39327
|
+
query?: string;
|
|
38424
39328
|
};
|
|
38425
39329
|
url: '/api/hooks/';
|
|
38426
39330
|
};
|
|
@@ -38434,14 +39338,15 @@ export type HooksCountData = {
|
|
|
38434
39338
|
body?: never;
|
|
38435
39339
|
path?: never;
|
|
38436
39340
|
query?: {
|
|
39341
|
+
author_email?: string;
|
|
38437
39342
|
/**
|
|
38438
|
-
*
|
|
39343
|
+
* User full name contains
|
|
38439
39344
|
*/
|
|
39345
|
+
author_fullname?: string;
|
|
39346
|
+
author_username?: string;
|
|
38440
39347
|
author_uuid?: string;
|
|
38441
|
-
/**
|
|
38442
|
-
* Filter by active status.
|
|
38443
|
-
*/
|
|
38444
39348
|
is_active?: boolean;
|
|
39349
|
+
last_published?: string;
|
|
38445
39350
|
/**
|
|
38446
39351
|
* A page number within the paginated result set.
|
|
38447
39352
|
*/
|
|
@@ -38450,6 +39355,10 @@ export type HooksCountData = {
|
|
|
38450
39355
|
* Number of results to return per page.
|
|
38451
39356
|
*/
|
|
38452
39357
|
page_size?: number;
|
|
39358
|
+
/**
|
|
39359
|
+
* Filter by author name, username and email
|
|
39360
|
+
*/
|
|
39361
|
+
query?: string;
|
|
38453
39362
|
};
|
|
38454
39363
|
url: '/api/hooks/';
|
|
38455
39364
|
};
|
|
@@ -39807,10 +40716,6 @@ export type KeysListData = {
|
|
|
39807
40716
|
* User UUID
|
|
39808
40717
|
*/
|
|
39809
40718
|
user_uuid?: string;
|
|
39810
|
-
/**
|
|
39811
|
-
* UUID
|
|
39812
|
-
*/
|
|
39813
|
-
uuid?: string;
|
|
39814
40719
|
};
|
|
39815
40720
|
url: '/api/keys/';
|
|
39816
40721
|
};
|
|
@@ -39868,10 +40773,6 @@ export type KeysCountData = {
|
|
|
39868
40773
|
* User UUID
|
|
39869
40774
|
*/
|
|
39870
40775
|
user_uuid?: string;
|
|
39871
|
-
/**
|
|
39872
|
-
* UUID
|
|
39873
|
-
*/
|
|
39874
|
-
uuid?: string;
|
|
39875
40776
|
};
|
|
39876
40777
|
url: '/api/keys/';
|
|
39877
40778
|
};
|
|
@@ -39976,10 +40877,6 @@ export type KeysHistoryListData = {
|
|
|
39976
40877
|
* User UUID
|
|
39977
40878
|
*/
|
|
39978
40879
|
user_uuid?: string;
|
|
39979
|
-
/**
|
|
39980
|
-
* UUID
|
|
39981
|
-
*/
|
|
39982
|
-
uuid?: string;
|
|
39983
40880
|
};
|
|
39984
40881
|
url: '/api/keys/{uuid}/history/';
|
|
39985
40882
|
};
|
|
@@ -44316,6 +45213,10 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
44316
45213
|
*/
|
|
44317
45214
|
o?: Array<OfferingUserOEnum>;
|
|
44318
45215
|
offering?: string;
|
|
45216
|
+
/**
|
|
45217
|
+
* Offering has active Terms of Service
|
|
45218
|
+
*/
|
|
45219
|
+
offering_has_active_tos?: boolean;
|
|
44319
45220
|
/**
|
|
44320
45221
|
* Multiple values may be separated by commas.
|
|
44321
45222
|
*/
|
|
@@ -44401,6 +45302,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
44401
45302
|
*/
|
|
44402
45303
|
o?: Array<OfferingUserOEnum>;
|
|
44403
45304
|
offering?: string;
|
|
45305
|
+
/**
|
|
45306
|
+
* Offering has active Terms of Service
|
|
45307
|
+
*/
|
|
45308
|
+
offering_has_active_tos?: boolean;
|
|
44404
45309
|
/**
|
|
44405
45310
|
* Multiple values may be separated by commas.
|
|
44406
45311
|
*/
|
|
@@ -50208,7 +51113,12 @@ export type MarketplaceProviderResourcesTeamListData = {
|
|
|
50208
51113
|
path: {
|
|
50209
51114
|
uuid: string;
|
|
50210
51115
|
};
|
|
50211
|
-
query?:
|
|
51116
|
+
query?: {
|
|
51117
|
+
/**
|
|
51118
|
+
* When true, return only users who have active consent for this offering.
|
|
51119
|
+
*/
|
|
51120
|
+
has_consent?: boolean;
|
|
51121
|
+
};
|
|
50212
51122
|
url: '/api/marketplace-provider-resources/{uuid}/team/';
|
|
50213
51123
|
};
|
|
50214
51124
|
export type MarketplaceProviderResourcesTeamListResponses = {
|
|
@@ -51884,7 +52794,12 @@ export type MarketplaceResourcesTeamListData = {
|
|
|
51884
52794
|
path: {
|
|
51885
52795
|
uuid: string;
|
|
51886
52796
|
};
|
|
51887
|
-
query?:
|
|
52797
|
+
query?: {
|
|
52798
|
+
/**
|
|
52799
|
+
* When true, return only users who have active consent for this offering.
|
|
52800
|
+
*/
|
|
52801
|
+
has_consent?: boolean;
|
|
52802
|
+
};
|
|
51888
52803
|
url: '/api/marketplace-resources/{uuid}/team/';
|
|
51889
52804
|
};
|
|
51890
52805
|
export type MarketplaceResourcesTeamListResponses = {
|
|
@@ -52845,6 +53760,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52845
53760
|
service_provider_uuid: string;
|
|
52846
53761
|
};
|
|
52847
53762
|
query: {
|
|
53763
|
+
/**
|
|
53764
|
+
* Affiliated organization name
|
|
53765
|
+
*/
|
|
53766
|
+
affiliated_organization_name?: string;
|
|
53767
|
+
/**
|
|
53768
|
+
* Affiliated organization UUID
|
|
53769
|
+
*/
|
|
53770
|
+
affiliated_organization_uuid?: Array<string>;
|
|
52848
53771
|
backend_id?: string;
|
|
52849
53772
|
/**
|
|
52850
53773
|
* Return a list of projects where current user is admin.
|
|
@@ -52887,6 +53810,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52887
53810
|
*/
|
|
52888
53811
|
description?: string;
|
|
52889
53812
|
field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
|
|
53813
|
+
/**
|
|
53814
|
+
* Filter projects that have at least one affiliated organization.
|
|
53815
|
+
*/
|
|
53816
|
+
has_affiliated_organization?: boolean;
|
|
52890
53817
|
/**
|
|
52891
53818
|
* Is removed
|
|
52892
53819
|
*/
|
|
@@ -52929,6 +53856,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52929
53856
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
52930
53857
|
*/
|
|
52931
53858
|
query?: string;
|
|
53859
|
+
/**
|
|
53860
|
+
* Science domain UUID
|
|
53861
|
+
*/
|
|
53862
|
+
science_domain_uuid?: string;
|
|
53863
|
+
/**
|
|
53864
|
+
* Science sub-domain UUID
|
|
53865
|
+
*/
|
|
53866
|
+
science_sub_domain_uuid?: string;
|
|
52932
53867
|
/**
|
|
52933
53868
|
* Slug
|
|
52934
53869
|
*/
|
|
@@ -53067,10 +54002,6 @@ export type MarketplaceServiceProvidersKeysListData = {
|
|
|
53067
54002
|
* User UUID
|
|
53068
54003
|
*/
|
|
53069
54004
|
user_uuid?: string;
|
|
53070
|
-
/**
|
|
53071
|
-
* UUID
|
|
53072
|
-
*/
|
|
53073
|
-
uuid?: string;
|
|
53074
54005
|
};
|
|
53075
54006
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/keys/';
|
|
53076
54007
|
};
|
|
@@ -53383,6 +54314,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53383
54314
|
service_provider_uuid: string;
|
|
53384
54315
|
};
|
|
53385
54316
|
query?: {
|
|
54317
|
+
/**
|
|
54318
|
+
* Affiliated organization name
|
|
54319
|
+
*/
|
|
54320
|
+
affiliated_organization_name?: string;
|
|
54321
|
+
/**
|
|
54322
|
+
* Affiliated organization UUID
|
|
54323
|
+
*/
|
|
54324
|
+
affiliated_organization_uuid?: Array<string>;
|
|
53386
54325
|
backend_id?: string;
|
|
53387
54326
|
/**
|
|
53388
54327
|
* Return a list of projects where current user is admin.
|
|
@@ -53425,6 +54364,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53425
54364
|
*/
|
|
53426
54365
|
description?: string;
|
|
53427
54366
|
field?: Array<ProjectFieldEnum>;
|
|
54367
|
+
/**
|
|
54368
|
+
* Filter projects that have at least one affiliated organization.
|
|
54369
|
+
*/
|
|
54370
|
+
has_affiliated_organization?: boolean;
|
|
53428
54371
|
/**
|
|
53429
54372
|
* Is removed
|
|
53430
54373
|
*/
|
|
@@ -53463,6 +54406,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53463
54406
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
53464
54407
|
*/
|
|
53465
54408
|
query?: string;
|
|
54409
|
+
/**
|
|
54410
|
+
* Science domain UUID
|
|
54411
|
+
*/
|
|
54412
|
+
science_domain_uuid?: string;
|
|
54413
|
+
/**
|
|
54414
|
+
* Science sub-domain UUID
|
|
54415
|
+
*/
|
|
54416
|
+
science_sub_domain_uuid?: string;
|
|
53466
54417
|
/**
|
|
53467
54418
|
* Slug
|
|
53468
54419
|
*/
|
|
@@ -55684,10 +56635,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
|
|
|
55684
56635
|
body?: never;
|
|
55685
56636
|
path?: never;
|
|
55686
56637
|
query?: {
|
|
55687
|
-
/**
|
|
55688
|
-
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55689
|
-
*/
|
|
55690
|
-
limit?: number;
|
|
55691
56638
|
/**
|
|
55692
56639
|
* A page number within the paginated result set.
|
|
55693
56640
|
*/
|
|
@@ -55707,10 +56654,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
|
|
|
55707
56654
|
body?: never;
|
|
55708
56655
|
path?: never;
|
|
55709
56656
|
query?: {
|
|
55710
|
-
/**
|
|
55711
|
-
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55712
|
-
*/
|
|
55713
|
-
limit?: number;
|
|
55714
56657
|
/**
|
|
55715
56658
|
* A page number within the paginated result set.
|
|
55716
56659
|
*/
|
|
@@ -59365,6 +60308,64 @@ export type OnboardingSupportedCountriesRetrieveResponses = {
|
|
|
59365
60308
|
200: SupportedCountriesResponse;
|
|
59366
60309
|
};
|
|
59367
60310
|
export type OnboardingSupportedCountriesRetrieveResponse = OnboardingSupportedCountriesRetrieveResponses[keyof OnboardingSupportedCountriesRetrieveResponses];
|
|
60311
|
+
export type OpenportalAccountingSummaryListData = {
|
|
60312
|
+
body?: never;
|
|
60313
|
+
path?: never;
|
|
60314
|
+
query?: {
|
|
60315
|
+
customer_uuid?: string;
|
|
60316
|
+
is_active?: boolean;
|
|
60317
|
+
/**
|
|
60318
|
+
* A page number within the paginated result set.
|
|
60319
|
+
*/
|
|
60320
|
+
page?: number;
|
|
60321
|
+
/**
|
|
60322
|
+
* Number of results to return per page.
|
|
60323
|
+
*/
|
|
60324
|
+
page_size?: number;
|
|
60325
|
+
project_uuid?: string;
|
|
60326
|
+
};
|
|
60327
|
+
url: '/api/openportal-accounting-summary/';
|
|
60328
|
+
};
|
|
60329
|
+
export type OpenportalAccountingSummaryListResponses = {
|
|
60330
|
+
200: Array<ProjectAccountingSummary>;
|
|
60331
|
+
};
|
|
60332
|
+
export type OpenportalAccountingSummaryListResponse = OpenportalAccountingSummaryListResponses[keyof OpenportalAccountingSummaryListResponses];
|
|
60333
|
+
export type OpenportalAccountingSummaryCountData = {
|
|
60334
|
+
body?: never;
|
|
60335
|
+
path?: never;
|
|
60336
|
+
query?: {
|
|
60337
|
+
customer_uuid?: string;
|
|
60338
|
+
is_active?: boolean;
|
|
60339
|
+
/**
|
|
60340
|
+
* A page number within the paginated result set.
|
|
60341
|
+
*/
|
|
60342
|
+
page?: number;
|
|
60343
|
+
/**
|
|
60344
|
+
* Number of results to return per page.
|
|
60345
|
+
*/
|
|
60346
|
+
page_size?: number;
|
|
60347
|
+
project_uuid?: string;
|
|
60348
|
+
};
|
|
60349
|
+
url: '/api/openportal-accounting-summary/';
|
|
60350
|
+
};
|
|
60351
|
+
export type OpenportalAccountingSummaryCountResponses = {
|
|
60352
|
+
/**
|
|
60353
|
+
* No response body
|
|
60354
|
+
*/
|
|
60355
|
+
200: unknown;
|
|
60356
|
+
};
|
|
60357
|
+
export type OpenportalAccountingSummaryRetrieveData = {
|
|
60358
|
+
body?: never;
|
|
60359
|
+
path: {
|
|
60360
|
+
uuid: string;
|
|
60361
|
+
};
|
|
60362
|
+
query?: never;
|
|
60363
|
+
url: '/api/openportal-accounting-summary/{uuid}/';
|
|
60364
|
+
};
|
|
60365
|
+
export type OpenportalAccountingSummaryRetrieveResponses = {
|
|
60366
|
+
200: ProjectAccountingSummary;
|
|
60367
|
+
};
|
|
60368
|
+
export type OpenportalAccountingSummaryRetrieveResponse = OpenportalAccountingSummaryRetrieveResponses[keyof OpenportalAccountingSummaryRetrieveResponses];
|
|
59368
60369
|
export type OpenportalAllocationUserUsageListData = {
|
|
59369
60370
|
body?: never;
|
|
59370
60371
|
path?: never;
|
|
@@ -59516,10 +60517,6 @@ export type OpenportalAllocationsListData = {
|
|
|
59516
60517
|
*
|
|
59517
60518
|
*/
|
|
59518
60519
|
state?: Array<CoreStates>;
|
|
59519
|
-
/**
|
|
59520
|
-
* UUID
|
|
59521
|
-
*/
|
|
59522
|
-
uuid?: string;
|
|
59523
60520
|
};
|
|
59524
60521
|
url: '/api/openportal-allocations/';
|
|
59525
60522
|
};
|
|
@@ -59610,10 +60607,6 @@ export type OpenportalAllocationsCountData = {
|
|
|
59610
60607
|
*
|
|
59611
60608
|
*/
|
|
59612
60609
|
state?: Array<CoreStates>;
|
|
59613
|
-
/**
|
|
59614
|
-
* UUID
|
|
59615
|
-
*/
|
|
59616
|
-
uuid?: string;
|
|
59617
60610
|
};
|
|
59618
60611
|
url: '/api/openportal-allocations/';
|
|
59619
60612
|
};
|
|
@@ -59815,6 +60808,10 @@ export type OpenportalManagedProjectsListData = {
|
|
|
59815
60808
|
query?: {
|
|
59816
60809
|
identifier?: string;
|
|
59817
60810
|
local_identifier?: string;
|
|
60811
|
+
/**
|
|
60812
|
+
* Which field to use when ordering the results.
|
|
60813
|
+
*/
|
|
60814
|
+
o?: string;
|
|
59818
60815
|
/**
|
|
59819
60816
|
* A page number within the paginated result set.
|
|
59820
60817
|
*/
|
|
@@ -59827,6 +60824,7 @@ export type OpenportalManagedProjectsListData = {
|
|
|
59827
60824
|
project_template?: string;
|
|
59828
60825
|
project_template_uuid?: string;
|
|
59829
60826
|
project_uuid?: string;
|
|
60827
|
+
query?: string;
|
|
59830
60828
|
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
59831
60829
|
};
|
|
59832
60830
|
url: '/api/openportal-managed-projects/';
|
|
@@ -59841,6 +60839,10 @@ export type OpenportalManagedProjectsCountData = {
|
|
|
59841
60839
|
query?: {
|
|
59842
60840
|
identifier?: string;
|
|
59843
60841
|
local_identifier?: string;
|
|
60842
|
+
/**
|
|
60843
|
+
* Which field to use when ordering the results.
|
|
60844
|
+
*/
|
|
60845
|
+
o?: string;
|
|
59844
60846
|
/**
|
|
59845
60847
|
* A page number within the paginated result set.
|
|
59846
60848
|
*/
|
|
@@ -59853,6 +60855,7 @@ export type OpenportalManagedProjectsCountData = {
|
|
|
59853
60855
|
project_template?: string;
|
|
59854
60856
|
project_template_uuid?: string;
|
|
59855
60857
|
project_uuid?: string;
|
|
60858
|
+
query?: string;
|
|
59856
60859
|
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
59857
60860
|
};
|
|
59858
60861
|
url: '/api/openportal-managed-projects/';
|
|
@@ -60009,6 +61012,71 @@ export type OpenportalManagedProjectsRejectResponses = {
|
|
|
60009
61012
|
*/
|
|
60010
61013
|
200: unknown;
|
|
60011
61014
|
};
|
|
61015
|
+
export type OpenportalProjectStorageReportsListData = {
|
|
61016
|
+
body?: never;
|
|
61017
|
+
path?: never;
|
|
61018
|
+
query?: {
|
|
61019
|
+
month?: number;
|
|
61020
|
+
/**
|
|
61021
|
+
* A page number within the paginated result set.
|
|
61022
|
+
*/
|
|
61023
|
+
page?: number;
|
|
61024
|
+
/**
|
|
61025
|
+
* Number of results to return per page.
|
|
61026
|
+
*/
|
|
61027
|
+
page_size?: number;
|
|
61028
|
+
project_identifier?: string;
|
|
61029
|
+
project_uuid?: string;
|
|
61030
|
+
resource?: string;
|
|
61031
|
+
year?: number;
|
|
61032
|
+
};
|
|
61033
|
+
url: '/api/openportal-project-storage-reports/';
|
|
61034
|
+
};
|
|
61035
|
+
export type OpenportalProjectStorageReportsListResponses = {
|
|
61036
|
+
200: Array<CachedProjectStorageReport>;
|
|
61037
|
+
};
|
|
61038
|
+
export type OpenportalProjectStorageReportsListResponse = OpenportalProjectStorageReportsListResponses[keyof OpenportalProjectStorageReportsListResponses];
|
|
61039
|
+
export type OpenportalProjectStorageReportsCountData = {
|
|
61040
|
+
body?: never;
|
|
61041
|
+
path?: never;
|
|
61042
|
+
query?: {
|
|
61043
|
+
month?: number;
|
|
61044
|
+
/**
|
|
61045
|
+
* A page number within the paginated result set.
|
|
61046
|
+
*/
|
|
61047
|
+
page?: number;
|
|
61048
|
+
/**
|
|
61049
|
+
* Number of results to return per page.
|
|
61050
|
+
*/
|
|
61051
|
+
page_size?: number;
|
|
61052
|
+
project_identifier?: string;
|
|
61053
|
+
project_uuid?: string;
|
|
61054
|
+
resource?: string;
|
|
61055
|
+
year?: number;
|
|
61056
|
+
};
|
|
61057
|
+
url: '/api/openportal-project-storage-reports/';
|
|
61058
|
+
};
|
|
61059
|
+
export type OpenportalProjectStorageReportsCountResponses = {
|
|
61060
|
+
/**
|
|
61061
|
+
* No response body
|
|
61062
|
+
*/
|
|
61063
|
+
200: unknown;
|
|
61064
|
+
};
|
|
61065
|
+
export type OpenportalProjectStorageReportsRetrieveData = {
|
|
61066
|
+
body?: never;
|
|
61067
|
+
path: {
|
|
61068
|
+
/**
|
|
61069
|
+
* A unique integer value identifying this cached project storage report.
|
|
61070
|
+
*/
|
|
61071
|
+
id: number;
|
|
61072
|
+
};
|
|
61073
|
+
query?: never;
|
|
61074
|
+
url: '/api/openportal-project-storage-reports/{id}/';
|
|
61075
|
+
};
|
|
61076
|
+
export type OpenportalProjectStorageReportsRetrieveResponses = {
|
|
61077
|
+
200: CachedProjectStorageReport;
|
|
61078
|
+
};
|
|
61079
|
+
export type OpenportalProjectStorageReportsRetrieveResponse = OpenportalProjectStorageReportsRetrieveResponses[keyof OpenportalProjectStorageReportsRetrieveResponses];
|
|
60012
61080
|
export type OpenportalProjectTemplateListData = {
|
|
60013
61081
|
body?: never;
|
|
60014
61082
|
path?: never;
|
|
@@ -60131,6 +61199,73 @@ export type OpenportalProjectTemplateDeleteDestroyResponses = {
|
|
|
60131
61199
|
204: void;
|
|
60132
61200
|
};
|
|
60133
61201
|
export type OpenportalProjectTemplateDeleteDestroyResponse = OpenportalProjectTemplateDeleteDestroyResponses[keyof OpenportalProjectTemplateDeleteDestroyResponses];
|
|
61202
|
+
export type OpenportalProjectUsageReportsListData = {
|
|
61203
|
+
body?: never;
|
|
61204
|
+
path?: never;
|
|
61205
|
+
query?: {
|
|
61206
|
+
is_complete?: boolean;
|
|
61207
|
+
month?: number;
|
|
61208
|
+
/**
|
|
61209
|
+
* A page number within the paginated result set.
|
|
61210
|
+
*/
|
|
61211
|
+
page?: number;
|
|
61212
|
+
/**
|
|
61213
|
+
* Number of results to return per page.
|
|
61214
|
+
*/
|
|
61215
|
+
page_size?: number;
|
|
61216
|
+
project_identifier?: string;
|
|
61217
|
+
project_uuid?: string;
|
|
61218
|
+
resource?: string;
|
|
61219
|
+
year?: number;
|
|
61220
|
+
};
|
|
61221
|
+
url: '/api/openportal-project-usage-reports/';
|
|
61222
|
+
};
|
|
61223
|
+
export type OpenportalProjectUsageReportsListResponses = {
|
|
61224
|
+
200: Array<CachedProjectUsageReport>;
|
|
61225
|
+
};
|
|
61226
|
+
export type OpenportalProjectUsageReportsListResponse = OpenportalProjectUsageReportsListResponses[keyof OpenportalProjectUsageReportsListResponses];
|
|
61227
|
+
export type OpenportalProjectUsageReportsCountData = {
|
|
61228
|
+
body?: never;
|
|
61229
|
+
path?: never;
|
|
61230
|
+
query?: {
|
|
61231
|
+
is_complete?: boolean;
|
|
61232
|
+
month?: number;
|
|
61233
|
+
/**
|
|
61234
|
+
* A page number within the paginated result set.
|
|
61235
|
+
*/
|
|
61236
|
+
page?: number;
|
|
61237
|
+
/**
|
|
61238
|
+
* Number of results to return per page.
|
|
61239
|
+
*/
|
|
61240
|
+
page_size?: number;
|
|
61241
|
+
project_identifier?: string;
|
|
61242
|
+
project_uuid?: string;
|
|
61243
|
+
resource?: string;
|
|
61244
|
+
year?: number;
|
|
61245
|
+
};
|
|
61246
|
+
url: '/api/openportal-project-usage-reports/';
|
|
61247
|
+
};
|
|
61248
|
+
export type OpenportalProjectUsageReportsCountResponses = {
|
|
61249
|
+
/**
|
|
61250
|
+
* No response body
|
|
61251
|
+
*/
|
|
61252
|
+
200: unknown;
|
|
61253
|
+
};
|
|
61254
|
+
export type OpenportalProjectUsageReportsRetrieveData = {
|
|
61255
|
+
body?: never;
|
|
61256
|
+
path: {
|
|
61257
|
+
/**
|
|
61258
|
+
* A unique integer value identifying this cached project usage report.
|
|
61259
|
+
*/
|
|
61260
|
+
id: number;
|
|
61261
|
+
};
|
|
61262
|
+
query?: never;
|
|
61263
|
+
url: '/api/openportal-project-usage-reports/{id}/';
|
|
61264
|
+
};
|
|
61265
|
+
export type OpenportalProjectUsageReportsRetrieveResponses = {
|
|
61266
|
+
200: CachedProjectUsageReport;
|
|
61267
|
+
};
|
|
61268
|
+
export type OpenportalProjectUsageReportsRetrieveResponse = OpenportalProjectUsageReportsRetrieveResponses[keyof OpenportalProjectUsageReportsRetrieveResponses];
|
|
60134
61269
|
export type OpenportalProjectinfoListData = {
|
|
60135
61270
|
body?: never;
|
|
60136
61271
|
path?: never;
|
|
@@ -60344,10 +61479,6 @@ export type OpenportalRemoteAllocationsListData = {
|
|
|
60344
61479
|
*
|
|
60345
61480
|
*/
|
|
60346
61481
|
state?: Array<CoreStates>;
|
|
60347
|
-
/**
|
|
60348
|
-
* UUID
|
|
60349
|
-
*/
|
|
60350
|
-
uuid?: string;
|
|
60351
61482
|
};
|
|
60352
61483
|
url: '/api/openportal-remote-allocations/';
|
|
60353
61484
|
};
|
|
@@ -60438,10 +61569,6 @@ export type OpenportalRemoteAllocationsCountData = {
|
|
|
60438
61569
|
*
|
|
60439
61570
|
*/
|
|
60440
61571
|
state?: Array<CoreStates>;
|
|
60441
|
-
/**
|
|
60442
|
-
* UUID
|
|
60443
|
-
*/
|
|
60444
|
-
uuid?: string;
|
|
60445
61572
|
};
|
|
60446
61573
|
url: '/api/openportal-remote-allocations/';
|
|
60447
61574
|
};
|
|
@@ -60645,6 +61772,14 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60645
61772
|
* Filter by whether accounting is running.
|
|
60646
61773
|
*/
|
|
60647
61774
|
accounting_is_running?: boolean;
|
|
61775
|
+
/**
|
|
61776
|
+
* Affiliated organization name
|
|
61777
|
+
*/
|
|
61778
|
+
affiliated_organization_name?: string;
|
|
61779
|
+
/**
|
|
61780
|
+
* Affiliated organization UUID
|
|
61781
|
+
*/
|
|
61782
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60648
61783
|
backend_id?: string;
|
|
60649
61784
|
/**
|
|
60650
61785
|
* Return a list of projects where current user is admin.
|
|
@@ -60687,6 +61822,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60687
61822
|
*/
|
|
60688
61823
|
description?: string;
|
|
60689
61824
|
field?: Array<ProjectFieldEnum>;
|
|
61825
|
+
/**
|
|
61826
|
+
* Filter projects that have at least one affiliated organization.
|
|
61827
|
+
*/
|
|
61828
|
+
has_affiliated_organization?: boolean;
|
|
60690
61829
|
/**
|
|
60691
61830
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60692
61831
|
*/
|
|
@@ -60729,6 +61868,14 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60729
61868
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
60730
61869
|
*/
|
|
60731
61870
|
query?: string;
|
|
61871
|
+
/**
|
|
61872
|
+
* Science domain UUID
|
|
61873
|
+
*/
|
|
61874
|
+
science_domain_uuid?: string;
|
|
61875
|
+
/**
|
|
61876
|
+
* Science sub-domain UUID
|
|
61877
|
+
*/
|
|
61878
|
+
science_sub_domain_uuid?: string;
|
|
60732
61879
|
/**
|
|
60733
61880
|
* Slug
|
|
60734
61881
|
*/
|
|
@@ -60756,6 +61903,14 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60756
61903
|
* Filter by whether accounting is running.
|
|
60757
61904
|
*/
|
|
60758
61905
|
accounting_is_running?: boolean;
|
|
61906
|
+
/**
|
|
61907
|
+
* Affiliated organization name
|
|
61908
|
+
*/
|
|
61909
|
+
affiliated_organization_name?: string;
|
|
61910
|
+
/**
|
|
61911
|
+
* Affiliated organization UUID
|
|
61912
|
+
*/
|
|
61913
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60759
61914
|
backend_id?: string;
|
|
60760
61915
|
/**
|
|
60761
61916
|
* Return a list of projects where current user is admin.
|
|
@@ -60797,6 +61952,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60797
61952
|
* Description
|
|
60798
61953
|
*/
|
|
60799
61954
|
description?: string;
|
|
61955
|
+
/**
|
|
61956
|
+
* Filter projects that have at least one affiliated organization.
|
|
61957
|
+
*/
|
|
61958
|
+
has_affiliated_organization?: boolean;
|
|
60800
61959
|
/**
|
|
60801
61960
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60802
61961
|
*/
|
|
@@ -60839,6 +61998,14 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60839
61998
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
60840
61999
|
*/
|
|
60841
62000
|
query?: string;
|
|
62001
|
+
/**
|
|
62002
|
+
* Science domain UUID
|
|
62003
|
+
*/
|
|
62004
|
+
science_domain_uuid?: string;
|
|
62005
|
+
/**
|
|
62006
|
+
* Science sub-domain UUID
|
|
62007
|
+
*/
|
|
62008
|
+
science_sub_domain_uuid?: string;
|
|
60842
62009
|
/**
|
|
60843
62010
|
* Slug
|
|
60844
62011
|
*/
|
|
@@ -61128,6 +62295,20 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
|
|
|
61128
62295
|
200: AnswerSubmitResponse;
|
|
61129
62296
|
};
|
|
61130
62297
|
export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
|
|
62298
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsData = {
|
|
62299
|
+
body?: ProjectAffiliatedOrganizationsUpdateRequest;
|
|
62300
|
+
path: {
|
|
62301
|
+
uuid: string;
|
|
62302
|
+
};
|
|
62303
|
+
query?: never;
|
|
62304
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/';
|
|
62305
|
+
};
|
|
62306
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
62307
|
+
/**
|
|
62308
|
+
* No response body
|
|
62309
|
+
*/
|
|
62310
|
+
200: unknown;
|
|
62311
|
+
};
|
|
61131
62312
|
export type OpenportalUnmanagedProjectsUpdateUserData = {
|
|
61132
62313
|
body: UserRoleUpdateRequest;
|
|
61133
62314
|
path: {
|
|
@@ -61321,6 +62502,66 @@ export type OpenportalUserinfoMeCountResponses = {
|
|
|
61321
62502
|
*/
|
|
61322
62503
|
200: unknown;
|
|
61323
62504
|
};
|
|
62505
|
+
export type OpenportalAccessForEmailListData = {
|
|
62506
|
+
body?: never;
|
|
62507
|
+
path?: never;
|
|
62508
|
+
query: {
|
|
62509
|
+
/**
|
|
62510
|
+
* Free text search query (email, short_name, project_name, or project_id)
|
|
62511
|
+
*/
|
|
62512
|
+
q: string;
|
|
62513
|
+
};
|
|
62514
|
+
url: '/api/openportal/access_for_email/';
|
|
62515
|
+
};
|
|
62516
|
+
export type OpenportalAccessForEmailListResponses = {
|
|
62517
|
+
200: Array<AccessResponse>;
|
|
62518
|
+
};
|
|
62519
|
+
export type OpenportalAccessForEmailListResponse = OpenportalAccessForEmailListResponses[keyof OpenportalAccessForEmailListResponses];
|
|
62520
|
+
export type OpenportalOfferingMappingRetrieveData = {
|
|
62521
|
+
body?: never;
|
|
62522
|
+
path?: never;
|
|
62523
|
+
query?: {
|
|
62524
|
+
/**
|
|
62525
|
+
* OpenPortal destination string (repeatable).
|
|
62526
|
+
*/
|
|
62527
|
+
identifier?: Array<string>;
|
|
62528
|
+
};
|
|
62529
|
+
url: '/api/openportal/offering_mapping/';
|
|
62530
|
+
};
|
|
62531
|
+
export type OpenportalOfferingMappingRetrieveResponses = {
|
|
62532
|
+
200: OfferingMappingResponse;
|
|
62533
|
+
};
|
|
62534
|
+
export type OpenportalOfferingMappingRetrieveResponse = OpenportalOfferingMappingRetrieveResponses[keyof OpenportalOfferingMappingRetrieveResponses];
|
|
62535
|
+
export type OpenportalProjectMappingRetrieveData = {
|
|
62536
|
+
body?: never;
|
|
62537
|
+
path?: never;
|
|
62538
|
+
query?: {
|
|
62539
|
+
/**
|
|
62540
|
+
* OpenPortal ProjectIdentifier string (repeatable).
|
|
62541
|
+
*/
|
|
62542
|
+
identifier?: Array<string>;
|
|
62543
|
+
};
|
|
62544
|
+
url: '/api/openportal/project_mapping/';
|
|
62545
|
+
};
|
|
62546
|
+
export type OpenportalProjectMappingRetrieveResponses = {
|
|
62547
|
+
200: ProjectMappingResponse;
|
|
62548
|
+
};
|
|
62549
|
+
export type OpenportalProjectMappingRetrieveResponse = OpenportalProjectMappingRetrieveResponses[keyof OpenportalProjectMappingRetrieveResponses];
|
|
62550
|
+
export type OpenportalUserMappingRetrieveData = {
|
|
62551
|
+
body?: never;
|
|
62552
|
+
path?: never;
|
|
62553
|
+
query?: {
|
|
62554
|
+
/**
|
|
62555
|
+
* OpenPortal UserIdentifier string or email address (repeatable). All values in a single request must be the same type.
|
|
62556
|
+
*/
|
|
62557
|
+
identifier?: Array<string>;
|
|
62558
|
+
};
|
|
62559
|
+
url: '/api/openportal/user_mapping/';
|
|
62560
|
+
};
|
|
62561
|
+
export type OpenportalUserMappingRetrieveResponses = {
|
|
62562
|
+
200: UserMappingResponse;
|
|
62563
|
+
};
|
|
62564
|
+
export type OpenportalUserMappingRetrieveResponse = OpenportalUserMappingRetrieveResponses[keyof OpenportalUserMappingRetrieveResponses];
|
|
61324
62565
|
export type OpenstackBackupsListData = {
|
|
61325
62566
|
body?: never;
|
|
61326
62567
|
path?: never;
|
|
@@ -61420,10 +62661,6 @@ export type OpenstackBackupsListData = {
|
|
|
61420
62661
|
* Tenant UUID
|
|
61421
62662
|
*/
|
|
61422
62663
|
tenant_uuid?: string;
|
|
61423
|
-
/**
|
|
61424
|
-
* UUID
|
|
61425
|
-
*/
|
|
61426
|
-
uuid?: string;
|
|
61427
62664
|
};
|
|
61428
62665
|
url: '/api/openstack-backups/';
|
|
61429
62666
|
};
|
|
@@ -61529,10 +62766,6 @@ export type OpenstackBackupsCountData = {
|
|
|
61529
62766
|
* Tenant UUID
|
|
61530
62767
|
*/
|
|
61531
62768
|
tenant_uuid?: string;
|
|
61532
|
-
/**
|
|
61533
|
-
* UUID
|
|
61534
|
-
*/
|
|
61535
|
-
uuid?: string;
|
|
61536
62769
|
};
|
|
61537
62770
|
url: '/api/openstack-backups/';
|
|
61538
62771
|
};
|
|
@@ -62019,10 +63252,6 @@ export type OpenstackFloatingIpsListData = {
|
|
|
62019
63252
|
* Tenant UUID
|
|
62020
63253
|
*/
|
|
62021
63254
|
tenant_uuid?: string;
|
|
62022
|
-
/**
|
|
62023
|
-
* UUID
|
|
62024
|
-
*/
|
|
62025
|
-
uuid?: string;
|
|
62026
63255
|
};
|
|
62027
63256
|
url: '/api/openstack-floating-ips/';
|
|
62028
63257
|
};
|
|
@@ -62126,10 +63355,6 @@ export type OpenstackFloatingIpsCountData = {
|
|
|
62126
63355
|
* Tenant UUID
|
|
62127
63356
|
*/
|
|
62128
63357
|
tenant_uuid?: string;
|
|
62129
|
-
/**
|
|
62130
|
-
* UUID
|
|
62131
|
-
*/
|
|
62132
|
-
uuid?: string;
|
|
62133
63358
|
};
|
|
62134
63359
|
url: '/api/openstack-floating-ips/';
|
|
62135
63360
|
};
|
|
@@ -62443,6 +63668,118 @@ export type OpenstackHealthMonitorsPullResponses = {
|
|
|
62443
63668
|
*/
|
|
62444
63669
|
202: unknown;
|
|
62445
63670
|
};
|
|
63671
|
+
export type OpenstackHypervisorsListData = {
|
|
63672
|
+
body?: never;
|
|
63673
|
+
path?: never;
|
|
63674
|
+
query?: {
|
|
63675
|
+
hypervisor_type?: string;
|
|
63676
|
+
/**
|
|
63677
|
+
* Name
|
|
63678
|
+
*/
|
|
63679
|
+
name?: string;
|
|
63680
|
+
/**
|
|
63681
|
+
* Name (exact)
|
|
63682
|
+
*/
|
|
63683
|
+
name_exact?: string;
|
|
63684
|
+
/**
|
|
63685
|
+
* A page number within the paginated result set.
|
|
63686
|
+
*/
|
|
63687
|
+
page?: number;
|
|
63688
|
+
/**
|
|
63689
|
+
* Number of results to return per page.
|
|
63690
|
+
*/
|
|
63691
|
+
page_size?: number;
|
|
63692
|
+
/**
|
|
63693
|
+
* Settings URL
|
|
63694
|
+
*/
|
|
63695
|
+
settings?: string;
|
|
63696
|
+
/**
|
|
63697
|
+
* Settings UUID
|
|
63698
|
+
*/
|
|
63699
|
+
settings_uuid?: string;
|
|
63700
|
+
state?: string;
|
|
63701
|
+
status?: string;
|
|
63702
|
+
};
|
|
63703
|
+
url: '/api/openstack-hypervisors/';
|
|
63704
|
+
};
|
|
63705
|
+
export type OpenstackHypervisorsListResponses = {
|
|
63706
|
+
200: Array<Hypervisor>;
|
|
63707
|
+
};
|
|
63708
|
+
export type OpenstackHypervisorsListResponse = OpenstackHypervisorsListResponses[keyof OpenstackHypervisorsListResponses];
|
|
63709
|
+
export type OpenstackHypervisorsCountData = {
|
|
63710
|
+
body?: never;
|
|
63711
|
+
path?: never;
|
|
63712
|
+
query?: {
|
|
63713
|
+
hypervisor_type?: string;
|
|
63714
|
+
/**
|
|
63715
|
+
* Name
|
|
63716
|
+
*/
|
|
63717
|
+
name?: string;
|
|
63718
|
+
/**
|
|
63719
|
+
* Name (exact)
|
|
63720
|
+
*/
|
|
63721
|
+
name_exact?: string;
|
|
63722
|
+
/**
|
|
63723
|
+
* A page number within the paginated result set.
|
|
63724
|
+
*/
|
|
63725
|
+
page?: number;
|
|
63726
|
+
/**
|
|
63727
|
+
* Number of results to return per page.
|
|
63728
|
+
*/
|
|
63729
|
+
page_size?: number;
|
|
63730
|
+
/**
|
|
63731
|
+
* Settings URL
|
|
63732
|
+
*/
|
|
63733
|
+
settings?: string;
|
|
63734
|
+
/**
|
|
63735
|
+
* Settings UUID
|
|
63736
|
+
*/
|
|
63737
|
+
settings_uuid?: string;
|
|
63738
|
+
state?: string;
|
|
63739
|
+
status?: string;
|
|
63740
|
+
};
|
|
63741
|
+
url: '/api/openstack-hypervisors/';
|
|
63742
|
+
};
|
|
63743
|
+
export type OpenstackHypervisorsCountResponses = {
|
|
63744
|
+
/**
|
|
63745
|
+
* No response body
|
|
63746
|
+
*/
|
|
63747
|
+
200: unknown;
|
|
63748
|
+
};
|
|
63749
|
+
export type OpenstackHypervisorsRetrieveData = {
|
|
63750
|
+
body?: never;
|
|
63751
|
+
path: {
|
|
63752
|
+
uuid: string;
|
|
63753
|
+
};
|
|
63754
|
+
query?: never;
|
|
63755
|
+
url: '/api/openstack-hypervisors/{uuid}/';
|
|
63756
|
+
};
|
|
63757
|
+
export type OpenstackHypervisorsRetrieveResponses = {
|
|
63758
|
+
200: Hypervisor;
|
|
63759
|
+
};
|
|
63760
|
+
export type OpenstackHypervisorsRetrieveResponse = OpenstackHypervisorsRetrieveResponses[keyof OpenstackHypervisorsRetrieveResponses];
|
|
63761
|
+
export type OpenstackHypervisorsSummaryRetrieveData = {
|
|
63762
|
+
body?: never;
|
|
63763
|
+
path?: never;
|
|
63764
|
+
query?: never;
|
|
63765
|
+
url: '/api/openstack-hypervisors/summary/';
|
|
63766
|
+
};
|
|
63767
|
+
export type OpenstackHypervisorsSummaryRetrieveResponses = {
|
|
63768
|
+
200: HypervisorSummary;
|
|
63769
|
+
};
|
|
63770
|
+
export type OpenstackHypervisorsSummaryRetrieveResponse = OpenstackHypervisorsSummaryRetrieveResponses[keyof OpenstackHypervisorsSummaryRetrieveResponses];
|
|
63771
|
+
export type OpenstackHypervisorsSummaryCountData = {
|
|
63772
|
+
body?: never;
|
|
63773
|
+
path?: never;
|
|
63774
|
+
query?: never;
|
|
63775
|
+
url: '/api/openstack-hypervisors/summary/';
|
|
63776
|
+
};
|
|
63777
|
+
export type OpenstackHypervisorsSummaryCountResponses = {
|
|
63778
|
+
/**
|
|
63779
|
+
* No response body
|
|
63780
|
+
*/
|
|
63781
|
+
200: unknown;
|
|
63782
|
+
};
|
|
62446
63783
|
export type OpenstackImagesListData = {
|
|
62447
63784
|
body?: never;
|
|
62448
63785
|
path?: never;
|
|
@@ -62789,10 +64126,6 @@ export type OpenstackInstancesListData = {
|
|
|
62789
64126
|
* Tenant UUID
|
|
62790
64127
|
*/
|
|
62791
64128
|
tenant_uuid?: string;
|
|
62792
|
-
/**
|
|
62793
|
-
* UUID
|
|
62794
|
-
*/
|
|
62795
|
-
uuid?: string;
|
|
62796
64129
|
};
|
|
62797
64130
|
url: '/api/openstack-instances/';
|
|
62798
64131
|
};
|
|
@@ -62907,10 +64240,6 @@ export type OpenstackInstancesCountData = {
|
|
|
62907
64240
|
* Tenant UUID
|
|
62908
64241
|
*/
|
|
62909
64242
|
tenant_uuid?: string;
|
|
62910
|
-
/**
|
|
62911
|
-
* UUID
|
|
62912
|
-
*/
|
|
62913
|
-
uuid?: string;
|
|
62914
64243
|
};
|
|
62915
64244
|
url: '/api/openstack-instances/';
|
|
62916
64245
|
};
|
|
@@ -63670,10 +64999,6 @@ export type OpenstackMarketplaceTenantsListData = {
|
|
|
63670
64999
|
*
|
|
63671
65000
|
*/
|
|
63672
65001
|
state?: Array<CoreStates>;
|
|
63673
|
-
/**
|
|
63674
|
-
* UUID
|
|
63675
|
-
*/
|
|
63676
|
-
uuid?: string;
|
|
63677
65002
|
};
|
|
63678
65003
|
url: '/api/openstack-marketplace-tenants/';
|
|
63679
65004
|
};
|
|
@@ -63763,10 +65088,6 @@ export type OpenstackMarketplaceTenantsCountData = {
|
|
|
63763
65088
|
*
|
|
63764
65089
|
*/
|
|
63765
65090
|
state?: Array<CoreStates>;
|
|
63766
|
-
/**
|
|
63767
|
-
* UUID
|
|
63768
|
-
*/
|
|
63769
|
-
uuid?: string;
|
|
63770
65091
|
};
|
|
63771
65092
|
url: '/api/openstack-marketplace-tenants/';
|
|
63772
65093
|
};
|
|
@@ -64180,121 +65501,113 @@ export type OpenstackNetworksListData = {
|
|
|
64180
65501
|
*/
|
|
64181
65502
|
tenant_uuid?: string;
|
|
64182
65503
|
type?: string;
|
|
65504
|
+
};
|
|
65505
|
+
url: '/api/openstack-networks/';
|
|
65506
|
+
};
|
|
65507
|
+
export type OpenstackNetworksListResponses = {
|
|
65508
|
+
200: Array<OpenStackNetwork>;
|
|
65509
|
+
};
|
|
65510
|
+
export type OpenstackNetworksListResponse = OpenstackNetworksListResponses[keyof OpenstackNetworksListResponses];
|
|
65511
|
+
export type OpenstackNetworksCountData = {
|
|
65512
|
+
body?: never;
|
|
65513
|
+
path?: never;
|
|
65514
|
+
query?: {
|
|
64183
65515
|
/**
|
|
64184
|
-
*
|
|
64185
|
-
*/
|
|
64186
|
-
uuid?: string;
|
|
64187
|
-
};
|
|
64188
|
-
url: '/api/openstack-networks/';
|
|
64189
|
-
};
|
|
64190
|
-
export type OpenstackNetworksListResponses = {
|
|
64191
|
-
200: Array<OpenStackNetwork>;
|
|
64192
|
-
};
|
|
64193
|
-
export type OpenstackNetworksListResponse = OpenstackNetworksListResponses[keyof OpenstackNetworksListResponses];
|
|
64194
|
-
export type OpenstackNetworksCountData = {
|
|
64195
|
-
body?: never;
|
|
64196
|
-
path?: never;
|
|
64197
|
-
query?: {
|
|
64198
|
-
/**
|
|
64199
|
-
* Backend ID
|
|
64200
|
-
*/
|
|
64201
|
-
backend_id?: string;
|
|
64202
|
-
/**
|
|
64203
|
-
* Can manage
|
|
64204
|
-
*/
|
|
64205
|
-
can_manage?: boolean;
|
|
64206
|
-
/**
|
|
64207
|
-
* Customer UUID
|
|
64208
|
-
*/
|
|
64209
|
-
customer?: string;
|
|
64210
|
-
/**
|
|
64211
|
-
* Customer abbreviation
|
|
64212
|
-
*/
|
|
64213
|
-
customer_abbreviation?: string;
|
|
64214
|
-
/**
|
|
64215
|
-
* Customer name
|
|
64216
|
-
*/
|
|
64217
|
-
customer_name?: string;
|
|
64218
|
-
/**
|
|
64219
|
-
* Customer native name
|
|
64220
|
-
*/
|
|
64221
|
-
customer_native_name?: string;
|
|
64222
|
-
/**
|
|
64223
|
-
* Customer UUID
|
|
64224
|
-
*/
|
|
64225
|
-
customer_uuid?: string;
|
|
64226
|
-
/**
|
|
64227
|
-
* Description
|
|
64228
|
-
*/
|
|
64229
|
-
description?: string;
|
|
64230
|
-
/**
|
|
64231
|
-
* Direct only
|
|
64232
|
-
*/
|
|
64233
|
-
direct_only?: boolean;
|
|
64234
|
-
/**
|
|
64235
|
-
* External IP
|
|
64236
|
-
*/
|
|
64237
|
-
external_ip?: string;
|
|
64238
|
-
is_external?: boolean;
|
|
64239
|
-
/**
|
|
64240
|
-
* Name
|
|
64241
|
-
*/
|
|
64242
|
-
name?: string;
|
|
64243
|
-
/**
|
|
64244
|
-
* Name (exact)
|
|
64245
|
-
*/
|
|
64246
|
-
name_exact?: string;
|
|
64247
|
-
/**
|
|
64248
|
-
* A page number within the paginated result set.
|
|
64249
|
-
*/
|
|
64250
|
-
page?: number;
|
|
64251
|
-
/**
|
|
64252
|
-
* Number of results to return per page.
|
|
64253
|
-
*/
|
|
64254
|
-
page_size?: number;
|
|
64255
|
-
/**
|
|
64256
|
-
* Project UUID
|
|
64257
|
-
*/
|
|
64258
|
-
project?: string;
|
|
64259
|
-
/**
|
|
64260
|
-
* Project name
|
|
64261
|
-
*/
|
|
64262
|
-
project_name?: string;
|
|
64263
|
-
/**
|
|
64264
|
-
* Project UUID
|
|
64265
|
-
*/
|
|
64266
|
-
project_uuid?: string;
|
|
64267
|
-
/**
|
|
64268
|
-
* RBAC only
|
|
64269
|
-
*/
|
|
64270
|
-
rbac_only?: boolean;
|
|
64271
|
-
/**
|
|
64272
|
-
* Service settings name
|
|
64273
|
-
*/
|
|
64274
|
-
service_settings_name?: string;
|
|
64275
|
-
/**
|
|
64276
|
-
* Service settings UUID
|
|
64277
|
-
*/
|
|
64278
|
-
service_settings_uuid?: string;
|
|
64279
|
-
/**
|
|
64280
|
-
* State
|
|
64281
|
-
*
|
|
64282
|
-
*
|
|
64283
|
-
*/
|
|
64284
|
-
state?: Array<CoreStates>;
|
|
64285
|
-
/**
|
|
64286
|
-
* Tenant URL
|
|
64287
|
-
*/
|
|
64288
|
-
tenant?: string;
|
|
64289
|
-
/**
|
|
64290
|
-
* Tenant UUID
|
|
64291
|
-
*/
|
|
64292
|
-
tenant_uuid?: string;
|
|
64293
|
-
type?: string;
|
|
64294
|
-
/**
|
|
64295
|
-
* UUID
|
|
65516
|
+
* Backend ID
|
|
64296
65517
|
*/
|
|
64297
|
-
|
|
65518
|
+
backend_id?: string;
|
|
65519
|
+
/**
|
|
65520
|
+
* Can manage
|
|
65521
|
+
*/
|
|
65522
|
+
can_manage?: boolean;
|
|
65523
|
+
/**
|
|
65524
|
+
* Customer UUID
|
|
65525
|
+
*/
|
|
65526
|
+
customer?: string;
|
|
65527
|
+
/**
|
|
65528
|
+
* Customer abbreviation
|
|
65529
|
+
*/
|
|
65530
|
+
customer_abbreviation?: string;
|
|
65531
|
+
/**
|
|
65532
|
+
* Customer name
|
|
65533
|
+
*/
|
|
65534
|
+
customer_name?: string;
|
|
65535
|
+
/**
|
|
65536
|
+
* Customer native name
|
|
65537
|
+
*/
|
|
65538
|
+
customer_native_name?: string;
|
|
65539
|
+
/**
|
|
65540
|
+
* Customer UUID
|
|
65541
|
+
*/
|
|
65542
|
+
customer_uuid?: string;
|
|
65543
|
+
/**
|
|
65544
|
+
* Description
|
|
65545
|
+
*/
|
|
65546
|
+
description?: string;
|
|
65547
|
+
/**
|
|
65548
|
+
* Direct only
|
|
65549
|
+
*/
|
|
65550
|
+
direct_only?: boolean;
|
|
65551
|
+
/**
|
|
65552
|
+
* External IP
|
|
65553
|
+
*/
|
|
65554
|
+
external_ip?: string;
|
|
65555
|
+
is_external?: boolean;
|
|
65556
|
+
/**
|
|
65557
|
+
* Name
|
|
65558
|
+
*/
|
|
65559
|
+
name?: string;
|
|
65560
|
+
/**
|
|
65561
|
+
* Name (exact)
|
|
65562
|
+
*/
|
|
65563
|
+
name_exact?: string;
|
|
65564
|
+
/**
|
|
65565
|
+
* A page number within the paginated result set.
|
|
65566
|
+
*/
|
|
65567
|
+
page?: number;
|
|
65568
|
+
/**
|
|
65569
|
+
* Number of results to return per page.
|
|
65570
|
+
*/
|
|
65571
|
+
page_size?: number;
|
|
65572
|
+
/**
|
|
65573
|
+
* Project UUID
|
|
65574
|
+
*/
|
|
65575
|
+
project?: string;
|
|
65576
|
+
/**
|
|
65577
|
+
* Project name
|
|
65578
|
+
*/
|
|
65579
|
+
project_name?: string;
|
|
65580
|
+
/**
|
|
65581
|
+
* Project UUID
|
|
65582
|
+
*/
|
|
65583
|
+
project_uuid?: string;
|
|
65584
|
+
/**
|
|
65585
|
+
* RBAC only
|
|
65586
|
+
*/
|
|
65587
|
+
rbac_only?: boolean;
|
|
65588
|
+
/**
|
|
65589
|
+
* Service settings name
|
|
65590
|
+
*/
|
|
65591
|
+
service_settings_name?: string;
|
|
65592
|
+
/**
|
|
65593
|
+
* Service settings UUID
|
|
65594
|
+
*/
|
|
65595
|
+
service_settings_uuid?: string;
|
|
65596
|
+
/**
|
|
65597
|
+
* State
|
|
65598
|
+
*
|
|
65599
|
+
*
|
|
65600
|
+
*/
|
|
65601
|
+
state?: Array<CoreStates>;
|
|
65602
|
+
/**
|
|
65603
|
+
* Tenant URL
|
|
65604
|
+
*/
|
|
65605
|
+
tenant?: string;
|
|
65606
|
+
/**
|
|
65607
|
+
* Tenant UUID
|
|
65608
|
+
*/
|
|
65609
|
+
tenant_uuid?: string;
|
|
65610
|
+
type?: string;
|
|
64298
65611
|
};
|
|
64299
65612
|
url: '/api/openstack-networks/';
|
|
64300
65613
|
};
|
|
@@ -65300,6 +66613,63 @@ export type OpenstackRoutersAddRouterInterfaceResponses = {
|
|
|
65300
66613
|
*/
|
|
65301
66614
|
200: unknown;
|
|
65302
66615
|
};
|
|
66616
|
+
export type OpenstackRoutersAvailableExternalNetworksListData = {
|
|
66617
|
+
body?: never;
|
|
66618
|
+
path: {
|
|
66619
|
+
uuid: string;
|
|
66620
|
+
};
|
|
66621
|
+
query?: {
|
|
66622
|
+
/**
|
|
66623
|
+
* Name
|
|
66624
|
+
*/
|
|
66625
|
+
name?: string;
|
|
66626
|
+
/**
|
|
66627
|
+
* Name (exact)
|
|
66628
|
+
*/
|
|
66629
|
+
name_exact?: string;
|
|
66630
|
+
/**
|
|
66631
|
+
* A page number within the paginated result set.
|
|
66632
|
+
*/
|
|
66633
|
+
page?: number;
|
|
66634
|
+
/**
|
|
66635
|
+
* Number of results to return per page.
|
|
66636
|
+
*/
|
|
66637
|
+
page_size?: number;
|
|
66638
|
+
/**
|
|
66639
|
+
* State
|
|
66640
|
+
*
|
|
66641
|
+
*
|
|
66642
|
+
*/
|
|
66643
|
+
state?: Array<CoreStates>;
|
|
66644
|
+
/**
|
|
66645
|
+
* Tenant URL
|
|
66646
|
+
*/
|
|
66647
|
+
tenant?: string;
|
|
66648
|
+
/**
|
|
66649
|
+
* Tenant UUID
|
|
66650
|
+
*/
|
|
66651
|
+
tenant_uuid?: string;
|
|
66652
|
+
};
|
|
66653
|
+
url: '/api/openstack-routers/{uuid}/available_external_networks/';
|
|
66654
|
+
};
|
|
66655
|
+
export type OpenstackRoutersAvailableExternalNetworksListResponses = {
|
|
66656
|
+
200: Array<AvailableExternalNetwork>;
|
|
66657
|
+
};
|
|
66658
|
+
export type OpenstackRoutersAvailableExternalNetworksListResponse = OpenstackRoutersAvailableExternalNetworksListResponses[keyof OpenstackRoutersAvailableExternalNetworksListResponses];
|
|
66659
|
+
export type OpenstackRoutersRemoveExternalGatewayData = {
|
|
66660
|
+
body?: never;
|
|
66661
|
+
path: {
|
|
66662
|
+
uuid: string;
|
|
66663
|
+
};
|
|
66664
|
+
query?: never;
|
|
66665
|
+
url: '/api/openstack-routers/{uuid}/remove_external_gateway/';
|
|
66666
|
+
};
|
|
66667
|
+
export type OpenstackRoutersRemoveExternalGatewayResponses = {
|
|
66668
|
+
/**
|
|
66669
|
+
* No response body
|
|
66670
|
+
*/
|
|
66671
|
+
202: unknown;
|
|
66672
|
+
};
|
|
65303
66673
|
export type OpenstackRoutersRemoveRouterInterfaceData = {
|
|
65304
66674
|
body?: OpenStackRouterInterfaceRequest;
|
|
65305
66675
|
path: {
|
|
@@ -65326,6 +66696,20 @@ export type OpenstackRoutersSetErredResponses = {
|
|
|
65326
66696
|
200: RouterSetErredResponse;
|
|
65327
66697
|
};
|
|
65328
66698
|
export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
|
|
66699
|
+
export type OpenstackRoutersSetExternalGatewayData = {
|
|
66700
|
+
body: SetExternalGatewayRequest;
|
|
66701
|
+
path: {
|
|
66702
|
+
uuid: string;
|
|
66703
|
+
};
|
|
66704
|
+
query?: never;
|
|
66705
|
+
url: '/api/openstack-routers/{uuid}/set_external_gateway/';
|
|
66706
|
+
};
|
|
66707
|
+
export type OpenstackRoutersSetExternalGatewayResponses = {
|
|
66708
|
+
/**
|
|
66709
|
+
* No response body
|
|
66710
|
+
*/
|
|
66711
|
+
202: unknown;
|
|
66712
|
+
};
|
|
65329
66713
|
export type OpenstackRoutersSetOkData = {
|
|
65330
66714
|
body?: never;
|
|
65331
66715
|
path: {
|
|
@@ -65445,10 +66829,6 @@ export type OpenstackSecurityGroupsListData = {
|
|
|
65445
66829
|
* Tenant UUID
|
|
65446
66830
|
*/
|
|
65447
66831
|
tenant_uuid?: string;
|
|
65448
|
-
/**
|
|
65449
|
-
* UUID
|
|
65450
|
-
*/
|
|
65451
|
-
uuid?: string;
|
|
65452
66832
|
};
|
|
65453
66833
|
url: '/api/openstack-security-groups/';
|
|
65454
66834
|
};
|
|
@@ -65550,10 +66930,6 @@ export type OpenstackSecurityGroupsCountData = {
|
|
|
65550
66930
|
* Tenant UUID
|
|
65551
66931
|
*/
|
|
65552
66932
|
tenant_uuid?: string;
|
|
65553
|
-
/**
|
|
65554
|
-
* UUID
|
|
65555
|
-
*/
|
|
65556
|
-
uuid?: string;
|
|
65557
66933
|
};
|
|
65558
66934
|
url: '/api/openstack-security-groups/';
|
|
65559
66935
|
};
|
|
@@ -65776,10 +67152,6 @@ export type OpenstackServerGroupsListData = {
|
|
|
65776
67152
|
* Tenant UUID
|
|
65777
67153
|
*/
|
|
65778
67154
|
tenant_uuid?: string;
|
|
65779
|
-
/**
|
|
65780
|
-
* UUID
|
|
65781
|
-
*/
|
|
65782
|
-
uuid?: string;
|
|
65783
67155
|
};
|
|
65784
67156
|
url: '/api/openstack-server-groups/';
|
|
65785
67157
|
};
|
|
@@ -65877,10 +67249,6 @@ export type OpenstackServerGroupsCountData = {
|
|
|
65877
67249
|
* Tenant UUID
|
|
65878
67250
|
*/
|
|
65879
67251
|
tenant_uuid?: string;
|
|
65880
|
-
/**
|
|
65881
|
-
* UUID
|
|
65882
|
-
*/
|
|
65883
|
-
uuid?: string;
|
|
65884
67252
|
};
|
|
65885
67253
|
url: '/api/openstack-server-groups/';
|
|
65886
67254
|
};
|
|
@@ -66092,10 +67460,6 @@ export type OpenstackSnapshotsListData = {
|
|
|
66092
67460
|
* Tenant UUID
|
|
66093
67461
|
*/
|
|
66094
67462
|
tenant_uuid?: string;
|
|
66095
|
-
/**
|
|
66096
|
-
* UUID
|
|
66097
|
-
*/
|
|
66098
|
-
uuid?: string;
|
|
66099
67463
|
};
|
|
66100
67464
|
url: '/api/openstack-snapshots/';
|
|
66101
67465
|
};
|
|
@@ -66210,10 +67574,6 @@ export type OpenstackSnapshotsCountData = {
|
|
|
66210
67574
|
* Tenant UUID
|
|
66211
67575
|
*/
|
|
66212
67576
|
tenant_uuid?: string;
|
|
66213
|
-
/**
|
|
66214
|
-
* UUID
|
|
66215
|
-
*/
|
|
66216
|
-
uuid?: string;
|
|
66217
67577
|
};
|
|
66218
67578
|
url: '/api/openstack-snapshots/';
|
|
66219
67579
|
};
|
|
@@ -66473,10 +67833,6 @@ export type OpenstackSubnetsListData = {
|
|
|
66473
67833
|
* Tenant UUID
|
|
66474
67834
|
*/
|
|
66475
67835
|
tenant_uuid?: string;
|
|
66476
|
-
/**
|
|
66477
|
-
* UUID
|
|
66478
|
-
*/
|
|
66479
|
-
uuid?: string;
|
|
66480
67836
|
};
|
|
66481
67837
|
url: '/api/openstack-subnets/';
|
|
66482
67838
|
};
|
|
@@ -66592,10 +67948,6 @@ export type OpenstackSubnetsCountData = {
|
|
|
66592
67948
|
* Tenant UUID
|
|
66593
67949
|
*/
|
|
66594
67950
|
tenant_uuid?: string;
|
|
66595
|
-
/**
|
|
66596
|
-
* UUID
|
|
66597
|
-
*/
|
|
66598
|
-
uuid?: string;
|
|
66599
67951
|
};
|
|
66600
67952
|
url: '/api/openstack-subnets/';
|
|
66601
67953
|
};
|
|
@@ -66824,10 +68176,6 @@ export type OpenstackTenantsListData = {
|
|
|
66824
68176
|
*
|
|
66825
68177
|
*/
|
|
66826
68178
|
state?: Array<CoreStates>;
|
|
66827
|
-
/**
|
|
66828
|
-
* UUID
|
|
66829
|
-
*/
|
|
66830
|
-
uuid?: string;
|
|
66831
68179
|
};
|
|
66832
68180
|
url: '/api/openstack-tenants/';
|
|
66833
68181
|
};
|
|
@@ -66917,10 +68265,6 @@ export type OpenstackTenantsCountData = {
|
|
|
66917
68265
|
*
|
|
66918
68266
|
*/
|
|
66919
68267
|
state?: Array<CoreStates>;
|
|
66920
|
-
/**
|
|
66921
|
-
* UUID
|
|
66922
|
-
*/
|
|
66923
|
-
uuid?: string;
|
|
66924
68268
|
};
|
|
66925
68269
|
url: '/api/openstack-tenants/';
|
|
66926
68270
|
};
|
|
@@ -67052,10 +68396,6 @@ export type OpenstackTenantsBackendInstancesListData = {
|
|
|
67052
68396
|
*
|
|
67053
68397
|
*/
|
|
67054
68398
|
state?: Array<CoreStates>;
|
|
67055
|
-
/**
|
|
67056
|
-
* UUID
|
|
67057
|
-
*/
|
|
67058
|
-
uuid?: string;
|
|
67059
68399
|
};
|
|
67060
68400
|
url: '/api/openstack-tenants/{uuid}/backend_instances/';
|
|
67061
68401
|
};
|
|
@@ -67147,10 +68487,6 @@ export type OpenstackTenantsBackendVolumesListData = {
|
|
|
67147
68487
|
*
|
|
67148
68488
|
*/
|
|
67149
68489
|
state?: Array<CoreStates>;
|
|
67150
|
-
/**
|
|
67151
|
-
* UUID
|
|
67152
|
-
*/
|
|
67153
|
-
uuid?: string;
|
|
67154
68490
|
};
|
|
67155
68491
|
url: '/api/openstack-tenants/{uuid}/backend_volumes/';
|
|
67156
68492
|
};
|
|
@@ -67699,10 +69035,6 @@ export type OpenstackVolumesListData = {
|
|
|
67699
69035
|
* Tenant UUID
|
|
67700
69036
|
*/
|
|
67701
69037
|
tenant_uuid?: string;
|
|
67702
|
-
/**
|
|
67703
|
-
* UUID
|
|
67704
|
-
*/
|
|
67705
|
-
uuid?: string;
|
|
67706
69038
|
};
|
|
67707
69039
|
url: '/api/openstack-volumes/';
|
|
67708
69040
|
};
|
|
@@ -67825,10 +69157,6 @@ export type OpenstackVolumesCountData = {
|
|
|
67825
69157
|
* Tenant UUID
|
|
67826
69158
|
*/
|
|
67827
69159
|
tenant_uuid?: string;
|
|
67828
|
-
/**
|
|
67829
|
-
* UUID
|
|
67830
|
-
*/
|
|
67831
|
-
uuid?: string;
|
|
67832
69160
|
};
|
|
67833
69161
|
url: '/api/openstack-volumes/';
|
|
67834
69162
|
};
|
|
@@ -69251,6 +70579,14 @@ export type ProjectsListData = {
|
|
|
69251
70579
|
* Filter by whether accounting is running.
|
|
69252
70580
|
*/
|
|
69253
70581
|
accounting_is_running?: boolean;
|
|
70582
|
+
/**
|
|
70583
|
+
* Affiliated organization name
|
|
70584
|
+
*/
|
|
70585
|
+
affiliated_organization_name?: string;
|
|
70586
|
+
/**
|
|
70587
|
+
* Affiliated organization UUID
|
|
70588
|
+
*/
|
|
70589
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69254
70590
|
backend_id?: string;
|
|
69255
70591
|
/**
|
|
69256
70592
|
* Return a list of projects where current user is admin.
|
|
@@ -69293,6 +70629,10 @@ export type ProjectsListData = {
|
|
|
69293
70629
|
*/
|
|
69294
70630
|
description?: string;
|
|
69295
70631
|
field?: Array<ProjectFieldEnum>;
|
|
70632
|
+
/**
|
|
70633
|
+
* Filter projects that have at least one affiliated organization.
|
|
70634
|
+
*/
|
|
70635
|
+
has_affiliated_organization?: boolean;
|
|
69296
70636
|
/**
|
|
69297
70637
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69298
70638
|
*/
|
|
@@ -69335,6 +70675,14 @@ export type ProjectsListData = {
|
|
|
69335
70675
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
69336
70676
|
*/
|
|
69337
70677
|
query?: string;
|
|
70678
|
+
/**
|
|
70679
|
+
* Science domain UUID
|
|
70680
|
+
*/
|
|
70681
|
+
science_domain_uuid?: string;
|
|
70682
|
+
/**
|
|
70683
|
+
* Science sub-domain UUID
|
|
70684
|
+
*/
|
|
70685
|
+
science_sub_domain_uuid?: string;
|
|
69338
70686
|
/**
|
|
69339
70687
|
* Slug
|
|
69340
70688
|
*/
|
|
@@ -69362,6 +70710,14 @@ export type ProjectsCountData = {
|
|
|
69362
70710
|
* Filter by whether accounting is running.
|
|
69363
70711
|
*/
|
|
69364
70712
|
accounting_is_running?: boolean;
|
|
70713
|
+
/**
|
|
70714
|
+
* Affiliated organization name
|
|
70715
|
+
*/
|
|
70716
|
+
affiliated_organization_name?: string;
|
|
70717
|
+
/**
|
|
70718
|
+
* Affiliated organization UUID
|
|
70719
|
+
*/
|
|
70720
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69365
70721
|
backend_id?: string;
|
|
69366
70722
|
/**
|
|
69367
70723
|
* Return a list of projects where current user is admin.
|
|
@@ -69403,6 +70759,10 @@ export type ProjectsCountData = {
|
|
|
69403
70759
|
* Description
|
|
69404
70760
|
*/
|
|
69405
70761
|
description?: string;
|
|
70762
|
+
/**
|
|
70763
|
+
* Filter projects that have at least one affiliated organization.
|
|
70764
|
+
*/
|
|
70765
|
+
has_affiliated_organization?: boolean;
|
|
69406
70766
|
/**
|
|
69407
70767
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69408
70768
|
*/
|
|
@@ -69445,6 +70805,14 @@ export type ProjectsCountData = {
|
|
|
69445
70805
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
69446
70806
|
*/
|
|
69447
70807
|
query?: string;
|
|
70808
|
+
/**
|
|
70809
|
+
* Science domain UUID
|
|
70810
|
+
*/
|
|
70811
|
+
science_domain_uuid?: string;
|
|
70812
|
+
/**
|
|
70813
|
+
* Science sub-domain UUID
|
|
70814
|
+
*/
|
|
70815
|
+
science_sub_domain_uuid?: string;
|
|
69448
70816
|
/**
|
|
69449
70817
|
* Slug
|
|
69450
70818
|
*/
|
|
@@ -69824,6 +71192,20 @@ export type ProjectsSyncUserRolesResponses = {
|
|
|
69824
71192
|
*/
|
|
69825
71193
|
200: unknown;
|
|
69826
71194
|
};
|
|
71195
|
+
export type ProjectsUpdateAffiliatedOrganizationsData = {
|
|
71196
|
+
body?: ProjectAffiliatedOrganizationsUpdateRequest;
|
|
71197
|
+
path: {
|
|
71198
|
+
uuid: string;
|
|
71199
|
+
};
|
|
71200
|
+
query?: never;
|
|
71201
|
+
url: '/api/projects/{uuid}/update_affiliated_organizations/';
|
|
71202
|
+
};
|
|
71203
|
+
export type ProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
71204
|
+
/**
|
|
71205
|
+
* No response body
|
|
71206
|
+
*/
|
|
71207
|
+
200: unknown;
|
|
71208
|
+
};
|
|
69827
71209
|
export type ProjectsUpdateUserData = {
|
|
69828
71210
|
body: UserRoleUpdateRequest;
|
|
69829
71211
|
path: {
|
|
@@ -72659,10 +74041,6 @@ export type RancherAppsListData = {
|
|
|
72659
74041
|
*/
|
|
72660
74042
|
state?: Array<CoreStates>;
|
|
72661
74043
|
template_uuid?: string;
|
|
72662
|
-
/**
|
|
72663
|
-
* UUID
|
|
72664
|
-
*/
|
|
72665
|
-
uuid?: string;
|
|
72666
74044
|
};
|
|
72667
74045
|
url: '/api/rancher-apps/';
|
|
72668
74046
|
};
|
|
@@ -72752,10 +74130,6 @@ export type RancherAppsCountData = {
|
|
|
72752
74130
|
*/
|
|
72753
74131
|
state?: Array<CoreStates>;
|
|
72754
74132
|
template_uuid?: string;
|
|
72755
|
-
/**
|
|
72756
|
-
* UUID
|
|
72757
|
-
*/
|
|
72758
|
-
uuid?: string;
|
|
72759
74133
|
};
|
|
72760
74134
|
url: '/api/rancher-apps/';
|
|
72761
74135
|
};
|
|
@@ -73225,10 +74599,6 @@ export type RancherClustersListData = {
|
|
|
73225
74599
|
*
|
|
73226
74600
|
*/
|
|
73227
74601
|
state?: Array<CoreStates>;
|
|
73228
|
-
/**
|
|
73229
|
-
* UUID
|
|
73230
|
-
*/
|
|
73231
|
-
uuid?: string;
|
|
73232
74602
|
};
|
|
73233
74603
|
url: '/api/rancher-clusters/';
|
|
73234
74604
|
};
|
|
@@ -73318,10 +74688,6 @@ export type RancherClustersCountData = {
|
|
|
73318
74688
|
*
|
|
73319
74689
|
*/
|
|
73320
74690
|
state?: Array<CoreStates>;
|
|
73321
|
-
/**
|
|
73322
|
-
* UUID
|
|
73323
|
-
*/
|
|
73324
|
-
uuid?: string;
|
|
73325
74691
|
};
|
|
73326
74692
|
url: '/api/rancher-clusters/';
|
|
73327
74693
|
};
|
|
@@ -73754,10 +75120,6 @@ export type RancherIngressesListData = {
|
|
|
73754
75120
|
*
|
|
73755
75121
|
*/
|
|
73756
75122
|
state?: Array<CoreStates>;
|
|
73757
|
-
/**
|
|
73758
|
-
* UUID
|
|
73759
|
-
*/
|
|
73760
|
-
uuid?: string;
|
|
73761
75123
|
};
|
|
73762
75124
|
url: '/api/rancher-ingresses/';
|
|
73763
75125
|
};
|
|
@@ -73850,10 +75212,6 @@ export type RancherIngressesCountData = {
|
|
|
73850
75212
|
*
|
|
73851
75213
|
*/
|
|
73852
75214
|
state?: Array<CoreStates>;
|
|
73853
|
-
/**
|
|
73854
|
-
* UUID
|
|
73855
|
-
*/
|
|
73856
|
-
uuid?: string;
|
|
73857
75215
|
};
|
|
73858
75216
|
url: '/api/rancher-ingresses/';
|
|
73859
75217
|
};
|
|
@@ -74555,10 +75913,6 @@ export type RancherServicesListData = {
|
|
|
74555
75913
|
*
|
|
74556
75914
|
*/
|
|
74557
75915
|
state?: Array<CoreStates>;
|
|
74558
|
-
/**
|
|
74559
|
-
* UUID
|
|
74560
|
-
*/
|
|
74561
|
-
uuid?: string;
|
|
74562
75916
|
};
|
|
74563
75917
|
url: '/api/rancher-services/';
|
|
74564
75918
|
};
|
|
@@ -74651,10 +76005,6 @@ export type RancherServicesCountData = {
|
|
|
74651
76005
|
*
|
|
74652
76006
|
*/
|
|
74653
76007
|
state?: Array<CoreStates>;
|
|
74654
|
-
/**
|
|
74655
|
-
* UUID
|
|
74656
|
-
*/
|
|
74657
|
-
uuid?: string;
|
|
74658
76008
|
};
|
|
74659
76009
|
url: '/api/rancher-services/';
|
|
74660
76010
|
};
|
|
@@ -76582,6 +77932,358 @@ export type RolesUpdateDescriptionsUpdateResponses = {
|
|
|
76582
77932
|
200: RoleDescription;
|
|
76583
77933
|
};
|
|
76584
77934
|
export type RolesUpdateDescriptionsUpdateResponse = RolesUpdateDescriptionsUpdateResponses[keyof RolesUpdateDescriptionsUpdateResponses];
|
|
77935
|
+
export type ScienceDomainsListData = {
|
|
77936
|
+
body?: never;
|
|
77937
|
+
path?: never;
|
|
77938
|
+
query?: {
|
|
77939
|
+
/**
|
|
77940
|
+
* Name
|
|
77941
|
+
*/
|
|
77942
|
+
name?: string;
|
|
77943
|
+
/**
|
|
77944
|
+
* Name (exact)
|
|
77945
|
+
*/
|
|
77946
|
+
name_exact?: string;
|
|
77947
|
+
/**
|
|
77948
|
+
* Ordering
|
|
77949
|
+
*
|
|
77950
|
+
*
|
|
77951
|
+
*/
|
|
77952
|
+
o?: Array<ScienceDomainOEnum>;
|
|
77953
|
+
/**
|
|
77954
|
+
* A page number within the paginated result set.
|
|
77955
|
+
*/
|
|
77956
|
+
page?: number;
|
|
77957
|
+
/**
|
|
77958
|
+
* Number of results to return per page.
|
|
77959
|
+
*/
|
|
77960
|
+
page_size?: number;
|
|
77961
|
+
};
|
|
77962
|
+
url: '/api/science-domains/';
|
|
77963
|
+
};
|
|
77964
|
+
export type ScienceDomainsListResponses = {
|
|
77965
|
+
200: Array<ScienceDomain>;
|
|
77966
|
+
};
|
|
77967
|
+
export type ScienceDomainsListResponse = ScienceDomainsListResponses[keyof ScienceDomainsListResponses];
|
|
77968
|
+
export type ScienceDomainsCountData = {
|
|
77969
|
+
body?: never;
|
|
77970
|
+
path?: never;
|
|
77971
|
+
query?: {
|
|
77972
|
+
/**
|
|
77973
|
+
* Name
|
|
77974
|
+
*/
|
|
77975
|
+
name?: string;
|
|
77976
|
+
/**
|
|
77977
|
+
* Name (exact)
|
|
77978
|
+
*/
|
|
77979
|
+
name_exact?: string;
|
|
77980
|
+
/**
|
|
77981
|
+
* Ordering
|
|
77982
|
+
*
|
|
77983
|
+
*
|
|
77984
|
+
*/
|
|
77985
|
+
o?: Array<ScienceDomainOEnum>;
|
|
77986
|
+
/**
|
|
77987
|
+
* A page number within the paginated result set.
|
|
77988
|
+
*/
|
|
77989
|
+
page?: number;
|
|
77990
|
+
/**
|
|
77991
|
+
* Number of results to return per page.
|
|
77992
|
+
*/
|
|
77993
|
+
page_size?: number;
|
|
77994
|
+
};
|
|
77995
|
+
url: '/api/science-domains/';
|
|
77996
|
+
};
|
|
77997
|
+
export type ScienceDomainsCountResponses = {
|
|
77998
|
+
/**
|
|
77999
|
+
* No response body
|
|
78000
|
+
*/
|
|
78001
|
+
200: unknown;
|
|
78002
|
+
};
|
|
78003
|
+
export type ScienceDomainsCreateData = {
|
|
78004
|
+
body: ScienceDomainRequest;
|
|
78005
|
+
path?: never;
|
|
78006
|
+
query?: never;
|
|
78007
|
+
url: '/api/science-domains/';
|
|
78008
|
+
};
|
|
78009
|
+
export type ScienceDomainsCreateResponses = {
|
|
78010
|
+
201: ScienceDomain;
|
|
78011
|
+
};
|
|
78012
|
+
export type ScienceDomainsCreateResponse = ScienceDomainsCreateResponses[keyof ScienceDomainsCreateResponses];
|
|
78013
|
+
export type ScienceDomainsDestroyData = {
|
|
78014
|
+
body?: never;
|
|
78015
|
+
path: {
|
|
78016
|
+
uuid: string;
|
|
78017
|
+
};
|
|
78018
|
+
query?: never;
|
|
78019
|
+
url: '/api/science-domains/{uuid}/';
|
|
78020
|
+
};
|
|
78021
|
+
export type ScienceDomainsDestroyResponses = {
|
|
78022
|
+
/**
|
|
78023
|
+
* No response body
|
|
78024
|
+
*/
|
|
78025
|
+
204: void;
|
|
78026
|
+
};
|
|
78027
|
+
export type ScienceDomainsDestroyResponse = ScienceDomainsDestroyResponses[keyof ScienceDomainsDestroyResponses];
|
|
78028
|
+
export type ScienceDomainsRetrieveData = {
|
|
78029
|
+
body?: never;
|
|
78030
|
+
path: {
|
|
78031
|
+
uuid: string;
|
|
78032
|
+
};
|
|
78033
|
+
query?: never;
|
|
78034
|
+
url: '/api/science-domains/{uuid}/';
|
|
78035
|
+
};
|
|
78036
|
+
export type ScienceDomainsRetrieveResponses = {
|
|
78037
|
+
200: ScienceDomain;
|
|
78038
|
+
};
|
|
78039
|
+
export type ScienceDomainsRetrieveResponse = ScienceDomainsRetrieveResponses[keyof ScienceDomainsRetrieveResponses];
|
|
78040
|
+
export type ScienceDomainsPartialUpdateData = {
|
|
78041
|
+
body?: PatchedScienceDomainRequest;
|
|
78042
|
+
path: {
|
|
78043
|
+
uuid: string;
|
|
78044
|
+
};
|
|
78045
|
+
query?: never;
|
|
78046
|
+
url: '/api/science-domains/{uuid}/';
|
|
78047
|
+
};
|
|
78048
|
+
export type ScienceDomainsPartialUpdateResponses = {
|
|
78049
|
+
200: ScienceDomain;
|
|
78050
|
+
};
|
|
78051
|
+
export type ScienceDomainsPartialUpdateResponse = ScienceDomainsPartialUpdateResponses[keyof ScienceDomainsPartialUpdateResponses];
|
|
78052
|
+
export type ScienceDomainsUpdateData = {
|
|
78053
|
+
body: ScienceDomainRequest;
|
|
78054
|
+
path: {
|
|
78055
|
+
uuid: string;
|
|
78056
|
+
};
|
|
78057
|
+
query?: never;
|
|
78058
|
+
url: '/api/science-domains/{uuid}/';
|
|
78059
|
+
};
|
|
78060
|
+
export type ScienceDomainsUpdateResponses = {
|
|
78061
|
+
200: ScienceDomain;
|
|
78062
|
+
};
|
|
78063
|
+
export type ScienceDomainsUpdateResponse = ScienceDomainsUpdateResponses[keyof ScienceDomainsUpdateResponses];
|
|
78064
|
+
export type ScienceDomainsLoadPresetData = {
|
|
78065
|
+
body: LoadScienceDomainPresetRequest;
|
|
78066
|
+
path?: never;
|
|
78067
|
+
query?: never;
|
|
78068
|
+
url: '/api/science-domains/load_preset/';
|
|
78069
|
+
};
|
|
78070
|
+
export type ScienceDomainsLoadPresetResponses = {
|
|
78071
|
+
200: LoadScienceDomainPresetResponse;
|
|
78072
|
+
};
|
|
78073
|
+
export type ScienceDomainsLoadPresetResponse = ScienceDomainsLoadPresetResponses[keyof ScienceDomainsLoadPresetResponses];
|
|
78074
|
+
export type ScienceDomainsPresetsListData = {
|
|
78075
|
+
body?: never;
|
|
78076
|
+
path?: never;
|
|
78077
|
+
query?: {
|
|
78078
|
+
/**
|
|
78079
|
+
* Name
|
|
78080
|
+
*/
|
|
78081
|
+
name?: string;
|
|
78082
|
+
/**
|
|
78083
|
+
* Name (exact)
|
|
78084
|
+
*/
|
|
78085
|
+
name_exact?: string;
|
|
78086
|
+
/**
|
|
78087
|
+
* Ordering
|
|
78088
|
+
*
|
|
78089
|
+
*
|
|
78090
|
+
*/
|
|
78091
|
+
o?: Array<ScienceDomainOEnum>;
|
|
78092
|
+
/**
|
|
78093
|
+
* A page number within the paginated result set.
|
|
78094
|
+
*/
|
|
78095
|
+
page?: number;
|
|
78096
|
+
/**
|
|
78097
|
+
* Number of results to return per page.
|
|
78098
|
+
*/
|
|
78099
|
+
page_size?: number;
|
|
78100
|
+
};
|
|
78101
|
+
url: '/api/science-domains/presets/';
|
|
78102
|
+
};
|
|
78103
|
+
export type ScienceDomainsPresetsListResponses = {
|
|
78104
|
+
200: Array<ScienceDomainPreset>;
|
|
78105
|
+
};
|
|
78106
|
+
export type ScienceDomainsPresetsListResponse = ScienceDomainsPresetsListResponses[keyof ScienceDomainsPresetsListResponses];
|
|
78107
|
+
export type ScienceDomainsPresetsCountData = {
|
|
78108
|
+
body?: never;
|
|
78109
|
+
path?: never;
|
|
78110
|
+
query?: {
|
|
78111
|
+
/**
|
|
78112
|
+
* Name
|
|
78113
|
+
*/
|
|
78114
|
+
name?: string;
|
|
78115
|
+
/**
|
|
78116
|
+
* Name (exact)
|
|
78117
|
+
*/
|
|
78118
|
+
name_exact?: string;
|
|
78119
|
+
/**
|
|
78120
|
+
* Ordering
|
|
78121
|
+
*
|
|
78122
|
+
*
|
|
78123
|
+
*/
|
|
78124
|
+
o?: Array<ScienceDomainOEnum>;
|
|
78125
|
+
/**
|
|
78126
|
+
* A page number within the paginated result set.
|
|
78127
|
+
*/
|
|
78128
|
+
page?: number;
|
|
78129
|
+
/**
|
|
78130
|
+
* Number of results to return per page.
|
|
78131
|
+
*/
|
|
78132
|
+
page_size?: number;
|
|
78133
|
+
};
|
|
78134
|
+
url: '/api/science-domains/presets/';
|
|
78135
|
+
};
|
|
78136
|
+
export type ScienceDomainsPresetsCountResponses = {
|
|
78137
|
+
/**
|
|
78138
|
+
* No response body
|
|
78139
|
+
*/
|
|
78140
|
+
200: unknown;
|
|
78141
|
+
};
|
|
78142
|
+
export type ScienceSubDomainsListData = {
|
|
78143
|
+
body?: never;
|
|
78144
|
+
path?: never;
|
|
78145
|
+
query?: {
|
|
78146
|
+
/**
|
|
78147
|
+
* Domain name
|
|
78148
|
+
*/
|
|
78149
|
+
domain_name?: string;
|
|
78150
|
+
/**
|
|
78151
|
+
* Domain UUID
|
|
78152
|
+
*/
|
|
78153
|
+
domain_uuid?: string;
|
|
78154
|
+
/**
|
|
78155
|
+
* Name
|
|
78156
|
+
*/
|
|
78157
|
+
name?: string;
|
|
78158
|
+
/**
|
|
78159
|
+
* Name (exact)
|
|
78160
|
+
*/
|
|
78161
|
+
name_exact?: string;
|
|
78162
|
+
/**
|
|
78163
|
+
* Ordering
|
|
78164
|
+
*
|
|
78165
|
+
*
|
|
78166
|
+
*/
|
|
78167
|
+
o?: Array<ScienceSubDomainOEnum>;
|
|
78168
|
+
/**
|
|
78169
|
+
* A page number within the paginated result set.
|
|
78170
|
+
*/
|
|
78171
|
+
page?: number;
|
|
78172
|
+
/**
|
|
78173
|
+
* Number of results to return per page.
|
|
78174
|
+
*/
|
|
78175
|
+
page_size?: number;
|
|
78176
|
+
};
|
|
78177
|
+
url: '/api/science-sub-domains/';
|
|
78178
|
+
};
|
|
78179
|
+
export type ScienceSubDomainsListResponses = {
|
|
78180
|
+
200: Array<ScienceSubDomain>;
|
|
78181
|
+
};
|
|
78182
|
+
export type ScienceSubDomainsListResponse = ScienceSubDomainsListResponses[keyof ScienceSubDomainsListResponses];
|
|
78183
|
+
export type ScienceSubDomainsCountData = {
|
|
78184
|
+
body?: never;
|
|
78185
|
+
path?: never;
|
|
78186
|
+
query?: {
|
|
78187
|
+
/**
|
|
78188
|
+
* Domain name
|
|
78189
|
+
*/
|
|
78190
|
+
domain_name?: string;
|
|
78191
|
+
/**
|
|
78192
|
+
* Domain UUID
|
|
78193
|
+
*/
|
|
78194
|
+
domain_uuid?: string;
|
|
78195
|
+
/**
|
|
78196
|
+
* Name
|
|
78197
|
+
*/
|
|
78198
|
+
name?: string;
|
|
78199
|
+
/**
|
|
78200
|
+
* Name (exact)
|
|
78201
|
+
*/
|
|
78202
|
+
name_exact?: string;
|
|
78203
|
+
/**
|
|
78204
|
+
* Ordering
|
|
78205
|
+
*
|
|
78206
|
+
*
|
|
78207
|
+
*/
|
|
78208
|
+
o?: Array<ScienceSubDomainOEnum>;
|
|
78209
|
+
/**
|
|
78210
|
+
* A page number within the paginated result set.
|
|
78211
|
+
*/
|
|
78212
|
+
page?: number;
|
|
78213
|
+
/**
|
|
78214
|
+
* Number of results to return per page.
|
|
78215
|
+
*/
|
|
78216
|
+
page_size?: number;
|
|
78217
|
+
};
|
|
78218
|
+
url: '/api/science-sub-domains/';
|
|
78219
|
+
};
|
|
78220
|
+
export type ScienceSubDomainsCountResponses = {
|
|
78221
|
+
/**
|
|
78222
|
+
* No response body
|
|
78223
|
+
*/
|
|
78224
|
+
200: unknown;
|
|
78225
|
+
};
|
|
78226
|
+
export type ScienceSubDomainsCreateData = {
|
|
78227
|
+
body: ScienceSubDomainRequest;
|
|
78228
|
+
path?: never;
|
|
78229
|
+
query?: never;
|
|
78230
|
+
url: '/api/science-sub-domains/';
|
|
78231
|
+
};
|
|
78232
|
+
export type ScienceSubDomainsCreateResponses = {
|
|
78233
|
+
201: ScienceSubDomain;
|
|
78234
|
+
};
|
|
78235
|
+
export type ScienceSubDomainsCreateResponse = ScienceSubDomainsCreateResponses[keyof ScienceSubDomainsCreateResponses];
|
|
78236
|
+
export type ScienceSubDomainsDestroyData = {
|
|
78237
|
+
body?: never;
|
|
78238
|
+
path: {
|
|
78239
|
+
uuid: string;
|
|
78240
|
+
};
|
|
78241
|
+
query?: never;
|
|
78242
|
+
url: '/api/science-sub-domains/{uuid}/';
|
|
78243
|
+
};
|
|
78244
|
+
export type ScienceSubDomainsDestroyResponses = {
|
|
78245
|
+
/**
|
|
78246
|
+
* No response body
|
|
78247
|
+
*/
|
|
78248
|
+
204: void;
|
|
78249
|
+
};
|
|
78250
|
+
export type ScienceSubDomainsDestroyResponse = ScienceSubDomainsDestroyResponses[keyof ScienceSubDomainsDestroyResponses];
|
|
78251
|
+
export type ScienceSubDomainsRetrieveData = {
|
|
78252
|
+
body?: never;
|
|
78253
|
+
path: {
|
|
78254
|
+
uuid: string;
|
|
78255
|
+
};
|
|
78256
|
+
query?: never;
|
|
78257
|
+
url: '/api/science-sub-domains/{uuid}/';
|
|
78258
|
+
};
|
|
78259
|
+
export type ScienceSubDomainsRetrieveResponses = {
|
|
78260
|
+
200: ScienceSubDomain;
|
|
78261
|
+
};
|
|
78262
|
+
export type ScienceSubDomainsRetrieveResponse = ScienceSubDomainsRetrieveResponses[keyof ScienceSubDomainsRetrieveResponses];
|
|
78263
|
+
export type ScienceSubDomainsPartialUpdateData = {
|
|
78264
|
+
body?: PatchedScienceSubDomainRequest;
|
|
78265
|
+
path: {
|
|
78266
|
+
uuid: string;
|
|
78267
|
+
};
|
|
78268
|
+
query?: never;
|
|
78269
|
+
url: '/api/science-sub-domains/{uuid}/';
|
|
78270
|
+
};
|
|
78271
|
+
export type ScienceSubDomainsPartialUpdateResponses = {
|
|
78272
|
+
200: ScienceSubDomain;
|
|
78273
|
+
};
|
|
78274
|
+
export type ScienceSubDomainsPartialUpdateResponse = ScienceSubDomainsPartialUpdateResponses[keyof ScienceSubDomainsPartialUpdateResponses];
|
|
78275
|
+
export type ScienceSubDomainsUpdateData = {
|
|
78276
|
+
body: ScienceSubDomainRequest;
|
|
78277
|
+
path: {
|
|
78278
|
+
uuid: string;
|
|
78279
|
+
};
|
|
78280
|
+
query?: never;
|
|
78281
|
+
url: '/api/science-sub-domains/{uuid}/';
|
|
78282
|
+
};
|
|
78283
|
+
export type ScienceSubDomainsUpdateResponses = {
|
|
78284
|
+
200: ScienceSubDomain;
|
|
78285
|
+
};
|
|
78286
|
+
export type ScienceSubDomainsUpdateResponse = ScienceSubDomainsUpdateResponses[keyof ScienceSubDomainsUpdateResponses];
|
|
76585
78287
|
export type ServiceSettingsListData = {
|
|
76586
78288
|
body?: never;
|
|
76587
78289
|
path?: never;
|
|
@@ -76866,10 +78568,6 @@ export type SlurmAllocationsListData = {
|
|
|
76866
78568
|
*
|
|
76867
78569
|
*/
|
|
76868
78570
|
state?: Array<CoreStates>;
|
|
76869
|
-
/**
|
|
76870
|
-
* UUID
|
|
76871
|
-
*/
|
|
76872
|
-
uuid?: string;
|
|
76873
78571
|
};
|
|
76874
78572
|
url: '/api/slurm-allocations/';
|
|
76875
78573
|
};
|
|
@@ -76960,10 +78658,6 @@ export type SlurmAllocationsCountData = {
|
|
|
76960
78658
|
*
|
|
76961
78659
|
*/
|
|
76962
78660
|
state?: Array<CoreStates>;
|
|
76963
|
-
/**
|
|
76964
|
-
* UUID
|
|
76965
|
-
*/
|
|
76966
|
-
uuid?: string;
|
|
76967
78661
|
};
|
|
76968
78662
|
url: '/api/slurm-allocations/';
|
|
76969
78663
|
};
|
|
@@ -81743,10 +83437,6 @@ export type VmwareDisksListData = {
|
|
|
81743
83437
|
*
|
|
81744
83438
|
*/
|
|
81745
83439
|
state?: Array<CoreStates>;
|
|
81746
|
-
/**
|
|
81747
|
-
* UUID
|
|
81748
|
-
*/
|
|
81749
|
-
uuid?: string;
|
|
81750
83440
|
vm?: string;
|
|
81751
83441
|
vm_uuid?: string;
|
|
81752
83442
|
};
|
|
@@ -81838,10 +83528,6 @@ export type VmwareDisksCountData = {
|
|
|
81838
83528
|
*
|
|
81839
83529
|
*/
|
|
81840
83530
|
state?: Array<CoreStates>;
|
|
81841
|
-
/**
|
|
81842
|
-
* UUID
|
|
81843
|
-
*/
|
|
81844
|
-
uuid?: string;
|
|
81845
83531
|
vm?: string;
|
|
81846
83532
|
vm_uuid?: string;
|
|
81847
83533
|
};
|
|
@@ -82238,10 +83924,6 @@ export type VmwarePortsListData = {
|
|
|
82238
83924
|
*
|
|
82239
83925
|
*/
|
|
82240
83926
|
state?: Array<CoreStates>;
|
|
82241
|
-
/**
|
|
82242
|
-
* UUID
|
|
82243
|
-
*/
|
|
82244
|
-
uuid?: string;
|
|
82245
83927
|
vm?: string;
|
|
82246
83928
|
vm_uuid?: string;
|
|
82247
83929
|
};
|
|
@@ -82335,10 +84017,6 @@ export type VmwarePortsCountData = {
|
|
|
82335
84017
|
*
|
|
82336
84018
|
*/
|
|
82337
84019
|
state?: Array<CoreStates>;
|
|
82338
|
-
/**
|
|
82339
|
-
* UUID
|
|
82340
|
-
*/
|
|
82341
|
-
uuid?: string;
|
|
82342
84020
|
vm?: string;
|
|
82343
84021
|
vm_uuid?: string;
|
|
82344
84022
|
};
|
|
@@ -82602,10 +84280,6 @@ export type VmwareVirtualMachineListData = {
|
|
|
82602
84280
|
*
|
|
82603
84281
|
*/
|
|
82604
84282
|
state?: Array<CoreStates>;
|
|
82605
|
-
/**
|
|
82606
|
-
* UUID
|
|
82607
|
-
*/
|
|
82608
|
-
uuid?: string;
|
|
82609
84283
|
};
|
|
82610
84284
|
url: '/api/vmware-virtual-machine/';
|
|
82611
84285
|
};
|
|
@@ -82696,10 +84370,6 @@ export type VmwareVirtualMachineCountData = {
|
|
|
82696
84370
|
*
|
|
82697
84371
|
*/
|
|
82698
84372
|
state?: Array<CoreStates>;
|
|
82699
|
-
/**
|
|
82700
|
-
* UUID
|
|
82701
|
-
*/
|
|
82702
|
-
uuid?: string;
|
|
82703
84373
|
};
|
|
82704
84374
|
url: '/api/vmware-virtual-machine/';
|
|
82705
84375
|
};
|