waldur-js-client 8.0.8-dev.2 → 8.0.8-dev.20
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 +96 -1
- package/dist/sdk.gen.js +740 -13
- package/dist/types.gen.d.ts +1310 -187
- package/package.json +1 -1
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,56 @@ 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
|
+
};
|
|
170
|
+
export type AffiliatedOrganizationsUpdateRequest = {
|
|
171
|
+
affiliated_organizations?: Array<string>;
|
|
172
|
+
};
|
|
105
173
|
export type AffiliationTypeEnum = 'employment' | 'education' | 'visiting' | 'honorary' | 'consulting';
|
|
106
174
|
export type AffinityMatrixEntry = {
|
|
107
175
|
uuid: string;
|
|
@@ -465,7 +533,7 @@ export type Allocation = {
|
|
|
465
533
|
readonly created?: string;
|
|
466
534
|
readonly modified?: string;
|
|
467
535
|
readonly backend_id?: string;
|
|
468
|
-
|
|
536
|
+
access_url?: Array<string> | string | null;
|
|
469
537
|
node_limit?: number;
|
|
470
538
|
groupname?: string | null;
|
|
471
539
|
readonly node_usage?: string;
|
|
@@ -1638,6 +1706,16 @@ export type AvailableChecklistsResponse = {
|
|
|
1638
1706
|
[key: string]: unknown;
|
|
1639
1707
|
} | null;
|
|
1640
1708
|
};
|
|
1709
|
+
export type AvailableExternalNetwork = {
|
|
1710
|
+
backend_id: string;
|
|
1711
|
+
name: string;
|
|
1712
|
+
description: string;
|
|
1713
|
+
source: AvailableExternalNetworkSourceEnum;
|
|
1714
|
+
subnets: Array<{
|
|
1715
|
+
[key: string]: unknown;
|
|
1716
|
+
}>;
|
|
1717
|
+
};
|
|
1718
|
+
export type AvailableExternalNetworkSourceEnum = 'global' | 'rbac';
|
|
1641
1719
|
export type AvailableScope = {
|
|
1642
1720
|
permission: string;
|
|
1643
1721
|
description: string;
|
|
@@ -1673,7 +1751,7 @@ export type AwsInstance = {
|
|
|
1673
1751
|
readonly created?: string;
|
|
1674
1752
|
readonly modified?: string;
|
|
1675
1753
|
readonly backend_id?: string;
|
|
1676
|
-
|
|
1754
|
+
access_url?: Array<string> | string | null;
|
|
1677
1755
|
readonly start_time?: string | null;
|
|
1678
1756
|
/**
|
|
1679
1757
|
* Number of cores in a VM
|
|
@@ -1789,7 +1867,7 @@ export type AwsVolume = {
|
|
|
1789
1867
|
readonly created?: string;
|
|
1790
1868
|
readonly modified?: string;
|
|
1791
1869
|
readonly backend_id?: string;
|
|
1792
|
-
|
|
1870
|
+
access_url?: Array<string> | string | null;
|
|
1793
1871
|
/**
|
|
1794
1872
|
* Size of volume in gigabytes
|
|
1795
1873
|
*/
|
|
@@ -1878,7 +1956,7 @@ export type AzurePublicIp = {
|
|
|
1878
1956
|
readonly created?: string;
|
|
1879
1957
|
readonly modified?: string;
|
|
1880
1958
|
readonly backend_id?: string;
|
|
1881
|
-
|
|
1959
|
+
access_url?: Array<string> | string | null;
|
|
1882
1960
|
location?: string;
|
|
1883
1961
|
resource_group?: string;
|
|
1884
1962
|
readonly marketplace_offering_uuid?: string | null;
|
|
@@ -1928,7 +2006,7 @@ export type AzureResourceGroup = {
|
|
|
1928
2006
|
readonly created?: string;
|
|
1929
2007
|
readonly modified?: string;
|
|
1930
2008
|
readonly backend_id?: string;
|
|
1931
|
-
|
|
2009
|
+
access_url?: Array<string> | string | null;
|
|
1932
2010
|
location?: string;
|
|
1933
2011
|
readonly marketplace_offering_uuid?: string | null;
|
|
1934
2012
|
readonly marketplace_offering_name?: string | null;
|
|
@@ -1979,7 +2057,7 @@ export type AzureSqlDatabase = {
|
|
|
1979
2057
|
readonly created?: string;
|
|
1980
2058
|
readonly modified?: string;
|
|
1981
2059
|
readonly backend_id?: string;
|
|
1982
|
-
|
|
2060
|
+
access_url?: Array<string> | string | null;
|
|
1983
2061
|
server?: string;
|
|
1984
2062
|
charset?: string | null;
|
|
1985
2063
|
collation?: string | null;
|
|
@@ -2044,7 +2122,7 @@ export type AzureSqlServer = {
|
|
|
2044
2122
|
readonly created?: string;
|
|
2045
2123
|
readonly modified?: string;
|
|
2046
2124
|
readonly backend_id?: string;
|
|
2047
|
-
|
|
2125
|
+
access_url?: Array<string> | string | null;
|
|
2048
2126
|
readonly resource_group?: string;
|
|
2049
2127
|
readonly username?: string;
|
|
2050
2128
|
readonly password?: string;
|
|
@@ -2099,7 +2177,7 @@ export type AzureVirtualMachine = {
|
|
|
2099
2177
|
readonly created?: string;
|
|
2100
2178
|
readonly modified?: string;
|
|
2101
2179
|
readonly backend_id?: string;
|
|
2102
|
-
|
|
2180
|
+
access_url?: Array<string> | string | null;
|
|
2103
2181
|
readonly start_time?: string | null;
|
|
2104
2182
|
/**
|
|
2105
2183
|
* Number of cores in a VM
|
|
@@ -2295,11 +2373,11 @@ export type BaseProviderPlan = {
|
|
|
2295
2373
|
[key: string]: string;
|
|
2296
2374
|
};
|
|
2297
2375
|
readonly quotas?: {
|
|
2298
|
-
[key: string]:
|
|
2376
|
+
[key: string]: number;
|
|
2299
2377
|
};
|
|
2300
2378
|
readonly resources_count?: number;
|
|
2301
2379
|
readonly plan_type?: string;
|
|
2302
|
-
readonly minimal_price?:
|
|
2380
|
+
readonly minimal_price?: string;
|
|
2303
2381
|
};
|
|
2304
2382
|
export type BaseProviderPlanRequest = {
|
|
2305
2383
|
name: string;
|
|
@@ -2346,11 +2424,11 @@ export type BasePublicPlan = {
|
|
|
2346
2424
|
[key: string]: string;
|
|
2347
2425
|
};
|
|
2348
2426
|
readonly quotas?: {
|
|
2349
|
-
[key: string]:
|
|
2427
|
+
[key: string]: number;
|
|
2350
2428
|
};
|
|
2351
2429
|
readonly resources_count?: number;
|
|
2352
2430
|
readonly plan_type?: string;
|
|
2353
|
-
readonly minimal_price?:
|
|
2431
|
+
readonly minimal_price?: string;
|
|
2354
2432
|
};
|
|
2355
2433
|
export type BasePublicPlanRequest = {
|
|
2356
2434
|
url: string;
|
|
@@ -2373,6 +2451,14 @@ export type BasicCustomer = {
|
|
|
2373
2451
|
readonly uuid: string;
|
|
2374
2452
|
name: string;
|
|
2375
2453
|
};
|
|
2454
|
+
export type BasicCustomerRequest = {
|
|
2455
|
+
name: string;
|
|
2456
|
+
};
|
|
2457
|
+
export type BasicProject = {
|
|
2458
|
+
readonly url: string;
|
|
2459
|
+
readonly uuid: string;
|
|
2460
|
+
name: string;
|
|
2461
|
+
};
|
|
2376
2462
|
export type BasicUser = {
|
|
2377
2463
|
readonly url?: string;
|
|
2378
2464
|
readonly uuid?: string;
|
|
@@ -2686,6 +2772,23 @@ export type CachePerformance = {
|
|
|
2686
2772
|
*/
|
|
2687
2773
|
readonly effective_cache_size: string;
|
|
2688
2774
|
};
|
|
2775
|
+
export type CachedProjectStorageReport = {
|
|
2776
|
+
readonly id: number;
|
|
2777
|
+
year: number;
|
|
2778
|
+
month: number;
|
|
2779
|
+
project_identifier: string;
|
|
2780
|
+
resource: string;
|
|
2781
|
+
report: ProjectStorageReport;
|
|
2782
|
+
};
|
|
2783
|
+
export type CachedProjectUsageReport = {
|
|
2784
|
+
readonly id: number;
|
|
2785
|
+
year: number;
|
|
2786
|
+
month: number;
|
|
2787
|
+
project_identifier: string;
|
|
2788
|
+
resource: string;
|
|
2789
|
+
is_complete?: boolean;
|
|
2790
|
+
report: ProjectUsageReport;
|
|
2791
|
+
};
|
|
2689
2792
|
export type CallApplicantAttributeConfig = {
|
|
2690
2793
|
readonly uuid: string;
|
|
2691
2794
|
readonly call_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;
|
|
@@ -4025,6 +4128,25 @@ export type ComponentUsageItemRequest = {
|
|
|
4025
4128
|
*/
|
|
4026
4129
|
recurring?: boolean;
|
|
4027
4130
|
};
|
|
4131
|
+
export type ComponentUsageMonthly = {
|
|
4132
|
+
readonly offering_uuid?: string;
|
|
4133
|
+
readonly offering_name?: string;
|
|
4134
|
+
readonly offering_type?: string;
|
|
4135
|
+
readonly service_provider_uuid?: string;
|
|
4136
|
+
readonly service_provider_name?: string;
|
|
4137
|
+
readonly category_uuid?: string;
|
|
4138
|
+
readonly category_title?: string;
|
|
4139
|
+
readonly component_type?: string;
|
|
4140
|
+
readonly component_name?: string;
|
|
4141
|
+
readonly measured_unit?: string;
|
|
4142
|
+
readonly billing_type?: string;
|
|
4143
|
+
readonly limit_amount?: number;
|
|
4144
|
+
readonly limit_period?: string;
|
|
4145
|
+
billing_period?: string;
|
|
4146
|
+
total_consumed?: string;
|
|
4147
|
+
total_allocated?: string;
|
|
4148
|
+
usage_percent?: string | null;
|
|
4149
|
+
};
|
|
4028
4150
|
export type ComponentUsagesPerMonthStats = {
|
|
4029
4151
|
/**
|
|
4030
4152
|
* Total usage amount
|
|
@@ -4274,6 +4396,7 @@ export type ConstanceSettings = {
|
|
|
4274
4396
|
CURRENCY_NAME?: string;
|
|
4275
4397
|
THUMBNAIL_SIZE?: string;
|
|
4276
4398
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
4399
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
4277
4400
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
4278
4401
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
4279
4402
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -4529,6 +4652,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4529
4652
|
CURRENCY_NAME?: string;
|
|
4530
4653
|
THUMBNAIL_SIZE?: string;
|
|
4531
4654
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
4655
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
4532
4656
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
4533
4657
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
4534
4658
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -4938,8 +5062,8 @@ export type CourseAccount = {
|
|
|
4938
5062
|
readonly project_uuid: string;
|
|
4939
5063
|
readonly project_name: string;
|
|
4940
5064
|
readonly project_slug: string;
|
|
4941
|
-
readonly project_start_date: string;
|
|
4942
|
-
readonly project_end_date: string;
|
|
5065
|
+
readonly project_start_date: string | null;
|
|
5066
|
+
readonly project_end_date: string | null;
|
|
4943
5067
|
readonly user_uuid: string;
|
|
4944
5068
|
readonly username: string;
|
|
4945
5069
|
readonly customer_uuid: string;
|
|
@@ -5471,7 +5595,7 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
5471
5595
|
limit_cost: number;
|
|
5472
5596
|
period?: PolicyPeriodEnum;
|
|
5473
5597
|
readonly period_name: string;
|
|
5474
|
-
readonly customer_credit:
|
|
5598
|
+
readonly customer_credit: string | null;
|
|
5475
5599
|
billing_price_estimate: NestedPriceEstimate;
|
|
5476
5600
|
};
|
|
5477
5601
|
export type CustomerEstimatedCostPolicyRequest = {
|
|
@@ -5787,6 +5911,58 @@ export type DailyOrderStats = {
|
|
|
5787
5911
|
[key: string]: number;
|
|
5788
5912
|
};
|
|
5789
5913
|
};
|
|
5914
|
+
export type DailyProjectUsageReport = {
|
|
5915
|
+
/**
|
|
5916
|
+
* local_username → Usage
|
|
5917
|
+
*/
|
|
5918
|
+
reports: {
|
|
5919
|
+
[key: string]: Usage;
|
|
5920
|
+
};
|
|
5921
|
+
/**
|
|
5922
|
+
* component_name → local_username → Usage. e.g. { "cpu": { "chris.aiproject": { "seconds": 41055 } } }
|
|
5923
|
+
*/
|
|
5924
|
+
components?: {
|
|
5925
|
+
[key: string]: {
|
|
5926
|
+
[key: string]: Usage;
|
|
5927
|
+
};
|
|
5928
|
+
};
|
|
5929
|
+
/**
|
|
5930
|
+
* local_username → job count
|
|
5931
|
+
*/
|
|
5932
|
+
user_job_counts?: {
|
|
5933
|
+
[key: string]: number;
|
|
5934
|
+
};
|
|
5935
|
+
/**
|
|
5936
|
+
* local_username → wait seconds
|
|
5937
|
+
*/
|
|
5938
|
+
user_wait_seconds?: {
|
|
5939
|
+
[key: string]: number;
|
|
5940
|
+
};
|
|
5941
|
+
num_jobs?: number;
|
|
5942
|
+
total_wait_seconds?: number;
|
|
5943
|
+
is_complete: boolean;
|
|
5944
|
+
};
|
|
5945
|
+
export type DailyStorageReport = {
|
|
5946
|
+
project: string;
|
|
5947
|
+
/**
|
|
5948
|
+
* RFC3339 timestamp
|
|
5949
|
+
*/
|
|
5950
|
+
generated_at: string;
|
|
5951
|
+
/**
|
|
5952
|
+
* Volume → Quota
|
|
5953
|
+
*/
|
|
5954
|
+
project_quotas: {
|
|
5955
|
+
[key: string]: OpenPortalQuota;
|
|
5956
|
+
};
|
|
5957
|
+
/**
|
|
5958
|
+
* UserIdentifier → (Volume → Quota)
|
|
5959
|
+
*/
|
|
5960
|
+
user_quotas: {
|
|
5961
|
+
[key: string]: {
|
|
5962
|
+
[key: string]: OpenPortalQuota;
|
|
5963
|
+
};
|
|
5964
|
+
};
|
|
5965
|
+
};
|
|
5790
5966
|
export type DataAccessSummary = {
|
|
5791
5967
|
total_administrative_access: number | null;
|
|
5792
5968
|
total_organizational_access: number;
|
|
@@ -5981,7 +6157,7 @@ export type DigitalOceanDroplet = {
|
|
|
5981
6157
|
readonly created?: string;
|
|
5982
6158
|
readonly modified?: string;
|
|
5983
6159
|
readonly backend_id?: string;
|
|
5984
|
-
|
|
6160
|
+
access_url?: Array<string> | string | null;
|
|
5985
6161
|
readonly start_time?: string | null;
|
|
5986
6162
|
/**
|
|
5987
6163
|
* Number of cores in a VM
|
|
@@ -6421,7 +6597,7 @@ export type DryRunRequest = {
|
|
|
6421
6597
|
};
|
|
6422
6598
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
6423
6599
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
6424
|
-
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6600
|
+
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'offering-usage' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6425
6601
|
export type EligibilityCheck = {
|
|
6426
6602
|
is_eligible: boolean;
|
|
6427
6603
|
restrictions: Array<string>;
|
|
@@ -7009,7 +7185,7 @@ export type FirecrestJob = {
|
|
|
7009
7185
|
readonly created?: string;
|
|
7010
7186
|
readonly modified?: string;
|
|
7011
7187
|
readonly backend_id?: string;
|
|
7012
|
-
|
|
7188
|
+
access_url?: Array<string> | string | null;
|
|
7013
7189
|
runtime_state?: string;
|
|
7014
7190
|
/**
|
|
7015
7191
|
* Batch script file
|
|
@@ -7431,6 +7607,62 @@ export type GroupInvitationUpdateRequest = {
|
|
|
7431
7607
|
export type GrowthPeriodEnum = 'weekly' | 'monthly';
|
|
7432
7608
|
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';
|
|
7433
7609
|
export type GuestPowerStateEnum = 'RUNNING' | 'SHUTTING_DOWN' | 'RESETTING' | 'STANDBY' | 'NOT_RUNNING' | 'UNAVAILABLE';
|
|
7610
|
+
export type Hypervisor = {
|
|
7611
|
+
readonly url: string;
|
|
7612
|
+
readonly uuid: string;
|
|
7613
|
+
name: string;
|
|
7614
|
+
settings: string;
|
|
7615
|
+
backend_id: string;
|
|
7616
|
+
/**
|
|
7617
|
+
* Hypervisor type, e.g. KVM, QEMU, VMware
|
|
7618
|
+
*/
|
|
7619
|
+
hypervisor_type?: string;
|
|
7620
|
+
/**
|
|
7621
|
+
* Total vCPUs
|
|
7622
|
+
*/
|
|
7623
|
+
vcpus?: number;
|
|
7624
|
+
/**
|
|
7625
|
+
* Used vCPUs
|
|
7626
|
+
*/
|
|
7627
|
+
vcpus_used?: number;
|
|
7628
|
+
/**
|
|
7629
|
+
* Total RAM in MiB
|
|
7630
|
+
*/
|
|
7631
|
+
memory_mb?: number;
|
|
7632
|
+
/**
|
|
7633
|
+
* Used RAM in MiB
|
|
7634
|
+
*/
|
|
7635
|
+
memory_mb_used?: number;
|
|
7636
|
+
/**
|
|
7637
|
+
* Total disk in GiB
|
|
7638
|
+
*/
|
|
7639
|
+
local_gb?: number;
|
|
7640
|
+
/**
|
|
7641
|
+
* Used disk in GiB
|
|
7642
|
+
*/
|
|
7643
|
+
local_gb_used?: number;
|
|
7644
|
+
/**
|
|
7645
|
+
* Number of running VMs
|
|
7646
|
+
*/
|
|
7647
|
+
running_vms?: number;
|
|
7648
|
+
/**
|
|
7649
|
+
* Hypervisor state, e.g. up or down
|
|
7650
|
+
*/
|
|
7651
|
+
state?: string;
|
|
7652
|
+
/**
|
|
7653
|
+
* Hypervisor status, e.g. enabled or disabled
|
|
7654
|
+
*/
|
|
7655
|
+
status?: string;
|
|
7656
|
+
};
|
|
7657
|
+
export type HypervisorSummary = {
|
|
7658
|
+
total_vcpus: number;
|
|
7659
|
+
used_vcpus: number;
|
|
7660
|
+
total_memory_mb: number;
|
|
7661
|
+
used_memory_mb: number;
|
|
7662
|
+
total_local_gb: number;
|
|
7663
|
+
used_local_gb: number;
|
|
7664
|
+
total_running_vms: number;
|
|
7665
|
+
};
|
|
7434
7666
|
export type IpMapping = {
|
|
7435
7667
|
/**
|
|
7436
7668
|
* Floating IP
|
|
@@ -7474,6 +7706,7 @@ export type IdentityBridgeRemoveResult = {
|
|
|
7474
7706
|
uuid: string;
|
|
7475
7707
|
deactivated: boolean;
|
|
7476
7708
|
};
|
|
7709
|
+
export type IdentityBridgeRequestGenderEnum = 'male' | 'female' | 'unknown';
|
|
7477
7710
|
export type IdentityBridgeRequestRequest = {
|
|
7478
7711
|
/**
|
|
7479
7712
|
* CUID / username of the user to create or update.
|
|
@@ -7491,10 +7724,11 @@ export type IdentityBridgeRequestRequest = {
|
|
|
7491
7724
|
civil_number?: string;
|
|
7492
7725
|
phone_number?: string;
|
|
7493
7726
|
identity_source?: string;
|
|
7494
|
-
gender?:
|
|
7727
|
+
gender?: IdentityBridgeRequestGenderEnum | NullEnum | null;
|
|
7495
7728
|
personal_title?: string;
|
|
7496
7729
|
birth_date?: string | null;
|
|
7497
7730
|
place_of_birth?: string;
|
|
7731
|
+
address?: string;
|
|
7498
7732
|
country_of_residence?: string;
|
|
7499
7733
|
nationality?: string;
|
|
7500
7734
|
nationalities?: Array<string>;
|
|
@@ -8943,7 +9177,7 @@ export type ManagedProject = {
|
|
|
8943
9177
|
*/
|
|
8944
9178
|
readonly details: unknown;
|
|
8945
9179
|
project: string;
|
|
8946
|
-
project_data:
|
|
9180
|
+
project_data: BasicProject;
|
|
8947
9181
|
project_template: string;
|
|
8948
9182
|
project_template_data: ProjectTemplate;
|
|
8949
9183
|
/**
|
|
@@ -9108,6 +9342,7 @@ export type MarketplaceServiceProviderUser = {
|
|
|
9108
9342
|
*/
|
|
9109
9343
|
personal_title?: string;
|
|
9110
9344
|
place_of_birth?: string;
|
|
9345
|
+
address?: string;
|
|
9111
9346
|
country_of_residence?: string;
|
|
9112
9347
|
/**
|
|
9113
9348
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -10096,9 +10331,13 @@ export type Message = {
|
|
|
10096
10331
|
readonly uuid: string;
|
|
10097
10332
|
readonly thread: string;
|
|
10098
10333
|
role: MessageRoleEnum;
|
|
10099
|
-
|
|
10100
|
-
|
|
10101
|
-
|
|
10334
|
+
readonly blocks: Array<{
|
|
10335
|
+
id: string;
|
|
10336
|
+
key: 'markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool';
|
|
10337
|
+
status: string;
|
|
10338
|
+
[key: string]: unknown | string | ('markdown' | 'code' | 'mermaid' | 'vm_order' | 'resource_list' | 'homeport_nav' | 'tool');
|
|
10339
|
+
}>;
|
|
10340
|
+
readonly warning: string;
|
|
10102
10341
|
readonly sequence_index: number;
|
|
10103
10342
|
readonly replaces: string | null;
|
|
10104
10343
|
readonly created: string;
|
|
@@ -10451,6 +10690,7 @@ export type NestedParentSoftware = {
|
|
|
10451
10690
|
readonly uuid: string;
|
|
10452
10691
|
name: string;
|
|
10453
10692
|
readonly url: string;
|
|
10693
|
+
readonly versions: Array<string>;
|
|
10454
10694
|
};
|
|
10455
10695
|
export type NestedParentSoftwareRequest = {
|
|
10456
10696
|
name: string;
|
|
@@ -11177,6 +11417,7 @@ export type OfferingComplianceChecklistUpdateRequest = {
|
|
|
11177
11417
|
};
|
|
11178
11418
|
export type OfferingComponent = {
|
|
11179
11419
|
readonly uuid?: string;
|
|
11420
|
+
readonly offering_uuid?: string;
|
|
11180
11421
|
billing_type?: BillingTypeEnum;
|
|
11181
11422
|
/**
|
|
11182
11423
|
* Unique internal name of the measured unit, for example floating_ip.
|
|
@@ -11195,7 +11436,7 @@ export type OfferingComponent = {
|
|
|
11195
11436
|
* The conversion factor from backend units to measured_unit
|
|
11196
11437
|
*/
|
|
11197
11438
|
unit_factor?: number;
|
|
11198
|
-
limit_period?: LimitPeriodEnum |
|
|
11439
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
11199
11440
|
limit_amount?: number | null;
|
|
11200
11441
|
article_code?: string;
|
|
11201
11442
|
max_value?: number | null;
|
|
@@ -11259,7 +11500,7 @@ export type OfferingComponentRequest = {
|
|
|
11259
11500
|
* The conversion factor from backend units to measured_unit
|
|
11260
11501
|
*/
|
|
11261
11502
|
unit_factor?: number;
|
|
11262
|
-
limit_period?: LimitPeriodEnum |
|
|
11503
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
11263
11504
|
limit_amount?: number | null;
|
|
11264
11505
|
article_code?: string;
|
|
11265
11506
|
max_value?: number | null;
|
|
@@ -12229,6 +12470,7 @@ export type OfferingUser = {
|
|
|
12229
12470
|
*/
|
|
12230
12471
|
readonly user_personal_title?: string;
|
|
12231
12472
|
readonly user_place_of_birth?: string;
|
|
12473
|
+
readonly user_address?: string;
|
|
12232
12474
|
readonly user_country_of_residence?: string;
|
|
12233
12475
|
/**
|
|
12234
12476
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -12287,6 +12529,7 @@ export type OfferingUser = {
|
|
|
12287
12529
|
* Check if the user needs to re-consent due to ToS changes.
|
|
12288
12530
|
*/
|
|
12289
12531
|
readonly requires_reconsent?: boolean;
|
|
12532
|
+
readonly offering_has_active_tos?: boolean;
|
|
12290
12533
|
/**
|
|
12291
12534
|
* Check if the offering user has a connected compliance checklist completion.
|
|
12292
12535
|
*/
|
|
@@ -12316,6 +12559,7 @@ export type OfferingUserAttributeConfig = {
|
|
|
12316
12559
|
expose_gender?: boolean;
|
|
12317
12560
|
expose_personal_title?: boolean;
|
|
12318
12561
|
expose_place_of_birth?: boolean;
|
|
12562
|
+
expose_address?: boolean;
|
|
12319
12563
|
expose_country_of_residence?: boolean;
|
|
12320
12564
|
expose_nationality?: boolean;
|
|
12321
12565
|
expose_nationalities?: boolean;
|
|
@@ -12348,6 +12592,7 @@ export type OfferingUserAttributeConfigRequest = {
|
|
|
12348
12592
|
expose_gender?: boolean;
|
|
12349
12593
|
expose_personal_title?: boolean;
|
|
12350
12594
|
expose_place_of_birth?: boolean;
|
|
12595
|
+
expose_address?: boolean;
|
|
12351
12596
|
expose_country_of_residence?: boolean;
|
|
12352
12597
|
expose_nationality?: boolean;
|
|
12353
12598
|
expose_nationalities?: boolean;
|
|
@@ -12654,6 +12899,16 @@ export type OnboardingVerificationRequest = {
|
|
|
12654
12899
|
expires_at?: string | null;
|
|
12655
12900
|
};
|
|
12656
12901
|
export type OnboardingVerificationStatusEnum = 'pending' | 'verified' | 'failed' | 'escalated' | 'expired';
|
|
12902
|
+
export type OpenPortalQuota = {
|
|
12903
|
+
/**
|
|
12904
|
+
* Size limit. "unlimited" or a size string e.g. "1024.00 GB"
|
|
12905
|
+
*/
|
|
12906
|
+
limit: string;
|
|
12907
|
+
/**
|
|
12908
|
+
* Size usage e.g. "24.00 KB". Absent when the server has no usage data.
|
|
12909
|
+
*/
|
|
12910
|
+
usage?: string;
|
|
12911
|
+
};
|
|
12657
12912
|
export type OpenStackAllowedAddressPair = {
|
|
12658
12913
|
mac_address?: string;
|
|
12659
12914
|
};
|
|
@@ -12727,7 +12982,7 @@ export type OpenStackBackup = {
|
|
|
12727
12982
|
readonly created?: string;
|
|
12728
12983
|
readonly modified?: string;
|
|
12729
12984
|
readonly backend_id?: string;
|
|
12730
|
-
|
|
12985
|
+
access_url?: Array<string> | string | null;
|
|
12731
12986
|
/**
|
|
12732
12987
|
* Guaranteed time of backup retention. If null - keep forever.
|
|
12733
12988
|
*/
|
|
@@ -12933,7 +13188,7 @@ export type OpenStackFloatingIp = {
|
|
|
12933
13188
|
readonly created?: string;
|
|
12934
13189
|
readonly modified?: string;
|
|
12935
13190
|
readonly backend_id?: string;
|
|
12936
|
-
|
|
13191
|
+
access_url?: Array<string> | string | null;
|
|
12937
13192
|
readonly runtime_state?: string;
|
|
12938
13193
|
/**
|
|
12939
13194
|
* The public IPv4 address of the floating IP
|
|
@@ -13015,7 +13270,7 @@ export type OpenStackHealthMonitor = {
|
|
|
13015
13270
|
* Health monitor ID in Octavia
|
|
13016
13271
|
*/
|
|
13017
13272
|
backend_id?: string | null;
|
|
13018
|
-
|
|
13273
|
+
access_url?: Array<string> | string | null;
|
|
13019
13274
|
/**
|
|
13020
13275
|
* Pool this health monitor belongs to
|
|
13021
13276
|
*/
|
|
@@ -13090,7 +13345,7 @@ export type OpenStackInstance = {
|
|
|
13090
13345
|
* Instance ID in the OpenStack backend
|
|
13091
13346
|
*/
|
|
13092
13347
|
readonly backend_id?: string | null;
|
|
13093
|
-
|
|
13348
|
+
access_url?: Array<string> | string | null;
|
|
13094
13349
|
readonly start_time?: string | null;
|
|
13095
13350
|
/**
|
|
13096
13351
|
* Number of cores in a VM
|
|
@@ -13401,7 +13656,7 @@ export type OpenStackListener = {
|
|
|
13401
13656
|
* Listener ID in Octavia
|
|
13402
13657
|
*/
|
|
13403
13658
|
backend_id?: string | null;
|
|
13404
|
-
|
|
13659
|
+
access_url?: Array<string> | string | null;
|
|
13405
13660
|
/**
|
|
13406
13661
|
* Load balancer this listener belongs to
|
|
13407
13662
|
*/
|
|
@@ -13458,7 +13713,7 @@ export type OpenStackLoadBalancer = {
|
|
|
13458
13713
|
* Load balancer ID in Octavia
|
|
13459
13714
|
*/
|
|
13460
13715
|
backend_id?: string | null;
|
|
13461
|
-
|
|
13716
|
+
access_url?: Array<string> | string | null;
|
|
13462
13717
|
/**
|
|
13463
13718
|
* OpenStack tenant this load balancer belongs to
|
|
13464
13719
|
*/
|
|
@@ -13700,7 +13955,7 @@ export type OpenStackNetwork = {
|
|
|
13700
13955
|
readonly created?: string;
|
|
13701
13956
|
readonly modified?: string;
|
|
13702
13957
|
readonly backend_id?: string;
|
|
13703
|
-
|
|
13958
|
+
access_url?: Array<string> | string | null;
|
|
13704
13959
|
/**
|
|
13705
13960
|
* OpenStack tenant this network belongs to
|
|
13706
13961
|
*/
|
|
@@ -13771,7 +14026,7 @@ export type OpenStackPool = {
|
|
|
13771
14026
|
* Pool ID in Octavia
|
|
13772
14027
|
*/
|
|
13773
14028
|
backend_id?: string | null;
|
|
13774
|
-
|
|
14029
|
+
access_url?: Array<string> | string | null;
|
|
13775
14030
|
/**
|
|
13776
14031
|
* Load balancer this pool belongs to
|
|
13777
14032
|
*/
|
|
@@ -13824,7 +14079,7 @@ export type OpenStackPoolMember = {
|
|
|
13824
14079
|
* Member ID in Octavia
|
|
13825
14080
|
*/
|
|
13826
14081
|
backend_id?: string | null;
|
|
13827
|
-
|
|
14082
|
+
access_url?: Array<string> | string | null;
|
|
13828
14083
|
/**
|
|
13829
14084
|
* Pool this member belongs to
|
|
13830
14085
|
*/
|
|
@@ -13883,7 +14138,7 @@ export type OpenStackPort = {
|
|
|
13883
14138
|
* Port ID in OpenStack
|
|
13884
14139
|
*/
|
|
13885
14140
|
readonly backend_id?: string | null;
|
|
13886
|
-
|
|
14141
|
+
access_url?: Array<string> | string | null;
|
|
13887
14142
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
13888
14143
|
/**
|
|
13889
14144
|
* MAC address of the port
|
|
@@ -14007,7 +14262,7 @@ export type OpenStackRouter = {
|
|
|
14007
14262
|
* Router ID in OpenStack
|
|
14008
14263
|
*/
|
|
14009
14264
|
backend_id?: string | null;
|
|
14010
|
-
|
|
14265
|
+
access_url?: Array<string> | string | null;
|
|
14011
14266
|
/**
|
|
14012
14267
|
* OpenStack tenant this router belongs to
|
|
14013
14268
|
*/
|
|
@@ -14017,6 +14272,18 @@ export type OpenStackRouter = {
|
|
|
14017
14272
|
routes?: Array<OpenStackStaticRoute>;
|
|
14018
14273
|
readonly fixed_ips?: Array<OpenStackFixedIp>;
|
|
14019
14274
|
readonly ports?: Array<OpenStackNestedPort>;
|
|
14275
|
+
/**
|
|
14276
|
+
* Backend ID of the external network used as gateway
|
|
14277
|
+
*/
|
|
14278
|
+
external_network_id?: string;
|
|
14279
|
+
readonly external_network_uuid?: string | null;
|
|
14280
|
+
readonly external_network_name?: string | null;
|
|
14281
|
+
readonly has_external_gateway?: boolean;
|
|
14282
|
+
/**
|
|
14283
|
+
* Whether SNAT is enabled on the external gateway. None means OpenStack default (True).
|
|
14284
|
+
*/
|
|
14285
|
+
enable_snat?: boolean | null;
|
|
14286
|
+
readonly external_fixed_ips?: unknown;
|
|
14020
14287
|
readonly marketplace_offering_uuid?: string | null;
|
|
14021
14288
|
readonly marketplace_offering_name?: string | null;
|
|
14022
14289
|
readonly marketplace_offering_type?: string | null;
|
|
@@ -14073,7 +14340,7 @@ export type OpenStackSecurityGroup = {
|
|
|
14073
14340
|
readonly created?: string;
|
|
14074
14341
|
readonly modified?: string;
|
|
14075
14342
|
readonly backend_id?: string;
|
|
14076
|
-
|
|
14343
|
+
access_url?: Array<string> | string | null;
|
|
14077
14344
|
readonly tenant?: string;
|
|
14078
14345
|
readonly tenant_name?: string;
|
|
14079
14346
|
readonly tenant_uuid?: string;
|
|
@@ -14258,7 +14525,7 @@ export type OpenStackServerGroup = {
|
|
|
14258
14525
|
readonly created?: string;
|
|
14259
14526
|
readonly modified?: string;
|
|
14260
14527
|
readonly backend_id?: string;
|
|
14261
|
-
|
|
14528
|
+
access_url?: Array<string> | string | null;
|
|
14262
14529
|
readonly tenant?: string;
|
|
14263
14530
|
readonly tenant_name?: string;
|
|
14264
14531
|
readonly tenant_uuid?: string;
|
|
@@ -14318,7 +14585,7 @@ export type OpenStackSnapshot = {
|
|
|
14318
14585
|
* Snapshot ID in the OpenStack backend
|
|
14319
14586
|
*/
|
|
14320
14587
|
readonly backend_id?: string | null;
|
|
14321
|
-
|
|
14588
|
+
access_url?: Array<string> | string | null;
|
|
14322
14589
|
/**
|
|
14323
14590
|
* Volume from which this snapshot was created
|
|
14324
14591
|
*/
|
|
@@ -14433,7 +14700,7 @@ export type OpenStackSubNet = {
|
|
|
14433
14700
|
readonly created?: string;
|
|
14434
14701
|
readonly modified?: string;
|
|
14435
14702
|
readonly backend_id?: string;
|
|
14436
|
-
|
|
14703
|
+
access_url?: Array<string> | string | null;
|
|
14437
14704
|
readonly tenant?: string;
|
|
14438
14705
|
readonly tenant_name?: string;
|
|
14439
14706
|
/**
|
|
@@ -14549,7 +14816,7 @@ export type OpenStackTenant = {
|
|
|
14549
14816
|
* ID of tenant in the OpenStack backend
|
|
14550
14817
|
*/
|
|
14551
14818
|
readonly backend_id?: string | null;
|
|
14552
|
-
|
|
14819
|
+
access_url?: Array<string> | string | null;
|
|
14553
14820
|
/**
|
|
14554
14821
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
14555
14822
|
*/
|
|
@@ -14671,7 +14938,7 @@ export type OpenStackVolume = {
|
|
|
14671
14938
|
* Volume ID in the OpenStack backend
|
|
14672
14939
|
*/
|
|
14673
14940
|
readonly backend_id?: string | null;
|
|
14674
|
-
|
|
14941
|
+
access_url?: Array<string> | string | null;
|
|
14675
14942
|
/**
|
|
14676
14943
|
* Snapshot that this volume was created from, if any
|
|
14677
14944
|
*/
|
|
@@ -15193,6 +15460,19 @@ export type PatchedAdminAnnouncementRequest = {
|
|
|
15193
15460
|
active_to?: string;
|
|
15194
15461
|
type?: AdminAnnouncementTypeEnum;
|
|
15195
15462
|
};
|
|
15463
|
+
export type PatchedAffiliatedOrganizationRequest = {
|
|
15464
|
+
name?: string;
|
|
15465
|
+
/**
|
|
15466
|
+
* Unique short identifier, e.g. CERN, EMBL.
|
|
15467
|
+
*/
|
|
15468
|
+
code?: string;
|
|
15469
|
+
abbreviation?: string;
|
|
15470
|
+
description?: string;
|
|
15471
|
+
email?: string;
|
|
15472
|
+
homepage?: string;
|
|
15473
|
+
country?: string;
|
|
15474
|
+
address?: string;
|
|
15475
|
+
};
|
|
15196
15476
|
export type PatchedAllocationRequest = {
|
|
15197
15477
|
name?: string;
|
|
15198
15478
|
description?: string;
|
|
@@ -16079,6 +16359,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
|
|
|
16079
16359
|
expose_gender?: boolean;
|
|
16080
16360
|
expose_personal_title?: boolean;
|
|
16081
16361
|
expose_place_of_birth?: boolean;
|
|
16362
|
+
expose_address?: boolean;
|
|
16082
16363
|
expose_country_of_residence?: boolean;
|
|
16083
16364
|
expose_nationality?: boolean;
|
|
16084
16365
|
expose_nationalities?: boolean;
|
|
@@ -17129,6 +17410,7 @@ export type PatchedUserRequest = {
|
|
|
17129
17410
|
*/
|
|
17130
17411
|
personal_title?: string;
|
|
17131
17412
|
place_of_birth?: string;
|
|
17413
|
+
address?: string;
|
|
17132
17414
|
country_of_residence?: string;
|
|
17133
17415
|
/**
|
|
17134
17416
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -17283,13 +17565,13 @@ export type PermissionMetadataResponse = {
|
|
|
17283
17565
|
* Map of permission keys to permission enum values from PermissionEnum
|
|
17284
17566
|
*/
|
|
17285
17567
|
permissions: {
|
|
17286
|
-
[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';
|
|
17568
|
+
[key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
|
|
17287
17569
|
};
|
|
17288
17570
|
/**
|
|
17289
17571
|
* Map of resource types to create permission enums
|
|
17290
17572
|
*/
|
|
17291
17573
|
permission_map: {
|
|
17292
|
-
[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';
|
|
17574
|
+
[key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
|
|
17293
17575
|
};
|
|
17294
17576
|
/**
|
|
17295
17577
|
* Grouped permission descriptions for UI
|
|
@@ -17647,12 +17929,24 @@ export type Project = {
|
|
|
17647
17929
|
* List of allowed identity sources (identity providers).
|
|
17648
17930
|
*/
|
|
17649
17931
|
user_identity_sources?: unknown;
|
|
17932
|
+
readonly affiliated_organizations?: Array<AffiliatedOrganization>;
|
|
17650
17933
|
readonly project_credit?: number | null;
|
|
17651
17934
|
readonly marketplace_resource_count?: {
|
|
17652
17935
|
[key: string]: number;
|
|
17653
17936
|
};
|
|
17654
17937
|
billing_price_estimate?: NestedPriceEstimate;
|
|
17655
17938
|
};
|
|
17939
|
+
export type ProjectAccountingSummary = {
|
|
17940
|
+
readonly project_uuid: string;
|
|
17941
|
+
readonly project_name: string;
|
|
17942
|
+
readonly customer_uuid: string;
|
|
17943
|
+
readonly customer_name: string;
|
|
17944
|
+
readonly start_date: string | null;
|
|
17945
|
+
readonly end_date: string | null;
|
|
17946
|
+
readonly total_credits: string;
|
|
17947
|
+
readonly total_spend: string;
|
|
17948
|
+
readonly current_month_spend: string;
|
|
17949
|
+
};
|
|
17656
17950
|
export type ProjectAnswer = {
|
|
17657
17951
|
readonly project_uuid: string;
|
|
17658
17952
|
readonly project_name: string;
|
|
@@ -17876,8 +18170,8 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
17876
18170
|
limit_cost: number;
|
|
17877
18171
|
period?: PolicyPeriodEnum;
|
|
17878
18172
|
readonly period_name: string;
|
|
17879
|
-
readonly project_credit:
|
|
17880
|
-
readonly customer_credit:
|
|
18173
|
+
readonly project_credit: string | null;
|
|
18174
|
+
readonly customer_credit: string | null;
|
|
17881
18175
|
billing_price_estimate: NestedPriceEstimate;
|
|
17882
18176
|
};
|
|
17883
18177
|
export type ProjectEstimatedCostPolicyRequest = {
|
|
@@ -18055,6 +18349,39 @@ export type ProjectServiceAccountRequest = {
|
|
|
18055
18349
|
preferred_identifier?: string;
|
|
18056
18350
|
project: string | null;
|
|
18057
18351
|
};
|
|
18352
|
+
export type ProjectStorageReport = {
|
|
18353
|
+
project: string;
|
|
18354
|
+
/**
|
|
18355
|
+
* RFC3339 timestamp
|
|
18356
|
+
*/
|
|
18357
|
+
generated_at: string;
|
|
18358
|
+
/**
|
|
18359
|
+
* Volume → Quota
|
|
18360
|
+
*/
|
|
18361
|
+
project_quotas: {
|
|
18362
|
+
[key: string]: OpenPortalQuota;
|
|
18363
|
+
};
|
|
18364
|
+
/**
|
|
18365
|
+
* UserIdentifier → (Volume → Quota)
|
|
18366
|
+
*/
|
|
18367
|
+
user_quotas: {
|
|
18368
|
+
[key: string]: {
|
|
18369
|
+
[key: string]: OpenPortalQuota;
|
|
18370
|
+
};
|
|
18371
|
+
};
|
|
18372
|
+
/**
|
|
18373
|
+
* UserIdentifier → local_username
|
|
18374
|
+
*/
|
|
18375
|
+
users: {
|
|
18376
|
+
[key: string]: string;
|
|
18377
|
+
};
|
|
18378
|
+
/**
|
|
18379
|
+
* "YYYY-MM-DD" → DailyStorageReportJson. Absent from JSON when there are no daily snapshots.
|
|
18380
|
+
*/
|
|
18381
|
+
daily_reports?: {
|
|
18382
|
+
[key: string]: DailyStorageReport;
|
|
18383
|
+
};
|
|
18384
|
+
};
|
|
18058
18385
|
export type ProjectTemplate = {
|
|
18059
18386
|
readonly uuid: string;
|
|
18060
18387
|
name: string;
|
|
@@ -18063,17 +18390,17 @@ export type ProjectTemplate = {
|
|
|
18063
18390
|
*/
|
|
18064
18391
|
offering?: string | null;
|
|
18065
18392
|
provider: string;
|
|
18066
|
-
provider_data:
|
|
18393
|
+
provider_data: BasicCustomer;
|
|
18067
18394
|
portal: string;
|
|
18068
18395
|
/**
|
|
18069
18396
|
* The key that is used to authenticate requests for this class.
|
|
18070
18397
|
*/
|
|
18071
18398
|
key?: string | null;
|
|
18072
18399
|
customer: string;
|
|
18073
|
-
customer_data:
|
|
18400
|
+
customer_data: BasicCustomer;
|
|
18074
18401
|
shortname?: string | null;
|
|
18075
18402
|
offerings: Array<string>;
|
|
18076
|
-
readonly offerings_data: Array<
|
|
18403
|
+
readonly offerings_data: Array<ResourceOffering>;
|
|
18077
18404
|
/**
|
|
18078
18405
|
* 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.
|
|
18079
18406
|
*/
|
|
@@ -18139,6 +18466,24 @@ export type ProjectType = {
|
|
|
18139
18466
|
name: string;
|
|
18140
18467
|
description?: string;
|
|
18141
18468
|
};
|
|
18469
|
+
export type ProjectUsageReport = {
|
|
18470
|
+
/**
|
|
18471
|
+
* ProjectIdentifier string e.g. "aiproject.brics"
|
|
18472
|
+
*/
|
|
18473
|
+
project: string;
|
|
18474
|
+
/**
|
|
18475
|
+
* "YYYY-MM-DD" → DailyProjectUsageReportJson
|
|
18476
|
+
*/
|
|
18477
|
+
reports: {
|
|
18478
|
+
[key: string]: DailyProjectUsageReport;
|
|
18479
|
+
};
|
|
18480
|
+
/**
|
|
18481
|
+
* UserIdentifier → local_username. e.g. { "chris.aiproject.brics": "chris.aiproject" }
|
|
18482
|
+
*/
|
|
18483
|
+
users: {
|
|
18484
|
+
[key: string]: string;
|
|
18485
|
+
};
|
|
18486
|
+
};
|
|
18142
18487
|
export type ProjectUser = {
|
|
18143
18488
|
readonly url: string;
|
|
18144
18489
|
readonly uuid: string;
|
|
@@ -18742,55 +19087,6 @@ export type ProviderOfferingDetails = {
|
|
|
18742
19087
|
*/
|
|
18743
19088
|
readonly google_calendar_link?: string | null;
|
|
18744
19089
|
};
|
|
18745
|
-
export type ProviderOfferingDetailsRequest = {
|
|
18746
|
-
name: string;
|
|
18747
|
-
/**
|
|
18748
|
-
* URL-friendly identifier. Only editable by staff users.
|
|
18749
|
-
*/
|
|
18750
|
-
slug?: string;
|
|
18751
|
-
description?: string;
|
|
18752
|
-
full_description?: string;
|
|
18753
|
-
privacy_policy_link?: string;
|
|
18754
|
-
helpdesk_url?: string;
|
|
18755
|
-
documentation_url?: string;
|
|
18756
|
-
/**
|
|
18757
|
-
* Publicly accessible offering access URL
|
|
18758
|
-
*/
|
|
18759
|
-
access_url?: string;
|
|
18760
|
-
customer?: string | null;
|
|
18761
|
-
category: string;
|
|
18762
|
-
attributes?: unknown;
|
|
18763
|
-
components?: Array<OfferingComponentRequest>;
|
|
18764
|
-
vendor_details?: string;
|
|
18765
|
-
getting_started?: string;
|
|
18766
|
-
integration_guide?: string;
|
|
18767
|
-
thumbnail?: (Blob | File) | null;
|
|
18768
|
-
plans?: Array<BaseProviderPlanRequest>;
|
|
18769
|
-
type: string;
|
|
18770
|
-
/**
|
|
18771
|
-
* Accessible to all customers.
|
|
18772
|
-
*/
|
|
18773
|
-
shared?: boolean;
|
|
18774
|
-
/**
|
|
18775
|
-
* Purchase and usage is invoiced.
|
|
18776
|
-
*/
|
|
18777
|
-
billable?: boolean;
|
|
18778
|
-
datacite_doi?: string;
|
|
18779
|
-
latitude?: number | null;
|
|
18780
|
-
longitude?: number | null;
|
|
18781
|
-
/**
|
|
18782
|
-
* Country code (ISO 3166-1 alpha-2)
|
|
18783
|
-
*/
|
|
18784
|
-
country?: CountryEnum | BlankEnum;
|
|
18785
|
-
backend_id?: string;
|
|
18786
|
-
/**
|
|
18787
|
-
* Validation rules for resource backend_id: format regex and uniqueness scope.
|
|
18788
|
-
*/
|
|
18789
|
-
backend_id_rules?: unknown;
|
|
18790
|
-
image?: (Blob | File) | null;
|
|
18791
|
-
backend_metadata?: unknown;
|
|
18792
|
-
compliance_checklist?: string | null;
|
|
18793
|
-
};
|
|
18794
19090
|
export type ProviderOfferingStats = {
|
|
18795
19091
|
/**
|
|
18796
19092
|
* Offering statistics including resources, revenue, and utilization
|
|
@@ -18829,11 +19125,11 @@ export type ProviderPlanDetails = {
|
|
|
18829
19125
|
[key: string]: string;
|
|
18830
19126
|
};
|
|
18831
19127
|
readonly quotas: {
|
|
18832
|
-
[key: string]:
|
|
19128
|
+
[key: string]: number;
|
|
18833
19129
|
};
|
|
18834
19130
|
readonly resources_count: number;
|
|
18835
19131
|
readonly plan_type: string;
|
|
18836
|
-
readonly minimal_price:
|
|
19132
|
+
readonly minimal_price: string;
|
|
18837
19133
|
};
|
|
18838
19134
|
export type ProviderPlanDetailsRequest = {
|
|
18839
19135
|
name: string;
|
|
@@ -19685,7 +19981,7 @@ export type RancherApplication = {
|
|
|
19685
19981
|
readonly created?: string;
|
|
19686
19982
|
readonly modified?: string;
|
|
19687
19983
|
backend_id?: string;
|
|
19688
|
-
|
|
19984
|
+
access_url?: Array<string> | string | null;
|
|
19689
19985
|
runtime_state?: string;
|
|
19690
19986
|
template?: string;
|
|
19691
19987
|
rancher_project?: string;
|
|
@@ -19823,7 +20119,7 @@ export type RancherCluster = {
|
|
|
19823
20119
|
readonly created?: string;
|
|
19824
20120
|
readonly modified?: string;
|
|
19825
20121
|
readonly backend_id?: string;
|
|
19826
|
-
|
|
20122
|
+
access_url?: Array<string> | string | null;
|
|
19827
20123
|
nodes?: Array<RancherNestedNode>;
|
|
19828
20124
|
tenant?: string;
|
|
19829
20125
|
readonly tenant_uuid?: string;
|
|
@@ -20043,7 +20339,7 @@ export type RancherIngress = {
|
|
|
20043
20339
|
readonly created?: string;
|
|
20044
20340
|
readonly modified?: string;
|
|
20045
20341
|
backend_id?: string;
|
|
20046
|
-
|
|
20342
|
+
access_url?: Array<string> | string | null;
|
|
20047
20343
|
runtime_state?: string;
|
|
20048
20344
|
rancher_project?: string;
|
|
20049
20345
|
readonly rancher_project_name?: string;
|
|
@@ -20232,7 +20528,7 @@ export type RancherService = {
|
|
|
20232
20528
|
readonly created?: string;
|
|
20233
20529
|
readonly modified?: string;
|
|
20234
20530
|
backend_id?: string;
|
|
20235
|
-
|
|
20531
|
+
access_url?: Array<string> | string | null;
|
|
20236
20532
|
runtime_state?: string;
|
|
20237
20533
|
namespace?: string;
|
|
20238
20534
|
readonly namespace_name?: string;
|
|
@@ -20281,7 +20577,7 @@ export type RancherServiceCreate = {
|
|
|
20281
20577
|
readonly created: string;
|
|
20282
20578
|
readonly modified: string;
|
|
20283
20579
|
backend_id?: string;
|
|
20284
|
-
|
|
20580
|
+
access_url: Array<string> | string | null;
|
|
20285
20581
|
runtime_state?: string;
|
|
20286
20582
|
namespace?: string;
|
|
20287
20583
|
readonly namespace_name: string;
|
|
@@ -20501,7 +20797,7 @@ export type RemoteAllocation = {
|
|
|
20501
20797
|
readonly created?: string;
|
|
20502
20798
|
readonly modified?: string;
|
|
20503
20799
|
readonly backend_id?: string;
|
|
20504
|
-
|
|
20800
|
+
access_url?: Array<string> | string | null;
|
|
20505
20801
|
node_limit?: number;
|
|
20506
20802
|
/**
|
|
20507
20803
|
* The identifier of the project in the remote OpenPortal instance.
|
|
@@ -21077,54 +21373,18 @@ export type ResourceLimitPeriod = {
|
|
|
21077
21373
|
total?: string;
|
|
21078
21374
|
};
|
|
21079
21375
|
export type ResourceMissingUsage = {
|
|
21080
|
-
|
|
21081
|
-
* UUID of the resource
|
|
21082
|
-
*/
|
|
21083
|
-
uuid: string;
|
|
21084
|
-
/**
|
|
21085
|
-
* Name of the resource
|
|
21086
|
-
*/
|
|
21376
|
+
readonly uuid: string;
|
|
21087
21377
|
name: string;
|
|
21088
|
-
|
|
21089
|
-
|
|
21090
|
-
|
|
21091
|
-
|
|
21092
|
-
|
|
21093
|
-
|
|
21094
|
-
|
|
21095
|
-
|
|
21096
|
-
|
|
21097
|
-
|
|
21098
|
-
*/
|
|
21099
|
-
offering_name: string;
|
|
21100
|
-
/**
|
|
21101
|
-
* UUID of the offering
|
|
21102
|
-
*/
|
|
21103
|
-
offering_uuid: string;
|
|
21104
|
-
/**
|
|
21105
|
-
* Name of the service provider
|
|
21106
|
-
*/
|
|
21107
|
-
provider_name: string;
|
|
21108
|
-
/**
|
|
21109
|
-
* UUID of the service provider
|
|
21110
|
-
*/
|
|
21111
|
-
provider_uuid: string;
|
|
21112
|
-
/**
|
|
21113
|
-
* Name of the customer organization
|
|
21114
|
-
*/
|
|
21115
|
-
customer_name: string;
|
|
21116
|
-
/**
|
|
21117
|
-
* UUID of the customer organization
|
|
21118
|
-
*/
|
|
21119
|
-
customer_uuid: string;
|
|
21120
|
-
/**
|
|
21121
|
-
* Name of the project
|
|
21122
|
-
*/
|
|
21123
|
-
project_name: string;
|
|
21124
|
-
/**
|
|
21125
|
-
* UUID of the project
|
|
21126
|
-
*/
|
|
21127
|
-
project_uuid: string;
|
|
21378
|
+
readonly state: string;
|
|
21379
|
+
readonly created: string;
|
|
21380
|
+
readonly offering_name: string;
|
|
21381
|
+
readonly offering_uuid: string;
|
|
21382
|
+
readonly provider_name: string;
|
|
21383
|
+
readonly provider_uuid: string;
|
|
21384
|
+
readonly customer_name: string;
|
|
21385
|
+
readonly customer_uuid: string;
|
|
21386
|
+
readonly project_name: string;
|
|
21387
|
+
readonly project_uuid: string;
|
|
21128
21388
|
/**
|
|
21129
21389
|
* Date of the last usage report
|
|
21130
21390
|
*/
|
|
@@ -21132,12 +21392,15 @@ export type ResourceMissingUsage = {
|
|
|
21132
21392
|
/**
|
|
21133
21393
|
* Number of days since last usage report
|
|
21134
21394
|
*/
|
|
21135
|
-
days_since_last_report: number | null;
|
|
21395
|
+
readonly days_since_last_report: number | null;
|
|
21136
21396
|
};
|
|
21137
21397
|
export type ResourceOffering = {
|
|
21138
21398
|
name: string;
|
|
21139
21399
|
readonly uuid: string;
|
|
21140
21400
|
};
|
|
21401
|
+
export type ResourceOfferingRequest = {
|
|
21402
|
+
name: string;
|
|
21403
|
+
};
|
|
21141
21404
|
export type ResourceOptionsRequest = {
|
|
21142
21405
|
options?: unknown;
|
|
21143
21406
|
};
|
|
@@ -22909,6 +23172,22 @@ export type SetErredRequest = {
|
|
|
22909
23172
|
export type SetErredResponse = {
|
|
22910
23173
|
detail: string;
|
|
22911
23174
|
};
|
|
23175
|
+
export type SetExternalGatewayRequest = {
|
|
23176
|
+
/**
|
|
23177
|
+
* Backend ID (OpenStack UUID) of the external network.
|
|
23178
|
+
*/
|
|
23179
|
+
external_network_id: string;
|
|
23180
|
+
/**
|
|
23181
|
+
* Whether to enable SNAT on the gateway. None means use OpenStack default (True). Requires advanced permissions.
|
|
23182
|
+
*/
|
|
23183
|
+
enable_snat?: boolean | null;
|
|
23184
|
+
/**
|
|
23185
|
+
* List of fixed IP specifications for the gateway port. Each entry should have 'ip_address' and optionally 'subnet_id'. Requires advanced permissions.
|
|
23186
|
+
*/
|
|
23187
|
+
external_fixed_ips?: Array<{
|
|
23188
|
+
[key: string]: unknown;
|
|
23189
|
+
}>;
|
|
23190
|
+
};
|
|
22912
23191
|
export type SetMtu = {
|
|
22913
23192
|
mtu: number;
|
|
22914
23193
|
};
|
|
@@ -23007,7 +23286,7 @@ export type SlurmAllocation = {
|
|
|
23007
23286
|
readonly created?: string;
|
|
23008
23287
|
readonly modified?: string;
|
|
23009
23288
|
readonly backend_id?: string;
|
|
23010
|
-
|
|
23289
|
+
access_url?: Array<string> | string | null;
|
|
23011
23290
|
readonly cpu_limit?: number;
|
|
23012
23291
|
readonly cpu_usage?: number;
|
|
23013
23292
|
readonly gpu_limit?: number;
|
|
@@ -24361,7 +24640,7 @@ export type UpdateOfferingComponentRequest = {
|
|
|
24361
24640
|
* The conversion factor from backend units to measured_unit
|
|
24362
24641
|
*/
|
|
24363
24642
|
unit_factor?: number;
|
|
24364
|
-
limit_period?: LimitPeriodEnum |
|
|
24643
|
+
limit_period?: LimitPeriodEnum | NullEnum | null;
|
|
24365
24644
|
limit_amount?: number | null;
|
|
24366
24645
|
article_code?: string;
|
|
24367
24646
|
max_value?: number | null;
|
|
@@ -24409,6 +24688,9 @@ export type UpdatePoolRequest = {
|
|
|
24409
24688
|
name: string;
|
|
24410
24689
|
};
|
|
24411
24690
|
export type UrgencyEnum = 'low' | 'medium' | 'high';
|
|
24691
|
+
export type Usage = {
|
|
24692
|
+
seconds: number;
|
|
24693
|
+
};
|
|
24412
24694
|
export type User = {
|
|
24413
24695
|
readonly url?: string;
|
|
24414
24696
|
readonly uuid?: string;
|
|
@@ -24494,6 +24776,7 @@ export type User = {
|
|
|
24494
24776
|
*/
|
|
24495
24777
|
personal_title?: string;
|
|
24496
24778
|
place_of_birth?: string;
|
|
24779
|
+
address?: string;
|
|
24497
24780
|
country_of_residence?: string;
|
|
24498
24781
|
/**
|
|
24499
24782
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -24637,7 +24920,7 @@ export type UserAgreementRequest = {
|
|
|
24637
24920
|
*/
|
|
24638
24921
|
language: string;
|
|
24639
24922
|
};
|
|
24640
|
-
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';
|
|
24923
|
+
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';
|
|
24641
24924
|
export type UserAuthMethodCount = {
|
|
24642
24925
|
/**
|
|
24643
24926
|
* Authentication method
|
|
@@ -24895,6 +25178,7 @@ export type UserRequest = {
|
|
|
24895
25178
|
*/
|
|
24896
25179
|
personal_title?: string;
|
|
24897
25180
|
place_of_birth?: string;
|
|
25181
|
+
address?: string;
|
|
24898
25182
|
country_of_residence?: string;
|
|
24899
25183
|
/**
|
|
24900
25184
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -25133,7 +25417,7 @@ export type VmwareDisk = {
|
|
|
25133
25417
|
readonly created?: string;
|
|
25134
25418
|
readonly modified?: string;
|
|
25135
25419
|
readonly backend_id?: string;
|
|
25136
|
-
|
|
25420
|
+
access_url?: Array<string> | string | null;
|
|
25137
25421
|
/**
|
|
25138
25422
|
* Size in MiB
|
|
25139
25423
|
*/
|
|
@@ -25248,7 +25532,7 @@ export type VmwarePort = {
|
|
|
25248
25532
|
readonly created?: string;
|
|
25249
25533
|
readonly modified?: string;
|
|
25250
25534
|
readonly backend_id?: string;
|
|
25251
|
-
|
|
25535
|
+
access_url?: Array<string> | string | null;
|
|
25252
25536
|
readonly mac_address?: string;
|
|
25253
25537
|
readonly vm?: string;
|
|
25254
25538
|
readonly vm_uuid?: string;
|
|
@@ -25327,7 +25611,7 @@ export type VmwareVirtualMachine = {
|
|
|
25327
25611
|
readonly created?: string;
|
|
25328
25612
|
readonly modified?: string;
|
|
25329
25613
|
readonly backend_id?: string;
|
|
25330
|
-
|
|
25614
|
+
access_url?: Array<string> | string | null;
|
|
25331
25615
|
guest_os?: GuestOsEnum | NullEnum | null;
|
|
25332
25616
|
readonly guest_os_name?: string;
|
|
25333
25617
|
/**
|
|
@@ -26599,6 +26883,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26599
26883
|
CURRENCY_NAME?: string;
|
|
26600
26884
|
THUMBNAIL_SIZE?: string;
|
|
26601
26885
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
26886
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
26602
26887
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
26603
26888
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
26604
26889
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -26854,6 +27139,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26854
27139
|
CURRENCY_NAME?: string;
|
|
26855
27140
|
THUMBNAIL_SIZE?: string;
|
|
26856
27141
|
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
27142
|
+
SHOW_OFFERING_COVER_IMAGE?: boolean;
|
|
26857
27143
|
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
26858
27144
|
RESTRICTED_OFFERING_VISIBILITY_MODE?: RestrictedofferingvisibilitymodeEnum;
|
|
26859
27145
|
ALLOW_SERVICE_PROVIDER_OFFERING_MANAGEMENT?: boolean;
|
|
@@ -27219,6 +27505,7 @@ export type UserRequestForm = {
|
|
|
27219
27505
|
*/
|
|
27220
27506
|
personal_title?: string;
|
|
27221
27507
|
place_of_birth?: string;
|
|
27508
|
+
address?: string;
|
|
27222
27509
|
country_of_residence?: string;
|
|
27223
27510
|
/**
|
|
27224
27511
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27310,6 +27597,7 @@ export type UserRequestMultipart = {
|
|
|
27310
27597
|
*/
|
|
27311
27598
|
personal_title?: string;
|
|
27312
27599
|
place_of_birth?: string;
|
|
27600
|
+
address?: string;
|
|
27313
27601
|
country_of_residence?: string;
|
|
27314
27602
|
/**
|
|
27315
27603
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27400,6 +27688,7 @@ export type PatchedUserRequestForm = {
|
|
|
27400
27688
|
*/
|
|
27401
27689
|
personal_title?: string;
|
|
27402
27690
|
place_of_birth?: string;
|
|
27691
|
+
address?: string;
|
|
27403
27692
|
country_of_residence?: string;
|
|
27404
27693
|
/**
|
|
27405
27694
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27490,6 +27779,7 @@ export type PatchedUserRequestMultipart = {
|
|
|
27490
27779
|
*/
|
|
27491
27780
|
personal_title?: string;
|
|
27492
27781
|
place_of_birth?: string;
|
|
27782
|
+
address?: string;
|
|
27493
27783
|
country_of_residence?: string;
|
|
27494
27784
|
/**
|
|
27495
27785
|
* Primary citizenship (ISO 3166-1 alpha-2 code)
|
|
@@ -27549,6 +27839,7 @@ export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expe
|
|
|
27549
27839
|
export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27550
27840
|
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';
|
|
27551
27841
|
export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
|
|
27842
|
+
export type ThreadSessionScopeEnum = 'own';
|
|
27552
27843
|
export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
|
|
27553
27844
|
export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
|
|
27554
27845
|
export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
|
|
@@ -27577,6 +27868,7 @@ export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id
|
|
|
27577
27868
|
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';
|
|
27578
27869
|
export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
|
|
27579
27870
|
export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
|
|
27871
|
+
export type ComponentUsageMonthlyFieldEnum = 'billing_period' | 'billing_type' | 'category_title' | 'category_uuid' | 'component_name' | 'component_type' | 'limit_amount' | 'limit_period' | 'measured_unit' | 'offering_name' | 'offering_type' | 'offering_uuid' | 'service_provider_name' | 'service_provider_uuid' | 'total_allocated' | 'total_consumed' | 'usage_percent';
|
|
27580
27872
|
export type ComponentUsageFieldEnum = 'billing_period' | 'created' | 'customer_name' | 'customer_uuid' | 'date' | 'description' | 'measured_unit' | 'modified_by' | 'name' | 'offering_name' | 'offering_uuid' | 'project_name' | 'project_uuid' | 'recurring' | 'resource_name' | 'resource_uuid' | 'type' | 'usage' | 'uuid';
|
|
27581
27873
|
export type ComponentUsageOEnum = '-billing_period' | '-usage' | 'billing_period' | 'usage';
|
|
27582
27874
|
export type ComponentUserUsageFieldEnum = 'backend_id' | 'billing_period' | 'component_type' | 'component_usage' | 'created' | 'customer_name' | 'customer_uuid' | 'date' | 'description' | 'measured_unit' | 'modified' | 'offering_name' | 'offering_uuid' | 'project_name' | 'project_uuid' | 'resource_name' | 'resource_uuid' | 'usage' | 'user' | 'username' | 'uuid';
|
|
@@ -27589,7 +27881,7 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
|
|
|
27589
27881
|
export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
|
|
27590
27882
|
export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
|
|
27591
27883
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
27592
|
-
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';
|
|
27884
|
+
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';
|
|
27593
27885
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
27594
27886
|
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';
|
|
27595
27887
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
@@ -27597,8 +27889,8 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
|
|
|
27597
27889
|
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';
|
|
27598
27890
|
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';
|
|
27599
27891
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
27600
|
-
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';
|
|
27601
|
-
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';
|
|
27892
|
+
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' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27893
|
+
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';
|
|
27602
27894
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27603
27895
|
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';
|
|
27604
27896
|
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';
|
|
@@ -27608,7 +27900,7 @@ export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_ab
|
|
|
27608
27900
|
export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
|
|
27609
27901
|
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';
|
|
27610
27902
|
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';
|
|
27611
|
-
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';
|
|
27903
|
+
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';
|
|
27612
27904
|
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';
|
|
27613
27905
|
export type AgentServiceStateEnum = 1 | 2 | 3;
|
|
27614
27906
|
export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
|
|
@@ -27641,7 +27933,7 @@ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_i
|
|
|
27641
27933
|
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';
|
|
27642
27934
|
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';
|
|
27643
27935
|
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';
|
|
27644
|
-
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';
|
|
27936
|
+
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';
|
|
27645
27937
|
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';
|
|
27646
27938
|
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';
|
|
27647
27939
|
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';
|
|
@@ -29090,6 +29382,271 @@ export type AdminArrowVendorOfferingMappingsVendorChoicesCountResponses = {
|
|
|
29090
29382
|
*/
|
|
29091
29383
|
200: unknown;
|
|
29092
29384
|
};
|
|
29385
|
+
export type AffiliatedOrganizationsListData = {
|
|
29386
|
+
body?: never;
|
|
29387
|
+
path?: never;
|
|
29388
|
+
query?: {
|
|
29389
|
+
/**
|
|
29390
|
+
* Abbreviation
|
|
29391
|
+
*/
|
|
29392
|
+
abbreviation?: string;
|
|
29393
|
+
/**
|
|
29394
|
+
* Code
|
|
29395
|
+
*/
|
|
29396
|
+
code?: string;
|
|
29397
|
+
/**
|
|
29398
|
+
* Country
|
|
29399
|
+
*/
|
|
29400
|
+
country?: string;
|
|
29401
|
+
/**
|
|
29402
|
+
* Name
|
|
29403
|
+
*/
|
|
29404
|
+
name?: string;
|
|
29405
|
+
/**
|
|
29406
|
+
* Name (exact)
|
|
29407
|
+
*/
|
|
29408
|
+
name_exact?: string;
|
|
29409
|
+
/**
|
|
29410
|
+
* Which field to use when ordering the results.
|
|
29411
|
+
*/
|
|
29412
|
+
o?: string;
|
|
29413
|
+
/**
|
|
29414
|
+
* A page number within the paginated result set.
|
|
29415
|
+
*/
|
|
29416
|
+
page?: number;
|
|
29417
|
+
/**
|
|
29418
|
+
* Number of results to return per page.
|
|
29419
|
+
*/
|
|
29420
|
+
page_size?: number;
|
|
29421
|
+
/**
|
|
29422
|
+
* Search
|
|
29423
|
+
*/
|
|
29424
|
+
query?: string;
|
|
29425
|
+
};
|
|
29426
|
+
url: '/api/affiliated-organizations/';
|
|
29427
|
+
};
|
|
29428
|
+
export type AffiliatedOrganizationsListResponses = {
|
|
29429
|
+
200: Array<AffiliatedOrganization>;
|
|
29430
|
+
};
|
|
29431
|
+
export type AffiliatedOrganizationsListResponse = AffiliatedOrganizationsListResponses[keyof AffiliatedOrganizationsListResponses];
|
|
29432
|
+
export type AffiliatedOrganizationsCountData = {
|
|
29433
|
+
body?: never;
|
|
29434
|
+
path?: never;
|
|
29435
|
+
query?: {
|
|
29436
|
+
/**
|
|
29437
|
+
* Abbreviation
|
|
29438
|
+
*/
|
|
29439
|
+
abbreviation?: string;
|
|
29440
|
+
/**
|
|
29441
|
+
* Code
|
|
29442
|
+
*/
|
|
29443
|
+
code?: string;
|
|
29444
|
+
/**
|
|
29445
|
+
* Country
|
|
29446
|
+
*/
|
|
29447
|
+
country?: string;
|
|
29448
|
+
/**
|
|
29449
|
+
* Name
|
|
29450
|
+
*/
|
|
29451
|
+
name?: string;
|
|
29452
|
+
/**
|
|
29453
|
+
* Name (exact)
|
|
29454
|
+
*/
|
|
29455
|
+
name_exact?: string;
|
|
29456
|
+
/**
|
|
29457
|
+
* Which field to use when ordering the results.
|
|
29458
|
+
*/
|
|
29459
|
+
o?: string;
|
|
29460
|
+
/**
|
|
29461
|
+
* A page number within the paginated result set.
|
|
29462
|
+
*/
|
|
29463
|
+
page?: number;
|
|
29464
|
+
/**
|
|
29465
|
+
* Number of results to return per page.
|
|
29466
|
+
*/
|
|
29467
|
+
page_size?: number;
|
|
29468
|
+
/**
|
|
29469
|
+
* Search
|
|
29470
|
+
*/
|
|
29471
|
+
query?: string;
|
|
29472
|
+
};
|
|
29473
|
+
url: '/api/affiliated-organizations/';
|
|
29474
|
+
};
|
|
29475
|
+
export type AffiliatedOrganizationsCountResponses = {
|
|
29476
|
+
/**
|
|
29477
|
+
* No response body
|
|
29478
|
+
*/
|
|
29479
|
+
200: unknown;
|
|
29480
|
+
};
|
|
29481
|
+
export type AffiliatedOrganizationsCreateData = {
|
|
29482
|
+
body: AffiliatedOrganizationRequest;
|
|
29483
|
+
path?: never;
|
|
29484
|
+
query?: never;
|
|
29485
|
+
url: '/api/affiliated-organizations/';
|
|
29486
|
+
};
|
|
29487
|
+
export type AffiliatedOrganizationsCreateResponses = {
|
|
29488
|
+
201: AffiliatedOrganization;
|
|
29489
|
+
};
|
|
29490
|
+
export type AffiliatedOrganizationsCreateResponse = AffiliatedOrganizationsCreateResponses[keyof AffiliatedOrganizationsCreateResponses];
|
|
29491
|
+
export type AffiliatedOrganizationsDestroyData = {
|
|
29492
|
+
body?: never;
|
|
29493
|
+
path: {
|
|
29494
|
+
uuid: string;
|
|
29495
|
+
};
|
|
29496
|
+
query?: never;
|
|
29497
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29498
|
+
};
|
|
29499
|
+
export type AffiliatedOrganizationsDestroyResponses = {
|
|
29500
|
+
/**
|
|
29501
|
+
* No response body
|
|
29502
|
+
*/
|
|
29503
|
+
204: void;
|
|
29504
|
+
};
|
|
29505
|
+
export type AffiliatedOrganizationsDestroyResponse = AffiliatedOrganizationsDestroyResponses[keyof AffiliatedOrganizationsDestroyResponses];
|
|
29506
|
+
export type AffiliatedOrganizationsRetrieveData = {
|
|
29507
|
+
body?: never;
|
|
29508
|
+
path: {
|
|
29509
|
+
uuid: string;
|
|
29510
|
+
};
|
|
29511
|
+
query?: never;
|
|
29512
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29513
|
+
};
|
|
29514
|
+
export type AffiliatedOrganizationsRetrieveResponses = {
|
|
29515
|
+
200: AffiliatedOrganization;
|
|
29516
|
+
};
|
|
29517
|
+
export type AffiliatedOrganizationsRetrieveResponse = AffiliatedOrganizationsRetrieveResponses[keyof AffiliatedOrganizationsRetrieveResponses];
|
|
29518
|
+
export type AffiliatedOrganizationsPartialUpdateData = {
|
|
29519
|
+
body?: PatchedAffiliatedOrganizationRequest;
|
|
29520
|
+
path: {
|
|
29521
|
+
uuid: string;
|
|
29522
|
+
};
|
|
29523
|
+
query?: never;
|
|
29524
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29525
|
+
};
|
|
29526
|
+
export type AffiliatedOrganizationsPartialUpdateResponses = {
|
|
29527
|
+
200: AffiliatedOrganization;
|
|
29528
|
+
};
|
|
29529
|
+
export type AffiliatedOrganizationsPartialUpdateResponse = AffiliatedOrganizationsPartialUpdateResponses[keyof AffiliatedOrganizationsPartialUpdateResponses];
|
|
29530
|
+
export type AffiliatedOrganizationsUpdateData = {
|
|
29531
|
+
body: AffiliatedOrganizationRequest;
|
|
29532
|
+
path: {
|
|
29533
|
+
uuid: string;
|
|
29534
|
+
};
|
|
29535
|
+
query?: never;
|
|
29536
|
+
url: '/api/affiliated-organizations/{uuid}/';
|
|
29537
|
+
};
|
|
29538
|
+
export type AffiliatedOrganizationsUpdateResponses = {
|
|
29539
|
+
200: AffiliatedOrganization;
|
|
29540
|
+
};
|
|
29541
|
+
export type AffiliatedOrganizationsUpdateResponse = AffiliatedOrganizationsUpdateResponses[keyof AffiliatedOrganizationsUpdateResponses];
|
|
29542
|
+
export type AffiliatedOrganizationsStatsRetrieveData = {
|
|
29543
|
+
body?: never;
|
|
29544
|
+
path: {
|
|
29545
|
+
uuid: string;
|
|
29546
|
+
};
|
|
29547
|
+
query?: never;
|
|
29548
|
+
url: '/api/affiliated-organizations/{uuid}/stats/';
|
|
29549
|
+
};
|
|
29550
|
+
export type AffiliatedOrganizationsStatsRetrieveResponses = {
|
|
29551
|
+
200: AffiliatedOrganizationStats;
|
|
29552
|
+
};
|
|
29553
|
+
export type AffiliatedOrganizationsStatsRetrieveResponse = AffiliatedOrganizationsStatsRetrieveResponses[keyof AffiliatedOrganizationsStatsRetrieveResponses];
|
|
29554
|
+
export type AffiliatedOrganizationsReportListData = {
|
|
29555
|
+
body?: never;
|
|
29556
|
+
path?: never;
|
|
29557
|
+
query?: {
|
|
29558
|
+
/**
|
|
29559
|
+
* Abbreviation
|
|
29560
|
+
*/
|
|
29561
|
+
abbreviation?: string;
|
|
29562
|
+
/**
|
|
29563
|
+
* Code
|
|
29564
|
+
*/
|
|
29565
|
+
code?: string;
|
|
29566
|
+
/**
|
|
29567
|
+
* Country
|
|
29568
|
+
*/
|
|
29569
|
+
country?: string;
|
|
29570
|
+
/**
|
|
29571
|
+
* Name
|
|
29572
|
+
*/
|
|
29573
|
+
name?: string;
|
|
29574
|
+
/**
|
|
29575
|
+
* Name (exact)
|
|
29576
|
+
*/
|
|
29577
|
+
name_exact?: string;
|
|
29578
|
+
/**
|
|
29579
|
+
* Which field to use when ordering the results.
|
|
29580
|
+
*/
|
|
29581
|
+
o?: string;
|
|
29582
|
+
/**
|
|
29583
|
+
* A page number within the paginated result set.
|
|
29584
|
+
*/
|
|
29585
|
+
page?: number;
|
|
29586
|
+
/**
|
|
29587
|
+
* Number of results to return per page.
|
|
29588
|
+
*/
|
|
29589
|
+
page_size?: number;
|
|
29590
|
+
/**
|
|
29591
|
+
* Search
|
|
29592
|
+
*/
|
|
29593
|
+
query?: string;
|
|
29594
|
+
};
|
|
29595
|
+
url: '/api/affiliated-organizations/report/';
|
|
29596
|
+
};
|
|
29597
|
+
export type AffiliatedOrganizationsReportListResponses = {
|
|
29598
|
+
200: Array<AffiliatedOrganizationReportRow>;
|
|
29599
|
+
};
|
|
29600
|
+
export type AffiliatedOrganizationsReportListResponse = AffiliatedOrganizationsReportListResponses[keyof AffiliatedOrganizationsReportListResponses];
|
|
29601
|
+
export type AffiliatedOrganizationsReportCountData = {
|
|
29602
|
+
body?: never;
|
|
29603
|
+
path?: never;
|
|
29604
|
+
query?: {
|
|
29605
|
+
/**
|
|
29606
|
+
* Abbreviation
|
|
29607
|
+
*/
|
|
29608
|
+
abbreviation?: string;
|
|
29609
|
+
/**
|
|
29610
|
+
* Code
|
|
29611
|
+
*/
|
|
29612
|
+
code?: string;
|
|
29613
|
+
/**
|
|
29614
|
+
* Country
|
|
29615
|
+
*/
|
|
29616
|
+
country?: string;
|
|
29617
|
+
/**
|
|
29618
|
+
* Name
|
|
29619
|
+
*/
|
|
29620
|
+
name?: string;
|
|
29621
|
+
/**
|
|
29622
|
+
* Name (exact)
|
|
29623
|
+
*/
|
|
29624
|
+
name_exact?: string;
|
|
29625
|
+
/**
|
|
29626
|
+
* Which field to use when ordering the results.
|
|
29627
|
+
*/
|
|
29628
|
+
o?: string;
|
|
29629
|
+
/**
|
|
29630
|
+
* A page number within the paginated result set.
|
|
29631
|
+
*/
|
|
29632
|
+
page?: number;
|
|
29633
|
+
/**
|
|
29634
|
+
* Number of results to return per page.
|
|
29635
|
+
*/
|
|
29636
|
+
page_size?: number;
|
|
29637
|
+
/**
|
|
29638
|
+
* Search
|
|
29639
|
+
*/
|
|
29640
|
+
query?: string;
|
|
29641
|
+
};
|
|
29642
|
+
url: '/api/affiliated-organizations/report/';
|
|
29643
|
+
};
|
|
29644
|
+
export type AffiliatedOrganizationsReportCountResponses = {
|
|
29645
|
+
/**
|
|
29646
|
+
* No response body
|
|
29647
|
+
*/
|
|
29648
|
+
200: unknown;
|
|
29649
|
+
};
|
|
29093
29650
|
export type AssignmentBatchesListData = {
|
|
29094
29651
|
body?: never;
|
|
29095
29652
|
path?: never;
|
|
@@ -34106,6 +34663,7 @@ export type ChatThreadsListData = {
|
|
|
34106
34663
|
*/
|
|
34107
34664
|
page_size?: number;
|
|
34108
34665
|
query?: string;
|
|
34666
|
+
scope?: ThreadSessionScopeEnum;
|
|
34109
34667
|
total_tokens_max?: number;
|
|
34110
34668
|
total_tokens_min?: number;
|
|
34111
34669
|
user?: string;
|
|
@@ -41796,6 +42354,73 @@ export type MarketplaceCategoryHelpArticlesUpdateResponses = {
|
|
|
41796
42354
|
200: CategoryHelpArticles;
|
|
41797
42355
|
};
|
|
41798
42356
|
export type MarketplaceCategoryHelpArticlesUpdateResponse = MarketplaceCategoryHelpArticlesUpdateResponses[keyof MarketplaceCategoryHelpArticlesUpdateResponses];
|
|
42357
|
+
export type MarketplaceComponentUsageMonthlyListData = {
|
|
42358
|
+
body?: never;
|
|
42359
|
+
path?: never;
|
|
42360
|
+
query?: {
|
|
42361
|
+
billing_period?: string;
|
|
42362
|
+
billing_type?: string;
|
|
42363
|
+
component_type?: string;
|
|
42364
|
+
customer_uuid?: string;
|
|
42365
|
+
end?: string;
|
|
42366
|
+
field?: Array<ComponentUsageMonthlyFieldEnum>;
|
|
42367
|
+
/**
|
|
42368
|
+
* Which field to use when ordering the results.
|
|
42369
|
+
*/
|
|
42370
|
+
o?: string;
|
|
42371
|
+
offering_type?: string;
|
|
42372
|
+
offering_uuid?: string;
|
|
42373
|
+
/**
|
|
42374
|
+
* A page number within the paginated result set.
|
|
42375
|
+
*/
|
|
42376
|
+
page?: number;
|
|
42377
|
+
/**
|
|
42378
|
+
* Number of results to return per page.
|
|
42379
|
+
*/
|
|
42380
|
+
page_size?: number;
|
|
42381
|
+
project_uuid?: string;
|
|
42382
|
+
start?: string;
|
|
42383
|
+
};
|
|
42384
|
+
url: '/api/marketplace-component-usage-monthly/';
|
|
42385
|
+
};
|
|
42386
|
+
export type MarketplaceComponentUsageMonthlyListResponses = {
|
|
42387
|
+
200: Array<ComponentUsageMonthly>;
|
|
42388
|
+
};
|
|
42389
|
+
export type MarketplaceComponentUsageMonthlyListResponse = MarketplaceComponentUsageMonthlyListResponses[keyof MarketplaceComponentUsageMonthlyListResponses];
|
|
42390
|
+
export type MarketplaceComponentUsageMonthlyCountData = {
|
|
42391
|
+
body?: never;
|
|
42392
|
+
path?: never;
|
|
42393
|
+
query?: {
|
|
42394
|
+
billing_period?: string;
|
|
42395
|
+
billing_type?: string;
|
|
42396
|
+
component_type?: string;
|
|
42397
|
+
customer_uuid?: string;
|
|
42398
|
+
end?: string;
|
|
42399
|
+
/**
|
|
42400
|
+
* Which field to use when ordering the results.
|
|
42401
|
+
*/
|
|
42402
|
+
o?: string;
|
|
42403
|
+
offering_type?: string;
|
|
42404
|
+
offering_uuid?: string;
|
|
42405
|
+
/**
|
|
42406
|
+
* A page number within the paginated result set.
|
|
42407
|
+
*/
|
|
42408
|
+
page?: number;
|
|
42409
|
+
/**
|
|
42410
|
+
* Number of results to return per page.
|
|
42411
|
+
*/
|
|
42412
|
+
page_size?: number;
|
|
42413
|
+
project_uuid?: string;
|
|
42414
|
+
start?: string;
|
|
42415
|
+
};
|
|
42416
|
+
url: '/api/marketplace-component-usage-monthly/';
|
|
42417
|
+
};
|
|
42418
|
+
export type MarketplaceComponentUsageMonthlyCountResponses = {
|
|
42419
|
+
/**
|
|
42420
|
+
* No response body
|
|
42421
|
+
*/
|
|
42422
|
+
200: unknown;
|
|
42423
|
+
};
|
|
41799
42424
|
export type MarketplaceComponentUsagesListData = {
|
|
41800
42425
|
body?: never;
|
|
41801
42426
|
path?: never;
|
|
@@ -44228,6 +44853,10 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
44228
44853
|
*/
|
|
44229
44854
|
o?: Array<OfferingUserOEnum>;
|
|
44230
44855
|
offering?: string;
|
|
44856
|
+
/**
|
|
44857
|
+
* Offering has active Terms of Service
|
|
44858
|
+
*/
|
|
44859
|
+
offering_has_active_tos?: boolean;
|
|
44231
44860
|
/**
|
|
44232
44861
|
* Multiple values may be separated by commas.
|
|
44233
44862
|
*/
|
|
@@ -44313,6 +44942,10 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
44313
44942
|
*/
|
|
44314
44943
|
o?: Array<OfferingUserOEnum>;
|
|
44315
44944
|
offering?: string;
|
|
44945
|
+
/**
|
|
44946
|
+
* Offering has active Terms of Service
|
|
44947
|
+
*/
|
|
44948
|
+
offering_has_active_tos?: boolean;
|
|
44316
44949
|
/**
|
|
44317
44950
|
* Multiple values may be separated by commas.
|
|
44318
44951
|
*/
|
|
@@ -52757,6 +53390,14 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52757
53390
|
service_provider_uuid: string;
|
|
52758
53391
|
};
|
|
52759
53392
|
query: {
|
|
53393
|
+
/**
|
|
53394
|
+
* Affiliated organization name
|
|
53395
|
+
*/
|
|
53396
|
+
affiliated_organization_name?: string;
|
|
53397
|
+
/**
|
|
53398
|
+
* Affiliated organization UUID
|
|
53399
|
+
*/
|
|
53400
|
+
affiliated_organization_uuid?: Array<string>;
|
|
52760
53401
|
backend_id?: string;
|
|
52761
53402
|
/**
|
|
52762
53403
|
* Return a list of projects where current user is admin.
|
|
@@ -52799,6 +53440,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
52799
53440
|
*/
|
|
52800
53441
|
description?: string;
|
|
52801
53442
|
field?: Array<MarketplaceProviderCustomerProjectFieldEnum>;
|
|
53443
|
+
/**
|
|
53444
|
+
* Filter projects that have at least one affiliated organization.
|
|
53445
|
+
*/
|
|
53446
|
+
has_affiliated_organization?: boolean;
|
|
52802
53447
|
/**
|
|
52803
53448
|
* Is removed
|
|
52804
53449
|
*/
|
|
@@ -53295,6 +53940,14 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53295
53940
|
service_provider_uuid: string;
|
|
53296
53941
|
};
|
|
53297
53942
|
query?: {
|
|
53943
|
+
/**
|
|
53944
|
+
* Affiliated organization name
|
|
53945
|
+
*/
|
|
53946
|
+
affiliated_organization_name?: string;
|
|
53947
|
+
/**
|
|
53948
|
+
* Affiliated organization UUID
|
|
53949
|
+
*/
|
|
53950
|
+
affiliated_organization_uuid?: Array<string>;
|
|
53298
53951
|
backend_id?: string;
|
|
53299
53952
|
/**
|
|
53300
53953
|
* Return a list of projects where current user is admin.
|
|
@@ -53337,6 +53990,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
53337
53990
|
*/
|
|
53338
53991
|
description?: string;
|
|
53339
53992
|
field?: Array<ProjectFieldEnum>;
|
|
53993
|
+
/**
|
|
53994
|
+
* Filter projects that have at least one affiliated organization.
|
|
53995
|
+
*/
|
|
53996
|
+
has_affiliated_organization?: boolean;
|
|
53340
53997
|
/**
|
|
53341
53998
|
* Is removed
|
|
53342
53999
|
*/
|
|
@@ -55596,10 +56253,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
|
|
|
55596
56253
|
body?: never;
|
|
55597
56254
|
path?: never;
|
|
55598
56255
|
query?: {
|
|
55599
|
-
/**
|
|
55600
|
-
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55601
|
-
*/
|
|
55602
|
-
limit?: number;
|
|
55603
56256
|
/**
|
|
55604
56257
|
* A page number within the paginated result set.
|
|
55605
56258
|
*/
|
|
@@ -55619,10 +56272,6 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
|
|
|
55619
56272
|
body?: never;
|
|
55620
56273
|
path?: never;
|
|
55621
56274
|
query?: {
|
|
55622
|
-
/**
|
|
55623
|
-
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55624
|
-
*/
|
|
55625
|
-
limit?: number;
|
|
55626
56275
|
/**
|
|
55627
56276
|
* A page number within the paginated result set.
|
|
55628
56277
|
*/
|
|
@@ -59277,6 +59926,64 @@ export type OnboardingSupportedCountriesRetrieveResponses = {
|
|
|
59277
59926
|
200: SupportedCountriesResponse;
|
|
59278
59927
|
};
|
|
59279
59928
|
export type OnboardingSupportedCountriesRetrieveResponse = OnboardingSupportedCountriesRetrieveResponses[keyof OnboardingSupportedCountriesRetrieveResponses];
|
|
59929
|
+
export type OpenportalAccountingSummaryListData = {
|
|
59930
|
+
body?: never;
|
|
59931
|
+
path?: never;
|
|
59932
|
+
query?: {
|
|
59933
|
+
customer_uuid?: string;
|
|
59934
|
+
is_active?: boolean;
|
|
59935
|
+
/**
|
|
59936
|
+
* A page number within the paginated result set.
|
|
59937
|
+
*/
|
|
59938
|
+
page?: number;
|
|
59939
|
+
/**
|
|
59940
|
+
* Number of results to return per page.
|
|
59941
|
+
*/
|
|
59942
|
+
page_size?: number;
|
|
59943
|
+
project_uuid?: string;
|
|
59944
|
+
};
|
|
59945
|
+
url: '/api/openportal-accounting-summary/';
|
|
59946
|
+
};
|
|
59947
|
+
export type OpenportalAccountingSummaryListResponses = {
|
|
59948
|
+
200: Array<ProjectAccountingSummary>;
|
|
59949
|
+
};
|
|
59950
|
+
export type OpenportalAccountingSummaryListResponse = OpenportalAccountingSummaryListResponses[keyof OpenportalAccountingSummaryListResponses];
|
|
59951
|
+
export type OpenportalAccountingSummaryCountData = {
|
|
59952
|
+
body?: never;
|
|
59953
|
+
path?: never;
|
|
59954
|
+
query?: {
|
|
59955
|
+
customer_uuid?: string;
|
|
59956
|
+
is_active?: boolean;
|
|
59957
|
+
/**
|
|
59958
|
+
* A page number within the paginated result set.
|
|
59959
|
+
*/
|
|
59960
|
+
page?: number;
|
|
59961
|
+
/**
|
|
59962
|
+
* Number of results to return per page.
|
|
59963
|
+
*/
|
|
59964
|
+
page_size?: number;
|
|
59965
|
+
project_uuid?: string;
|
|
59966
|
+
};
|
|
59967
|
+
url: '/api/openportal-accounting-summary/';
|
|
59968
|
+
};
|
|
59969
|
+
export type OpenportalAccountingSummaryCountResponses = {
|
|
59970
|
+
/**
|
|
59971
|
+
* No response body
|
|
59972
|
+
*/
|
|
59973
|
+
200: unknown;
|
|
59974
|
+
};
|
|
59975
|
+
export type OpenportalAccountingSummaryRetrieveData = {
|
|
59976
|
+
body?: never;
|
|
59977
|
+
path: {
|
|
59978
|
+
uuid: string;
|
|
59979
|
+
};
|
|
59980
|
+
query?: never;
|
|
59981
|
+
url: '/api/openportal-accounting-summary/{uuid}/';
|
|
59982
|
+
};
|
|
59983
|
+
export type OpenportalAccountingSummaryRetrieveResponses = {
|
|
59984
|
+
200: ProjectAccountingSummary;
|
|
59985
|
+
};
|
|
59986
|
+
export type OpenportalAccountingSummaryRetrieveResponse = OpenportalAccountingSummaryRetrieveResponses[keyof OpenportalAccountingSummaryRetrieveResponses];
|
|
59280
59987
|
export type OpenportalAllocationUserUsageListData = {
|
|
59281
59988
|
body?: never;
|
|
59282
59989
|
path?: never;
|
|
@@ -59727,6 +60434,10 @@ export type OpenportalManagedProjectsListData = {
|
|
|
59727
60434
|
query?: {
|
|
59728
60435
|
identifier?: string;
|
|
59729
60436
|
local_identifier?: string;
|
|
60437
|
+
/**
|
|
60438
|
+
* Which field to use when ordering the results.
|
|
60439
|
+
*/
|
|
60440
|
+
o?: string;
|
|
59730
60441
|
/**
|
|
59731
60442
|
* A page number within the paginated result set.
|
|
59732
60443
|
*/
|
|
@@ -59739,6 +60450,7 @@ export type OpenportalManagedProjectsListData = {
|
|
|
59739
60450
|
project_template?: string;
|
|
59740
60451
|
project_template_uuid?: string;
|
|
59741
60452
|
project_uuid?: string;
|
|
60453
|
+
query?: string;
|
|
59742
60454
|
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
59743
60455
|
};
|
|
59744
60456
|
url: '/api/openportal-managed-projects/';
|
|
@@ -59753,6 +60465,10 @@ export type OpenportalManagedProjectsCountData = {
|
|
|
59753
60465
|
query?: {
|
|
59754
60466
|
identifier?: string;
|
|
59755
60467
|
local_identifier?: string;
|
|
60468
|
+
/**
|
|
60469
|
+
* Which field to use when ordering the results.
|
|
60470
|
+
*/
|
|
60471
|
+
o?: string;
|
|
59756
60472
|
/**
|
|
59757
60473
|
* A page number within the paginated result set.
|
|
59758
60474
|
*/
|
|
@@ -59765,6 +60481,7 @@ export type OpenportalManagedProjectsCountData = {
|
|
|
59765
60481
|
project_template?: string;
|
|
59766
60482
|
project_template_uuid?: string;
|
|
59767
60483
|
project_uuid?: string;
|
|
60484
|
+
query?: string;
|
|
59768
60485
|
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
59769
60486
|
};
|
|
59770
60487
|
url: '/api/openportal-managed-projects/';
|
|
@@ -59921,6 +60638,71 @@ export type OpenportalManagedProjectsRejectResponses = {
|
|
|
59921
60638
|
*/
|
|
59922
60639
|
200: unknown;
|
|
59923
60640
|
};
|
|
60641
|
+
export type OpenportalProjectStorageReportsListData = {
|
|
60642
|
+
body?: never;
|
|
60643
|
+
path?: never;
|
|
60644
|
+
query?: {
|
|
60645
|
+
month?: number;
|
|
60646
|
+
/**
|
|
60647
|
+
* A page number within the paginated result set.
|
|
60648
|
+
*/
|
|
60649
|
+
page?: number;
|
|
60650
|
+
/**
|
|
60651
|
+
* Number of results to return per page.
|
|
60652
|
+
*/
|
|
60653
|
+
page_size?: number;
|
|
60654
|
+
project_identifier?: string;
|
|
60655
|
+
project_uuid?: string;
|
|
60656
|
+
resource?: string;
|
|
60657
|
+
year?: number;
|
|
60658
|
+
};
|
|
60659
|
+
url: '/api/openportal-project-storage-reports/';
|
|
60660
|
+
};
|
|
60661
|
+
export type OpenportalProjectStorageReportsListResponses = {
|
|
60662
|
+
200: Array<CachedProjectStorageReport>;
|
|
60663
|
+
};
|
|
60664
|
+
export type OpenportalProjectStorageReportsListResponse = OpenportalProjectStorageReportsListResponses[keyof OpenportalProjectStorageReportsListResponses];
|
|
60665
|
+
export type OpenportalProjectStorageReportsCountData = {
|
|
60666
|
+
body?: never;
|
|
60667
|
+
path?: never;
|
|
60668
|
+
query?: {
|
|
60669
|
+
month?: number;
|
|
60670
|
+
/**
|
|
60671
|
+
* A page number within the paginated result set.
|
|
60672
|
+
*/
|
|
60673
|
+
page?: number;
|
|
60674
|
+
/**
|
|
60675
|
+
* Number of results to return per page.
|
|
60676
|
+
*/
|
|
60677
|
+
page_size?: number;
|
|
60678
|
+
project_identifier?: string;
|
|
60679
|
+
project_uuid?: string;
|
|
60680
|
+
resource?: string;
|
|
60681
|
+
year?: number;
|
|
60682
|
+
};
|
|
60683
|
+
url: '/api/openportal-project-storage-reports/';
|
|
60684
|
+
};
|
|
60685
|
+
export type OpenportalProjectStorageReportsCountResponses = {
|
|
60686
|
+
/**
|
|
60687
|
+
* No response body
|
|
60688
|
+
*/
|
|
60689
|
+
200: unknown;
|
|
60690
|
+
};
|
|
60691
|
+
export type OpenportalProjectStorageReportsRetrieveData = {
|
|
60692
|
+
body?: never;
|
|
60693
|
+
path: {
|
|
60694
|
+
/**
|
|
60695
|
+
* A unique integer value identifying this cached project storage report.
|
|
60696
|
+
*/
|
|
60697
|
+
id: number;
|
|
60698
|
+
};
|
|
60699
|
+
query?: never;
|
|
60700
|
+
url: '/api/openportal-project-storage-reports/{id}/';
|
|
60701
|
+
};
|
|
60702
|
+
export type OpenportalProjectStorageReportsRetrieveResponses = {
|
|
60703
|
+
200: CachedProjectStorageReport;
|
|
60704
|
+
};
|
|
60705
|
+
export type OpenportalProjectStorageReportsRetrieveResponse = OpenportalProjectStorageReportsRetrieveResponses[keyof OpenportalProjectStorageReportsRetrieveResponses];
|
|
59924
60706
|
export type OpenportalProjectTemplateListData = {
|
|
59925
60707
|
body?: never;
|
|
59926
60708
|
path?: never;
|
|
@@ -60043,6 +60825,73 @@ export type OpenportalProjectTemplateDeleteDestroyResponses = {
|
|
|
60043
60825
|
204: void;
|
|
60044
60826
|
};
|
|
60045
60827
|
export type OpenportalProjectTemplateDeleteDestroyResponse = OpenportalProjectTemplateDeleteDestroyResponses[keyof OpenportalProjectTemplateDeleteDestroyResponses];
|
|
60828
|
+
export type OpenportalProjectUsageReportsListData = {
|
|
60829
|
+
body?: never;
|
|
60830
|
+
path?: never;
|
|
60831
|
+
query?: {
|
|
60832
|
+
is_complete?: boolean;
|
|
60833
|
+
month?: number;
|
|
60834
|
+
/**
|
|
60835
|
+
* A page number within the paginated result set.
|
|
60836
|
+
*/
|
|
60837
|
+
page?: number;
|
|
60838
|
+
/**
|
|
60839
|
+
* Number of results to return per page.
|
|
60840
|
+
*/
|
|
60841
|
+
page_size?: number;
|
|
60842
|
+
project_identifier?: string;
|
|
60843
|
+
project_uuid?: string;
|
|
60844
|
+
resource?: string;
|
|
60845
|
+
year?: number;
|
|
60846
|
+
};
|
|
60847
|
+
url: '/api/openportal-project-usage-reports/';
|
|
60848
|
+
};
|
|
60849
|
+
export type OpenportalProjectUsageReportsListResponses = {
|
|
60850
|
+
200: Array<CachedProjectUsageReport>;
|
|
60851
|
+
};
|
|
60852
|
+
export type OpenportalProjectUsageReportsListResponse = OpenportalProjectUsageReportsListResponses[keyof OpenportalProjectUsageReportsListResponses];
|
|
60853
|
+
export type OpenportalProjectUsageReportsCountData = {
|
|
60854
|
+
body?: never;
|
|
60855
|
+
path?: never;
|
|
60856
|
+
query?: {
|
|
60857
|
+
is_complete?: boolean;
|
|
60858
|
+
month?: number;
|
|
60859
|
+
/**
|
|
60860
|
+
* A page number within the paginated result set.
|
|
60861
|
+
*/
|
|
60862
|
+
page?: number;
|
|
60863
|
+
/**
|
|
60864
|
+
* Number of results to return per page.
|
|
60865
|
+
*/
|
|
60866
|
+
page_size?: number;
|
|
60867
|
+
project_identifier?: string;
|
|
60868
|
+
project_uuid?: string;
|
|
60869
|
+
resource?: string;
|
|
60870
|
+
year?: number;
|
|
60871
|
+
};
|
|
60872
|
+
url: '/api/openportal-project-usage-reports/';
|
|
60873
|
+
};
|
|
60874
|
+
export type OpenportalProjectUsageReportsCountResponses = {
|
|
60875
|
+
/**
|
|
60876
|
+
* No response body
|
|
60877
|
+
*/
|
|
60878
|
+
200: unknown;
|
|
60879
|
+
};
|
|
60880
|
+
export type OpenportalProjectUsageReportsRetrieveData = {
|
|
60881
|
+
body?: never;
|
|
60882
|
+
path: {
|
|
60883
|
+
/**
|
|
60884
|
+
* A unique integer value identifying this cached project usage report.
|
|
60885
|
+
*/
|
|
60886
|
+
id: number;
|
|
60887
|
+
};
|
|
60888
|
+
query?: never;
|
|
60889
|
+
url: '/api/openportal-project-usage-reports/{id}/';
|
|
60890
|
+
};
|
|
60891
|
+
export type OpenportalProjectUsageReportsRetrieveResponses = {
|
|
60892
|
+
200: CachedProjectUsageReport;
|
|
60893
|
+
};
|
|
60894
|
+
export type OpenportalProjectUsageReportsRetrieveResponse = OpenportalProjectUsageReportsRetrieveResponses[keyof OpenportalProjectUsageReportsRetrieveResponses];
|
|
60046
60895
|
export type OpenportalProjectinfoListData = {
|
|
60047
60896
|
body?: never;
|
|
60048
60897
|
path?: never;
|
|
@@ -60557,6 +61406,14 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60557
61406
|
* Filter by whether accounting is running.
|
|
60558
61407
|
*/
|
|
60559
61408
|
accounting_is_running?: boolean;
|
|
61409
|
+
/**
|
|
61410
|
+
* Affiliated organization name
|
|
61411
|
+
*/
|
|
61412
|
+
affiliated_organization_name?: string;
|
|
61413
|
+
/**
|
|
61414
|
+
* Affiliated organization UUID
|
|
61415
|
+
*/
|
|
61416
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60560
61417
|
backend_id?: string;
|
|
60561
61418
|
/**
|
|
60562
61419
|
* Return a list of projects where current user is admin.
|
|
@@ -60599,6 +61456,10 @@ export type OpenportalUnmanagedProjectsListData = {
|
|
|
60599
61456
|
*/
|
|
60600
61457
|
description?: string;
|
|
60601
61458
|
field?: Array<ProjectFieldEnum>;
|
|
61459
|
+
/**
|
|
61460
|
+
* Filter projects that have at least one affiliated organization.
|
|
61461
|
+
*/
|
|
61462
|
+
has_affiliated_organization?: boolean;
|
|
60602
61463
|
/**
|
|
60603
61464
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60604
61465
|
*/
|
|
@@ -60668,6 +61529,14 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60668
61529
|
* Filter by whether accounting is running.
|
|
60669
61530
|
*/
|
|
60670
61531
|
accounting_is_running?: boolean;
|
|
61532
|
+
/**
|
|
61533
|
+
* Affiliated organization name
|
|
61534
|
+
*/
|
|
61535
|
+
affiliated_organization_name?: string;
|
|
61536
|
+
/**
|
|
61537
|
+
* Affiliated organization UUID
|
|
61538
|
+
*/
|
|
61539
|
+
affiliated_organization_uuid?: Array<string>;
|
|
60671
61540
|
backend_id?: string;
|
|
60672
61541
|
/**
|
|
60673
61542
|
* Return a list of projects where current user is admin.
|
|
@@ -60709,6 +61578,10 @@ export type OpenportalUnmanagedProjectsCountData = {
|
|
|
60709
61578
|
* Description
|
|
60710
61579
|
*/
|
|
60711
61580
|
description?: string;
|
|
61581
|
+
/**
|
|
61582
|
+
* Filter projects that have at least one affiliated organization.
|
|
61583
|
+
*/
|
|
61584
|
+
has_affiliated_organization?: boolean;
|
|
60712
61585
|
/**
|
|
60713
61586
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
60714
61587
|
*/
|
|
@@ -61040,6 +61913,20 @@ export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
|
|
|
61040
61913
|
200: AnswerSubmitResponse;
|
|
61041
61914
|
};
|
|
61042
61915
|
export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
|
|
61916
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsData = {
|
|
61917
|
+
body?: AffiliatedOrganizationsUpdateRequest;
|
|
61918
|
+
path: {
|
|
61919
|
+
uuid: string;
|
|
61920
|
+
};
|
|
61921
|
+
query?: never;
|
|
61922
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_affiliated_organizations/';
|
|
61923
|
+
};
|
|
61924
|
+
export type OpenportalUnmanagedProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
61925
|
+
/**
|
|
61926
|
+
* No response body
|
|
61927
|
+
*/
|
|
61928
|
+
200: unknown;
|
|
61929
|
+
};
|
|
61043
61930
|
export type OpenportalUnmanagedProjectsUpdateUserData = {
|
|
61044
61931
|
body: UserRoleUpdateRequest;
|
|
61045
61932
|
path: {
|
|
@@ -61233,6 +62120,21 @@ export type OpenportalUserinfoMeCountResponses = {
|
|
|
61233
62120
|
*/
|
|
61234
62121
|
200: unknown;
|
|
61235
62122
|
};
|
|
62123
|
+
export type OpenportalAccessForEmailListData = {
|
|
62124
|
+
body?: never;
|
|
62125
|
+
path?: never;
|
|
62126
|
+
query: {
|
|
62127
|
+
/**
|
|
62128
|
+
* Free text search query (email, short_name, project_name, or project_id)
|
|
62129
|
+
*/
|
|
62130
|
+
q: string;
|
|
62131
|
+
};
|
|
62132
|
+
url: '/api/openportal/access_for_email/';
|
|
62133
|
+
};
|
|
62134
|
+
export type OpenportalAccessForEmailListResponses = {
|
|
62135
|
+
200: Array<AccessResponse>;
|
|
62136
|
+
};
|
|
62137
|
+
export type OpenportalAccessForEmailListResponse = OpenportalAccessForEmailListResponses[keyof OpenportalAccessForEmailListResponses];
|
|
61236
62138
|
export type OpenstackBackupsListData = {
|
|
61237
62139
|
body?: never;
|
|
61238
62140
|
path?: never;
|
|
@@ -62355,6 +63257,118 @@ export type OpenstackHealthMonitorsPullResponses = {
|
|
|
62355
63257
|
*/
|
|
62356
63258
|
202: unknown;
|
|
62357
63259
|
};
|
|
63260
|
+
export type OpenstackHypervisorsListData = {
|
|
63261
|
+
body?: never;
|
|
63262
|
+
path?: never;
|
|
63263
|
+
query?: {
|
|
63264
|
+
hypervisor_type?: string;
|
|
63265
|
+
/**
|
|
63266
|
+
* Name
|
|
63267
|
+
*/
|
|
63268
|
+
name?: string;
|
|
63269
|
+
/**
|
|
63270
|
+
* Name (exact)
|
|
63271
|
+
*/
|
|
63272
|
+
name_exact?: string;
|
|
63273
|
+
/**
|
|
63274
|
+
* A page number within the paginated result set.
|
|
63275
|
+
*/
|
|
63276
|
+
page?: number;
|
|
63277
|
+
/**
|
|
63278
|
+
* Number of results to return per page.
|
|
63279
|
+
*/
|
|
63280
|
+
page_size?: number;
|
|
63281
|
+
/**
|
|
63282
|
+
* Settings URL
|
|
63283
|
+
*/
|
|
63284
|
+
settings?: string;
|
|
63285
|
+
/**
|
|
63286
|
+
* Settings UUID
|
|
63287
|
+
*/
|
|
63288
|
+
settings_uuid?: string;
|
|
63289
|
+
state?: string;
|
|
63290
|
+
status?: string;
|
|
63291
|
+
};
|
|
63292
|
+
url: '/api/openstack-hypervisors/';
|
|
63293
|
+
};
|
|
63294
|
+
export type OpenstackHypervisorsListResponses = {
|
|
63295
|
+
200: Array<Hypervisor>;
|
|
63296
|
+
};
|
|
63297
|
+
export type OpenstackHypervisorsListResponse = OpenstackHypervisorsListResponses[keyof OpenstackHypervisorsListResponses];
|
|
63298
|
+
export type OpenstackHypervisorsCountData = {
|
|
63299
|
+
body?: never;
|
|
63300
|
+
path?: never;
|
|
63301
|
+
query?: {
|
|
63302
|
+
hypervisor_type?: string;
|
|
63303
|
+
/**
|
|
63304
|
+
* Name
|
|
63305
|
+
*/
|
|
63306
|
+
name?: string;
|
|
63307
|
+
/**
|
|
63308
|
+
* Name (exact)
|
|
63309
|
+
*/
|
|
63310
|
+
name_exact?: string;
|
|
63311
|
+
/**
|
|
63312
|
+
* A page number within the paginated result set.
|
|
63313
|
+
*/
|
|
63314
|
+
page?: number;
|
|
63315
|
+
/**
|
|
63316
|
+
* Number of results to return per page.
|
|
63317
|
+
*/
|
|
63318
|
+
page_size?: number;
|
|
63319
|
+
/**
|
|
63320
|
+
* Settings URL
|
|
63321
|
+
*/
|
|
63322
|
+
settings?: string;
|
|
63323
|
+
/**
|
|
63324
|
+
* Settings UUID
|
|
63325
|
+
*/
|
|
63326
|
+
settings_uuid?: string;
|
|
63327
|
+
state?: string;
|
|
63328
|
+
status?: string;
|
|
63329
|
+
};
|
|
63330
|
+
url: '/api/openstack-hypervisors/';
|
|
63331
|
+
};
|
|
63332
|
+
export type OpenstackHypervisorsCountResponses = {
|
|
63333
|
+
/**
|
|
63334
|
+
* No response body
|
|
63335
|
+
*/
|
|
63336
|
+
200: unknown;
|
|
63337
|
+
};
|
|
63338
|
+
export type OpenstackHypervisorsRetrieveData = {
|
|
63339
|
+
body?: never;
|
|
63340
|
+
path: {
|
|
63341
|
+
uuid: string;
|
|
63342
|
+
};
|
|
63343
|
+
query?: never;
|
|
63344
|
+
url: '/api/openstack-hypervisors/{uuid}/';
|
|
63345
|
+
};
|
|
63346
|
+
export type OpenstackHypervisorsRetrieveResponses = {
|
|
63347
|
+
200: Hypervisor;
|
|
63348
|
+
};
|
|
63349
|
+
export type OpenstackHypervisorsRetrieveResponse = OpenstackHypervisorsRetrieveResponses[keyof OpenstackHypervisorsRetrieveResponses];
|
|
63350
|
+
export type OpenstackHypervisorsSummaryRetrieveData = {
|
|
63351
|
+
body?: never;
|
|
63352
|
+
path?: never;
|
|
63353
|
+
query?: never;
|
|
63354
|
+
url: '/api/openstack-hypervisors/summary/';
|
|
63355
|
+
};
|
|
63356
|
+
export type OpenstackHypervisorsSummaryRetrieveResponses = {
|
|
63357
|
+
200: HypervisorSummary;
|
|
63358
|
+
};
|
|
63359
|
+
export type OpenstackHypervisorsSummaryRetrieveResponse = OpenstackHypervisorsSummaryRetrieveResponses[keyof OpenstackHypervisorsSummaryRetrieveResponses];
|
|
63360
|
+
export type OpenstackHypervisorsSummaryCountData = {
|
|
63361
|
+
body?: never;
|
|
63362
|
+
path?: never;
|
|
63363
|
+
query?: never;
|
|
63364
|
+
url: '/api/openstack-hypervisors/summary/';
|
|
63365
|
+
};
|
|
63366
|
+
export type OpenstackHypervisorsSummaryCountResponses = {
|
|
63367
|
+
/**
|
|
63368
|
+
* No response body
|
|
63369
|
+
*/
|
|
63370
|
+
200: unknown;
|
|
63371
|
+
};
|
|
62358
63372
|
export type OpenstackImagesListData = {
|
|
62359
63373
|
body?: never;
|
|
62360
63374
|
path?: never;
|
|
@@ -65212,6 +66226,63 @@ export type OpenstackRoutersAddRouterInterfaceResponses = {
|
|
|
65212
66226
|
*/
|
|
65213
66227
|
200: unknown;
|
|
65214
66228
|
};
|
|
66229
|
+
export type OpenstackRoutersAvailableExternalNetworksListData = {
|
|
66230
|
+
body?: never;
|
|
66231
|
+
path: {
|
|
66232
|
+
uuid: string;
|
|
66233
|
+
};
|
|
66234
|
+
query?: {
|
|
66235
|
+
/**
|
|
66236
|
+
* Name
|
|
66237
|
+
*/
|
|
66238
|
+
name?: string;
|
|
66239
|
+
/**
|
|
66240
|
+
* Name (exact)
|
|
66241
|
+
*/
|
|
66242
|
+
name_exact?: string;
|
|
66243
|
+
/**
|
|
66244
|
+
* A page number within the paginated result set.
|
|
66245
|
+
*/
|
|
66246
|
+
page?: number;
|
|
66247
|
+
/**
|
|
66248
|
+
* Number of results to return per page.
|
|
66249
|
+
*/
|
|
66250
|
+
page_size?: number;
|
|
66251
|
+
/**
|
|
66252
|
+
* State
|
|
66253
|
+
*
|
|
66254
|
+
*
|
|
66255
|
+
*/
|
|
66256
|
+
state?: Array<CoreStates>;
|
|
66257
|
+
/**
|
|
66258
|
+
* Tenant URL
|
|
66259
|
+
*/
|
|
66260
|
+
tenant?: string;
|
|
66261
|
+
/**
|
|
66262
|
+
* Tenant UUID
|
|
66263
|
+
*/
|
|
66264
|
+
tenant_uuid?: string;
|
|
66265
|
+
};
|
|
66266
|
+
url: '/api/openstack-routers/{uuid}/available_external_networks/';
|
|
66267
|
+
};
|
|
66268
|
+
export type OpenstackRoutersAvailableExternalNetworksListResponses = {
|
|
66269
|
+
200: Array<AvailableExternalNetwork>;
|
|
66270
|
+
};
|
|
66271
|
+
export type OpenstackRoutersAvailableExternalNetworksListResponse = OpenstackRoutersAvailableExternalNetworksListResponses[keyof OpenstackRoutersAvailableExternalNetworksListResponses];
|
|
66272
|
+
export type OpenstackRoutersRemoveExternalGatewayData = {
|
|
66273
|
+
body?: never;
|
|
66274
|
+
path: {
|
|
66275
|
+
uuid: string;
|
|
66276
|
+
};
|
|
66277
|
+
query?: never;
|
|
66278
|
+
url: '/api/openstack-routers/{uuid}/remove_external_gateway/';
|
|
66279
|
+
};
|
|
66280
|
+
export type OpenstackRoutersRemoveExternalGatewayResponses = {
|
|
66281
|
+
/**
|
|
66282
|
+
* No response body
|
|
66283
|
+
*/
|
|
66284
|
+
202: unknown;
|
|
66285
|
+
};
|
|
65215
66286
|
export type OpenstackRoutersRemoveRouterInterfaceData = {
|
|
65216
66287
|
body?: OpenStackRouterInterfaceRequest;
|
|
65217
66288
|
path: {
|
|
@@ -65238,6 +66309,20 @@ export type OpenstackRoutersSetErredResponses = {
|
|
|
65238
66309
|
200: RouterSetErredResponse;
|
|
65239
66310
|
};
|
|
65240
66311
|
export type OpenstackRoutersSetErredResponse = OpenstackRoutersSetErredResponses[keyof OpenstackRoutersSetErredResponses];
|
|
66312
|
+
export type OpenstackRoutersSetExternalGatewayData = {
|
|
66313
|
+
body: SetExternalGatewayRequest;
|
|
66314
|
+
path: {
|
|
66315
|
+
uuid: string;
|
|
66316
|
+
};
|
|
66317
|
+
query?: never;
|
|
66318
|
+
url: '/api/openstack-routers/{uuid}/set_external_gateway/';
|
|
66319
|
+
};
|
|
66320
|
+
export type OpenstackRoutersSetExternalGatewayResponses = {
|
|
66321
|
+
/**
|
|
66322
|
+
* No response body
|
|
66323
|
+
*/
|
|
66324
|
+
202: unknown;
|
|
66325
|
+
};
|
|
65241
66326
|
export type OpenstackRoutersSetOkData = {
|
|
65242
66327
|
body?: never;
|
|
65243
66328
|
path: {
|
|
@@ -69163,6 +70248,14 @@ export type ProjectsListData = {
|
|
|
69163
70248
|
* Filter by whether accounting is running.
|
|
69164
70249
|
*/
|
|
69165
70250
|
accounting_is_running?: boolean;
|
|
70251
|
+
/**
|
|
70252
|
+
* Affiliated organization name
|
|
70253
|
+
*/
|
|
70254
|
+
affiliated_organization_name?: string;
|
|
70255
|
+
/**
|
|
70256
|
+
* Affiliated organization UUID
|
|
70257
|
+
*/
|
|
70258
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69166
70259
|
backend_id?: string;
|
|
69167
70260
|
/**
|
|
69168
70261
|
* Return a list of projects where current user is admin.
|
|
@@ -69205,6 +70298,10 @@ export type ProjectsListData = {
|
|
|
69205
70298
|
*/
|
|
69206
70299
|
description?: string;
|
|
69207
70300
|
field?: Array<ProjectFieldEnum>;
|
|
70301
|
+
/**
|
|
70302
|
+
* Filter projects that have at least one affiliated organization.
|
|
70303
|
+
*/
|
|
70304
|
+
has_affiliated_organization?: boolean;
|
|
69208
70305
|
/**
|
|
69209
70306
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69210
70307
|
*/
|
|
@@ -69274,6 +70371,14 @@ export type ProjectsCountData = {
|
|
|
69274
70371
|
* Filter by whether accounting is running.
|
|
69275
70372
|
*/
|
|
69276
70373
|
accounting_is_running?: boolean;
|
|
70374
|
+
/**
|
|
70375
|
+
* Affiliated organization name
|
|
70376
|
+
*/
|
|
70377
|
+
affiliated_organization_name?: string;
|
|
70378
|
+
/**
|
|
70379
|
+
* Affiliated organization UUID
|
|
70380
|
+
*/
|
|
70381
|
+
affiliated_organization_uuid?: Array<string>;
|
|
69277
70382
|
backend_id?: string;
|
|
69278
70383
|
/**
|
|
69279
70384
|
* Return a list of projects where current user is admin.
|
|
@@ -69315,6 +70420,10 @@ export type ProjectsCountData = {
|
|
|
69315
70420
|
* Description
|
|
69316
70421
|
*/
|
|
69317
70422
|
description?: string;
|
|
70423
|
+
/**
|
|
70424
|
+
* Filter projects that have at least one affiliated organization.
|
|
70425
|
+
*/
|
|
70426
|
+
has_affiliated_organization?: boolean;
|
|
69318
70427
|
/**
|
|
69319
70428
|
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
69320
70429
|
*/
|
|
@@ -69736,6 +70845,20 @@ export type ProjectsSyncUserRolesResponses = {
|
|
|
69736
70845
|
*/
|
|
69737
70846
|
200: unknown;
|
|
69738
70847
|
};
|
|
70848
|
+
export type ProjectsUpdateAffiliatedOrganizationsData = {
|
|
70849
|
+
body?: AffiliatedOrganizationsUpdateRequest;
|
|
70850
|
+
path: {
|
|
70851
|
+
uuid: string;
|
|
70852
|
+
};
|
|
70853
|
+
query?: never;
|
|
70854
|
+
url: '/api/projects/{uuid}/update_affiliated_organizations/';
|
|
70855
|
+
};
|
|
70856
|
+
export type ProjectsUpdateAffiliatedOrganizationsResponses = {
|
|
70857
|
+
/**
|
|
70858
|
+
* No response body
|
|
70859
|
+
*/
|
|
70860
|
+
200: unknown;
|
|
70861
|
+
};
|
|
69739
70862
|
export type ProjectsUpdateUserData = {
|
|
69740
70863
|
body: UserRoleUpdateRequest;
|
|
69741
70864
|
path: {
|