waldur-js-client 7.9.3-dev.1 → 7.9.3-dev.8
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 +48 -13
- package/dist/sdk.gen.js +303 -46
- package/dist/types.gen.d.ts +1473 -72
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -830,9 +830,21 @@ export type BackendIdRequest = {
|
|
|
830
830
|
backend_id?: string;
|
|
831
831
|
};
|
|
832
832
|
export type BackendMetadata = {
|
|
833
|
+
/**
|
|
834
|
+
* Backend resource state
|
|
835
|
+
*/
|
|
833
836
|
readonly state?: string;
|
|
837
|
+
/**
|
|
838
|
+
* Runtime state of the backend resource
|
|
839
|
+
*/
|
|
834
840
|
readonly runtime_state?: string;
|
|
841
|
+
/**
|
|
842
|
+
* Current action being performed
|
|
843
|
+
*/
|
|
835
844
|
readonly action?: string;
|
|
845
|
+
/**
|
|
846
|
+
* Name of the backend instance
|
|
847
|
+
*/
|
|
836
848
|
readonly instance_name?: string | null;
|
|
837
849
|
};
|
|
838
850
|
export type BackendResource = {
|
|
@@ -1110,6 +1122,9 @@ export type BookingResource = {
|
|
|
1110
1122
|
readonly is_usage_based?: boolean;
|
|
1111
1123
|
readonly is_limit_based?: boolean;
|
|
1112
1124
|
name?: string;
|
|
1125
|
+
/**
|
|
1126
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
1127
|
+
*/
|
|
1113
1128
|
slug?: string;
|
|
1114
1129
|
readonly current_usages?: {
|
|
1115
1130
|
[key: string]: number;
|
|
@@ -1146,6 +1161,8 @@ export type BookingResource = {
|
|
|
1146
1161
|
readonly renewal_date?: {
|
|
1147
1162
|
[key: string]: string;
|
|
1148
1163
|
} | null;
|
|
1164
|
+
offering_state?: ResourceState;
|
|
1165
|
+
readonly offering_components?: Array<OfferingComponent>;
|
|
1149
1166
|
readonly created_by?: string;
|
|
1150
1167
|
/**
|
|
1151
1168
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -1183,6 +1200,11 @@ export type BroadcastMessageRequest = {
|
|
|
1183
1200
|
send_at?: string | null;
|
|
1184
1201
|
};
|
|
1185
1202
|
export type BroadcastMessageStateEnum = 'DRAFT' | 'SCHEDULED' | 'SENT';
|
|
1203
|
+
export type BulkSilenceResponse = {
|
|
1204
|
+
status: string;
|
|
1205
|
+
count: number;
|
|
1206
|
+
duration_days?: number | null;
|
|
1207
|
+
};
|
|
1186
1208
|
export type CallAttachDocumentsRequest = {
|
|
1187
1209
|
documents: Array<Blob | File>;
|
|
1188
1210
|
description?: string;
|
|
@@ -1509,6 +1531,7 @@ export type CategoryComponentsRequest = {
|
|
|
1509
1531
|
measured_unit?: string;
|
|
1510
1532
|
category: CategorySerializerForForNestedFieldsRequest;
|
|
1511
1533
|
};
|
|
1534
|
+
export type CategoryEnum = 'view' | 'approve' | 'reject' | 'extend' | 'terminate' | 'backup' | 'migrate' | 'contact' | 'escalate' | 'configure' | 'repair' | 'monitor';
|
|
1512
1535
|
export type CategoryGroup = {
|
|
1513
1536
|
readonly url?: string;
|
|
1514
1537
|
readonly uuid?: string;
|
|
@@ -1767,37 +1790,100 @@ export type ComponentUsageCreateRequest = {
|
|
|
1767
1790
|
plan_period?: string;
|
|
1768
1791
|
resource?: string;
|
|
1769
1792
|
/**
|
|
1770
|
-
* Date for usage reporting (staff
|
|
1793
|
+
* Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
|
|
1771
1794
|
*/
|
|
1772
1795
|
date?: string;
|
|
1773
1796
|
};
|
|
1774
1797
|
export type ComponentUsageItemRequest = {
|
|
1798
|
+
/**
|
|
1799
|
+
* Type of the component
|
|
1800
|
+
*/
|
|
1775
1801
|
type: string;
|
|
1802
|
+
/**
|
|
1803
|
+
* Usage amount
|
|
1804
|
+
*/
|
|
1776
1805
|
amount: string;
|
|
1806
|
+
/**
|
|
1807
|
+
* Optional description of usage
|
|
1808
|
+
*/
|
|
1777
1809
|
description?: string;
|
|
1810
|
+
/**
|
|
1811
|
+
* Whether this usage is recurring
|
|
1812
|
+
*/
|
|
1778
1813
|
recurring?: boolean;
|
|
1779
1814
|
};
|
|
1780
1815
|
export type ComponentUsagesPerMonthStats = {
|
|
1816
|
+
/**
|
|
1817
|
+
* Total usage amount
|
|
1818
|
+
*/
|
|
1781
1819
|
usage: string;
|
|
1820
|
+
/**
|
|
1821
|
+
* UUID of the offering
|
|
1822
|
+
*/
|
|
1782
1823
|
offering_uuid: string;
|
|
1824
|
+
/**
|
|
1825
|
+
* Type of the component
|
|
1826
|
+
*/
|
|
1783
1827
|
component_type: string;
|
|
1828
|
+
/**
|
|
1829
|
+
* Country of the offering
|
|
1830
|
+
*/
|
|
1784
1831
|
readonly offering_country: string;
|
|
1832
|
+
/**
|
|
1833
|
+
* Name of the organization group
|
|
1834
|
+
*/
|
|
1785
1835
|
readonly organization_group_name: string;
|
|
1836
|
+
/**
|
|
1837
|
+
* UUID of the organization group
|
|
1838
|
+
*/
|
|
1786
1839
|
readonly organization_group_uuid: string;
|
|
1840
|
+
/**
|
|
1841
|
+
* Month of the billing period
|
|
1842
|
+
*/
|
|
1787
1843
|
month: number;
|
|
1844
|
+
/**
|
|
1845
|
+
* Year of the billing period
|
|
1846
|
+
*/
|
|
1788
1847
|
year: number;
|
|
1789
1848
|
};
|
|
1790
1849
|
export type ComponentUsagesPerProject = {
|
|
1850
|
+
/**
|
|
1851
|
+
* UUID of the project
|
|
1852
|
+
*/
|
|
1791
1853
|
project_uuid: string;
|
|
1854
|
+
/**
|
|
1855
|
+
* Type of the component
|
|
1856
|
+
*/
|
|
1792
1857
|
component_type: string;
|
|
1858
|
+
/**
|
|
1859
|
+
* Total usage for the component
|
|
1860
|
+
*/
|
|
1793
1861
|
readonly usage: number;
|
|
1794
1862
|
};
|
|
1795
1863
|
export type ComponentUsagesStats = {
|
|
1864
|
+
/**
|
|
1865
|
+
* Total usage amount
|
|
1866
|
+
*/
|
|
1796
1867
|
usage: string;
|
|
1868
|
+
/**
|
|
1869
|
+
* UUID of the offering
|
|
1870
|
+
*/
|
|
1797
1871
|
offering_uuid: string;
|
|
1872
|
+
/**
|
|
1873
|
+
* Type of the component
|
|
1874
|
+
*/
|
|
1798
1875
|
component_type: string;
|
|
1876
|
+
/**
|
|
1877
|
+
* Country of the offering
|
|
1878
|
+
*/
|
|
1799
1879
|
readonly offering_country: string;
|
|
1880
|
+
/**
|
|
1881
|
+
* Name of the organization group
|
|
1882
|
+
*/
|
|
1800
1883
|
readonly organization_group_name: string;
|
|
1884
|
+
/**
|
|
1885
|
+
* UUID of the organization group
|
|
1886
|
+
*/
|
|
1801
1887
|
readonly organization_group_uuid: string;
|
|
1802
1888
|
};
|
|
1803
1889
|
export type ComponentUserUsage = {
|
|
@@ -1834,7 +1920,7 @@ export type ComponentUserUsageCreateRequest = {
|
|
|
1834
1920
|
username: string;
|
|
1835
1921
|
user?: string;
|
|
1836
1922
|
/**
|
|
1837
|
-
* Date for usage reporting (staff
|
|
1923
|
+
* Date for usage reporting (staff and service providers for limit-based components). If not provided, current date is used.
|
|
1838
1924
|
*/
|
|
1839
1925
|
date?: string;
|
|
1840
1926
|
};
|
|
@@ -2209,28 +2295,80 @@ export type ConstanceSettingsRequest = {
|
|
|
2209
2295
|
};
|
|
2210
2296
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
2211
2297
|
export type CoreAuthToken = {
|
|
2298
|
+
/**
|
|
2299
|
+
* Authentication token for API access
|
|
2300
|
+
*/
|
|
2212
2301
|
readonly token: string;
|
|
2213
2302
|
};
|
|
2214
2303
|
export type CoreStates = 'CREATION_SCHEDULED' | 'CREATING' | 'UPDATE_SCHEDULED' | 'UPDATING' | 'DELETION_SCHEDULED' | 'DELETING' | 'OK' | 'ERRED';
|
|
2304
|
+
export type CorrectiveAction = {
|
|
2305
|
+
label: string;
|
|
2306
|
+
url: string;
|
|
2307
|
+
category: CategoryEnum;
|
|
2308
|
+
severity: SeverityEnum;
|
|
2309
|
+
method?: string;
|
|
2310
|
+
api_endpoint?: boolean;
|
|
2311
|
+
confirmation_required?: boolean;
|
|
2312
|
+
permissions_required?: Array<string>;
|
|
2313
|
+
metadata?: {
|
|
2314
|
+
[key: string]: unknown;
|
|
2315
|
+
};
|
|
2316
|
+
};
|
|
2215
2317
|
export type CostsForPeriod = {
|
|
2216
2318
|
readonly total_price: string;
|
|
2217
2319
|
readonly start_date: string;
|
|
2218
2320
|
readonly end_date: string;
|
|
2219
2321
|
};
|
|
2220
2322
|
export type CountProjectsOfServiceProviders = {
|
|
2323
|
+
/**
|
|
2324
|
+
* UUID of the service provider
|
|
2325
|
+
*/
|
|
2221
2326
|
readonly service_provider_uuid: string;
|
|
2327
|
+
/**
|
|
2328
|
+
* UUID of the customer
|
|
2329
|
+
*/
|
|
2222
2330
|
readonly customer_uuid: string;
|
|
2331
|
+
/**
|
|
2332
|
+
* Name of the customer
|
|
2333
|
+
*/
|
|
2223
2334
|
readonly customer_name: string;
|
|
2335
|
+
/**
|
|
2336
|
+
* UUID of the customer's organization group
|
|
2337
|
+
*/
|
|
2224
2338
|
readonly customer_organization_group_uuid: string;
|
|
2339
|
+
/**
|
|
2340
|
+
* Name of the customer's organization group
|
|
2341
|
+
*/
|
|
2225
2342
|
readonly customer_organization_group_name: string;
|
|
2343
|
+
/**
|
|
2344
|
+
* Count value
|
|
2345
|
+
*/
|
|
2226
2346
|
readonly count: number;
|
|
2227
2347
|
};
|
|
2228
2348
|
export type CountProjectsOfServiceProvidersGroupedByOecd = {
|
|
2349
|
+
/**
|
|
2350
|
+
* UUID of the service provider
|
|
2351
|
+
*/
|
|
2229
2352
|
readonly service_provider_uuid: string;
|
|
2353
|
+
/**
|
|
2354
|
+
* UUID of the customer
|
|
2355
|
+
*/
|
|
2230
2356
|
readonly customer_uuid: string;
|
|
2357
|
+
/**
|
|
2358
|
+
* Name of the customer
|
|
2359
|
+
*/
|
|
2231
2360
|
readonly customer_name: string;
|
|
2361
|
+
/**
|
|
2362
|
+
* UUID of the customer's organization group
|
|
2363
|
+
*/
|
|
2232
2364
|
readonly customer_organization_group_uuid: string;
|
|
2365
|
+
/**
|
|
2366
|
+
* Name of the customer's organization group
|
|
2367
|
+
*/
|
|
2233
2368
|
readonly customer_organization_group_name: string;
|
|
2369
|
+
/**
|
|
2370
|
+
* Count value
|
|
2371
|
+
*/
|
|
2234
2372
|
readonly count: number;
|
|
2235
2373
|
readonly oecd_fos_2007_name: string;
|
|
2236
2374
|
};
|
|
@@ -2240,16 +2378,43 @@ export type CountStats = {
|
|
|
2240
2378
|
readonly count: number;
|
|
2241
2379
|
};
|
|
2242
2380
|
export type CountUniqueUsersConnectedWithActiveResourcesOfServiceProvider = {
|
|
2381
|
+
/**
|
|
2382
|
+
* UUID of the customer
|
|
2383
|
+
*/
|
|
2243
2384
|
readonly customer_uuid: string;
|
|
2385
|
+
/**
|
|
2386
|
+
* Name of the customer
|
|
2387
|
+
*/
|
|
2244
2388
|
readonly customer_name: string;
|
|
2389
|
+
/**
|
|
2390
|
+
* Number of unique users
|
|
2391
|
+
*/
|
|
2245
2392
|
readonly count_users: number;
|
|
2246
2393
|
};
|
|
2247
2394
|
export type CountUsersOfServiceProviders = {
|
|
2395
|
+
/**
|
|
2396
|
+
* UUID of the service provider
|
|
2397
|
+
*/
|
|
2248
2398
|
readonly service_provider_uuid: string;
|
|
2399
|
+
/**
|
|
2400
|
+
* UUID of the customer
|
|
2401
|
+
*/
|
|
2249
2402
|
readonly customer_uuid: string;
|
|
2403
|
+
/**
|
|
2404
|
+
* Name of the customer
|
|
2405
|
+
*/
|
|
2250
2406
|
readonly customer_name: string;
|
|
2407
|
+
/**
|
|
2408
|
+
* UUID of the customer's organization group
|
|
2409
|
+
*/
|
|
2251
2410
|
readonly customer_organization_group_uuid: string;
|
|
2411
|
+
/**
|
|
2412
|
+
* Name of the customer's organization group
|
|
2413
|
+
*/
|
|
2252
2414
|
readonly customer_organization_group_name: string;
|
|
2415
|
+
/**
|
|
2416
|
+
* Count value
|
|
2417
|
+
*/
|
|
2253
2418
|
readonly count: number;
|
|
2254
2419
|
};
|
|
2255
2420
|
export type Country = {
|
|
@@ -2292,6 +2457,9 @@ export type CourseAccountsBulkCreateRequest = {
|
|
|
2292
2457
|
project: string;
|
|
2293
2458
|
};
|
|
2294
2459
|
export type CreateAttachmentsRequest = {
|
|
2460
|
+
/**
|
|
2461
|
+
* List of files to attach
|
|
2462
|
+
*/
|
|
2295
2463
|
attachments: Array<Blob | File>;
|
|
2296
2464
|
};
|
|
2297
2465
|
export type CreateCustomerCredit = {
|
|
@@ -2355,7 +2523,13 @@ export type Customer = {
|
|
|
2355
2523
|
readonly url?: string;
|
|
2356
2524
|
readonly uuid?: string;
|
|
2357
2525
|
readonly created?: string;
|
|
2526
|
+
/**
|
|
2527
|
+
* Organization groups this customer belongs to
|
|
2528
|
+
*/
|
|
2358
2529
|
readonly organization_groups?: Array<OrganizationGroup>;
|
|
2530
|
+
/**
|
|
2531
|
+
* Display name of the organization (includes native name if available)
|
|
2532
|
+
*/
|
|
2359
2533
|
readonly display_name?: string;
|
|
2360
2534
|
/**
|
|
2361
2535
|
* Organization identifier in another application.
|
|
@@ -2370,23 +2544,38 @@ export type Customer = {
|
|
|
2370
2544
|
* Start date of accounting
|
|
2371
2545
|
*/
|
|
2372
2546
|
accounting_start_date?: string;
|
|
2547
|
+
/**
|
|
2548
|
+
* Number of projects in this organization
|
|
2549
|
+
*/
|
|
2373
2550
|
readonly projects_count?: number;
|
|
2551
|
+
/**
|
|
2552
|
+
* Number of users with access to this organization
|
|
2553
|
+
*/
|
|
2374
2554
|
readonly users_count?: number;
|
|
2375
2555
|
/**
|
|
2376
2556
|
* External ID of the sponsor covering the costs
|
|
2377
2557
|
*/
|
|
2378
2558
|
sponsor_number?: number | null;
|
|
2559
|
+
/**
|
|
2560
|
+
* Human-readable country name
|
|
2561
|
+
*/
|
|
2379
2562
|
readonly country_name?: string;
|
|
2380
2563
|
/**
|
|
2381
2564
|
* Maximum number of service accounts allowed
|
|
2382
2565
|
*/
|
|
2383
2566
|
max_service_accounts?: number | null;
|
|
2567
|
+
/**
|
|
2568
|
+
* Checklist to be used for project metadata validation in this organization
|
|
2569
|
+
*/
|
|
2384
2570
|
project_metadata_checklist?: string | null;
|
|
2385
2571
|
/**
|
|
2386
2572
|
* Number of extra days after project end date before resources are terminated
|
|
2387
2573
|
*/
|
|
2388
2574
|
grace_period_days?: number | null;
|
|
2389
2575
|
name?: string;
|
|
2576
|
+
/**
|
|
2577
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
2578
|
+
*/
|
|
2390
2579
|
slug?: string;
|
|
2391
2580
|
native_name?: string;
|
|
2392
2581
|
abbreviation?: string;
|
|
@@ -2415,6 +2604,9 @@ export type Customer = {
|
|
|
2415
2604
|
latitude?: number | null;
|
|
2416
2605
|
longitude?: number | null;
|
|
2417
2606
|
bank_account?: string;
|
|
2607
|
+
/**
|
|
2608
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
2609
|
+
*/
|
|
2418
2610
|
country?: CountryEnum | BlankEnum;
|
|
2419
2611
|
/**
|
|
2420
2612
|
* Comma-separated list of notification email addresses
|
|
@@ -2545,10 +2737,25 @@ export type CustomerIndustryFlagStats = {
|
|
|
2545
2737
|
is_industry: string;
|
|
2546
2738
|
};
|
|
2547
2739
|
export type CustomerMemberCount = {
|
|
2740
|
+
/**
|
|
2741
|
+
* UUID of the customer
|
|
2742
|
+
*/
|
|
2548
2743
|
readonly uuid: string;
|
|
2744
|
+
/**
|
|
2745
|
+
* Name of the customer
|
|
2746
|
+
*/
|
|
2549
2747
|
readonly name: string;
|
|
2748
|
+
/**
|
|
2749
|
+
* Abbreviation of the customer
|
|
2750
|
+
*/
|
|
2550
2751
|
readonly abbreviation: string;
|
|
2752
|
+
/**
|
|
2753
|
+
* Number of members
|
|
2754
|
+
*/
|
|
2551
2755
|
readonly count: number;
|
|
2756
|
+
/**
|
|
2757
|
+
* Whether the customer has resources
|
|
2758
|
+
*/
|
|
2552
2759
|
readonly has_resources: boolean;
|
|
2553
2760
|
};
|
|
2554
2761
|
export type CustomerOecdCodeStats = {
|
|
@@ -2596,12 +2803,18 @@ export type CustomerRequest = {
|
|
|
2596
2803
|
* Maximum number of service accounts allowed
|
|
2597
2804
|
*/
|
|
2598
2805
|
max_service_accounts?: number | null;
|
|
2806
|
+
/**
|
|
2807
|
+
* Checklist to be used for project metadata validation in this organization
|
|
2808
|
+
*/
|
|
2599
2809
|
project_metadata_checklist?: string | null;
|
|
2600
2810
|
/**
|
|
2601
2811
|
* Number of extra days after project end date before resources are terminated
|
|
2602
2812
|
*/
|
|
2603
2813
|
grace_period_days?: number | null;
|
|
2604
2814
|
name: string;
|
|
2815
|
+
/**
|
|
2816
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
2817
|
+
*/
|
|
2605
2818
|
slug?: string;
|
|
2606
2819
|
native_name?: string;
|
|
2607
2820
|
abbreviation?: string;
|
|
@@ -2630,6 +2843,9 @@ export type CustomerRequest = {
|
|
|
2630
2843
|
latitude?: number | null;
|
|
2631
2844
|
longitude?: number | null;
|
|
2632
2845
|
bank_account?: string;
|
|
2846
|
+
/**
|
|
2847
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
2848
|
+
*/
|
|
2633
2849
|
country?: CountryEnum | BlankEnum;
|
|
2634
2850
|
/**
|
|
2635
2851
|
* Comma-separated list of notification email addresses
|
|
@@ -2930,9 +3146,15 @@ export type EmailLog = {
|
|
|
2930
3146
|
emails: Array<string>;
|
|
2931
3147
|
};
|
|
2932
3148
|
export type EndpointUuid = {
|
|
3149
|
+
/**
|
|
3150
|
+
* UUID of the access endpoint
|
|
3151
|
+
*/
|
|
2933
3152
|
uuid: string;
|
|
2934
3153
|
};
|
|
2935
3154
|
export type EndpointUuidRequest = {
|
|
3155
|
+
/**
|
|
3156
|
+
* UUID of the access endpoint
|
|
3157
|
+
*/
|
|
2936
3158
|
uuid: string;
|
|
2937
3159
|
};
|
|
2938
3160
|
export type EthertypeEnum = 'IPv4' | 'IPv6';
|
|
@@ -2981,6 +3203,23 @@ export type EventSubscriptionRequest = {
|
|
|
2981
3203
|
observable_objects?: unknown;
|
|
2982
3204
|
};
|
|
2983
3205
|
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_update_succeeded' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked';
|
|
3206
|
+
export type ExecuteActionErrorResponse = {
|
|
3207
|
+
error: string;
|
|
3208
|
+
};
|
|
3209
|
+
export type ExecuteActionRequest = {
|
|
3210
|
+
/**
|
|
3211
|
+
* Label of the corrective action to execute
|
|
3212
|
+
*/
|
|
3213
|
+
action_label: string;
|
|
3214
|
+
};
|
|
3215
|
+
export type ExecuteActionResponse = {
|
|
3216
|
+
action: string;
|
|
3217
|
+
message?: string;
|
|
3218
|
+
redirect_url?: string;
|
|
3219
|
+
metadata?: {
|
|
3220
|
+
[key: string]: unknown;
|
|
3221
|
+
};
|
|
3222
|
+
};
|
|
2984
3223
|
export type ExecutionStateEnum = 'Scheduled' | 'Processing' | 'OK' | 'Erred';
|
|
2985
3224
|
export type ExportComponentData = {
|
|
2986
3225
|
type: string;
|
|
@@ -3202,8 +3441,17 @@ export type FinancialReportEmailRequest = {
|
|
|
3202
3441
|
month: number;
|
|
3203
3442
|
};
|
|
3204
3443
|
export type Fingerprint = {
|
|
3444
|
+
/**
|
|
3445
|
+
* MD5 fingerprint of SSH key
|
|
3446
|
+
*/
|
|
3205
3447
|
readonly md5?: string;
|
|
3448
|
+
/**
|
|
3449
|
+
* SHA256 fingerprint of SSH key
|
|
3450
|
+
*/
|
|
3206
3451
|
readonly sha256?: string;
|
|
3452
|
+
/**
|
|
3453
|
+
* SHA512 fingerprint of SSH key
|
|
3454
|
+
*/
|
|
3207
3455
|
readonly sha512?: string;
|
|
3208
3456
|
};
|
|
3209
3457
|
export type FirecrestJob = {
|
|
@@ -3321,25 +3569,60 @@ export type GoogleCredentials = {
|
|
|
3321
3569
|
readonly google_auth_url?: string;
|
|
3322
3570
|
};
|
|
3323
3571
|
export type GroupInvitation = {
|
|
3572
|
+
/**
|
|
3573
|
+
* UUID of the invitation scope (Customer or Project)
|
|
3574
|
+
*/
|
|
3324
3575
|
readonly scope_uuid: string;
|
|
3576
|
+
/**
|
|
3577
|
+
* Name of the invitation scope
|
|
3578
|
+
*/
|
|
3325
3579
|
readonly scope_name: string;
|
|
3326
3580
|
/**
|
|
3327
|
-
*
|
|
3328
|
-
* Returns empty string if scope doesn't have a description field.
|
|
3581
|
+
* Description of the invitation scope
|
|
3329
3582
|
*/
|
|
3330
3583
|
readonly scope_description: string;
|
|
3584
|
+
/**
|
|
3585
|
+
* Type of the invitation scope (e.g., 'customer', 'project')
|
|
3586
|
+
*/
|
|
3331
3587
|
readonly scope_type: string | null;
|
|
3588
|
+
/**
|
|
3589
|
+
* UUID of the customer organization
|
|
3590
|
+
*/
|
|
3332
3591
|
readonly customer_uuid: string;
|
|
3592
|
+
/**
|
|
3593
|
+
* Name of the customer organization
|
|
3594
|
+
*/
|
|
3333
3595
|
readonly customer_name: string;
|
|
3596
|
+
/**
|
|
3597
|
+
* Name of the role being granted (e.g., 'PROJECT.ADMIN')
|
|
3598
|
+
*/
|
|
3334
3599
|
readonly role_name: string;
|
|
3600
|
+
/**
|
|
3601
|
+
* Description of the role being granted
|
|
3602
|
+
*/
|
|
3335
3603
|
readonly role_description: string;
|
|
3604
|
+
/**
|
|
3605
|
+
* Full name of the user who created this invitation
|
|
3606
|
+
*/
|
|
3336
3607
|
readonly created_by_full_name: string;
|
|
3608
|
+
/**
|
|
3609
|
+
* Username of the user who created this invitation
|
|
3610
|
+
*/
|
|
3337
3611
|
readonly created_by_username: string;
|
|
3612
|
+
/**
|
|
3613
|
+
* Profile image of the user who created this invitation
|
|
3614
|
+
*/
|
|
3338
3615
|
readonly created_by_image: string;
|
|
3339
3616
|
readonly url: string;
|
|
3340
3617
|
readonly uuid: string;
|
|
3618
|
+
/**
|
|
3619
|
+
* UUID of the role to grant to the invited user
|
|
3620
|
+
*/
|
|
3341
3621
|
role: string;
|
|
3342
3622
|
readonly created: string;
|
|
3623
|
+
/**
|
|
3624
|
+
* Expiration date and time of the invitation
|
|
3625
|
+
*/
|
|
3343
3626
|
readonly expires: string;
|
|
3344
3627
|
readonly is_active: boolean;
|
|
3345
3628
|
/**
|
|
@@ -3354,13 +3637,25 @@ export type GroupInvitation = {
|
|
|
3354
3637
|
* Template for project name. Supports {username}, {email}, {full_name} variables
|
|
3355
3638
|
*/
|
|
3356
3639
|
project_name_template?: string | null;
|
|
3640
|
+
/**
|
|
3641
|
+
* UUID of the project role to grant if auto_create_project is enabled
|
|
3642
|
+
*/
|
|
3357
3643
|
project_role?: string | null;
|
|
3358
3644
|
user_affiliations?: unknown;
|
|
3359
3645
|
user_email_patterns?: unknown;
|
|
3646
|
+
/**
|
|
3647
|
+
* Image URL of the invitation scope (Customer or Project)
|
|
3648
|
+
*/
|
|
3360
3649
|
readonly scope_image: string | null;
|
|
3361
3650
|
};
|
|
3362
3651
|
export type GroupInvitationRequest = {
|
|
3652
|
+
/**
|
|
3653
|
+
* UUID of the role to grant to the invited user
|
|
3654
|
+
*/
|
|
3363
3655
|
role: string;
|
|
3656
|
+
/**
|
|
3657
|
+
* URL of the scope (Customer or Project) for this invitation
|
|
3658
|
+
*/
|
|
3364
3659
|
scope: string;
|
|
3365
3660
|
/**
|
|
3366
3661
|
* Allow non-authenticated users to see and accept this invitation. Only staff can create public invitations.
|
|
@@ -3374,6 +3669,9 @@ export type GroupInvitationRequest = {
|
|
|
3374
3669
|
* Template for project name. Supports {username}, {email}, {full_name} variables
|
|
3375
3670
|
*/
|
|
3376
3671
|
project_name_template?: string | null;
|
|
3672
|
+
/**
|
|
3673
|
+
* UUID of the project role to grant if auto_create_project is enabled
|
|
3674
|
+
*/
|
|
3377
3675
|
project_role?: string | null;
|
|
3378
3676
|
user_affiliations?: unknown;
|
|
3379
3677
|
user_email_patterns?: unknown;
|
|
@@ -3539,9 +3837,21 @@ export type ImportResourceRequest = {
|
|
|
3539
3837
|
additional_details?: unknown;
|
|
3540
3838
|
};
|
|
3541
3839
|
export type ImportableResource = {
|
|
3840
|
+
/**
|
|
3841
|
+
* Backend identifier of the resource
|
|
3842
|
+
*/
|
|
3542
3843
|
backend_id: string;
|
|
3844
|
+
/**
|
|
3845
|
+
* Name of the resource
|
|
3846
|
+
*/
|
|
3543
3847
|
name: string;
|
|
3848
|
+
/**
|
|
3849
|
+
* Type of the resource
|
|
3850
|
+
*/
|
|
3544
3851
|
type: string;
|
|
3852
|
+
/**
|
|
3853
|
+
* Description of the resource
|
|
3854
|
+
*/
|
|
3545
3855
|
description: string;
|
|
3546
3856
|
};
|
|
3547
3857
|
export type InstanceFlavorChangeRequest = {
|
|
@@ -3569,25 +3879,60 @@ export type IntegrationStatusDetails = {
|
|
|
3569
3879
|
readonly url: string;
|
|
3570
3880
|
};
|
|
3571
3881
|
export type Invitation = {
|
|
3882
|
+
/**
|
|
3883
|
+
* UUID of the invitation scope (Customer or Project)
|
|
3884
|
+
*/
|
|
3572
3885
|
readonly scope_uuid: string;
|
|
3886
|
+
/**
|
|
3887
|
+
* Name of the invitation scope
|
|
3888
|
+
*/
|
|
3573
3889
|
readonly scope_name: string;
|
|
3574
3890
|
/**
|
|
3575
|
-
*
|
|
3576
|
-
* Returns empty string if scope doesn't have a description field.
|
|
3891
|
+
* Description of the invitation scope
|
|
3577
3892
|
*/
|
|
3578
3893
|
readonly scope_description: string;
|
|
3894
|
+
/**
|
|
3895
|
+
* Type of the invitation scope (e.g., 'customer', 'project')
|
|
3896
|
+
*/
|
|
3579
3897
|
readonly scope_type: string | null;
|
|
3898
|
+
/**
|
|
3899
|
+
* UUID of the customer organization
|
|
3900
|
+
*/
|
|
3580
3901
|
readonly customer_uuid: string;
|
|
3902
|
+
/**
|
|
3903
|
+
* Name of the customer organization
|
|
3904
|
+
*/
|
|
3581
3905
|
readonly customer_name: string;
|
|
3906
|
+
/**
|
|
3907
|
+
* Name of the role being granted (e.g., 'PROJECT.ADMIN')
|
|
3908
|
+
*/
|
|
3582
3909
|
readonly role_name: string;
|
|
3910
|
+
/**
|
|
3911
|
+
* Description of the role being granted
|
|
3912
|
+
*/
|
|
3583
3913
|
readonly role_description: string;
|
|
3914
|
+
/**
|
|
3915
|
+
* Full name of the user who created this invitation
|
|
3916
|
+
*/
|
|
3584
3917
|
readonly created_by_full_name: string;
|
|
3918
|
+
/**
|
|
3919
|
+
* Username of the user who created this invitation
|
|
3920
|
+
*/
|
|
3585
3921
|
readonly created_by_username: string;
|
|
3922
|
+
/**
|
|
3923
|
+
* Profile image of the user who created this invitation
|
|
3924
|
+
*/
|
|
3586
3925
|
readonly created_by_image: string;
|
|
3587
3926
|
readonly url: string;
|
|
3588
3927
|
readonly uuid: string;
|
|
3928
|
+
/**
|
|
3929
|
+
* UUID of the role to grant to the invited user
|
|
3930
|
+
*/
|
|
3589
3931
|
role: string;
|
|
3590
3932
|
readonly created: string;
|
|
3933
|
+
/**
|
|
3934
|
+
* Expiration date and time of the invitation
|
|
3935
|
+
*/
|
|
3591
3936
|
readonly expires: string;
|
|
3592
3937
|
full_name?: string;
|
|
3593
3938
|
native_name?: string;
|
|
@@ -3608,11 +3953,23 @@ export type Invitation = {
|
|
|
3608
3953
|
execution_state: ExecutionStateEnum;
|
|
3609
3954
|
};
|
|
3610
3955
|
export type InvitationCheck = {
|
|
3956
|
+
/**
|
|
3957
|
+
* Email address to check for existing invitations
|
|
3958
|
+
*/
|
|
3611
3959
|
email: string;
|
|
3960
|
+
/**
|
|
3961
|
+
* Whether civil number verification is required
|
|
3962
|
+
*/
|
|
3612
3963
|
civil_number_required?: boolean;
|
|
3613
3964
|
};
|
|
3614
3965
|
export type InvitationRequest = {
|
|
3966
|
+
/**
|
|
3967
|
+
* UUID of the role to grant to the invited user
|
|
3968
|
+
*/
|
|
3615
3969
|
role: string;
|
|
3970
|
+
/**
|
|
3971
|
+
* URL of the scope (Customer or Project) for this invitation
|
|
3972
|
+
*/
|
|
3616
3973
|
scope: string;
|
|
3617
3974
|
full_name?: string;
|
|
3618
3975
|
native_name?: string;
|
|
@@ -3636,6 +3993,9 @@ export type InvitationUpdate = {
|
|
|
3636
3993
|
* Invitation link will be sent to this email. Note that user can accept invitation with different email.
|
|
3637
3994
|
*/
|
|
3638
3995
|
email: string;
|
|
3996
|
+
/**
|
|
3997
|
+
* UUID of the new role to assign. Must be compatible with the invitation scope.
|
|
3998
|
+
*/
|
|
3639
3999
|
role?: string;
|
|
3640
4000
|
};
|
|
3641
4001
|
export type InvitationUpdateRequest = {
|
|
@@ -3643,6 +4003,9 @@ export type InvitationUpdateRequest = {
|
|
|
3643
4003
|
* Invitation link will be sent to this email. Note that user can accept invitation with different email.
|
|
3644
4004
|
*/
|
|
3645
4005
|
email: string;
|
|
4006
|
+
/**
|
|
4007
|
+
* UUID of the new role to assign. Must be compatible with the invitation scope.
|
|
4008
|
+
*/
|
|
3646
4009
|
role?: string;
|
|
3647
4010
|
};
|
|
3648
4011
|
export type Invoice = {
|
|
@@ -3726,9 +4089,15 @@ export type InvoiceItem = {
|
|
|
3726
4089
|
readonly credit?: boolean;
|
|
3727
4090
|
};
|
|
3728
4091
|
export type InvoiceItemCompensation = {
|
|
4092
|
+
/**
|
|
4093
|
+
* Name of the offering component for compensation
|
|
4094
|
+
*/
|
|
3729
4095
|
offering_component_name: string;
|
|
3730
4096
|
};
|
|
3731
4097
|
export type InvoiceItemCompensationRequest = {
|
|
4098
|
+
/**
|
|
4099
|
+
* Name of the offering component for compensation
|
|
4100
|
+
*/
|
|
3732
4101
|
offering_component_name: string;
|
|
3733
4102
|
};
|
|
3734
4103
|
export type InvoiceItemDetail = {
|
|
@@ -3760,18 +4129,57 @@ export type InvoiceItemDetail = {
|
|
|
3760
4129
|
readonly offering_component_type: string | null;
|
|
3761
4130
|
};
|
|
3762
4131
|
export type InvoiceItemDetails = {
|
|
4132
|
+
/**
|
|
4133
|
+
* Name of the marketplace resource
|
|
4134
|
+
*/
|
|
3763
4135
|
resource_name?: string;
|
|
4136
|
+
/**
|
|
4137
|
+
* UUID of the marketplace resource
|
|
4138
|
+
*/
|
|
3764
4139
|
resource_uuid?: string;
|
|
4140
|
+
/**
|
|
4141
|
+
* Name of the pricing plan
|
|
4142
|
+
*/
|
|
3765
4143
|
plan_name?: string;
|
|
4144
|
+
/**
|
|
4145
|
+
* UUID of the pricing plan
|
|
4146
|
+
*/
|
|
3766
4147
|
plan_uuid?: string;
|
|
4148
|
+
/**
|
|
4149
|
+
* Type of the offering
|
|
4150
|
+
*/
|
|
3767
4151
|
offering_type?: string;
|
|
4152
|
+
/**
|
|
4153
|
+
* Name of the offering
|
|
4154
|
+
*/
|
|
3768
4155
|
offering_name?: string;
|
|
4156
|
+
/**
|
|
4157
|
+
* UUID of the offering
|
|
4158
|
+
*/
|
|
3769
4159
|
offering_uuid?: string;
|
|
4160
|
+
/**
|
|
4161
|
+
* Name of the service provider
|
|
4162
|
+
*/
|
|
3770
4163
|
service_provider_name?: string;
|
|
4164
|
+
/**
|
|
4165
|
+
* UUID of the service provider
|
|
4166
|
+
*/
|
|
3771
4167
|
service_provider_uuid?: string;
|
|
4168
|
+
/**
|
|
4169
|
+
* ID of the plan component
|
|
4170
|
+
*/
|
|
3772
4171
|
plan_component_id?: number;
|
|
4172
|
+
/**
|
|
4173
|
+
* Type of the offering component
|
|
4174
|
+
*/
|
|
3773
4175
|
offering_component_type?: string;
|
|
4176
|
+
/**
|
|
4177
|
+
* Name of the offering component
|
|
4178
|
+
*/
|
|
3774
4179
|
offering_component_name?: string;
|
|
4180
|
+
/**
|
|
4181
|
+
* List of resource limit periods for this invoice item
|
|
4182
|
+
*/
|
|
3775
4183
|
resource_limit_periods?: Array<ResourceLimitPeriod>;
|
|
3776
4184
|
};
|
|
3777
4185
|
export type InvoiceItemMigrateTo = {
|
|
@@ -3781,6 +4189,9 @@ export type InvoiceItemMigrateToRequest = {
|
|
|
3781
4189
|
invoice: string;
|
|
3782
4190
|
};
|
|
3783
4191
|
export type InvoiceItemTotalPrice = {
|
|
4192
|
+
/**
|
|
4193
|
+
* Total price for the invoice item
|
|
4194
|
+
*/
|
|
3784
4195
|
total_price: string;
|
|
3785
4196
|
};
|
|
3786
4197
|
export type InvoiceItemUpdate = {
|
|
@@ -3911,18 +4322,33 @@ export type IssueStatusRequest = {
|
|
|
3911
4322
|
export type IssueStatusTypeEnum = 0 | 1;
|
|
3912
4323
|
export type IssueTypeEnum = 'INFORMATIONAL' | 'SERVICE_REQUEST' | 'CHANGE_REQUEST' | 'INCIDENT';
|
|
3913
4324
|
export type JiraChangelog = {
|
|
4325
|
+
/**
|
|
4326
|
+
* List of changelog items
|
|
4327
|
+
*/
|
|
3914
4328
|
items: Array<unknown>;
|
|
3915
4329
|
};
|
|
3916
4330
|
export type JiraChangelogRequest = {
|
|
4331
|
+
/**
|
|
4332
|
+
* List of changelog items
|
|
4333
|
+
*/
|
|
3917
4334
|
items: Array<unknown>;
|
|
3918
4335
|
};
|
|
3919
4336
|
export type JiraComment = {
|
|
4337
|
+
/**
|
|
4338
|
+
* Jira comment ID
|
|
4339
|
+
*/
|
|
3920
4340
|
id: string;
|
|
3921
4341
|
};
|
|
3922
4342
|
export type JiraCommentRequest = {
|
|
4343
|
+
/**
|
|
4344
|
+
* Jira comment ID
|
|
4345
|
+
*/
|
|
3923
4346
|
id: string;
|
|
3924
4347
|
};
|
|
3925
4348
|
export type JiraIssue = {
|
|
4349
|
+
/**
|
|
4350
|
+
* Jira issue key
|
|
4351
|
+
*/
|
|
3926
4352
|
key: string;
|
|
3927
4353
|
fields: JiraIssueFields;
|
|
3928
4354
|
};
|
|
@@ -3939,19 +4365,78 @@ export type JiraIssueFieldsRequest = {
|
|
|
3939
4365
|
};
|
|
3940
4366
|
};
|
|
3941
4367
|
export type JiraIssueProject = {
|
|
4368
|
+
/**
|
|
4369
|
+
* Jira field ID
|
|
4370
|
+
*/
|
|
3942
4371
|
id: string;
|
|
4372
|
+
/**
|
|
4373
|
+
* Jira field name
|
|
4374
|
+
*/
|
|
3943
4375
|
name: string;
|
|
4376
|
+
/**
|
|
4377
|
+
* Jira project key
|
|
4378
|
+
*/
|
|
3944
4379
|
key: string;
|
|
3945
4380
|
};
|
|
3946
4381
|
export type JiraIssueProjectRequest = {
|
|
4382
|
+
/**
|
|
4383
|
+
* Jira field ID
|
|
4384
|
+
*/
|
|
3947
4385
|
id: string;
|
|
4386
|
+
/**
|
|
4387
|
+
* Jira field name
|
|
4388
|
+
*/
|
|
3948
4389
|
name: string;
|
|
4390
|
+
/**
|
|
4391
|
+
* Jira project key
|
|
4392
|
+
*/
|
|
3949
4393
|
key: string;
|
|
3950
4394
|
};
|
|
3951
4395
|
export type JiraIssueRequest = {
|
|
4396
|
+
/**
|
|
4397
|
+
* Jira issue key
|
|
4398
|
+
*/
|
|
3952
4399
|
key: string;
|
|
3953
4400
|
fields: JiraIssueFieldsRequest;
|
|
3954
4401
|
};
|
|
4402
|
+
export type K8sDefaultConfiguration = {
|
|
4403
|
+
default_controller_vcpus?: number;
|
|
4404
|
+
default_controller_ram_gb?: number;
|
|
4405
|
+
default_controller_system_disk_gb?: number;
|
|
4406
|
+
default_controller_etcd_disk_gb?: number;
|
|
4407
|
+
default_lb_vcpus?: number;
|
|
4408
|
+
default_lb_ram_gb?: number;
|
|
4409
|
+
default_lb_system_disk_gb?: number;
|
|
4410
|
+
default_lb_logs_disk_gb?: number;
|
|
4411
|
+
minimal_worker_vcpus?: number;
|
|
4412
|
+
minimal_worker_ram_gb?: number;
|
|
4413
|
+
default_worker_data_disk_gb?: number;
|
|
4414
|
+
default_storage_data_disk_gb?: number;
|
|
4415
|
+
default_storage_san_disk_gb?: number;
|
|
4416
|
+
/**
|
|
4417
|
+
* Comma-separated list of Kubernetes versions (e.g., 1.32.0,1.33.0,1.34.0)
|
|
4418
|
+
*/
|
|
4419
|
+
available_kubernetes_versions?: string;
|
|
4420
|
+
};
|
|
4421
|
+
export type K8sDefaultConfigurationRequest = {
|
|
4422
|
+
default_controller_vcpus?: number;
|
|
4423
|
+
default_controller_ram_gb?: number;
|
|
4424
|
+
default_controller_system_disk_gb?: number;
|
|
4425
|
+
default_controller_etcd_disk_gb?: number;
|
|
4426
|
+
default_lb_vcpus?: number;
|
|
4427
|
+
default_lb_ram_gb?: number;
|
|
4428
|
+
default_lb_system_disk_gb?: number;
|
|
4429
|
+
default_lb_logs_disk_gb?: number;
|
|
4430
|
+
minimal_worker_vcpus?: number;
|
|
4431
|
+
minimal_worker_ram_gb?: number;
|
|
4432
|
+
default_worker_data_disk_gb?: number;
|
|
4433
|
+
default_storage_data_disk_gb?: number;
|
|
4434
|
+
default_storage_san_disk_gb?: number;
|
|
4435
|
+
/**
|
|
4436
|
+
* Comma-separated list of Kubernetes versions (e.g., 1.32.0,1.33.0,1.34.0)
|
|
4437
|
+
*/
|
|
4438
|
+
available_kubernetes_versions?: string;
|
|
4439
|
+
};
|
|
3955
4440
|
export type KeycloakGroup = {
|
|
3956
4441
|
readonly uuid: string;
|
|
3957
4442
|
readonly url: string;
|
|
@@ -4056,6 +4541,9 @@ export type LinkToInvoiceRequest = {
|
|
|
4056
4541
|
invoice: string;
|
|
4057
4542
|
};
|
|
4058
4543
|
export type Logout = {
|
|
4544
|
+
/**
|
|
4545
|
+
* URL to redirect to after logout
|
|
4546
|
+
*/
|
|
4059
4547
|
readonly logout_url: string;
|
|
4060
4548
|
};
|
|
4061
4549
|
export type MaintenanceActionResponse = {
|
|
@@ -5148,7 +5636,13 @@ export type MoveResourceRequest = {
|
|
|
5148
5636
|
project: ProjectHyperlinkRequest;
|
|
5149
5637
|
};
|
|
5150
5638
|
export type NameUuid = {
|
|
5639
|
+
/**
|
|
5640
|
+
* Name of the entity
|
|
5641
|
+
*/
|
|
5151
5642
|
readonly name: string;
|
|
5643
|
+
/**
|
|
5644
|
+
* UUID of the entity
|
|
5645
|
+
*/
|
|
5152
5646
|
readonly uuid: string;
|
|
5153
5647
|
};
|
|
5154
5648
|
export type NestedAgentProcessor = {
|
|
@@ -5283,16 +5777,31 @@ export type NestedCustomerUsagePolicyComponentRequest = {
|
|
|
5283
5777
|
export type NestedEndpoint = {
|
|
5284
5778
|
readonly uuid?: string;
|
|
5285
5779
|
name?: string;
|
|
5780
|
+
/**
|
|
5781
|
+
* URL of the access endpoint
|
|
5782
|
+
*/
|
|
5286
5783
|
url?: string;
|
|
5287
5784
|
};
|
|
5288
5785
|
export type NestedEndpointRequest = {
|
|
5289
5786
|
name: string;
|
|
5787
|
+
/**
|
|
5788
|
+
* URL of the access endpoint
|
|
5789
|
+
*/
|
|
5290
5790
|
url: string;
|
|
5291
5791
|
};
|
|
5292
5792
|
export type NestedFeedback = {
|
|
5793
|
+
/**
|
|
5794
|
+
* Customer satisfaction rating (1-5 stars)
|
|
5795
|
+
*/
|
|
5293
5796
|
readonly evaluation: number;
|
|
5797
|
+
/**
|
|
5798
|
+
* Numeric value of the rating
|
|
5799
|
+
*/
|
|
5294
5800
|
readonly evaluation_number: number;
|
|
5295
5801
|
comment?: string;
|
|
5802
|
+
/**
|
|
5803
|
+
* Current state of the feedback
|
|
5804
|
+
*/
|
|
5296
5805
|
readonly state: string;
|
|
5297
5806
|
};
|
|
5298
5807
|
export type NestedFeedbackRequest = {
|
|
@@ -5883,7 +6392,13 @@ export type NotificationTemplateUpdateSerializersRequest = {
|
|
|
5883
6392
|
export type NullEnum = unknown;
|
|
5884
6393
|
export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits';
|
|
5885
6394
|
export type ObtainAuthTokenRequest = {
|
|
6395
|
+
/**
|
|
6396
|
+
* Username for authentication
|
|
6397
|
+
*/
|
|
5886
6398
|
username: string;
|
|
6399
|
+
/**
|
|
6400
|
+
* Password for authentication
|
|
6401
|
+
*/
|
|
5887
6402
|
password: string;
|
|
5888
6403
|
};
|
|
5889
6404
|
export type OecdFos2007CodeEnum = '1.1' | '1.2' | '1.3' | '1.4' | '1.5' | '1.6' | '1.7' | '2.1' | '2.2' | '2.3' | '2.4' | '2.5' | '2.6' | '2.7' | '2.8' | '2.9' | '2.10' | '2.11' | '2.12' | '3.1' | '3.2' | '3.3' | '3.4' | '3.5' | '4.1' | '4.2' | '4.3' | '4.4' | '4.5' | '5.1' | '5.2' | '5.3' | '5.4' | '5.5' | '5.6' | '5.7' | '5.8' | '5.9' | '6.1' | '6.2' | '6.3' | '6.4' | '6.5';
|
|
@@ -5892,6 +6407,9 @@ export type Offering = {
|
|
|
5892
6407
|
readonly uuid?: string;
|
|
5893
6408
|
readonly created?: string;
|
|
5894
6409
|
name?: string;
|
|
6410
|
+
/**
|
|
6411
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
6412
|
+
*/
|
|
5895
6413
|
slug?: string;
|
|
5896
6414
|
description?: string;
|
|
5897
6415
|
full_description?: string;
|
|
@@ -5940,7 +6458,7 @@ export type Offering = {
|
|
|
5940
6458
|
readonly scope?: string;
|
|
5941
6459
|
readonly scope_uuid?: string | null;
|
|
5942
6460
|
readonly scope_name?: string | null;
|
|
5943
|
-
scope_state?: CoreStates | null;
|
|
6461
|
+
scope_state?: CoreStates | NullEnum | null;
|
|
5944
6462
|
readonly scope_error_message?: string | null;
|
|
5945
6463
|
readonly files?: Array<NestedOfferingFile>;
|
|
5946
6464
|
readonly quotas?: Array<Quota>;
|
|
@@ -5952,6 +6470,9 @@ export type Offering = {
|
|
|
5952
6470
|
readonly citation_count?: number;
|
|
5953
6471
|
latitude?: number | null;
|
|
5954
6472
|
longitude?: number | null;
|
|
6473
|
+
/**
|
|
6474
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
6475
|
+
*/
|
|
5955
6476
|
country?: CountryEnum | BlankEnum;
|
|
5956
6477
|
backend_id?: string;
|
|
5957
6478
|
readonly organization_groups?: Array<OrganizationGroup>;
|
|
@@ -6015,8 +6536,17 @@ export type OfferingComponent = {
|
|
|
6015
6536
|
max_prepaid_duration?: number | null;
|
|
6016
6537
|
};
|
|
6017
6538
|
export type OfferingComponentLimitRequest = {
|
|
6539
|
+
/**
|
|
6540
|
+
* Minimum allowed value
|
|
6541
|
+
*/
|
|
6018
6542
|
min: number;
|
|
6543
|
+
/**
|
|
6544
|
+
* Maximum allowed value
|
|
6545
|
+
*/
|
|
6019
6546
|
max: number;
|
|
6547
|
+
/**
|
|
6548
|
+
* Maximum available limit across all resources
|
|
6549
|
+
*/
|
|
6020
6550
|
max_available_limit: number;
|
|
6021
6551
|
};
|
|
6022
6552
|
export type OfferingComponentRequest = {
|
|
@@ -6062,15 +6592,30 @@ export type OfferingComponentStat = {
|
|
|
6062
6592
|
readonly name: string;
|
|
6063
6593
|
};
|
|
6064
6594
|
export type OfferingCost = {
|
|
6595
|
+
/**
|
|
6596
|
+
* UUID of the offering
|
|
6597
|
+
*/
|
|
6065
6598
|
offering_uuid: string;
|
|
6599
|
+
/**
|
|
6600
|
+
* Total cost for the offering
|
|
6601
|
+
*/
|
|
6066
6602
|
cost: number;
|
|
6067
6603
|
};
|
|
6068
6604
|
export type OfferingCountryStats = {
|
|
6605
|
+
/**
|
|
6606
|
+
* Country code of the offering
|
|
6607
|
+
*/
|
|
6069
6608
|
country: string;
|
|
6609
|
+
/**
|
|
6610
|
+
* Number of offerings in this country
|
|
6611
|
+
*/
|
|
6070
6612
|
count: number;
|
|
6071
6613
|
};
|
|
6072
6614
|
export type OfferingCreateRequest = {
|
|
6073
6615
|
name: string;
|
|
6616
|
+
/**
|
|
6617
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
6618
|
+
*/
|
|
6074
6619
|
slug?: string;
|
|
6075
6620
|
description?: string;
|
|
6076
6621
|
full_description?: string;
|
|
@@ -6102,6 +6647,9 @@ export type OfferingCreateRequest = {
|
|
|
6102
6647
|
datacite_doi?: string;
|
|
6103
6648
|
latitude?: number | null;
|
|
6104
6649
|
longitude?: number | null;
|
|
6650
|
+
/**
|
|
6651
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
6652
|
+
*/
|
|
6105
6653
|
country?: CountryEnum | BlankEnum;
|
|
6106
6654
|
backend_id?: string;
|
|
6107
6655
|
image?: (Blob | File) | null;
|
|
@@ -6231,7 +6779,13 @@ export type OfferingExportParametersRequest = {
|
|
|
6231
6779
|
include_resource_options?: boolean;
|
|
6232
6780
|
};
|
|
6233
6781
|
export type OfferingExportResponse = {
|
|
6782
|
+
/**
|
|
6783
|
+
* UUID of the exported offering
|
|
6784
|
+
*/
|
|
6234
6785
|
offering_uuid: string;
|
|
6786
|
+
/**
|
|
6787
|
+
* Name of the exported offering
|
|
6788
|
+
*/
|
|
6235
6789
|
offering_name: string;
|
|
6236
6790
|
/**
|
|
6237
6791
|
* Complete export data containing the offering structure
|
|
@@ -6241,6 +6795,9 @@ export type OfferingExportResponse = {
|
|
|
6241
6795
|
* List of exported component types
|
|
6242
6796
|
*/
|
|
6243
6797
|
exported_components: Array<string>;
|
|
6798
|
+
/**
|
|
6799
|
+
* Timestamp when the export was completed
|
|
6800
|
+
*/
|
|
6244
6801
|
export_timestamp: string;
|
|
6245
6802
|
};
|
|
6246
6803
|
export type OfferingFile = {
|
|
@@ -6264,7 +6821,7 @@ export type OfferingGroups = {
|
|
|
6264
6821
|
export type OfferingImageRequest = {
|
|
6265
6822
|
image: Blob | File;
|
|
6266
6823
|
};
|
|
6267
|
-
export type
|
|
6824
|
+
export type OfferingImportParameters = {
|
|
6268
6825
|
/**
|
|
6269
6826
|
* Target customer for imported offering. If not provided, uses current user's customer
|
|
6270
6827
|
*/
|
|
@@ -6317,27 +6874,68 @@ export type OfferingImportParametersRequest = {
|
|
|
6317
6874
|
* Overwrite existing offering if one with the same name exists
|
|
6318
6875
|
*/
|
|
6319
6876
|
overwrite_existing?: boolean;
|
|
6320
|
-
/**
|
|
6321
|
-
* Preserve offering state from export, otherwise set to 'Draft'
|
|
6322
|
-
*/
|
|
6323
|
-
preserve_state?: boolean;
|
|
6324
6877
|
/**
|
|
6325
6878
|
* The exported offering data to import
|
|
6326
6879
|
*/
|
|
6327
|
-
offering_data:
|
|
6880
|
+
offering_data: OfferingExportData;
|
|
6328
6881
|
};
|
|
6329
|
-
export type
|
|
6330
|
-
|
|
6331
|
-
|
|
6882
|
+
export type OfferingImportParametersRequest = {
|
|
6883
|
+
/**
|
|
6884
|
+
* Target customer for imported offering. If not provided, uses current user's customer
|
|
6885
|
+
*/
|
|
6886
|
+
customer?: string | null;
|
|
6887
|
+
/**
|
|
6888
|
+
* Target category name for imported offering. If not provided, uses category from export data
|
|
6889
|
+
*/
|
|
6890
|
+
category?: string | null;
|
|
6332
6891
|
/**
|
|
6333
|
-
*
|
|
6892
|
+
* Target project for imported offering (optional)
|
|
6334
6893
|
*/
|
|
6335
|
-
|
|
6894
|
+
project?: string | null;
|
|
6336
6895
|
/**
|
|
6337
|
-
*
|
|
6896
|
+
* Import offering components
|
|
6897
|
+
*/
|
|
6898
|
+
import_components?: boolean;
|
|
6899
|
+
/**
|
|
6900
|
+
* Import offering plans
|
|
6901
|
+
*/
|
|
6902
|
+
import_plans?: boolean;
|
|
6903
|
+
/**
|
|
6904
|
+
* Import offering screenshots
|
|
6905
|
+
*/
|
|
6906
|
+
import_screenshots?: boolean;
|
|
6907
|
+
/**
|
|
6908
|
+
* Import offering files
|
|
6909
|
+
*/
|
|
6910
|
+
import_files?: boolean;
|
|
6911
|
+
/**
|
|
6912
|
+
* Import offering access endpoints
|
|
6913
|
+
*/
|
|
6914
|
+
import_endpoints?: boolean;
|
|
6915
|
+
/**
|
|
6916
|
+
* Import organization groups associations (may fail if groups don't exist)
|
|
6917
|
+
*/
|
|
6918
|
+
import_organization_groups?: boolean;
|
|
6919
|
+
/**
|
|
6920
|
+
* Import terms of service configurations
|
|
6921
|
+
*/
|
|
6922
|
+
import_terms_of_service?: boolean;
|
|
6923
|
+
/**
|
|
6924
|
+
* Import plugin options
|
|
6338
6925
|
*/
|
|
6339
|
-
|
|
6340
|
-
|
|
6926
|
+
import_plugin_options?: boolean;
|
|
6927
|
+
/**
|
|
6928
|
+
* Import secret options (WARNING: will overwrite existing secrets)
|
|
6929
|
+
*/
|
|
6930
|
+
import_secret_options?: boolean;
|
|
6931
|
+
/**
|
|
6932
|
+
* Overwrite existing offering if one with the same name exists
|
|
6933
|
+
*/
|
|
6934
|
+
overwrite_existing?: boolean;
|
|
6935
|
+
/**
|
|
6936
|
+
* The exported offering data to import
|
|
6937
|
+
*/
|
|
6938
|
+
offering_data: OfferingExportDataRequest;
|
|
6341
6939
|
};
|
|
6342
6940
|
export type OfferingIntegrationUpdateRequest = {
|
|
6343
6941
|
secret_options?: MergedSecretOptionsRequest;
|
|
@@ -6375,6 +6973,9 @@ export type OfferingOverviewUpdateRequest = {
|
|
|
6375
6973
|
access_url?: string;
|
|
6376
6974
|
getting_started?: string;
|
|
6377
6975
|
integration_guide?: string;
|
|
6976
|
+
/**
|
|
6977
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
6978
|
+
*/
|
|
6378
6979
|
slug?: string;
|
|
6379
6980
|
};
|
|
6380
6981
|
export type OfferingPartition = {
|
|
@@ -6579,7 +7180,13 @@ export type OfferingPermission = {
|
|
|
6579
7180
|
readonly user_email: string;
|
|
6580
7181
|
};
|
|
6581
7182
|
export type OfferingReference = {
|
|
7183
|
+
/**
|
|
7184
|
+
* Name of the offering
|
|
7185
|
+
*/
|
|
6582
7186
|
readonly offering_name: string;
|
|
7187
|
+
/**
|
|
7188
|
+
* UUID of the offering
|
|
7189
|
+
*/
|
|
6583
7190
|
readonly offering_uuid: string;
|
|
6584
7191
|
};
|
|
6585
7192
|
export type OfferingReferral = {
|
|
@@ -6634,16 +7241,43 @@ export type OfferingSoftwareCatalogRequest = {
|
|
|
6634
7241
|
};
|
|
6635
7242
|
export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
|
|
6636
7243
|
export type OfferingStats = {
|
|
7244
|
+
/**
|
|
7245
|
+
* Number of resources for the offering
|
|
7246
|
+
*/
|
|
6637
7247
|
count: number;
|
|
7248
|
+
/**
|
|
7249
|
+
* Name of the offering
|
|
7250
|
+
*/
|
|
6638
7251
|
name: string;
|
|
7252
|
+
/**
|
|
7253
|
+
* UUID of the offering
|
|
7254
|
+
*/
|
|
6639
7255
|
uuid: string;
|
|
7256
|
+
/**
|
|
7257
|
+
* Country of the offering
|
|
7258
|
+
*/
|
|
6640
7259
|
country: string;
|
|
6641
7260
|
};
|
|
6642
7261
|
export type OfferingStatsCounter = {
|
|
7262
|
+
/**
|
|
7263
|
+
* UUID of the category
|
|
7264
|
+
*/
|
|
6643
7265
|
category_uuid: string;
|
|
7266
|
+
/**
|
|
7267
|
+
* Title of the category
|
|
7268
|
+
*/
|
|
6644
7269
|
category_title: string;
|
|
7270
|
+
/**
|
|
7271
|
+
* Name of the service provider
|
|
7272
|
+
*/
|
|
6645
7273
|
service_provider_name: string;
|
|
7274
|
+
/**
|
|
7275
|
+
* UUID of the service provider
|
|
7276
|
+
*/
|
|
6646
7277
|
service_provider_uuid: string;
|
|
7278
|
+
/**
|
|
7279
|
+
* Number of offerings
|
|
7280
|
+
*/
|
|
6647
7281
|
count: number;
|
|
6648
7282
|
};
|
|
6649
7283
|
export type OfferingTermsOfService = {
|
|
@@ -7055,6 +7689,14 @@ export type OnboardingVerification = {
|
|
|
7055
7689
|
readonly user_submitted_customer_data: {
|
|
7056
7690
|
[key: string]: unknown;
|
|
7057
7691
|
};
|
|
7692
|
+
/**
|
|
7693
|
+
* Boolean indicating if a customer can be created from this verification
|
|
7694
|
+
*/
|
|
7695
|
+
readonly can_customer_be_created: boolean;
|
|
7696
|
+
/**
|
|
7697
|
+
* Reason why customer cannot be created (null if can be created)
|
|
7698
|
+
*/
|
|
7699
|
+
readonly customer_creation_error_message: string | null;
|
|
7058
7700
|
readonly created: string;
|
|
7059
7701
|
readonly modified: string;
|
|
7060
7702
|
};
|
|
@@ -8553,21 +9195,10 @@ export type OpenStackTenantQuotaRequest = {
|
|
|
8553
9195
|
export type OpenStackTenantRequest = {
|
|
8554
9196
|
name: string;
|
|
8555
9197
|
description?: string;
|
|
8556
|
-
service_settings: string;
|
|
8557
|
-
project: string;
|
|
8558
9198
|
/**
|
|
8559
9199
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
8560
9200
|
*/
|
|
8561
9201
|
availability_zone?: string;
|
|
8562
|
-
/**
|
|
8563
|
-
* Username of the tenant user
|
|
8564
|
-
*/
|
|
8565
|
-
user_username?: string;
|
|
8566
|
-
/**
|
|
8567
|
-
* Password of the tenant user
|
|
8568
|
-
*/
|
|
8569
|
-
user_password?: string;
|
|
8570
|
-
subnet_cidr?: string;
|
|
8571
9202
|
/**
|
|
8572
9203
|
* Volume type name to use when creating volumes.
|
|
8573
9204
|
*/
|
|
@@ -8716,6 +9347,7 @@ export type OptionField = {
|
|
|
8716
9347
|
max?: number;
|
|
8717
9348
|
cascade_config?: CascadeConfig;
|
|
8718
9349
|
component_multiplier_config?: ComponentMultiplierConfig;
|
|
9350
|
+
default_configs?: K8sDefaultConfiguration;
|
|
8719
9351
|
};
|
|
8720
9352
|
export type OptionFieldRequest = {
|
|
8721
9353
|
type: OptionFieldTypeEnum;
|
|
@@ -8728,8 +9360,9 @@ export type OptionFieldRequest = {
|
|
|
8728
9360
|
max?: number;
|
|
8729
9361
|
cascade_config?: CascadeConfigRequest;
|
|
8730
9362
|
component_multiplier_config?: ComponentMultiplierConfigRequest;
|
|
9363
|
+
default_configs?: K8sDefaultConfigurationRequest;
|
|
8731
9364
|
};
|
|
8732
|
-
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier';
|
|
9365
|
+
export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config';
|
|
8733
9366
|
export type OrderAttachment = {
|
|
8734
9367
|
attachment?: string | null;
|
|
8735
9368
|
};
|
|
@@ -8757,6 +9390,9 @@ export type OrderCreateRequest = {
|
|
|
8757
9390
|
* Enables delayed processing of resource provisioning order.
|
|
8758
9391
|
*/
|
|
8759
9392
|
start_date?: string | null;
|
|
9393
|
+
/**
|
|
9394
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
9395
|
+
*/
|
|
8760
9396
|
slug?: string;
|
|
8761
9397
|
project: string;
|
|
8762
9398
|
};
|
|
@@ -8874,15 +9510,27 @@ export type OrderSetStateErredRequest = {
|
|
|
8874
9510
|
};
|
|
8875
9511
|
export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
|
|
8876
9512
|
export type OrderUuid = {
|
|
9513
|
+
/**
|
|
9514
|
+
* UUID of the created or updated order
|
|
9515
|
+
*/
|
|
8877
9516
|
readonly order_uuid: string;
|
|
8878
9517
|
};
|
|
8879
9518
|
export type OrganizationGroup = {
|
|
8880
9519
|
readonly uuid?: string;
|
|
8881
9520
|
readonly url?: string;
|
|
8882
9521
|
name?: string;
|
|
9522
|
+
/**
|
|
9523
|
+
* UUID of the parent organization group
|
|
9524
|
+
*/
|
|
8883
9525
|
readonly parent_uuid?: string;
|
|
9526
|
+
/**
|
|
9527
|
+
* Name of the parent organization group
|
|
9528
|
+
*/
|
|
8884
9529
|
readonly parent_name?: string;
|
|
8885
9530
|
parent?: string | null;
|
|
9531
|
+
/**
|
|
9532
|
+
* Number of customers in this organization group
|
|
9533
|
+
*/
|
|
8886
9534
|
readonly customers_count?: number;
|
|
8887
9535
|
};
|
|
8888
9536
|
export type OrganizationGroupRequest = {
|
|
@@ -9086,12 +9734,18 @@ export type PatchedCustomerRequest = {
|
|
|
9086
9734
|
* Maximum number of service accounts allowed
|
|
9087
9735
|
*/
|
|
9088
9736
|
max_service_accounts?: number | null;
|
|
9737
|
+
/**
|
|
9738
|
+
* Checklist to be used for project metadata validation in this organization
|
|
9739
|
+
*/
|
|
9089
9740
|
project_metadata_checklist?: string | null;
|
|
9090
9741
|
/**
|
|
9091
9742
|
* Number of extra days after project end date before resources are terminated
|
|
9092
9743
|
*/
|
|
9093
9744
|
grace_period_days?: number | null;
|
|
9094
9745
|
name?: string;
|
|
9746
|
+
/**
|
|
9747
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
9748
|
+
*/
|
|
9095
9749
|
slug?: string;
|
|
9096
9750
|
native_name?: string;
|
|
9097
9751
|
abbreviation?: string;
|
|
@@ -9120,6 +9774,9 @@ export type PatchedCustomerRequest = {
|
|
|
9120
9774
|
latitude?: number | null;
|
|
9121
9775
|
longitude?: number | null;
|
|
9122
9776
|
bank_account?: string;
|
|
9777
|
+
/**
|
|
9778
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
9779
|
+
*/
|
|
9123
9780
|
country?: CountryEnum | BlankEnum;
|
|
9124
9781
|
/**
|
|
9125
9782
|
* Comma-separated list of notification email addresses
|
|
@@ -9208,6 +9865,9 @@ export type PatchedInvitationUpdateRequest = {
|
|
|
9208
9865
|
* Invitation link will be sent to this email. Note that user can accept invitation with different email.
|
|
9209
9866
|
*/
|
|
9210
9867
|
email?: string;
|
|
9868
|
+
/**
|
|
9869
|
+
* UUID of the new role to assign. Must be compatible with the invitation scope.
|
|
9870
|
+
*/
|
|
9211
9871
|
role?: string;
|
|
9212
9872
|
};
|
|
9213
9873
|
export type PatchedInvoiceItemUpdateRequest = {
|
|
@@ -9708,18 +10368,30 @@ export type PatchedProjectInfoRequest = {
|
|
|
9708
10368
|
};
|
|
9709
10369
|
export type PatchedProjectRequest = {
|
|
9710
10370
|
name?: string;
|
|
10371
|
+
/**
|
|
10372
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
10373
|
+
*/
|
|
9711
10374
|
slug?: string;
|
|
9712
10375
|
/**
|
|
9713
10376
|
* Organization
|
|
9714
10377
|
*/
|
|
9715
10378
|
customer?: string;
|
|
10379
|
+
/**
|
|
10380
|
+
* Project description (HTML content will be sanitized)
|
|
10381
|
+
*/
|
|
9716
10382
|
description?: string;
|
|
9717
10383
|
/**
|
|
9718
10384
|
* Project type
|
|
9719
10385
|
*/
|
|
9720
10386
|
type?: string | null;
|
|
9721
10387
|
backend_id?: string;
|
|
10388
|
+
/**
|
|
10389
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
10390
|
+
*/
|
|
9722
10391
|
start_date?: string | null;
|
|
10392
|
+
/**
|
|
10393
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
10394
|
+
*/
|
|
9723
10395
|
end_date?: string | null;
|
|
9724
10396
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
9725
10397
|
is_industry?: boolean;
|
|
@@ -9728,6 +10400,9 @@ export type PatchedProjectRequest = {
|
|
|
9728
10400
|
* Project type
|
|
9729
10401
|
*/
|
|
9730
10402
|
kind?: KindEnum;
|
|
10403
|
+
/**
|
|
10404
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
10405
|
+
*/
|
|
9731
10406
|
staff_notes?: string;
|
|
9732
10407
|
/**
|
|
9733
10408
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -9795,6 +10470,9 @@ export type PatchedProposalReviewRequest = {
|
|
|
9795
10470
|
comment_team?: string | null;
|
|
9796
10471
|
};
|
|
9797
10472
|
export type PatchedProtectedCallRequest = {
|
|
10473
|
+
/**
|
|
10474
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
10475
|
+
*/
|
|
9798
10476
|
slug?: string;
|
|
9799
10477
|
name?: string;
|
|
9800
10478
|
description?: string;
|
|
@@ -10276,6 +10954,9 @@ export type PatchedUserRequest = {
|
|
|
10276
10954
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
10277
10955
|
*/
|
|
10278
10956
|
username?: string;
|
|
10957
|
+
/**
|
|
10958
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
10959
|
+
*/
|
|
10279
10960
|
slug?: string;
|
|
10280
10961
|
native_name?: string;
|
|
10281
10962
|
job_title?: string;
|
|
@@ -10504,9 +11185,21 @@ export type PlanUsageResponse = {
|
|
|
10504
11185
|
readonly customer_provider_name: string;
|
|
10505
11186
|
};
|
|
10506
11187
|
export type PluginComponent = {
|
|
11188
|
+
/**
|
|
11189
|
+
* Type identifier of the component
|
|
11190
|
+
*/
|
|
10507
11191
|
type: string;
|
|
11192
|
+
/**
|
|
11193
|
+
* Display name of the component
|
|
11194
|
+
*/
|
|
10508
11195
|
name: string;
|
|
11196
|
+
/**
|
|
11197
|
+
* Unit of measurement for the component
|
|
11198
|
+
*/
|
|
10509
11199
|
measured_unit: string;
|
|
11200
|
+
/**
|
|
11201
|
+
* Billing type for the component
|
|
11202
|
+
*/
|
|
10510
11203
|
billing_type: BillingTypeEnum;
|
|
10511
11204
|
};
|
|
10512
11205
|
export type PluginOfferingType = {
|
|
@@ -10532,6 +11225,9 @@ export type Project = {
|
|
|
10532
11225
|
readonly url?: string;
|
|
10533
11226
|
readonly uuid?: string;
|
|
10534
11227
|
name?: string;
|
|
11228
|
+
/**
|
|
11229
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
11230
|
+
*/
|
|
10535
11231
|
slug?: string;
|
|
10536
11232
|
/**
|
|
10537
11233
|
* Organization
|
|
@@ -10542,6 +11238,9 @@ export type Project = {
|
|
|
10542
11238
|
readonly customer_slug?: string;
|
|
10543
11239
|
readonly customer_native_name?: string;
|
|
10544
11240
|
readonly customer_abbreviation?: string;
|
|
11241
|
+
/**
|
|
11242
|
+
* Project description (HTML content will be sanitized)
|
|
11243
|
+
*/
|
|
10545
11244
|
description?: string;
|
|
10546
11245
|
readonly customer_display_billing_info_in_projects?: boolean;
|
|
10547
11246
|
readonly created?: string;
|
|
@@ -10552,13 +11251,25 @@ export type Project = {
|
|
|
10552
11251
|
readonly type_name?: string | null;
|
|
10553
11252
|
readonly type_uuid?: string | null;
|
|
10554
11253
|
backend_id?: string;
|
|
11254
|
+
/**
|
|
11255
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
11256
|
+
*/
|
|
10555
11257
|
start_date?: string | null;
|
|
11258
|
+
/**
|
|
11259
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
11260
|
+
*/
|
|
10556
11261
|
end_date?: string | null;
|
|
10557
11262
|
readonly end_date_requested_by?: string | null;
|
|
10558
11263
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
11264
|
+
/**
|
|
11265
|
+
* Human-readable label for the OECD FOS 2007 classification code
|
|
11266
|
+
*/
|
|
10559
11267
|
readonly oecd_fos_2007_label?: string;
|
|
10560
11268
|
is_industry?: boolean;
|
|
10561
11269
|
image?: string | null;
|
|
11270
|
+
/**
|
|
11271
|
+
* Number of active resources in this project
|
|
11272
|
+
*/
|
|
10562
11273
|
readonly resources_count?: number;
|
|
10563
11274
|
/**
|
|
10564
11275
|
* Maximum number of service accounts allowed
|
|
@@ -10569,7 +11280,13 @@ export type Project = {
|
|
|
10569
11280
|
*/
|
|
10570
11281
|
kind?: KindEnum;
|
|
10571
11282
|
readonly is_removed?: boolean;
|
|
11283
|
+
/**
|
|
11284
|
+
* Metadata about project termination (read-only)
|
|
11285
|
+
*/
|
|
10572
11286
|
readonly termination_metadata?: unknown;
|
|
11287
|
+
/**
|
|
11288
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
11289
|
+
*/
|
|
10573
11290
|
staff_notes?: string;
|
|
10574
11291
|
/**
|
|
10575
11292
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -10788,18 +11505,30 @@ export type ProjectRecoveryRequest = {
|
|
|
10788
11505
|
};
|
|
10789
11506
|
export type ProjectRequest = {
|
|
10790
11507
|
name: string;
|
|
11508
|
+
/**
|
|
11509
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
11510
|
+
*/
|
|
10791
11511
|
slug?: string;
|
|
10792
11512
|
/**
|
|
10793
11513
|
* Organization
|
|
10794
11514
|
*/
|
|
10795
11515
|
customer: string;
|
|
11516
|
+
/**
|
|
11517
|
+
* Project description (HTML content will be sanitized)
|
|
11518
|
+
*/
|
|
10796
11519
|
description?: string;
|
|
10797
11520
|
/**
|
|
10798
11521
|
* Project type
|
|
10799
11522
|
*/
|
|
10800
11523
|
type?: string | null;
|
|
10801
11524
|
backend_id?: string;
|
|
11525
|
+
/**
|
|
11526
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
11527
|
+
*/
|
|
10802
11528
|
start_date?: string | null;
|
|
11529
|
+
/**
|
|
11530
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
11531
|
+
*/
|
|
10803
11532
|
end_date?: string | null;
|
|
10804
11533
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
10805
11534
|
is_industry?: boolean;
|
|
@@ -10808,6 +11537,9 @@ export type ProjectRequest = {
|
|
|
10808
11537
|
* Project type
|
|
10809
11538
|
*/
|
|
10810
11539
|
kind?: KindEnum;
|
|
11540
|
+
/**
|
|
11541
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
11542
|
+
*/
|
|
10811
11543
|
staff_notes?: string;
|
|
10812
11544
|
/**
|
|
10813
11545
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -11134,6 +11866,9 @@ export type ProtectedCall = {
|
|
|
11134
11866
|
readonly created?: string;
|
|
11135
11867
|
readonly start_date?: string;
|
|
11136
11868
|
readonly end_date?: string;
|
|
11869
|
+
/**
|
|
11870
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
11871
|
+
*/
|
|
11137
11872
|
slug?: string;
|
|
11138
11873
|
name?: string;
|
|
11139
11874
|
description?: string;
|
|
@@ -11166,6 +11901,9 @@ export type ProtectedCall = {
|
|
|
11166
11901
|
readonly compliance_checklist_name?: string;
|
|
11167
11902
|
};
|
|
11168
11903
|
export type ProtectedCallRequest = {
|
|
11904
|
+
/**
|
|
11905
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
11906
|
+
*/
|
|
11169
11907
|
slug?: string;
|
|
11170
11908
|
name: string;
|
|
11171
11909
|
description?: string;
|
|
@@ -11240,6 +11978,9 @@ export type ProviderOffering = {
|
|
|
11240
11978
|
readonly uuid?: string;
|
|
11241
11979
|
readonly customer_uuid?: string;
|
|
11242
11980
|
name?: string;
|
|
11981
|
+
/**
|
|
11982
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
11983
|
+
*/
|
|
11243
11984
|
slug?: string;
|
|
11244
11985
|
readonly category_title?: string;
|
|
11245
11986
|
type?: string;
|
|
@@ -11260,9 +12001,21 @@ export type ProviderOffering = {
|
|
|
11260
12001
|
thumbnail?: string | null;
|
|
11261
12002
|
};
|
|
11262
12003
|
export type ProviderOfferingCosts = {
|
|
12004
|
+
/**
|
|
12005
|
+
* Billing period (YYYY-MM)
|
|
12006
|
+
*/
|
|
11263
12007
|
readonly period: string;
|
|
12008
|
+
/**
|
|
12009
|
+
* Price amount excluding tax
|
|
12010
|
+
*/
|
|
11264
12011
|
readonly price: number;
|
|
12012
|
+
/**
|
|
12013
|
+
* Tax amount
|
|
12014
|
+
*/
|
|
11265
12015
|
readonly tax: number;
|
|
12016
|
+
/**
|
|
12017
|
+
* Total amount including tax
|
|
12018
|
+
*/
|
|
11266
12019
|
readonly total: number;
|
|
11267
12020
|
};
|
|
11268
12021
|
export type ProviderOfferingCustomer = {
|
|
@@ -11281,6 +12034,9 @@ export type ProviderOfferingDetails = {
|
|
|
11281
12034
|
readonly uuid?: string;
|
|
11282
12035
|
readonly created?: string;
|
|
11283
12036
|
name?: string;
|
|
12037
|
+
/**
|
|
12038
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
12039
|
+
*/
|
|
11284
12040
|
slug?: string;
|
|
11285
12041
|
description?: string;
|
|
11286
12042
|
full_description?: string;
|
|
@@ -11333,7 +12089,7 @@ export type ProviderOfferingDetails = {
|
|
|
11333
12089
|
readonly scope?: string;
|
|
11334
12090
|
readonly scope_uuid?: string | null;
|
|
11335
12091
|
readonly scope_name?: string | null;
|
|
11336
|
-
scope_state?: CoreStates | null;
|
|
12092
|
+
scope_state?: CoreStates | NullEnum | null;
|
|
11337
12093
|
readonly scope_error_message?: string | null;
|
|
11338
12094
|
readonly files?: Array<NestedOfferingFile>;
|
|
11339
12095
|
readonly quotas?: Array<Quota>;
|
|
@@ -11345,6 +12101,9 @@ export type ProviderOfferingDetails = {
|
|
|
11345
12101
|
readonly citation_count?: number;
|
|
11346
12102
|
latitude?: number | null;
|
|
11347
12103
|
longitude?: number | null;
|
|
12104
|
+
/**
|
|
12105
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
12106
|
+
*/
|
|
11348
12107
|
country?: CountryEnum | BlankEnum;
|
|
11349
12108
|
backend_id?: string;
|
|
11350
12109
|
readonly organization_groups?: Array<OrganizationGroup>;
|
|
@@ -11372,6 +12131,9 @@ export type ProviderOfferingDetails = {
|
|
|
11372
12131
|
};
|
|
11373
12132
|
export type ProviderOfferingDetailsRequest = {
|
|
11374
12133
|
name: string;
|
|
12134
|
+
/**
|
|
12135
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
12136
|
+
*/
|
|
11375
12137
|
slug?: string;
|
|
11376
12138
|
description?: string;
|
|
11377
12139
|
full_description?: string;
|
|
@@ -11401,6 +12163,9 @@ export type ProviderOfferingDetailsRequest = {
|
|
|
11401
12163
|
datacite_doi?: string;
|
|
11402
12164
|
latitude?: number | null;
|
|
11403
12165
|
longitude?: number | null;
|
|
12166
|
+
/**
|
|
12167
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
12168
|
+
*/
|
|
11404
12169
|
country?: CountryEnum | BlankEnum;
|
|
11405
12170
|
backend_id?: string;
|
|
11406
12171
|
image?: (Blob | File) | null;
|
|
@@ -11522,6 +12287,9 @@ export type PublicCall = {
|
|
|
11522
12287
|
readonly created?: string;
|
|
11523
12288
|
readonly start_date?: string;
|
|
11524
12289
|
readonly end_date?: string;
|
|
12290
|
+
/**
|
|
12291
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
12292
|
+
*/
|
|
11525
12293
|
slug?: string;
|
|
11526
12294
|
name?: string;
|
|
11527
12295
|
description?: string;
|
|
@@ -11589,6 +12357,9 @@ export type PublicOfferingDetails = {
|
|
|
11589
12357
|
readonly uuid?: string;
|
|
11590
12358
|
readonly created?: string;
|
|
11591
12359
|
name?: string;
|
|
12360
|
+
/**
|
|
12361
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
12362
|
+
*/
|
|
11592
12363
|
slug?: string;
|
|
11593
12364
|
description?: string;
|
|
11594
12365
|
full_description?: string;
|
|
@@ -11637,7 +12408,7 @@ export type PublicOfferingDetails = {
|
|
|
11637
12408
|
readonly scope?: string;
|
|
11638
12409
|
readonly scope_uuid?: string | null;
|
|
11639
12410
|
readonly scope_name?: string | null;
|
|
11640
|
-
scope_state?: CoreStates | null;
|
|
12411
|
+
scope_state?: CoreStates | NullEnum | null;
|
|
11641
12412
|
readonly scope_error_message?: string | null;
|
|
11642
12413
|
readonly files?: Array<NestedOfferingFile>;
|
|
11643
12414
|
readonly quotas?: Array<Quota>;
|
|
@@ -11649,6 +12420,9 @@ export type PublicOfferingDetails = {
|
|
|
11649
12420
|
readonly citation_count?: number;
|
|
11650
12421
|
latitude?: number | null;
|
|
11651
12422
|
longitude?: number | null;
|
|
12423
|
+
/**
|
|
12424
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
12425
|
+
*/
|
|
11652
12426
|
country?: CountryEnum | BlankEnum;
|
|
11653
12427
|
backend_id?: string;
|
|
11654
12428
|
readonly organization_groups?: Array<OrganizationGroup>;
|
|
@@ -11680,6 +12454,9 @@ export type PullMarketplaceScriptResourceRequest = {
|
|
|
11680
12454
|
};
|
|
11681
12455
|
export type QosStrategyEnum = 'threshold' | 'progressive';
|
|
11682
12456
|
export type QueryRequest = {
|
|
12457
|
+
/**
|
|
12458
|
+
* Search query string
|
|
12459
|
+
*/
|
|
11683
12460
|
query: string;
|
|
11684
12461
|
};
|
|
11685
12462
|
export type Question = {
|
|
@@ -13053,20 +13830,38 @@ export type RemoteSynchronisationRequest = {
|
|
|
13053
13830
|
remotelocalcategory_set: Array<NestedRemoteLocalCategoryRequest>;
|
|
13054
13831
|
};
|
|
13055
13832
|
export type RemoveOfferingComponentRequest = {
|
|
13833
|
+
/**
|
|
13834
|
+
* UUID of the component to remove
|
|
13835
|
+
*/
|
|
13056
13836
|
uuid: string;
|
|
13057
13837
|
};
|
|
13058
13838
|
export type RemovePartitionRequest = {
|
|
13059
13839
|
partition_uuid: string;
|
|
13060
13840
|
};
|
|
13061
13841
|
export type RemoveSoftwareCatalogRequest = {
|
|
13842
|
+
/**
|
|
13843
|
+
* UUID of the offering catalog to remove
|
|
13844
|
+
*/
|
|
13062
13845
|
offering_catalog_uuid: string;
|
|
13063
13846
|
};
|
|
13064
13847
|
export type ReportSection = {
|
|
13848
|
+
/**
|
|
13849
|
+
* Section header text
|
|
13850
|
+
*/
|
|
13065
13851
|
header?: string;
|
|
13852
|
+
/**
|
|
13853
|
+
* Section body content
|
|
13854
|
+
*/
|
|
13066
13855
|
body?: string;
|
|
13067
13856
|
};
|
|
13068
13857
|
export type ReportSectionRequest = {
|
|
13858
|
+
/**
|
|
13859
|
+
* Section header text
|
|
13860
|
+
*/
|
|
13069
13861
|
header: string;
|
|
13862
|
+
/**
|
|
13863
|
+
* Section body content
|
|
13864
|
+
*/
|
|
13070
13865
|
body: string;
|
|
13071
13866
|
};
|
|
13072
13867
|
export type RequestTypes = 'Create' | 'Update' | 'Terminate' | 'Restore';
|
|
@@ -13190,6 +13985,9 @@ export type Resource = {
|
|
|
13190
13985
|
readonly is_usage_based?: boolean;
|
|
13191
13986
|
readonly is_limit_based?: boolean;
|
|
13192
13987
|
name?: string;
|
|
13988
|
+
/**
|
|
13989
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
13990
|
+
*/
|
|
13193
13991
|
slug?: string;
|
|
13194
13992
|
readonly current_usages?: {
|
|
13195
13993
|
[key: string]: number;
|
|
@@ -13226,6 +14024,8 @@ export type Resource = {
|
|
|
13226
14024
|
readonly renewal_date?: {
|
|
13227
14025
|
[key: string]: string;
|
|
13228
14026
|
} | null;
|
|
14027
|
+
offering_state?: ResourceState;
|
|
14028
|
+
readonly offering_components?: Array<OfferingComponent>;
|
|
13229
14029
|
};
|
|
13230
14030
|
export type ResourceBackendIdRequest = {
|
|
13231
14031
|
backend_id?: string;
|
|
@@ -13243,10 +14043,25 @@ export type ResourceEndDateByProviderRequest = {
|
|
|
13243
14043
|
end_date?: string | null;
|
|
13244
14044
|
};
|
|
13245
14045
|
export type ResourceLimitPeriod = {
|
|
14046
|
+
/**
|
|
14047
|
+
* Start date of the resource limit period
|
|
14048
|
+
*/
|
|
13246
14049
|
start?: string;
|
|
14050
|
+
/**
|
|
14051
|
+
* End date of the resource limit period
|
|
14052
|
+
*/
|
|
13247
14053
|
end?: string;
|
|
14054
|
+
/**
|
|
14055
|
+
* Quantity of resources consumed during this period
|
|
14056
|
+
*/
|
|
13248
14057
|
quantity?: number;
|
|
14058
|
+
/**
|
|
14059
|
+
* Number of billing periods
|
|
14060
|
+
*/
|
|
13249
14061
|
billing_periods?: number;
|
|
14062
|
+
/**
|
|
14063
|
+
* Total amount for this period
|
|
14064
|
+
*/
|
|
13250
14065
|
total?: string;
|
|
13251
14066
|
};
|
|
13252
14067
|
export type ResourceOffering = {
|
|
@@ -13274,7 +14089,13 @@ export type ResourceReallocateLimitsRequest = {
|
|
|
13274
14089
|
targets: Array<ResourceReallocateTargetRequest>;
|
|
13275
14090
|
};
|
|
13276
14091
|
export type ResourceReallocateLimitsResponse = {
|
|
14092
|
+
/**
|
|
14093
|
+
* UUID of the source order for limit reallocation
|
|
14094
|
+
*/
|
|
13277
14095
|
readonly source_order_uuid: string;
|
|
14096
|
+
/**
|
|
14097
|
+
* List of UUIDs for target orders receiving the reallocated limits
|
|
14098
|
+
*/
|
|
13278
14099
|
readonly target_order_uuids: Array<string>;
|
|
13279
14100
|
};
|
|
13280
14101
|
export type ResourceReallocateTargetRequest = {
|
|
@@ -13310,6 +14131,9 @@ export type ResourceRequest = {
|
|
|
13310
14131
|
offering: string;
|
|
13311
14132
|
plan?: string;
|
|
13312
14133
|
name: string;
|
|
14134
|
+
/**
|
|
14135
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
14136
|
+
*/
|
|
13313
14137
|
slug?: string;
|
|
13314
14138
|
/**
|
|
13315
14139
|
* The date is inclusive. Once reached, a resource will be scheduled for termination.
|
|
@@ -13400,6 +14224,9 @@ export type ResourcesLimits = {
|
|
|
13400
14224
|
readonly organization_group_uuid: string;
|
|
13401
14225
|
};
|
|
13402
14226
|
export type ReviewCommentRequest = {
|
|
14227
|
+
/**
|
|
14228
|
+
* Optional comment for review
|
|
14229
|
+
*/
|
|
13403
14230
|
comment?: string;
|
|
13404
14231
|
};
|
|
13405
14232
|
export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
|
|
@@ -13827,7 +14654,13 @@ export type RuleRequest = {
|
|
|
13827
14654
|
};
|
|
13828
14655
|
};
|
|
13829
14656
|
export type RuntimeStates = {
|
|
14657
|
+
/**
|
|
14658
|
+
* Value of the runtime state
|
|
14659
|
+
*/
|
|
13830
14660
|
readonly value: string;
|
|
14661
|
+
/**
|
|
14662
|
+
* Human-readable label for the runtime state
|
|
14663
|
+
*/
|
|
13831
14664
|
readonly label: string;
|
|
13832
14665
|
};
|
|
13833
14666
|
export type Saml2Login = {
|
|
@@ -13912,6 +14745,9 @@ export type ServiceProvider = {
|
|
|
13912
14745
|
readonly offering_count?: number;
|
|
13913
14746
|
};
|
|
13914
14747
|
export type ServiceProviderApiSecretCode = {
|
|
14748
|
+
/**
|
|
14749
|
+
* API secret code for authenticating service provider requests
|
|
14750
|
+
*/
|
|
13915
14751
|
readonly api_secret_code: string;
|
|
13916
14752
|
};
|
|
13917
14753
|
export type ServiceProviderChecklistSummary = {
|
|
@@ -13952,8 +14788,17 @@ export type ServiceProviderRequest = {
|
|
|
13952
14788
|
image?: (Blob | File) | null;
|
|
13953
14789
|
};
|
|
13954
14790
|
export type ServiceProviderRevenues = {
|
|
14791
|
+
/**
|
|
14792
|
+
* Total revenue amount
|
|
14793
|
+
*/
|
|
13955
14794
|
readonly total: number;
|
|
14795
|
+
/**
|
|
14796
|
+
* Invoice year
|
|
14797
|
+
*/
|
|
13956
14798
|
readonly year: number;
|
|
14799
|
+
/**
|
|
14800
|
+
* Invoice month
|
|
14801
|
+
*/
|
|
13957
14802
|
readonly month: number;
|
|
13958
14803
|
};
|
|
13959
14804
|
export type ServiceProviderSignatureRequest = {
|
|
@@ -13962,14 +14807,41 @@ export type ServiceProviderSignatureRequest = {
|
|
|
13962
14807
|
dry_run?: boolean;
|
|
13963
14808
|
};
|
|
13964
14809
|
export type ServiceProviderStatistics = {
|
|
14810
|
+
/**
|
|
14811
|
+
* Number of active campaigns
|
|
14812
|
+
*/
|
|
13965
14813
|
readonly active_campaigns: number;
|
|
14814
|
+
/**
|
|
14815
|
+
* Number of current customers
|
|
14816
|
+
*/
|
|
13966
14817
|
readonly current_customers: number;
|
|
14818
|
+
/**
|
|
14819
|
+
* Change in number of customers
|
|
14820
|
+
*/
|
|
13967
14821
|
readonly customers_number_change: number;
|
|
14822
|
+
/**
|
|
14823
|
+
* Number of active resources
|
|
14824
|
+
*/
|
|
13968
14825
|
readonly active_resources: number;
|
|
14826
|
+
/**
|
|
14827
|
+
* Change in number of resources
|
|
14828
|
+
*/
|
|
13969
14829
|
readonly resources_number_change: number;
|
|
14830
|
+
/**
|
|
14831
|
+
* Number of active and paused offerings
|
|
14832
|
+
*/
|
|
13970
14833
|
readonly active_and_paused_offerings: number;
|
|
14834
|
+
/**
|
|
14835
|
+
* Number of unresolved support tickets
|
|
14836
|
+
*/
|
|
13971
14837
|
readonly unresolved_tickets: number;
|
|
14838
|
+
/**
|
|
14839
|
+
* Number of pending orders
|
|
14840
|
+
*/
|
|
13972
14841
|
readonly pending_orders: number;
|
|
14842
|
+
/**
|
|
14843
|
+
* Number of resources in error state
|
|
14844
|
+
*/
|
|
13973
14845
|
readonly erred_resources: number;
|
|
13974
14846
|
};
|
|
13975
14847
|
export type ServiceSettings = {
|
|
@@ -14004,7 +14876,13 @@ export type SetMtuRequest = {
|
|
|
14004
14876
|
mtu: number;
|
|
14005
14877
|
};
|
|
14006
14878
|
export type SetOfferingsUsernameRequest = {
|
|
14879
|
+
/**
|
|
14880
|
+
* UUID of the user
|
|
14881
|
+
*/
|
|
14007
14882
|
user_uuid: string;
|
|
14883
|
+
/**
|
|
14884
|
+
* Username for offering access
|
|
14885
|
+
*/
|
|
14008
14886
|
username: string;
|
|
14009
14887
|
};
|
|
14010
14888
|
export type SettingsMetadataResponse = {
|
|
@@ -14015,6 +14893,17 @@ export type SettingsMetadataResponse = {
|
|
|
14015
14893
|
[key: string]: unknown;
|
|
14016
14894
|
}>;
|
|
14017
14895
|
};
|
|
14896
|
+
export type SeverityEnum = 'safe' | 'low' | 'medium' | 'high' | 'critical';
|
|
14897
|
+
export type SilenceActionRequest = {
|
|
14898
|
+
/**
|
|
14899
|
+
* Duration in days to silence the action. If not provided, silences permanently.
|
|
14900
|
+
*/
|
|
14901
|
+
duration_days?: number;
|
|
14902
|
+
};
|
|
14903
|
+
export type SilenceActionResponse = {
|
|
14904
|
+
status: string;
|
|
14905
|
+
duration_days?: number | null;
|
|
14906
|
+
};
|
|
14018
14907
|
export type SlurmAllocation = {
|
|
14019
14908
|
readonly url?: string;
|
|
14020
14909
|
readonly uuid?: string;
|
|
@@ -14270,6 +15159,9 @@ export type SoftwareCatalogRequest = {
|
|
|
14270
15159
|
update_errors?: string;
|
|
14271
15160
|
};
|
|
14272
15161
|
export type SoftwareCatalogUuid = {
|
|
15162
|
+
/**
|
|
15163
|
+
* UUID of the software catalog
|
|
15164
|
+
*/
|
|
14273
15165
|
uuid: string;
|
|
14274
15166
|
};
|
|
14275
15167
|
export type SoftwarePackage = {
|
|
@@ -14447,9 +15339,21 @@ export type SupportedCountriesResponse = {
|
|
|
14447
15339
|
};
|
|
14448
15340
|
export type SyncStatusEnum = 'in_sync' | 'out_of_sync' | 'sync_failed';
|
|
14449
15341
|
export type TableSize = {
|
|
15342
|
+
/**
|
|
15343
|
+
* Name of the database table
|
|
15344
|
+
*/
|
|
14450
15345
|
readonly table_name: string;
|
|
15346
|
+
/**
|
|
15347
|
+
* Total size of the table in bytes
|
|
15348
|
+
*/
|
|
14451
15349
|
readonly total_size: number;
|
|
15350
|
+
/**
|
|
15351
|
+
* Size of the actual data in bytes
|
|
15352
|
+
*/
|
|
14452
15353
|
readonly data_size: number;
|
|
15354
|
+
/**
|
|
15355
|
+
* Size of external data (e.g., TOAST) in bytes
|
|
15356
|
+
*/
|
|
14453
15357
|
readonly external_size: number;
|
|
14454
15358
|
};
|
|
14455
15359
|
export type Template = {
|
|
@@ -14494,7 +15398,13 @@ export type TenantSecurityGroupUpdateRequest = {
|
|
|
14494
15398
|
rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
|
|
14495
15399
|
};
|
|
14496
15400
|
export type TimeSeriesToSData = {
|
|
15401
|
+
/**
|
|
15402
|
+
* Date of the data point
|
|
15403
|
+
*/
|
|
14497
15404
|
readonly date: string;
|
|
15405
|
+
/**
|
|
15406
|
+
* Count for the date
|
|
15407
|
+
*/
|
|
14498
15408
|
readonly count: number;
|
|
14499
15409
|
};
|
|
14500
15410
|
export type ToSConsentDashboard = {
|
|
@@ -14509,12 +15419,29 @@ export type ToSConsentDashboard = {
|
|
|
14509
15419
|
readonly active_users_over_time: Array<TimeSeriesToSData>;
|
|
14510
15420
|
};
|
|
14511
15421
|
export type TokenRequest = {
|
|
15422
|
+
/**
|
|
15423
|
+
* Authentication token for invitation acceptance
|
|
15424
|
+
*/
|
|
14512
15425
|
token: string;
|
|
14513
15426
|
};
|
|
14514
15427
|
export type TotalCustomerCost = {
|
|
14515
15428
|
readonly total: number;
|
|
14516
15429
|
readonly price: number;
|
|
14517
15430
|
};
|
|
15431
|
+
export type UnsilenceActionResponse = {
|
|
15432
|
+
status: string;
|
|
15433
|
+
};
|
|
15434
|
+
export type UpdateActionsRequest = {
|
|
15435
|
+
/**
|
|
15436
|
+
* Optional provider action type to update. If not provided, updates all providers.
|
|
15437
|
+
*/
|
|
15438
|
+
provider_action_type?: string | null;
|
|
15439
|
+
};
|
|
15440
|
+
export type UpdateActionsResponse = {
|
|
15441
|
+
status: string;
|
|
15442
|
+
message: string;
|
|
15443
|
+
provider_action_type?: string | null;
|
|
15444
|
+
};
|
|
14518
15445
|
export type UpdateOfferingComponentRequest = {
|
|
14519
15446
|
uuid: string;
|
|
14520
15447
|
billing_type: BillingTypeEnum;
|
|
@@ -14548,6 +15475,7 @@ export type UpdateOfferingComponentRequest = {
|
|
|
14548
15475
|
min_prepaid_duration?: number | null;
|
|
14549
15476
|
max_prepaid_duration?: number | null;
|
|
14550
15477
|
};
|
|
15478
|
+
export type UrgencyEnum = 'low' | 'medium' | 'high';
|
|
14551
15479
|
export type User = {
|
|
14552
15480
|
readonly url?: string;
|
|
14553
15481
|
readonly uuid?: string;
|
|
@@ -14555,6 +15483,9 @@ export type User = {
|
|
|
14555
15483
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
14556
15484
|
*/
|
|
14557
15485
|
username?: string;
|
|
15486
|
+
/**
|
|
15487
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
15488
|
+
*/
|
|
14558
15489
|
slug?: string;
|
|
14559
15490
|
readonly full_name?: string;
|
|
14560
15491
|
native_name?: string;
|
|
@@ -14621,6 +15552,57 @@ export type User = {
|
|
|
14621
15552
|
readonly has_active_session?: boolean;
|
|
14622
15553
|
readonly ip_address?: string | null;
|
|
14623
15554
|
};
|
|
15555
|
+
export type UserAction = {
|
|
15556
|
+
readonly uuid: string;
|
|
15557
|
+
/**
|
|
15558
|
+
* Type of action, e.g. 'pending_order', 'expiring_resource'
|
|
15559
|
+
*/
|
|
15560
|
+
action_type: string;
|
|
15561
|
+
title: string;
|
|
15562
|
+
description: string;
|
|
15563
|
+
urgency: UrgencyEnum;
|
|
15564
|
+
due_date?: string | null;
|
|
15565
|
+
action_url?: string;
|
|
15566
|
+
metadata?: string;
|
|
15567
|
+
is_silenced?: boolean;
|
|
15568
|
+
silenced_until?: string | null;
|
|
15569
|
+
readonly is_temporarily_silenced: boolean;
|
|
15570
|
+
readonly is_effectively_silenced: boolean;
|
|
15571
|
+
readonly created: string;
|
|
15572
|
+
readonly modified: string;
|
|
15573
|
+
readonly related_object_name: string;
|
|
15574
|
+
readonly related_object_type: string;
|
|
15575
|
+
readonly corrective_actions: Array<CorrectiveAction>;
|
|
15576
|
+
readonly days_until_due: number | null;
|
|
15577
|
+
};
|
|
15578
|
+
export type UserActionExecution = {
|
|
15579
|
+
readonly id: number;
|
|
15580
|
+
corrective_action_label: string;
|
|
15581
|
+
readonly executed_at: string;
|
|
15582
|
+
success?: boolean;
|
|
15583
|
+
error_message?: string;
|
|
15584
|
+
execution_metadata?: string;
|
|
15585
|
+
};
|
|
15586
|
+
export type UserActionProvider = {
|
|
15587
|
+
readonly id: number;
|
|
15588
|
+
app_name: string;
|
|
15589
|
+
provider_class: string;
|
|
15590
|
+
action_type: string;
|
|
15591
|
+
is_enabled?: boolean;
|
|
15592
|
+
schedule?: string;
|
|
15593
|
+
readonly last_execution: string | null;
|
|
15594
|
+
readonly last_execution_status: string;
|
|
15595
|
+
};
|
|
15596
|
+
export type UserActionSummary = {
|
|
15597
|
+
total: number;
|
|
15598
|
+
by_urgency: {
|
|
15599
|
+
[key: string]: unknown;
|
|
15600
|
+
};
|
|
15601
|
+
by_type: {
|
|
15602
|
+
[key: string]: unknown;
|
|
15603
|
+
};
|
|
15604
|
+
overdue: number;
|
|
15605
|
+
};
|
|
14624
15606
|
export type UserAgreement = {
|
|
14625
15607
|
readonly url: string;
|
|
14626
15608
|
readonly uuid: string;
|
|
@@ -14746,6 +15728,9 @@ export type UserRequest = {
|
|
|
14746
15728
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
14747
15729
|
*/
|
|
14748
15730
|
username: string;
|
|
15731
|
+
/**
|
|
15732
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
15733
|
+
*/
|
|
14749
15734
|
slug?: string;
|
|
14750
15735
|
native_name?: string;
|
|
14751
15736
|
job_title?: string;
|
|
@@ -14843,20 +15828,49 @@ export type VersionAdoption = {
|
|
|
14843
15828
|
};
|
|
14844
15829
|
export type VisibilityEnum = 'private' | 'public';
|
|
14845
15830
|
export type VisibleInvitationDetails = {
|
|
15831
|
+
/**
|
|
15832
|
+
* UUID of the invitation scope (Customer or Project)
|
|
15833
|
+
*/
|
|
14846
15834
|
readonly scope_uuid: string;
|
|
15835
|
+
/**
|
|
15836
|
+
* Name of the invitation scope
|
|
15837
|
+
*/
|
|
14847
15838
|
readonly scope_name: string;
|
|
14848
15839
|
/**
|
|
14849
|
-
*
|
|
14850
|
-
* Returns empty string if scope doesn't have a description field.
|
|
15840
|
+
* Description of the invitation scope
|
|
14851
15841
|
*/
|
|
14852
15842
|
readonly scope_description: string;
|
|
15843
|
+
/**
|
|
15844
|
+
* Type of the invitation scope (e.g., 'customer', 'project')
|
|
15845
|
+
*/
|
|
14853
15846
|
readonly scope_type: string | null;
|
|
15847
|
+
/**
|
|
15848
|
+
* UUID of the customer organization
|
|
15849
|
+
*/
|
|
14854
15850
|
readonly customer_uuid: string;
|
|
15851
|
+
/**
|
|
15852
|
+
* Name of the customer organization
|
|
15853
|
+
*/
|
|
14855
15854
|
readonly customer_name: string;
|
|
15855
|
+
/**
|
|
15856
|
+
* Name of the role being granted (e.g., 'PROJECT.ADMIN')
|
|
15857
|
+
*/
|
|
14856
15858
|
readonly role_name: string;
|
|
15859
|
+
/**
|
|
15860
|
+
* Description of the role being granted
|
|
15861
|
+
*/
|
|
14857
15862
|
readonly role_description: string;
|
|
15863
|
+
/**
|
|
15864
|
+
* Full name of the user who created this invitation
|
|
15865
|
+
*/
|
|
14858
15866
|
readonly created_by_full_name: string;
|
|
15867
|
+
/**
|
|
15868
|
+
* Username of the user who created this invitation
|
|
15869
|
+
*/
|
|
14859
15870
|
readonly created_by_username: string;
|
|
15871
|
+
/**
|
|
15872
|
+
* Profile image of the user who created this invitation
|
|
15873
|
+
*/
|
|
14860
15874
|
readonly created_by_image: string;
|
|
14861
15875
|
/**
|
|
14862
15876
|
* Invitation link will be sent to this email. Note that user can accept invitation with different email.
|
|
@@ -14864,6 +15878,9 @@ export type VisibleInvitationDetails = {
|
|
|
14864
15878
|
email: string;
|
|
14865
15879
|
readonly error_message: string;
|
|
14866
15880
|
execution_state: ExecutionStateEnum;
|
|
15881
|
+
/**
|
|
15882
|
+
* Current state of the invitation (e.g., 'pending', 'accepted', 'rejected')
|
|
15883
|
+
*/
|
|
14867
15884
|
state: InvitationState;
|
|
14868
15885
|
};
|
|
14869
15886
|
export type VmwareCluster = {
|
|
@@ -15444,12 +16461,18 @@ export type CustomerRequestForm = {
|
|
|
15444
16461
|
* Maximum number of service accounts allowed
|
|
15445
16462
|
*/
|
|
15446
16463
|
max_service_accounts?: number | null;
|
|
16464
|
+
/**
|
|
16465
|
+
* Checklist to be used for project metadata validation in this organization
|
|
16466
|
+
*/
|
|
15447
16467
|
project_metadata_checklist?: string | null;
|
|
15448
16468
|
/**
|
|
15449
16469
|
* Number of extra days after project end date before resources are terminated
|
|
15450
16470
|
*/
|
|
15451
16471
|
grace_period_days?: number | null;
|
|
15452
16472
|
name: string;
|
|
16473
|
+
/**
|
|
16474
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
16475
|
+
*/
|
|
15453
16476
|
slug?: string;
|
|
15454
16477
|
native_name?: string;
|
|
15455
16478
|
abbreviation?: string;
|
|
@@ -15478,6 +16501,9 @@ export type CustomerRequestForm = {
|
|
|
15478
16501
|
latitude?: number | null;
|
|
15479
16502
|
longitude?: number | null;
|
|
15480
16503
|
bank_account?: string;
|
|
16504
|
+
/**
|
|
16505
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
16506
|
+
*/
|
|
15481
16507
|
country?: CountryEnum | BlankEnum;
|
|
15482
16508
|
/**
|
|
15483
16509
|
* Comma-separated list of notification email addresses
|
|
@@ -15506,12 +16532,18 @@ export type CustomerRequestMultipart = {
|
|
|
15506
16532
|
* Maximum number of service accounts allowed
|
|
15507
16533
|
*/
|
|
15508
16534
|
max_service_accounts?: number | null;
|
|
16535
|
+
/**
|
|
16536
|
+
* Checklist to be used for project metadata validation in this organization
|
|
16537
|
+
*/
|
|
15509
16538
|
project_metadata_checklist?: string | null;
|
|
15510
16539
|
/**
|
|
15511
16540
|
* Number of extra days after project end date before resources are terminated
|
|
15512
16541
|
*/
|
|
15513
16542
|
grace_period_days?: number | null;
|
|
15514
16543
|
name: string;
|
|
16544
|
+
/**
|
|
16545
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
16546
|
+
*/
|
|
15515
16547
|
slug?: string;
|
|
15516
16548
|
native_name?: string;
|
|
15517
16549
|
abbreviation?: string;
|
|
@@ -15540,6 +16572,9 @@ export type CustomerRequestMultipart = {
|
|
|
15540
16572
|
latitude?: number | null;
|
|
15541
16573
|
longitude?: number | null;
|
|
15542
16574
|
bank_account?: string;
|
|
16575
|
+
/**
|
|
16576
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
16577
|
+
*/
|
|
15543
16578
|
country?: CountryEnum | BlankEnum;
|
|
15544
16579
|
/**
|
|
15545
16580
|
* Comma-separated list of notification email addresses
|
|
@@ -15568,12 +16603,18 @@ export type PatchedCustomerRequestForm = {
|
|
|
15568
16603
|
* Maximum number of service accounts allowed
|
|
15569
16604
|
*/
|
|
15570
16605
|
max_service_accounts?: number | null;
|
|
16606
|
+
/**
|
|
16607
|
+
* Checklist to be used for project metadata validation in this organization
|
|
16608
|
+
*/
|
|
15571
16609
|
project_metadata_checklist?: string | null;
|
|
15572
16610
|
/**
|
|
15573
16611
|
* Number of extra days after project end date before resources are terminated
|
|
15574
16612
|
*/
|
|
15575
16613
|
grace_period_days?: number | null;
|
|
15576
16614
|
name?: string;
|
|
16615
|
+
/**
|
|
16616
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
16617
|
+
*/
|
|
15577
16618
|
slug?: string;
|
|
15578
16619
|
native_name?: string;
|
|
15579
16620
|
abbreviation?: string;
|
|
@@ -15602,6 +16643,9 @@ export type PatchedCustomerRequestForm = {
|
|
|
15602
16643
|
latitude?: number | null;
|
|
15603
16644
|
longitude?: number | null;
|
|
15604
16645
|
bank_account?: string;
|
|
16646
|
+
/**
|
|
16647
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
16648
|
+
*/
|
|
15605
16649
|
country?: CountryEnum | BlankEnum;
|
|
15606
16650
|
/**
|
|
15607
16651
|
* Comma-separated list of notification email addresses
|
|
@@ -15630,12 +16674,18 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
15630
16674
|
* Maximum number of service accounts allowed
|
|
15631
16675
|
*/
|
|
15632
16676
|
max_service_accounts?: number | null;
|
|
16677
|
+
/**
|
|
16678
|
+
* Checklist to be used for project metadata validation in this organization
|
|
16679
|
+
*/
|
|
15633
16680
|
project_metadata_checklist?: string | null;
|
|
15634
16681
|
/**
|
|
15635
16682
|
* Number of extra days after project end date before resources are terminated
|
|
15636
16683
|
*/
|
|
15637
16684
|
grace_period_days?: number | null;
|
|
15638
16685
|
name?: string;
|
|
16686
|
+
/**
|
|
16687
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
16688
|
+
*/
|
|
15639
16689
|
slug?: string;
|
|
15640
16690
|
native_name?: string;
|
|
15641
16691
|
abbreviation?: string;
|
|
@@ -15664,6 +16714,9 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
15664
16714
|
latitude?: number | null;
|
|
15665
16715
|
longitude?: number | null;
|
|
15666
16716
|
bank_account?: string;
|
|
16717
|
+
/**
|
|
16718
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
16719
|
+
*/
|
|
15667
16720
|
country?: CountryEnum | BlankEnum;
|
|
15668
16721
|
/**
|
|
15669
16722
|
* Comma-separated list of notification email addresses
|
|
@@ -15812,6 +16865,9 @@ export type OrderAttachmentRequestMultipart = {
|
|
|
15812
16865
|
};
|
|
15813
16866
|
export type OfferingCreateRequestForm = {
|
|
15814
16867
|
name: string;
|
|
16868
|
+
/**
|
|
16869
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
16870
|
+
*/
|
|
15815
16871
|
slug?: string;
|
|
15816
16872
|
description?: string;
|
|
15817
16873
|
full_description?: string;
|
|
@@ -15843,6 +16899,9 @@ export type OfferingCreateRequestForm = {
|
|
|
15843
16899
|
datacite_doi?: string;
|
|
15844
16900
|
latitude?: number | null;
|
|
15845
16901
|
longitude?: number | null;
|
|
16902
|
+
/**
|
|
16903
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
16904
|
+
*/
|
|
15846
16905
|
country?: CountryEnum | BlankEnum;
|
|
15847
16906
|
backend_id?: string;
|
|
15848
16907
|
image?: (Blob | File) | null;
|
|
@@ -15854,6 +16913,9 @@ export type OfferingCreateRequestForm = {
|
|
|
15854
16913
|
};
|
|
15855
16914
|
export type OfferingCreateRequestMultipart = {
|
|
15856
16915
|
name: string;
|
|
16916
|
+
/**
|
|
16917
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
16918
|
+
*/
|
|
15857
16919
|
slug?: string;
|
|
15858
16920
|
description?: string;
|
|
15859
16921
|
full_description?: string;
|
|
@@ -15885,6 +16947,9 @@ export type OfferingCreateRequestMultipart = {
|
|
|
15885
16947
|
datacite_doi?: string;
|
|
15886
16948
|
latitude?: number | null;
|
|
15887
16949
|
longitude?: number | null;
|
|
16950
|
+
/**
|
|
16951
|
+
* Country code (ISO 3166-1 alpha-2)
|
|
16952
|
+
*/
|
|
15888
16953
|
country?: CountryEnum | BlankEnum;
|
|
15889
16954
|
backend_id?: string;
|
|
15890
16955
|
image?: (Blob | File) | null;
|
|
@@ -15994,18 +17059,30 @@ export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
|
15994
17059
|
};
|
|
15995
17060
|
export type ProjectRequestForm = {
|
|
15996
17061
|
name: string;
|
|
17062
|
+
/**
|
|
17063
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17064
|
+
*/
|
|
15997
17065
|
slug?: string;
|
|
15998
17066
|
/**
|
|
15999
17067
|
* Organization
|
|
16000
17068
|
*/
|
|
16001
17069
|
customer: string;
|
|
17070
|
+
/**
|
|
17071
|
+
* Project description (HTML content will be sanitized)
|
|
17072
|
+
*/
|
|
16002
17073
|
description?: string;
|
|
16003
17074
|
/**
|
|
16004
17075
|
* Project type
|
|
16005
17076
|
*/
|
|
16006
17077
|
type?: string | null;
|
|
16007
17078
|
backend_id?: string;
|
|
17079
|
+
/**
|
|
17080
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
17081
|
+
*/
|
|
16008
17082
|
start_date?: string | null;
|
|
17083
|
+
/**
|
|
17084
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
17085
|
+
*/
|
|
16009
17086
|
end_date?: string | null;
|
|
16010
17087
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
16011
17088
|
is_industry?: boolean;
|
|
@@ -16014,6 +17091,9 @@ export type ProjectRequestForm = {
|
|
|
16014
17091
|
* Project type
|
|
16015
17092
|
*/
|
|
16016
17093
|
kind?: KindEnum;
|
|
17094
|
+
/**
|
|
17095
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
17096
|
+
*/
|
|
16017
17097
|
staff_notes?: string;
|
|
16018
17098
|
/**
|
|
16019
17099
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -16022,18 +17102,30 @@ export type ProjectRequestForm = {
|
|
|
16022
17102
|
};
|
|
16023
17103
|
export type ProjectRequestMultipart = {
|
|
16024
17104
|
name: string;
|
|
17105
|
+
/**
|
|
17106
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17107
|
+
*/
|
|
16025
17108
|
slug?: string;
|
|
16026
17109
|
/**
|
|
16027
17110
|
* Organization
|
|
16028
17111
|
*/
|
|
16029
17112
|
customer: string;
|
|
17113
|
+
/**
|
|
17114
|
+
* Project description (HTML content will be sanitized)
|
|
17115
|
+
*/
|
|
16030
17116
|
description?: string;
|
|
16031
17117
|
/**
|
|
16032
17118
|
* Project type
|
|
16033
17119
|
*/
|
|
16034
17120
|
type?: string | null;
|
|
16035
17121
|
backend_id?: string;
|
|
17122
|
+
/**
|
|
17123
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
17124
|
+
*/
|
|
16036
17125
|
start_date?: string | null;
|
|
17126
|
+
/**
|
|
17127
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
17128
|
+
*/
|
|
16037
17129
|
end_date?: string | null;
|
|
16038
17130
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
16039
17131
|
is_industry?: boolean;
|
|
@@ -16042,6 +17134,9 @@ export type ProjectRequestMultipart = {
|
|
|
16042
17134
|
* Project type
|
|
16043
17135
|
*/
|
|
16044
17136
|
kind?: KindEnum;
|
|
17137
|
+
/**
|
|
17138
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
17139
|
+
*/
|
|
16045
17140
|
staff_notes?: string;
|
|
16046
17141
|
/**
|
|
16047
17142
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -16050,18 +17145,30 @@ export type ProjectRequestMultipart = {
|
|
|
16050
17145
|
};
|
|
16051
17146
|
export type PatchedProjectRequestForm = {
|
|
16052
17147
|
name?: string;
|
|
17148
|
+
/**
|
|
17149
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17150
|
+
*/
|
|
16053
17151
|
slug?: string;
|
|
16054
17152
|
/**
|
|
16055
17153
|
* Organization
|
|
16056
17154
|
*/
|
|
16057
17155
|
customer?: string;
|
|
17156
|
+
/**
|
|
17157
|
+
* Project description (HTML content will be sanitized)
|
|
17158
|
+
*/
|
|
16058
17159
|
description?: string;
|
|
16059
17160
|
/**
|
|
16060
17161
|
* Project type
|
|
16061
17162
|
*/
|
|
16062
17163
|
type?: string | null;
|
|
16063
17164
|
backend_id?: string;
|
|
17165
|
+
/**
|
|
17166
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
17167
|
+
*/
|
|
16064
17168
|
start_date?: string | null;
|
|
17169
|
+
/**
|
|
17170
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
17171
|
+
*/
|
|
16065
17172
|
end_date?: string | null;
|
|
16066
17173
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
16067
17174
|
is_industry?: boolean;
|
|
@@ -16070,6 +17177,9 @@ export type PatchedProjectRequestForm = {
|
|
|
16070
17177
|
* Project type
|
|
16071
17178
|
*/
|
|
16072
17179
|
kind?: KindEnum;
|
|
17180
|
+
/**
|
|
17181
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
17182
|
+
*/
|
|
16073
17183
|
staff_notes?: string;
|
|
16074
17184
|
/**
|
|
16075
17185
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -16078,18 +17188,30 @@ export type PatchedProjectRequestForm = {
|
|
|
16078
17188
|
};
|
|
16079
17189
|
export type PatchedProjectRequestMultipart = {
|
|
16080
17190
|
name?: string;
|
|
17191
|
+
/**
|
|
17192
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17193
|
+
*/
|
|
16081
17194
|
slug?: string;
|
|
16082
17195
|
/**
|
|
16083
17196
|
* Organization
|
|
16084
17197
|
*/
|
|
16085
17198
|
customer?: string;
|
|
17199
|
+
/**
|
|
17200
|
+
* Project description (HTML content will be sanitized)
|
|
17201
|
+
*/
|
|
16086
17202
|
description?: string;
|
|
16087
17203
|
/**
|
|
16088
17204
|
* Project type
|
|
16089
17205
|
*/
|
|
16090
17206
|
type?: string | null;
|
|
16091
17207
|
backend_id?: string;
|
|
17208
|
+
/**
|
|
17209
|
+
* Project start date. Cannot be edited after the start date has arrived.
|
|
17210
|
+
*/
|
|
16092
17211
|
start_date?: string | null;
|
|
17212
|
+
/**
|
|
17213
|
+
* Project end date. Setting this field requires DELETE_PROJECT permission.
|
|
17214
|
+
*/
|
|
16093
17215
|
end_date?: string | null;
|
|
16094
17216
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
16095
17217
|
is_industry?: boolean;
|
|
@@ -16098,6 +17220,9 @@ export type PatchedProjectRequestMultipart = {
|
|
|
16098
17220
|
* Project type
|
|
16099
17221
|
*/
|
|
16100
17222
|
kind?: KindEnum;
|
|
17223
|
+
/**
|
|
17224
|
+
* Internal notes visible only to staff and support users (HTML content will be sanitized)
|
|
17225
|
+
*/
|
|
16101
17226
|
staff_notes?: string;
|
|
16102
17227
|
/**
|
|
16103
17228
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
@@ -16517,6 +17642,9 @@ export type UserRequestForm = {
|
|
|
16517
17642
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
16518
17643
|
*/
|
|
16519
17644
|
username: string;
|
|
17645
|
+
/**
|
|
17646
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17647
|
+
*/
|
|
16520
17648
|
slug?: string;
|
|
16521
17649
|
native_name?: string;
|
|
16522
17650
|
job_title?: string;
|
|
@@ -16562,6 +17690,9 @@ export type UserRequestMultipart = {
|
|
|
16562
17690
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
16563
17691
|
*/
|
|
16564
17692
|
username: string;
|
|
17693
|
+
/**
|
|
17694
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17695
|
+
*/
|
|
16565
17696
|
slug?: string;
|
|
16566
17697
|
native_name?: string;
|
|
16567
17698
|
job_title?: string;
|
|
@@ -16607,6 +17738,9 @@ export type PatchedUserRequestForm = {
|
|
|
16607
17738
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
16608
17739
|
*/
|
|
16609
17740
|
username?: string;
|
|
17741
|
+
/**
|
|
17742
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17743
|
+
*/
|
|
16610
17744
|
slug?: string;
|
|
16611
17745
|
native_name?: string;
|
|
16612
17746
|
job_title?: string;
|
|
@@ -16651,6 +17785,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
16651
17785
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
16652
17786
|
*/
|
|
16653
17787
|
username?: string;
|
|
17788
|
+
/**
|
|
17789
|
+
* URL-friendly identifier. Only editable by staff users.
|
|
17790
|
+
*/
|
|
16654
17791
|
slug?: string;
|
|
16655
17792
|
native_name?: string;
|
|
16656
17793
|
job_title?: string;
|
|
@@ -20048,7 +21185,7 @@ export type BookingResourcesListData = {
|
|
|
20048
21185
|
* Exclude transitional resources with early pending orders
|
|
20049
21186
|
*/
|
|
20050
21187
|
exclude_pending_transitional?: boolean;
|
|
20051
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
21188
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
20052
21189
|
/**
|
|
20053
21190
|
* Has termination date
|
|
20054
21191
|
*/
|
|
@@ -20364,7 +21501,7 @@ export type BookingResourcesRetrieveData = {
|
|
|
20364
21501
|
uuid: string;
|
|
20365
21502
|
};
|
|
20366
21503
|
query?: {
|
|
20367
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
21504
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
20368
21505
|
};
|
|
20369
21506
|
url: '/api/booking-resources/{uuid}/';
|
|
20370
21507
|
};
|
|
@@ -26318,7 +27455,7 @@ export type ManagedRancherClusterResourcesListData = {
|
|
|
26318
27455
|
body?: never;
|
|
26319
27456
|
path?: never;
|
|
26320
27457
|
query?: {
|
|
26321
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
27458
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
26322
27459
|
/**
|
|
26323
27460
|
* A page number within the paginated result set.
|
|
26324
27461
|
*/
|
|
@@ -26361,7 +27498,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
|
|
|
26361
27498
|
uuid: string;
|
|
26362
27499
|
};
|
|
26363
27500
|
query?: {
|
|
26364
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
27501
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
26365
27502
|
};
|
|
26366
27503
|
url: '/api/managed-rancher-cluster-resources/{uuid}/';
|
|
26367
27504
|
};
|
|
@@ -33351,7 +34488,7 @@ export type MarketplaceProviderOfferingsImportOfferingData = {
|
|
|
33351
34488
|
url: '/api/marketplace-provider-offerings/import_offering/';
|
|
33352
34489
|
};
|
|
33353
34490
|
export type MarketplaceProviderOfferingsImportOfferingResponses = {
|
|
33354
|
-
200:
|
|
34491
|
+
200: OfferingImportParameters;
|
|
33355
34492
|
};
|
|
33356
34493
|
export type MarketplaceProviderOfferingsImportOfferingResponse = MarketplaceProviderOfferingsImportOfferingResponses[keyof MarketplaceProviderOfferingsImportOfferingResponses];
|
|
33357
34494
|
export type MarketplaceProviderResourcesListData = {
|
|
@@ -33390,7 +34527,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
33390
34527
|
* Exclude transitional resources with early pending orders
|
|
33391
34528
|
*/
|
|
33392
34529
|
exclude_pending_transitional?: boolean;
|
|
33393
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
34530
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
33394
34531
|
/**
|
|
33395
34532
|
* Has termination date
|
|
33396
34533
|
*/
|
|
@@ -33705,7 +34842,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
|
|
|
33705
34842
|
uuid: string;
|
|
33706
34843
|
};
|
|
33707
34844
|
query?: {
|
|
33708
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
34845
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
33709
34846
|
};
|
|
33710
34847
|
url: '/api/marketplace-provider-resources/{uuid}/';
|
|
33711
34848
|
};
|
|
@@ -34771,7 +35908,7 @@ export type MarketplaceResourcesListData = {
|
|
|
34771
35908
|
* Exclude transitional resources with early pending orders
|
|
34772
35909
|
*/
|
|
34773
35910
|
exclude_pending_transitional?: boolean;
|
|
34774
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
35911
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
34775
35912
|
/**
|
|
34776
35913
|
* Has termination date
|
|
34777
35914
|
*/
|
|
@@ -35086,7 +36223,7 @@ export type MarketplaceResourcesRetrieveData = {
|
|
|
35086
36223
|
uuid: string;
|
|
35087
36224
|
};
|
|
35088
36225
|
query?: {
|
|
35089
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
36226
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
35090
36227
|
};
|
|
35091
36228
|
url: '/api/marketplace-resources/{uuid}/';
|
|
35092
36229
|
};
|
|
@@ -46495,31 +47632,6 @@ export type OpenstackTenantsCountResponses = {
|
|
|
46495
47632
|
*/
|
|
46496
47633
|
200: unknown;
|
|
46497
47634
|
};
|
|
46498
|
-
export type OpenstackTenantsCreateData = {
|
|
46499
|
-
body: OpenStackTenantRequest;
|
|
46500
|
-
path?: never;
|
|
46501
|
-
query?: never;
|
|
46502
|
-
url: '/api/openstack-tenants/';
|
|
46503
|
-
};
|
|
46504
|
-
export type OpenstackTenantsCreateResponses = {
|
|
46505
|
-
201: OpenStackTenant;
|
|
46506
|
-
};
|
|
46507
|
-
export type OpenstackTenantsCreateResponse = OpenstackTenantsCreateResponses[keyof OpenstackTenantsCreateResponses];
|
|
46508
|
-
export type OpenstackTenantsDestroyData = {
|
|
46509
|
-
body?: never;
|
|
46510
|
-
path: {
|
|
46511
|
-
uuid: string;
|
|
46512
|
-
};
|
|
46513
|
-
query?: never;
|
|
46514
|
-
url: '/api/openstack-tenants/{uuid}/';
|
|
46515
|
-
};
|
|
46516
|
-
export type OpenstackTenantsDestroyResponses = {
|
|
46517
|
-
/**
|
|
46518
|
-
* No response body
|
|
46519
|
-
*/
|
|
46520
|
-
204: void;
|
|
46521
|
-
};
|
|
46522
|
-
export type OpenstackTenantsDestroyResponse = OpenstackTenantsDestroyResponses[keyof OpenstackTenantsDestroyResponses];
|
|
46523
47635
|
export type OpenstackTenantsRetrieveData = {
|
|
46524
47636
|
body?: never;
|
|
46525
47637
|
path: {
|
|
@@ -49085,7 +50197,7 @@ export type PromotionsCampaignsResourcesListData = {
|
|
|
49085
50197
|
uuid: string;
|
|
49086
50198
|
};
|
|
49087
50199
|
query?: {
|
|
49088
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
50200
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
49089
50201
|
/**
|
|
49090
50202
|
* A page number within the paginated result set.
|
|
49091
50203
|
*/
|
|
@@ -55699,6 +56811,295 @@ export type SyncIssuesResponses = {
|
|
|
55699
56811
|
*/
|
|
55700
56812
|
202: unknown;
|
|
55701
56813
|
};
|
|
56814
|
+
export type UserActionExecutionsListData = {
|
|
56815
|
+
body?: never;
|
|
56816
|
+
path?: never;
|
|
56817
|
+
query?: {
|
|
56818
|
+
/**
|
|
56819
|
+
* Which field to use when ordering the results.
|
|
56820
|
+
*/
|
|
56821
|
+
o?: string;
|
|
56822
|
+
/**
|
|
56823
|
+
* A page number within the paginated result set.
|
|
56824
|
+
*/
|
|
56825
|
+
page?: number;
|
|
56826
|
+
/**
|
|
56827
|
+
* Number of results to return per page.
|
|
56828
|
+
*/
|
|
56829
|
+
page_size?: number;
|
|
56830
|
+
};
|
|
56831
|
+
url: '/api/user-action-executions/';
|
|
56832
|
+
};
|
|
56833
|
+
export type UserActionExecutionsListResponses = {
|
|
56834
|
+
200: Array<UserActionExecution>;
|
|
56835
|
+
};
|
|
56836
|
+
export type UserActionExecutionsListResponse = UserActionExecutionsListResponses[keyof UserActionExecutionsListResponses];
|
|
56837
|
+
export type UserActionExecutionsCountData = {
|
|
56838
|
+
body?: never;
|
|
56839
|
+
path?: never;
|
|
56840
|
+
query?: {
|
|
56841
|
+
/**
|
|
56842
|
+
* Which field to use when ordering the results.
|
|
56843
|
+
*/
|
|
56844
|
+
o?: string;
|
|
56845
|
+
/**
|
|
56846
|
+
* A page number within the paginated result set.
|
|
56847
|
+
*/
|
|
56848
|
+
page?: number;
|
|
56849
|
+
/**
|
|
56850
|
+
* Number of results to return per page.
|
|
56851
|
+
*/
|
|
56852
|
+
page_size?: number;
|
|
56853
|
+
};
|
|
56854
|
+
url: '/api/user-action-executions/';
|
|
56855
|
+
};
|
|
56856
|
+
export type UserActionExecutionsCountResponses = {
|
|
56857
|
+
/**
|
|
56858
|
+
* No response body
|
|
56859
|
+
*/
|
|
56860
|
+
200: unknown;
|
|
56861
|
+
};
|
|
56862
|
+
export type UserActionExecutionsRetrieveData = {
|
|
56863
|
+
body?: never;
|
|
56864
|
+
path: {
|
|
56865
|
+
/**
|
|
56866
|
+
* A unique integer value identifying this user action execution.
|
|
56867
|
+
*/
|
|
56868
|
+
id: number;
|
|
56869
|
+
};
|
|
56870
|
+
query?: never;
|
|
56871
|
+
url: '/api/user-action-executions/{id}/';
|
|
56872
|
+
};
|
|
56873
|
+
export type UserActionExecutionsRetrieveResponses = {
|
|
56874
|
+
200: UserActionExecution;
|
|
56875
|
+
};
|
|
56876
|
+
export type UserActionExecutionsRetrieveResponse = UserActionExecutionsRetrieveResponses[keyof UserActionExecutionsRetrieveResponses];
|
|
56877
|
+
export type UserActionProvidersListData = {
|
|
56878
|
+
body?: never;
|
|
56879
|
+
path?: never;
|
|
56880
|
+
query?: {
|
|
56881
|
+
/**
|
|
56882
|
+
* A page number within the paginated result set.
|
|
56883
|
+
*/
|
|
56884
|
+
page?: number;
|
|
56885
|
+
/**
|
|
56886
|
+
* Number of results to return per page.
|
|
56887
|
+
*/
|
|
56888
|
+
page_size?: number;
|
|
56889
|
+
};
|
|
56890
|
+
url: '/api/user-action-providers/';
|
|
56891
|
+
};
|
|
56892
|
+
export type UserActionProvidersListResponses = {
|
|
56893
|
+
200: Array<UserActionProvider>;
|
|
56894
|
+
};
|
|
56895
|
+
export type UserActionProvidersListResponse = UserActionProvidersListResponses[keyof UserActionProvidersListResponses];
|
|
56896
|
+
export type UserActionProvidersCountData = {
|
|
56897
|
+
body?: never;
|
|
56898
|
+
path?: never;
|
|
56899
|
+
query?: {
|
|
56900
|
+
/**
|
|
56901
|
+
* A page number within the paginated result set.
|
|
56902
|
+
*/
|
|
56903
|
+
page?: number;
|
|
56904
|
+
/**
|
|
56905
|
+
* Number of results to return per page.
|
|
56906
|
+
*/
|
|
56907
|
+
page_size?: number;
|
|
56908
|
+
};
|
|
56909
|
+
url: '/api/user-action-providers/';
|
|
56910
|
+
};
|
|
56911
|
+
export type UserActionProvidersCountResponses = {
|
|
56912
|
+
/**
|
|
56913
|
+
* No response body
|
|
56914
|
+
*/
|
|
56915
|
+
200: unknown;
|
|
56916
|
+
};
|
|
56917
|
+
export type UserActionProvidersRetrieveData = {
|
|
56918
|
+
body?: never;
|
|
56919
|
+
path: {
|
|
56920
|
+
/**
|
|
56921
|
+
* A unique integer value identifying this user action provider.
|
|
56922
|
+
*/
|
|
56923
|
+
id: number;
|
|
56924
|
+
};
|
|
56925
|
+
query?: never;
|
|
56926
|
+
url: '/api/user-action-providers/{id}/';
|
|
56927
|
+
};
|
|
56928
|
+
export type UserActionProvidersRetrieveResponses = {
|
|
56929
|
+
200: UserActionProvider;
|
|
56930
|
+
};
|
|
56931
|
+
export type UserActionProvidersRetrieveResponse = UserActionProvidersRetrieveResponses[keyof UserActionProvidersRetrieveResponses];
|
|
56932
|
+
export type UserActionsListData = {
|
|
56933
|
+
body?: never;
|
|
56934
|
+
path?: never;
|
|
56935
|
+
query?: {
|
|
56936
|
+
action_type?: string;
|
|
56937
|
+
created_after?: string;
|
|
56938
|
+
created_before?: string;
|
|
56939
|
+
due_within_days?: number;
|
|
56940
|
+
include_silenced?: boolean;
|
|
56941
|
+
is_silenced?: boolean;
|
|
56942
|
+
/**
|
|
56943
|
+
* Which field to use when ordering the results.
|
|
56944
|
+
*/
|
|
56945
|
+
o?: string;
|
|
56946
|
+
overdue?: boolean;
|
|
56947
|
+
/**
|
|
56948
|
+
* A page number within the paginated result set.
|
|
56949
|
+
*/
|
|
56950
|
+
page?: number;
|
|
56951
|
+
/**
|
|
56952
|
+
* Number of results to return per page.
|
|
56953
|
+
*/
|
|
56954
|
+
page_size?: number;
|
|
56955
|
+
urgency?: 'high' | 'low' | 'medium';
|
|
56956
|
+
};
|
|
56957
|
+
url: '/api/user-actions/';
|
|
56958
|
+
};
|
|
56959
|
+
export type UserActionsListResponses = {
|
|
56960
|
+
200: Array<UserAction>;
|
|
56961
|
+
};
|
|
56962
|
+
export type UserActionsListResponse = UserActionsListResponses[keyof UserActionsListResponses];
|
|
56963
|
+
export type UserActionsCountData = {
|
|
56964
|
+
body?: never;
|
|
56965
|
+
path?: never;
|
|
56966
|
+
query?: {
|
|
56967
|
+
action_type?: string;
|
|
56968
|
+
created_after?: string;
|
|
56969
|
+
created_before?: string;
|
|
56970
|
+
due_within_days?: number;
|
|
56971
|
+
include_silenced?: boolean;
|
|
56972
|
+
is_silenced?: boolean;
|
|
56973
|
+
/**
|
|
56974
|
+
* Which field to use when ordering the results.
|
|
56975
|
+
*/
|
|
56976
|
+
o?: string;
|
|
56977
|
+
overdue?: boolean;
|
|
56978
|
+
/**
|
|
56979
|
+
* A page number within the paginated result set.
|
|
56980
|
+
*/
|
|
56981
|
+
page?: number;
|
|
56982
|
+
/**
|
|
56983
|
+
* Number of results to return per page.
|
|
56984
|
+
*/
|
|
56985
|
+
page_size?: number;
|
|
56986
|
+
urgency?: 'high' | 'low' | 'medium';
|
|
56987
|
+
};
|
|
56988
|
+
url: '/api/user-actions/';
|
|
56989
|
+
};
|
|
56990
|
+
export type UserActionsCountResponses = {
|
|
56991
|
+
/**
|
|
56992
|
+
* No response body
|
|
56993
|
+
*/
|
|
56994
|
+
200: unknown;
|
|
56995
|
+
};
|
|
56996
|
+
export type UserActionsRetrieveData = {
|
|
56997
|
+
body?: never;
|
|
56998
|
+
path: {
|
|
56999
|
+
/**
|
|
57000
|
+
* A unique integer value identifying this user action.
|
|
57001
|
+
*/
|
|
57002
|
+
id: number;
|
|
57003
|
+
};
|
|
57004
|
+
query?: never;
|
|
57005
|
+
url: '/api/user-actions/{id}/';
|
|
57006
|
+
};
|
|
57007
|
+
export type UserActionsRetrieveResponses = {
|
|
57008
|
+
200: UserAction;
|
|
57009
|
+
};
|
|
57010
|
+
export type UserActionsRetrieveResponse = UserActionsRetrieveResponses[keyof UserActionsRetrieveResponses];
|
|
57011
|
+
export type UserActionsExecuteActionData = {
|
|
57012
|
+
body: ExecuteActionRequest;
|
|
57013
|
+
path: {
|
|
57014
|
+
/**
|
|
57015
|
+
* A unique integer value identifying this user action.
|
|
57016
|
+
*/
|
|
57017
|
+
id: number;
|
|
57018
|
+
};
|
|
57019
|
+
query?: never;
|
|
57020
|
+
url: '/api/user-actions/{id}/execute_action/';
|
|
57021
|
+
};
|
|
57022
|
+
export type UserActionsExecuteActionErrors = {
|
|
57023
|
+
404: ExecuteActionErrorResponse;
|
|
57024
|
+
500: ExecuteActionErrorResponse;
|
|
57025
|
+
};
|
|
57026
|
+
export type UserActionsExecuteActionError = UserActionsExecuteActionErrors[keyof UserActionsExecuteActionErrors];
|
|
57027
|
+
export type UserActionsExecuteActionResponses = {
|
|
57028
|
+
200: ExecuteActionResponse;
|
|
57029
|
+
};
|
|
57030
|
+
export type UserActionsExecuteActionResponse = UserActionsExecuteActionResponses[keyof UserActionsExecuteActionResponses];
|
|
57031
|
+
export type UserActionsSilenceData = {
|
|
57032
|
+
body?: SilenceActionRequest;
|
|
57033
|
+
path: {
|
|
57034
|
+
/**
|
|
57035
|
+
* A unique integer value identifying this user action.
|
|
57036
|
+
*/
|
|
57037
|
+
id: number;
|
|
57038
|
+
};
|
|
57039
|
+
query?: never;
|
|
57040
|
+
url: '/api/user-actions/{id}/silence/';
|
|
57041
|
+
};
|
|
57042
|
+
export type UserActionsSilenceResponses = {
|
|
57043
|
+
200: SilenceActionResponse;
|
|
57044
|
+
};
|
|
57045
|
+
export type UserActionsSilenceResponse = UserActionsSilenceResponses[keyof UserActionsSilenceResponses];
|
|
57046
|
+
export type UserActionsUnsilenceData = {
|
|
57047
|
+
body?: never;
|
|
57048
|
+
path: {
|
|
57049
|
+
/**
|
|
57050
|
+
* A unique integer value identifying this user action.
|
|
57051
|
+
*/
|
|
57052
|
+
id: number;
|
|
57053
|
+
};
|
|
57054
|
+
query?: never;
|
|
57055
|
+
url: '/api/user-actions/{id}/unsilence/';
|
|
57056
|
+
};
|
|
57057
|
+
export type UserActionsUnsilenceResponses = {
|
|
57058
|
+
200: UnsilenceActionResponse;
|
|
57059
|
+
};
|
|
57060
|
+
export type UserActionsUnsilenceResponse = UserActionsUnsilenceResponses[keyof UserActionsUnsilenceResponses];
|
|
57061
|
+
export type UserActionsBulkSilenceData = {
|
|
57062
|
+
body?: SilenceActionRequest;
|
|
57063
|
+
path?: never;
|
|
57064
|
+
query?: never;
|
|
57065
|
+
url: '/api/user-actions/bulk_silence/';
|
|
57066
|
+
};
|
|
57067
|
+
export type UserActionsBulkSilenceResponses = {
|
|
57068
|
+
200: BulkSilenceResponse;
|
|
57069
|
+
};
|
|
57070
|
+
export type UserActionsBulkSilenceResponse = UserActionsBulkSilenceResponses[keyof UserActionsBulkSilenceResponses];
|
|
57071
|
+
export type UserActionsSummaryRetrieveData = {
|
|
57072
|
+
body?: never;
|
|
57073
|
+
path?: never;
|
|
57074
|
+
query?: never;
|
|
57075
|
+
url: '/api/user-actions/summary/';
|
|
57076
|
+
};
|
|
57077
|
+
export type UserActionsSummaryRetrieveResponses = {
|
|
57078
|
+
200: UserActionSummary;
|
|
57079
|
+
};
|
|
57080
|
+
export type UserActionsSummaryRetrieveResponse = UserActionsSummaryRetrieveResponses[keyof UserActionsSummaryRetrieveResponses];
|
|
57081
|
+
export type UserActionsSummaryCountData = {
|
|
57082
|
+
body?: never;
|
|
57083
|
+
path?: never;
|
|
57084
|
+
query?: never;
|
|
57085
|
+
url: '/api/user-actions/summary/';
|
|
57086
|
+
};
|
|
57087
|
+
export type UserActionsSummaryCountResponses = {
|
|
57088
|
+
/**
|
|
57089
|
+
* No response body
|
|
57090
|
+
*/
|
|
57091
|
+
200: unknown;
|
|
57092
|
+
};
|
|
57093
|
+
export type UserActionsUpdateActionsData = {
|
|
57094
|
+
body?: UpdateActionsRequest;
|
|
57095
|
+
path?: never;
|
|
57096
|
+
query?: never;
|
|
57097
|
+
url: '/api/user-actions/update_actions/';
|
|
57098
|
+
};
|
|
57099
|
+
export type UserActionsUpdateActionsResponses = {
|
|
57100
|
+
202: UpdateActionsResponse;
|
|
57101
|
+
};
|
|
57102
|
+
export type UserActionsUpdateActionsResponse = UserActionsUpdateActionsResponses[keyof UserActionsUpdateActionsResponses];
|
|
55702
57103
|
export type UserAgreementsListData = {
|
|
55703
57104
|
body?: never;
|
|
55704
57105
|
path?: never;
|