waldur-js-client 7.8.8-dev.10 → 7.8.8-dev.12
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 +1401 -122
- package/dist/sdk.gen.js +1410 -112
- package/dist/types.gen.d.ts +538 -292
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2221,10 +2221,6 @@ export type CourseAccount = {
|
|
|
2221
2221
|
readonly error_message: string;
|
|
2222
2222
|
readonly error_traceback: string;
|
|
2223
2223
|
};
|
|
2224
|
-
export type CourseAccountCreateNested = {
|
|
2225
|
-
email?: string;
|
|
2226
|
-
description?: string;
|
|
2227
|
-
};
|
|
2228
2224
|
export type CourseAccountCreateNestedRequest = {
|
|
2229
2225
|
email?: string;
|
|
2230
2226
|
description?: string;
|
|
@@ -2234,10 +2230,6 @@ export type CourseAccountRequest = {
|
|
|
2234
2230
|
email?: string;
|
|
2235
2231
|
description?: string;
|
|
2236
2232
|
};
|
|
2237
|
-
export type CourseAccountsBulkCreate = {
|
|
2238
|
-
course_accounts: Array<CourseAccountCreateNested>;
|
|
2239
|
-
project: string;
|
|
2240
|
-
};
|
|
2241
2233
|
export type CourseAccountsBulkCreateRequest = {
|
|
2242
2234
|
course_accounts: Array<CourseAccountCreateNestedRequest>;
|
|
2243
2235
|
project: string;
|
|
@@ -5737,11 +5729,6 @@ export type OfferingComponent = {
|
|
|
5737
5729
|
min_prepaid_duration?: number | null;
|
|
5738
5730
|
max_prepaid_duration?: number | null;
|
|
5739
5731
|
};
|
|
5740
|
-
export type OfferingComponentLimit = {
|
|
5741
|
-
min: number;
|
|
5742
|
-
max: number;
|
|
5743
|
-
max_available_limit: number;
|
|
5744
|
-
};
|
|
5745
5732
|
export type OfferingComponentLimitRequest = {
|
|
5746
5733
|
min: number;
|
|
5747
5734
|
max: number;
|
|
@@ -5797,87 +5784,6 @@ export type OfferingCountryStats = {
|
|
|
5797
5784
|
country: string;
|
|
5798
5785
|
count: number;
|
|
5799
5786
|
};
|
|
5800
|
-
export type OfferingCreate = {
|
|
5801
|
-
readonly url: string;
|
|
5802
|
-
readonly uuid: string;
|
|
5803
|
-
readonly created: string;
|
|
5804
|
-
name: string;
|
|
5805
|
-
slug?: string;
|
|
5806
|
-
description?: string;
|
|
5807
|
-
full_description?: string;
|
|
5808
|
-
privacy_policy_link?: string;
|
|
5809
|
-
/**
|
|
5810
|
-
* Publicly accessible offering access URL
|
|
5811
|
-
*/
|
|
5812
|
-
access_url?: string;
|
|
5813
|
-
readonly endpoints: Array<NestedEndpoint>;
|
|
5814
|
-
readonly software_catalogs: Array<NestedSoftwareCatalog>;
|
|
5815
|
-
readonly partitions: Array<NestedPartition>;
|
|
5816
|
-
readonly roles: Array<NestedRole>;
|
|
5817
|
-
customer?: string | null;
|
|
5818
|
-
readonly customer_uuid: string | null;
|
|
5819
|
-
readonly customer_name: string | null;
|
|
5820
|
-
readonly project: string | null;
|
|
5821
|
-
readonly project_uuid: string | null;
|
|
5822
|
-
readonly project_name: string | null;
|
|
5823
|
-
category: string;
|
|
5824
|
-
readonly category_uuid: string;
|
|
5825
|
-
readonly category_title: string;
|
|
5826
|
-
attributes?: unknown;
|
|
5827
|
-
options?: OfferingOptions;
|
|
5828
|
-
resource_options?: OfferingOptions;
|
|
5829
|
-
components?: Array<OfferingComponent>;
|
|
5830
|
-
plugin_options: MergedPluginOptions;
|
|
5831
|
-
secret_options?: MergedSecretOptions;
|
|
5832
|
-
readonly service_attributes?: {
|
|
5833
|
-
[key: string]: unknown;
|
|
5834
|
-
};
|
|
5835
|
-
state: OfferingState;
|
|
5836
|
-
vendor_details?: string;
|
|
5837
|
-
getting_started?: string;
|
|
5838
|
-
integration_guide?: string;
|
|
5839
|
-
thumbnail?: string | null;
|
|
5840
|
-
readonly order_count: number;
|
|
5841
|
-
plans?: Array<BaseProviderPlan>;
|
|
5842
|
-
readonly screenshots: Array<NestedScreenshot>;
|
|
5843
|
-
type: string;
|
|
5844
|
-
/**
|
|
5845
|
-
* Accessible to all customers.
|
|
5846
|
-
*/
|
|
5847
|
-
shared?: boolean;
|
|
5848
|
-
/**
|
|
5849
|
-
* Purchase and usage is invoiced.
|
|
5850
|
-
*/
|
|
5851
|
-
billable?: boolean;
|
|
5852
|
-
readonly scope: string;
|
|
5853
|
-
readonly scope_uuid: string | null;
|
|
5854
|
-
readonly scope_name: string | null;
|
|
5855
|
-
scope_state: CoreStates | null;
|
|
5856
|
-
readonly scope_error_message: string | null;
|
|
5857
|
-
readonly files: Array<NestedOfferingFile>;
|
|
5858
|
-
readonly quotas: Array<Quota>;
|
|
5859
|
-
readonly paused_reason: string;
|
|
5860
|
-
datacite_doi?: string;
|
|
5861
|
-
/**
|
|
5862
|
-
* Number of citations of a DOI
|
|
5863
|
-
*/
|
|
5864
|
-
readonly citation_count: number;
|
|
5865
|
-
latitude?: number | null;
|
|
5866
|
-
longitude?: number | null;
|
|
5867
|
-
country?: CountryEnum | BlankEnum;
|
|
5868
|
-
backend_id?: string;
|
|
5869
|
-
readonly organization_groups: Array<OrganizationGroup>;
|
|
5870
|
-
image?: string | null;
|
|
5871
|
-
readonly total_customers: number | null;
|
|
5872
|
-
readonly total_cost: number | null;
|
|
5873
|
-
readonly total_cost_estimated: number | null;
|
|
5874
|
-
readonly parent_description: string | null;
|
|
5875
|
-
readonly parent_uuid: string | null;
|
|
5876
|
-
readonly parent_name: string | null;
|
|
5877
|
-
backend_metadata?: unknown;
|
|
5878
|
-
readonly has_compliance_requirements: boolean;
|
|
5879
|
-
compliance_checklist?: string | null;
|
|
5880
|
-
};
|
|
5881
5787
|
export type OfferingCreateRequest = {
|
|
5882
5788
|
name: string;
|
|
5883
5789
|
slug?: string;
|
|
@@ -7747,6 +7653,35 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
|
|
|
7747
7653
|
*/
|
|
7748
7654
|
remote_group?: string | null;
|
|
7749
7655
|
};
|
|
7656
|
+
export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
|
|
7657
|
+
/**
|
|
7658
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
7659
|
+
*/
|
|
7660
|
+
ethertype?: EthertypeEnum;
|
|
7661
|
+
/**
|
|
7662
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
7663
|
+
*/
|
|
7664
|
+
direction?: DirectionEnum;
|
|
7665
|
+
/**
|
|
7666
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
7667
|
+
*/
|
|
7668
|
+
protocol?: ProtocolEnum | BlankEnum;
|
|
7669
|
+
/**
|
|
7670
|
+
* Starting port number in the range (1-65535)
|
|
7671
|
+
*/
|
|
7672
|
+
from_port?: number | null;
|
|
7673
|
+
/**
|
|
7674
|
+
* Ending port number in the range (1-65535)
|
|
7675
|
+
*/
|
|
7676
|
+
to_port?: number | null;
|
|
7677
|
+
/**
|
|
7678
|
+
* CIDR notation for the source/destination network address range
|
|
7679
|
+
*/
|
|
7680
|
+
cidr?: string | null;
|
|
7681
|
+
description?: string;
|
|
7682
|
+
remote_group_name?: string;
|
|
7683
|
+
remote_group?: string;
|
|
7684
|
+
};
|
|
7750
7685
|
export type OpenStackSecurityGroupRuleUpdateRequest = {
|
|
7751
7686
|
/**
|
|
7752
7687
|
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
@@ -8353,86 +8288,6 @@ export type OrderAttachmentRequest = {
|
|
|
8353
8288
|
export type OrderBackendIdRequest = {
|
|
8354
8289
|
backend_id: string;
|
|
8355
8290
|
};
|
|
8356
|
-
export type OrderCreate = {
|
|
8357
|
-
offering: string;
|
|
8358
|
-
readonly offering_name: string;
|
|
8359
|
-
readonly offering_uuid: string;
|
|
8360
|
-
readonly offering_description: string;
|
|
8361
|
-
readonly offering_image: string;
|
|
8362
|
-
readonly offering_thumbnail: string;
|
|
8363
|
-
readonly offering_type: string;
|
|
8364
|
-
/**
|
|
8365
|
-
* Accessible to all customers.
|
|
8366
|
-
*/
|
|
8367
|
-
readonly offering_shared: boolean;
|
|
8368
|
-
/**
|
|
8369
|
-
* Purchase and usage is invoiced.
|
|
8370
|
-
*/
|
|
8371
|
-
readonly offering_billable: boolean;
|
|
8372
|
-
/**
|
|
8373
|
-
* Public data used by specific plugin, such as storage mode for OpenStack.
|
|
8374
|
-
*/
|
|
8375
|
-
readonly offering_plugin_options: unknown;
|
|
8376
|
-
readonly provider_name: string;
|
|
8377
|
-
readonly provider_uuid: string;
|
|
8378
|
-
readonly provider_slug: string;
|
|
8379
|
-
readonly category_title: string;
|
|
8380
|
-
readonly category_uuid: string;
|
|
8381
|
-
readonly category_icon: string;
|
|
8382
|
-
plan?: string;
|
|
8383
|
-
plan_unit: BillingUnit | null;
|
|
8384
|
-
readonly plan_name: string | null;
|
|
8385
|
-
readonly plan_uuid: string | null;
|
|
8386
|
-
readonly plan_description: string | null;
|
|
8387
|
-
attributes?: unknown;
|
|
8388
|
-
limits?: {
|
|
8389
|
-
[key: string]: number;
|
|
8390
|
-
};
|
|
8391
|
-
readonly uuid: string;
|
|
8392
|
-
readonly created: string;
|
|
8393
|
-
readonly modified: string;
|
|
8394
|
-
readonly resource_uuid: string | null;
|
|
8395
|
-
readonly resource_type: string | null;
|
|
8396
|
-
readonly resource_name: string;
|
|
8397
|
-
readonly cost: string | null;
|
|
8398
|
-
state: OrderState;
|
|
8399
|
-
readonly output: string;
|
|
8400
|
-
readonly marketplace_resource_uuid: string;
|
|
8401
|
-
readonly error_message: string;
|
|
8402
|
-
readonly error_traceback?: string;
|
|
8403
|
-
callback_url?: string | null;
|
|
8404
|
-
/**
|
|
8405
|
-
* Completion time
|
|
8406
|
-
*/
|
|
8407
|
-
readonly completed_at: string | null;
|
|
8408
|
-
request_comment?: string | null;
|
|
8409
|
-
readonly attachment: string | null;
|
|
8410
|
-
type?: RequestTypes;
|
|
8411
|
-
/**
|
|
8412
|
-
* Enables delayed processing of resource provisioning order.
|
|
8413
|
-
*/
|
|
8414
|
-
start_date?: string | null;
|
|
8415
|
-
readonly url: string;
|
|
8416
|
-
readonly created_by: string;
|
|
8417
|
-
/**
|
|
8418
|
-
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
8419
|
-
*/
|
|
8420
|
-
readonly created_by_username: string;
|
|
8421
|
-
readonly created_by_full_name: string;
|
|
8422
|
-
readonly consumer_reviewed_by: string | null;
|
|
8423
|
-
readonly consumer_reviewed_at: string | null;
|
|
8424
|
-
/**
|
|
8425
|
-
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
8426
|
-
*/
|
|
8427
|
-
readonly consumer_reviewed_by_username: string | null;
|
|
8428
|
-
readonly consumer_reviewed_by_full_name: string | null;
|
|
8429
|
-
project: string;
|
|
8430
|
-
readonly project_uuid: string;
|
|
8431
|
-
readonly project_name: string;
|
|
8432
|
-
readonly project_description: string;
|
|
8433
|
-
readonly customer_name: string;
|
|
8434
|
-
readonly customer_uuid: string;
|
|
8435
|
-
};
|
|
8436
8291
|
export type OrderCreateRequest = {
|
|
8437
8292
|
offering: string;
|
|
8438
8293
|
plan?: string;
|
|
@@ -12950,10 +12805,6 @@ export type ResourceSlugRequest = {
|
|
|
12950
12805
|
slug: string;
|
|
12951
12806
|
};
|
|
12952
12807
|
export type ResourceState = 'Creating' | 'OK' | 'Erred' | 'Updating' | 'Terminating' | 'Terminated';
|
|
12953
|
-
export type ResourceSuggestName = {
|
|
12954
|
-
project: string;
|
|
12955
|
-
offering: string;
|
|
12956
|
-
};
|
|
12957
12808
|
export type ResourceSuggestNameRequest = {
|
|
12958
12809
|
project: string;
|
|
12959
12810
|
offering: string;
|
|
@@ -13575,11 +13426,6 @@ export type ServiceProviderRevenues = {
|
|
|
13575
13426
|
readonly year: number;
|
|
13576
13427
|
readonly month: number;
|
|
13577
13428
|
};
|
|
13578
|
-
export type ServiceProviderSignature = {
|
|
13579
|
-
customer: string;
|
|
13580
|
-
data: string;
|
|
13581
|
-
dry_run?: boolean;
|
|
13582
|
-
};
|
|
13583
13429
|
export type ServiceProviderSignatureRequest = {
|
|
13584
13430
|
customer: string;
|
|
13585
13431
|
data: string;
|
|
@@ -14013,6 +13859,12 @@ export type Tenant = {
|
|
|
14013
13859
|
readonly uuid: string;
|
|
14014
13860
|
name: string;
|
|
14015
13861
|
};
|
|
13862
|
+
export type TenantSecurityGroupUpdateRequest = {
|
|
13863
|
+
uuid?: string;
|
|
13864
|
+
name: string;
|
|
13865
|
+
description?: string;
|
|
13866
|
+
rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
|
|
13867
|
+
};
|
|
14016
13868
|
export type TimeSeriesToSData = {
|
|
14017
13869
|
readonly date: string;
|
|
14018
13870
|
readonly count: number;
|
|
@@ -14779,6 +14631,7 @@ export type OpenStackTenantCreateOrderAttributes = {
|
|
|
14779
14631
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
14780
14632
|
*/
|
|
14781
14633
|
availability_zone?: string;
|
|
14634
|
+
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
14782
14635
|
};
|
|
14783
14636
|
export type OpenStackCreateInstancePortRequest = {
|
|
14784
14637
|
fixed_ips?: Array<OpenStackFixedIpRequest>;
|
|
@@ -18484,7 +18337,7 @@ export type BackendResourceRequestsSetDoneData = {
|
|
|
18484
18337
|
};
|
|
18485
18338
|
export type BackendResourceRequestsSetDoneResponses = {
|
|
18486
18339
|
200: {
|
|
18487
|
-
|
|
18340
|
+
status?: string;
|
|
18488
18341
|
};
|
|
18489
18342
|
};
|
|
18490
18343
|
export type BackendResourceRequestsSetDoneResponse = BackendResourceRequestsSetDoneResponses[keyof BackendResourceRequestsSetDoneResponses];
|
|
@@ -18498,7 +18351,7 @@ export type BackendResourceRequestsSetErredData = {
|
|
|
18498
18351
|
};
|
|
18499
18352
|
export type BackendResourceRequestsSetErredResponses = {
|
|
18500
18353
|
200: {
|
|
18501
|
-
|
|
18354
|
+
status?: string;
|
|
18502
18355
|
};
|
|
18503
18356
|
};
|
|
18504
18357
|
export type BackendResourceRequestsSetErredResponse = BackendResourceRequestsSetErredResponses[keyof BackendResourceRequestsSetErredResponses];
|
|
@@ -18512,7 +18365,7 @@ export type BackendResourceRequestsStartProcessingData = {
|
|
|
18512
18365
|
};
|
|
18513
18366
|
export type BackendResourceRequestsStartProcessingResponses = {
|
|
18514
18367
|
200: {
|
|
18515
|
-
|
|
18368
|
+
status?: string;
|
|
18516
18369
|
};
|
|
18517
18370
|
};
|
|
18518
18371
|
export type BackendResourceRequestsStartProcessingResponse = BackendResourceRequestsStartProcessingResponses[keyof BackendResourceRequestsStartProcessingResponses];
|
|
@@ -25596,11 +25449,34 @@ export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccount
|
|
|
25596
25449
|
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
25597
25450
|
body: CourseAccountsBulkCreateRequest;
|
|
25598
25451
|
path?: never;
|
|
25599
|
-
query?:
|
|
25452
|
+
query?: {
|
|
25453
|
+
email?: string;
|
|
25454
|
+
/**
|
|
25455
|
+
* Ordering
|
|
25456
|
+
*
|
|
25457
|
+
*
|
|
25458
|
+
*/
|
|
25459
|
+
o?: Array<'-created' | '-email' | '-modified' | '-project_end_date' | '-project_name' | '-project_start_date' | '-state' | '-username' | 'created' | 'email' | 'modified' | 'project_end_date' | 'project_name' | 'project_start_date' | 'state' | 'username'>;
|
|
25460
|
+
/**
|
|
25461
|
+
* A page number within the paginated result set.
|
|
25462
|
+
*/
|
|
25463
|
+
page?: number;
|
|
25464
|
+
/**
|
|
25465
|
+
* Number of results to return per page.
|
|
25466
|
+
*/
|
|
25467
|
+
page_size?: number;
|
|
25468
|
+
project_end_date_after?: string;
|
|
25469
|
+
project_end_date_before?: string;
|
|
25470
|
+
project_start_date_after?: string;
|
|
25471
|
+
project_start_date_before?: string;
|
|
25472
|
+
project_uuid?: string;
|
|
25473
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
25474
|
+
username?: string;
|
|
25475
|
+
};
|
|
25600
25476
|
url: '/api/marketplace-course-accounts/create_bulk/';
|
|
25601
25477
|
};
|
|
25602
25478
|
export type MarketplaceCourseAccountsCreateBulkResponses = {
|
|
25603
|
-
200:
|
|
25479
|
+
200: Array<CourseAccount>;
|
|
25604
25480
|
};
|
|
25605
25481
|
export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
|
|
25606
25482
|
export type MarketplaceCustomerComponentUsagePoliciesListData = {
|
|
@@ -25993,11 +25869,11 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
|
25993
25869
|
path?: never;
|
|
25994
25870
|
query?: {
|
|
25995
25871
|
/**
|
|
25996
|
-
*
|
|
25872
|
+
* Filter counts by resources within a specific customer.
|
|
25997
25873
|
*/
|
|
25998
25874
|
customer_uuid?: string;
|
|
25999
25875
|
/**
|
|
26000
|
-
*
|
|
25876
|
+
* Filter counts by resources within a specific project.
|
|
26001
25877
|
*/
|
|
26002
25878
|
project_uuid?: string;
|
|
26003
25879
|
};
|
|
@@ -26005,7 +25881,7 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
|
26005
25881
|
};
|
|
26006
25882
|
export type MarketplaceGlobalCategoriesRetrieveResponses = {
|
|
26007
25883
|
200: {
|
|
26008
|
-
[key: string]:
|
|
25884
|
+
[key: string]: unknown;
|
|
26009
25885
|
};
|
|
26010
25886
|
};
|
|
26011
25887
|
export type MarketplaceGlobalCategoriesRetrieveResponse = MarketplaceGlobalCategoriesRetrieveResponses[keyof MarketplaceGlobalCategoriesRetrieveResponses];
|
|
@@ -27794,7 +27670,7 @@ export type MarketplaceOrdersCreateData = {
|
|
|
27794
27670
|
url: '/api/marketplace-orders/';
|
|
27795
27671
|
};
|
|
27796
27672
|
export type MarketplaceOrdersCreateResponses = {
|
|
27797
|
-
201:
|
|
27673
|
+
201: OrderDetails;
|
|
27798
27674
|
};
|
|
27799
27675
|
export type MarketplaceOrdersCreateResponse = MarketplaceOrdersCreateResponses[keyof MarketplaceOrdersCreateResponses];
|
|
27800
27676
|
export type MarketplaceOrdersDestroyData = {
|
|
@@ -27835,11 +27711,9 @@ export type MarketplaceOrdersApproveByConsumerData = {
|
|
|
27835
27711
|
url: '/api/marketplace-orders/{uuid}/approve_by_consumer/';
|
|
27836
27712
|
};
|
|
27837
27713
|
export type MarketplaceOrdersApproveByConsumerResponses = {
|
|
27838
|
-
|
|
27839
|
-
* No response body
|
|
27840
|
-
*/
|
|
27841
|
-
200: unknown;
|
|
27714
|
+
200: string;
|
|
27842
27715
|
};
|
|
27716
|
+
export type MarketplaceOrdersApproveByConsumerResponse = MarketplaceOrdersApproveByConsumerResponses[keyof MarketplaceOrdersApproveByConsumerResponses];
|
|
27843
27717
|
export type MarketplaceOrdersApproveByProviderData = {
|
|
27844
27718
|
body?: never;
|
|
27845
27719
|
path: {
|
|
@@ -27849,11 +27723,9 @@ export type MarketplaceOrdersApproveByProviderData = {
|
|
|
27849
27723
|
url: '/api/marketplace-orders/{uuid}/approve_by_provider/';
|
|
27850
27724
|
};
|
|
27851
27725
|
export type MarketplaceOrdersApproveByProviderResponses = {
|
|
27852
|
-
|
|
27853
|
-
* No response body
|
|
27854
|
-
*/
|
|
27855
|
-
200: unknown;
|
|
27726
|
+
200: string;
|
|
27856
27727
|
};
|
|
27728
|
+
export type MarketplaceOrdersApproveByProviderResponse = MarketplaceOrdersApproveByProviderResponses[keyof MarketplaceOrdersApproveByProviderResponses];
|
|
27857
27729
|
export type MarketplaceOrdersCancelData = {
|
|
27858
27730
|
body?: never;
|
|
27859
27731
|
path: {
|
|
@@ -27866,7 +27738,7 @@ export type MarketplaceOrdersCancelResponses = {
|
|
|
27866
27738
|
/**
|
|
27867
27739
|
* No response body
|
|
27868
27740
|
*/
|
|
27869
|
-
|
|
27741
|
+
202: unknown;
|
|
27870
27742
|
};
|
|
27871
27743
|
export type MarketplaceOrdersDeleteAttachmentData = {
|
|
27872
27744
|
body?: never;
|
|
@@ -27932,11 +27804,11 @@ export type MarketplaceOrdersSetBackendIdData = {
|
|
|
27932
27804
|
url: '/api/marketplace-orders/{uuid}/set_backend_id/';
|
|
27933
27805
|
};
|
|
27934
27806
|
export type MarketplaceOrdersSetBackendIdResponses = {
|
|
27935
|
-
|
|
27936
|
-
|
|
27937
|
-
|
|
27938
|
-
200: unknown;
|
|
27807
|
+
200: {
|
|
27808
|
+
status?: string;
|
|
27809
|
+
};
|
|
27939
27810
|
};
|
|
27811
|
+
export type MarketplaceOrdersSetBackendIdResponse = MarketplaceOrdersSetBackendIdResponses[keyof MarketplaceOrdersSetBackendIdResponses];
|
|
27940
27812
|
export type MarketplaceOrdersSetStateDoneData = {
|
|
27941
27813
|
body?: never;
|
|
27942
27814
|
path: {
|
|
@@ -28228,8 +28100,9 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
|
|
|
28228
28100
|
/**
|
|
28229
28101
|
* No response body
|
|
28230
28102
|
*/
|
|
28231
|
-
|
|
28103
|
+
204: void;
|
|
28232
28104
|
};
|
|
28105
|
+
export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
|
|
28233
28106
|
export type MarketplacePlansUpdateDiscountsData = {
|
|
28234
28107
|
body: DiscountsUpdateRequest;
|
|
28235
28108
|
path: {
|
|
@@ -28290,13 +28163,22 @@ export type MarketplacePlansUsageStatsListData = {
|
|
|
28290
28163
|
body?: never;
|
|
28291
28164
|
path?: never;
|
|
28292
28165
|
query?: {
|
|
28166
|
+
/**
|
|
28167
|
+
* Filter by service provider's customer UUID.
|
|
28168
|
+
*/
|
|
28293
28169
|
customer_provider_uuid?: string;
|
|
28170
|
+
/**
|
|
28171
|
+
* Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
|
|
28172
|
+
*/
|
|
28294
28173
|
o?: string;
|
|
28295
28174
|
offering?: string;
|
|
28296
28175
|
/**
|
|
28297
28176
|
* Multiple values may be separated by commas.
|
|
28298
28177
|
*/
|
|
28299
28178
|
offering_slug?: Array<string>;
|
|
28179
|
+
/**
|
|
28180
|
+
* Filter by offering UUID.
|
|
28181
|
+
*/
|
|
28300
28182
|
offering_uuid?: string;
|
|
28301
28183
|
/**
|
|
28302
28184
|
* A page number within the paginated result set.
|
|
@@ -28318,13 +28200,22 @@ export type MarketplacePlansUsageStatsCountData = {
|
|
|
28318
28200
|
body?: never;
|
|
28319
28201
|
path?: never;
|
|
28320
28202
|
query?: {
|
|
28203
|
+
/**
|
|
28204
|
+
* Filter by service provider's customer UUID.
|
|
28205
|
+
*/
|
|
28321
28206
|
customer_provider_uuid?: string;
|
|
28207
|
+
/**
|
|
28208
|
+
* Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
|
|
28209
|
+
*/
|
|
28322
28210
|
o?: string;
|
|
28323
28211
|
offering?: string;
|
|
28324
28212
|
/**
|
|
28325
28213
|
* Multiple values may be separated by commas.
|
|
28326
28214
|
*/
|
|
28327
28215
|
offering_slug?: Array<string>;
|
|
28216
|
+
/**
|
|
28217
|
+
* Filter by offering UUID.
|
|
28218
|
+
*/
|
|
28328
28219
|
offering_uuid?: string;
|
|
28329
28220
|
/**
|
|
28330
28221
|
* A page number within the paginated result set.
|
|
@@ -28920,7 +28811,7 @@ export type MarketplaceProviderOfferingsCreateData = {
|
|
|
28920
28811
|
url: '/api/marketplace-provider-offerings/';
|
|
28921
28812
|
};
|
|
28922
28813
|
export type MarketplaceProviderOfferingsCreateResponses = {
|
|
28923
|
-
201:
|
|
28814
|
+
201: ProviderOfferingDetails;
|
|
28924
28815
|
};
|
|
28925
28816
|
export type MarketplaceProviderOfferingsCreateResponse = MarketplaceProviderOfferingsCreateResponses[keyof MarketplaceProviderOfferingsCreateResponses];
|
|
28926
28817
|
export type MarketplaceProviderOfferingsDestroyData = {
|
|
@@ -29407,8 +29298,9 @@ export type MarketplaceProviderOfferingsDeleteImageResponses = {
|
|
|
29407
29298
|
/**
|
|
29408
29299
|
* No response body
|
|
29409
29300
|
*/
|
|
29410
|
-
|
|
29301
|
+
204: void;
|
|
29411
29302
|
};
|
|
29303
|
+
export type MarketplaceProviderOfferingsDeleteImageResponse = MarketplaceProviderOfferingsDeleteImageResponses[keyof MarketplaceProviderOfferingsDeleteImageResponses];
|
|
29412
29304
|
export type MarketplaceProviderOfferingsDeleteOrganizationGroupsData = {
|
|
29413
29305
|
body?: never;
|
|
29414
29306
|
path: {
|
|
@@ -29421,8 +29313,9 @@ export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses = {
|
|
|
29421
29313
|
/**
|
|
29422
29314
|
* No response body
|
|
29423
29315
|
*/
|
|
29424
|
-
|
|
29316
|
+
204: void;
|
|
29425
29317
|
};
|
|
29318
|
+
export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponse = MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses[keyof MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses];
|
|
29426
29319
|
export type MarketplaceProviderOfferingsDeleteThumbnailData = {
|
|
29427
29320
|
body?: never;
|
|
29428
29321
|
path: {
|
|
@@ -29509,20 +29402,112 @@ export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
|
29509
29402
|
200: Array<ImportableResource>;
|
|
29510
29403
|
};
|
|
29511
29404
|
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
29512
|
-
export type
|
|
29405
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
29513
29406
|
body?: never;
|
|
29514
29407
|
path: {
|
|
29515
29408
|
uuid: string;
|
|
29516
29409
|
};
|
|
29517
29410
|
query?: {
|
|
29518
|
-
|
|
29411
|
+
/**
|
|
29412
|
+
* Accessible via calls
|
|
29413
|
+
*/
|
|
29414
|
+
accessible_via_calls?: boolean;
|
|
29415
|
+
/**
|
|
29416
|
+
* Allowed customer UUID
|
|
29417
|
+
*/
|
|
29418
|
+
allowed_customer_uuid?: string;
|
|
29419
|
+
attributes?: string;
|
|
29420
|
+
billable?: boolean;
|
|
29421
|
+
can_create_offering_user?: boolean;
|
|
29422
|
+
category_group_uuid?: string;
|
|
29423
|
+
category_uuid?: string;
|
|
29424
|
+
/**
|
|
29425
|
+
* Created after
|
|
29426
|
+
*/
|
|
29427
|
+
created?: string;
|
|
29428
|
+
customer?: string;
|
|
29429
|
+
customer_uuid?: string;
|
|
29430
|
+
description?: string;
|
|
29431
|
+
/**
|
|
29432
|
+
* Has Active Terms of Service
|
|
29433
|
+
*/
|
|
29434
|
+
has_active_terms_of_service?: boolean;
|
|
29435
|
+
/**
|
|
29436
|
+
* Has Terms of Service
|
|
29437
|
+
*/
|
|
29438
|
+
has_terms_of_service?: boolean;
|
|
29439
|
+
/**
|
|
29440
|
+
* Keyword
|
|
29441
|
+
*/
|
|
29442
|
+
keyword?: string;
|
|
29443
|
+
/**
|
|
29444
|
+
* Modified after
|
|
29445
|
+
*/
|
|
29446
|
+
modified?: string;
|
|
29447
|
+
name?: string;
|
|
29448
|
+
name_exact?: string;
|
|
29449
|
+
/**
|
|
29450
|
+
* Ordering
|
|
29451
|
+
*
|
|
29452
|
+
*
|
|
29453
|
+
*/
|
|
29454
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
29455
|
+
organization_group_uuid?: Array<string>;
|
|
29456
|
+
/**
|
|
29457
|
+
* A page number within the paginated result set.
|
|
29458
|
+
*/
|
|
29459
|
+
page?: number;
|
|
29460
|
+
/**
|
|
29461
|
+
* Number of results to return per page.
|
|
29462
|
+
*/
|
|
29463
|
+
page_size?: number;
|
|
29464
|
+
parent_uuid?: string;
|
|
29465
|
+
/**
|
|
29466
|
+
* Project UUID
|
|
29467
|
+
*/
|
|
29468
|
+
project_uuid?: string;
|
|
29469
|
+
/**
|
|
29470
|
+
* Search by offering name, slug or description
|
|
29471
|
+
*/
|
|
29472
|
+
query?: string;
|
|
29473
|
+
/**
|
|
29474
|
+
* Resource customer UUID
|
|
29475
|
+
*/
|
|
29476
|
+
resource_customer_uuid?: string;
|
|
29477
|
+
/**
|
|
29478
|
+
* Resource project UUID
|
|
29479
|
+
*/
|
|
29480
|
+
resource_project_uuid?: string;
|
|
29481
|
+
/**
|
|
29482
|
+
* Scope UUID
|
|
29483
|
+
*/
|
|
29484
|
+
scope_uuid?: string;
|
|
29485
|
+
/**
|
|
29486
|
+
* Service manager UUID
|
|
29487
|
+
*/
|
|
29488
|
+
service_manager_uuid?: string;
|
|
29489
|
+
shared?: boolean;
|
|
29490
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
|
|
29491
|
+
type?: Array<string>;
|
|
29492
|
+
/**
|
|
29493
|
+
* User Has Consent
|
|
29494
|
+
*/
|
|
29495
|
+
user_has_consent?: boolean;
|
|
29496
|
+
/**
|
|
29497
|
+
* User Has Offering User
|
|
29498
|
+
*/
|
|
29499
|
+
user_has_offering_user?: boolean;
|
|
29500
|
+
/**
|
|
29501
|
+
* Comma-separated offering UUIDs
|
|
29502
|
+
*/
|
|
29503
|
+
uuid_list?: string;
|
|
29519
29504
|
};
|
|
29520
29505
|
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
29521
29506
|
};
|
|
29522
|
-
export type
|
|
29523
|
-
200:
|
|
29507
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
29508
|
+
200: Array<CourseAccount>;
|
|
29524
29509
|
};
|
|
29525
|
-
export type
|
|
29510
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
29526
29511
|
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
29527
29512
|
body?: never;
|
|
29528
29513
|
path: {
|
|
@@ -29545,20 +29530,112 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
|
29545
29530
|
200: Array<Project>;
|
|
29546
29531
|
};
|
|
29547
29532
|
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
29548
|
-
export type
|
|
29533
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
29549
29534
|
body?: never;
|
|
29550
29535
|
path: {
|
|
29551
29536
|
uuid: string;
|
|
29552
29537
|
};
|
|
29553
29538
|
query?: {
|
|
29554
|
-
|
|
29539
|
+
/**
|
|
29540
|
+
* Accessible via calls
|
|
29541
|
+
*/
|
|
29542
|
+
accessible_via_calls?: boolean;
|
|
29543
|
+
/**
|
|
29544
|
+
* Allowed customer UUID
|
|
29545
|
+
*/
|
|
29546
|
+
allowed_customer_uuid?: string;
|
|
29547
|
+
attributes?: string;
|
|
29548
|
+
billable?: boolean;
|
|
29549
|
+
can_create_offering_user?: boolean;
|
|
29550
|
+
category_group_uuid?: string;
|
|
29551
|
+
category_uuid?: string;
|
|
29552
|
+
/**
|
|
29553
|
+
* Created after
|
|
29554
|
+
*/
|
|
29555
|
+
created?: string;
|
|
29556
|
+
customer?: string;
|
|
29557
|
+
customer_uuid?: string;
|
|
29558
|
+
description?: string;
|
|
29559
|
+
/**
|
|
29560
|
+
* Has Active Terms of Service
|
|
29561
|
+
*/
|
|
29562
|
+
has_active_terms_of_service?: boolean;
|
|
29563
|
+
/**
|
|
29564
|
+
* Has Terms of Service
|
|
29565
|
+
*/
|
|
29566
|
+
has_terms_of_service?: boolean;
|
|
29567
|
+
/**
|
|
29568
|
+
* Keyword
|
|
29569
|
+
*/
|
|
29570
|
+
keyword?: string;
|
|
29571
|
+
/**
|
|
29572
|
+
* Modified after
|
|
29573
|
+
*/
|
|
29574
|
+
modified?: string;
|
|
29575
|
+
name?: string;
|
|
29576
|
+
name_exact?: string;
|
|
29577
|
+
/**
|
|
29578
|
+
* Ordering
|
|
29579
|
+
*
|
|
29580
|
+
*
|
|
29581
|
+
*/
|
|
29582
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
29583
|
+
organization_group_uuid?: Array<string>;
|
|
29584
|
+
/**
|
|
29585
|
+
* A page number within the paginated result set.
|
|
29586
|
+
*/
|
|
29587
|
+
page?: number;
|
|
29588
|
+
/**
|
|
29589
|
+
* Number of results to return per page.
|
|
29590
|
+
*/
|
|
29591
|
+
page_size?: number;
|
|
29592
|
+
parent_uuid?: string;
|
|
29593
|
+
/**
|
|
29594
|
+
* Project UUID
|
|
29595
|
+
*/
|
|
29596
|
+
project_uuid?: string;
|
|
29597
|
+
/**
|
|
29598
|
+
* Search by offering name, slug or description
|
|
29599
|
+
*/
|
|
29600
|
+
query?: string;
|
|
29601
|
+
/**
|
|
29602
|
+
* Resource customer UUID
|
|
29603
|
+
*/
|
|
29604
|
+
resource_customer_uuid?: string;
|
|
29605
|
+
/**
|
|
29606
|
+
* Resource project UUID
|
|
29607
|
+
*/
|
|
29608
|
+
resource_project_uuid?: string;
|
|
29609
|
+
/**
|
|
29610
|
+
* Scope UUID
|
|
29611
|
+
*/
|
|
29612
|
+
scope_uuid?: string;
|
|
29613
|
+
/**
|
|
29614
|
+
* Service manager UUID
|
|
29615
|
+
*/
|
|
29616
|
+
service_manager_uuid?: string;
|
|
29617
|
+
shared?: boolean;
|
|
29618
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
|
|
29619
|
+
type?: Array<string>;
|
|
29620
|
+
/**
|
|
29621
|
+
* User Has Consent
|
|
29622
|
+
*/
|
|
29623
|
+
user_has_consent?: boolean;
|
|
29624
|
+
/**
|
|
29625
|
+
* User Has Offering User
|
|
29626
|
+
*/
|
|
29627
|
+
user_has_offering_user?: boolean;
|
|
29628
|
+
/**
|
|
29629
|
+
* Comma-separated offering UUIDs
|
|
29630
|
+
*/
|
|
29631
|
+
uuid_list?: string;
|
|
29555
29632
|
};
|
|
29556
29633
|
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
|
|
29557
29634
|
};
|
|
29558
|
-
export type
|
|
29559
|
-
200:
|
|
29635
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses = {
|
|
29636
|
+
200: Array<CustomerServiceAccount>;
|
|
29560
29637
|
};
|
|
29561
|
-
export type
|
|
29638
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponse = MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses];
|
|
29562
29639
|
export type MarketplaceProviderOfferingsListCustomerUsersListData = {
|
|
29563
29640
|
body?: never;
|
|
29564
29641
|
path: {
|
|
@@ -29581,20 +29658,112 @@ export type MarketplaceProviderOfferingsListCustomerUsersListResponses = {
|
|
|
29581
29658
|
200: Array<User>;
|
|
29582
29659
|
};
|
|
29583
29660
|
export type MarketplaceProviderOfferingsListCustomerUsersListResponse = MarketplaceProviderOfferingsListCustomerUsersListResponses[keyof MarketplaceProviderOfferingsListCustomerUsersListResponses];
|
|
29584
|
-
export type
|
|
29661
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
29585
29662
|
body?: never;
|
|
29586
29663
|
path: {
|
|
29587
29664
|
uuid: string;
|
|
29588
29665
|
};
|
|
29589
29666
|
query?: {
|
|
29590
|
-
|
|
29667
|
+
/**
|
|
29668
|
+
* Accessible via calls
|
|
29669
|
+
*/
|
|
29670
|
+
accessible_via_calls?: boolean;
|
|
29671
|
+
/**
|
|
29672
|
+
* Allowed customer UUID
|
|
29673
|
+
*/
|
|
29674
|
+
allowed_customer_uuid?: string;
|
|
29675
|
+
attributes?: string;
|
|
29676
|
+
billable?: boolean;
|
|
29677
|
+
can_create_offering_user?: boolean;
|
|
29678
|
+
category_group_uuid?: string;
|
|
29679
|
+
category_uuid?: string;
|
|
29680
|
+
/**
|
|
29681
|
+
* Created after
|
|
29682
|
+
*/
|
|
29683
|
+
created?: string;
|
|
29684
|
+
customer?: string;
|
|
29685
|
+
customer_uuid?: string;
|
|
29686
|
+
description?: string;
|
|
29687
|
+
/**
|
|
29688
|
+
* Has Active Terms of Service
|
|
29689
|
+
*/
|
|
29690
|
+
has_active_terms_of_service?: boolean;
|
|
29691
|
+
/**
|
|
29692
|
+
* Has Terms of Service
|
|
29693
|
+
*/
|
|
29694
|
+
has_terms_of_service?: boolean;
|
|
29695
|
+
/**
|
|
29696
|
+
* Keyword
|
|
29697
|
+
*/
|
|
29698
|
+
keyword?: string;
|
|
29699
|
+
/**
|
|
29700
|
+
* Modified after
|
|
29701
|
+
*/
|
|
29702
|
+
modified?: string;
|
|
29703
|
+
name?: string;
|
|
29704
|
+
name_exact?: string;
|
|
29705
|
+
/**
|
|
29706
|
+
* Ordering
|
|
29707
|
+
*
|
|
29708
|
+
*
|
|
29709
|
+
*/
|
|
29710
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
29711
|
+
organization_group_uuid?: Array<string>;
|
|
29712
|
+
/**
|
|
29713
|
+
* A page number within the paginated result set.
|
|
29714
|
+
*/
|
|
29715
|
+
page?: number;
|
|
29716
|
+
/**
|
|
29717
|
+
* Number of results to return per page.
|
|
29718
|
+
*/
|
|
29719
|
+
page_size?: number;
|
|
29720
|
+
parent_uuid?: string;
|
|
29721
|
+
/**
|
|
29722
|
+
* Project UUID
|
|
29723
|
+
*/
|
|
29724
|
+
project_uuid?: string;
|
|
29725
|
+
/**
|
|
29726
|
+
* Search by offering name, slug or description
|
|
29727
|
+
*/
|
|
29728
|
+
query?: string;
|
|
29729
|
+
/**
|
|
29730
|
+
* Resource customer UUID
|
|
29731
|
+
*/
|
|
29732
|
+
resource_customer_uuid?: string;
|
|
29733
|
+
/**
|
|
29734
|
+
* Resource project UUID
|
|
29735
|
+
*/
|
|
29736
|
+
resource_project_uuid?: string;
|
|
29737
|
+
/**
|
|
29738
|
+
* Scope UUID
|
|
29739
|
+
*/
|
|
29740
|
+
scope_uuid?: string;
|
|
29741
|
+
/**
|
|
29742
|
+
* Service manager UUID
|
|
29743
|
+
*/
|
|
29744
|
+
service_manager_uuid?: string;
|
|
29745
|
+
shared?: boolean;
|
|
29746
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
|
|
29747
|
+
type?: Array<string>;
|
|
29748
|
+
/**
|
|
29749
|
+
* User Has Consent
|
|
29750
|
+
*/
|
|
29751
|
+
user_has_consent?: boolean;
|
|
29752
|
+
/**
|
|
29753
|
+
* User Has Offering User
|
|
29754
|
+
*/
|
|
29755
|
+
user_has_offering_user?: boolean;
|
|
29756
|
+
/**
|
|
29757
|
+
* Comma-separated offering UUIDs
|
|
29758
|
+
*/
|
|
29759
|
+
uuid_list?: string;
|
|
29591
29760
|
};
|
|
29592
29761
|
url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
|
|
29593
29762
|
};
|
|
29594
|
-
export type
|
|
29595
|
-
200:
|
|
29763
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponses = {
|
|
29764
|
+
200: Array<ProjectServiceAccount>;
|
|
29596
29765
|
};
|
|
29597
|
-
export type
|
|
29766
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponse = MarketplaceProviderOfferingsListProjectServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListProjectServiceAccountsListResponses];
|
|
29598
29767
|
export type MarketplaceProviderOfferingsListUsersListData = {
|
|
29599
29768
|
body?: never;
|
|
29600
29769
|
path: {
|
|
@@ -29753,8 +29922,9 @@ export type MarketplaceProviderOfferingsRemovePartitionResponses = {
|
|
|
29753
29922
|
/**
|
|
29754
29923
|
* No response body
|
|
29755
29924
|
*/
|
|
29756
|
-
|
|
29925
|
+
204: void;
|
|
29757
29926
|
};
|
|
29927
|
+
export type MarketplaceProviderOfferingsRemovePartitionResponse = MarketplaceProviderOfferingsRemovePartitionResponses[keyof MarketplaceProviderOfferingsRemovePartitionResponses];
|
|
29758
29928
|
export type MarketplaceProviderOfferingsRemoveSoftwareCatalogData = {
|
|
29759
29929
|
body: RemoveSoftwareCatalogRequest;
|
|
29760
29930
|
path: {
|
|
@@ -29767,8 +29937,9 @@ export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses = {
|
|
|
29767
29937
|
/**
|
|
29768
29938
|
* No response body
|
|
29769
29939
|
*/
|
|
29770
|
-
|
|
29940
|
+
204: void;
|
|
29771
29941
|
};
|
|
29942
|
+
export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponse = MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses[keyof MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses];
|
|
29772
29943
|
export type MarketplaceProviderOfferingsSetBackendMetadataData = {
|
|
29773
29944
|
body?: OfferingBackendMetadataRequest;
|
|
29774
29945
|
path: {
|
|
@@ -29788,13 +29959,14 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
|
|
|
29788
29959
|
path: {
|
|
29789
29960
|
uuid: string;
|
|
29790
29961
|
};
|
|
29791
|
-
query?:
|
|
29792
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
29793
|
-
};
|
|
29962
|
+
query?: never;
|
|
29794
29963
|
url: '/api/marketplace-provider-offerings/{uuid}/stats/';
|
|
29795
29964
|
};
|
|
29796
29965
|
export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
|
|
29797
|
-
200:
|
|
29966
|
+
200: {
|
|
29967
|
+
resources_count?: number;
|
|
29968
|
+
customers_count?: number;
|
|
29969
|
+
};
|
|
29798
29970
|
};
|
|
29799
29971
|
export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
|
|
29800
29972
|
export type MarketplaceProviderOfferingsSyncData = {
|
|
@@ -29809,7 +29981,7 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
29809
29981
|
/**
|
|
29810
29982
|
* No response body
|
|
29811
29983
|
*/
|
|
29812
|
-
|
|
29984
|
+
202: unknown;
|
|
29813
29985
|
};
|
|
29814
29986
|
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
29815
29987
|
body?: never;
|
|
@@ -29888,9 +30060,11 @@ export type MarketplaceProviderOfferingsUpdateImageData = {
|
|
|
29888
30060
|
url: '/api/marketplace-provider-offerings/{uuid}/update_image/';
|
|
29889
30061
|
};
|
|
29890
30062
|
export type MarketplaceProviderOfferingsUpdateImageResponses = {
|
|
29891
|
-
|
|
30063
|
+
/**
|
|
30064
|
+
* No response body
|
|
30065
|
+
*/
|
|
30066
|
+
200: unknown;
|
|
29892
30067
|
};
|
|
29893
|
-
export type MarketplaceProviderOfferingsUpdateImageResponse = MarketplaceProviderOfferingsUpdateImageResponses[keyof MarketplaceProviderOfferingsUpdateImageResponses];
|
|
29894
30068
|
export type MarketplaceProviderOfferingsUpdateIntegrationData = {
|
|
29895
30069
|
body?: OfferingIntegrationUpdateRequest;
|
|
29896
30070
|
path: {
|
|
@@ -30541,13 +30715,17 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
|
|
|
30541
30715
|
path: {
|
|
30542
30716
|
uuid: string;
|
|
30543
30717
|
};
|
|
30544
|
-
query?:
|
|
30545
|
-
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'>;
|
|
30546
|
-
};
|
|
30718
|
+
query?: never;
|
|
30547
30719
|
url: '/api/marketplace-provider-resources/{uuid}/details/';
|
|
30548
30720
|
};
|
|
30721
|
+
export type MarketplaceProviderResourcesDetailsRetrieveErrors = {
|
|
30722
|
+
404: unknown;
|
|
30723
|
+
};
|
|
30549
30724
|
export type MarketplaceProviderResourcesDetailsRetrieveResponses = {
|
|
30550
|
-
200:
|
|
30725
|
+
200: {
|
|
30726
|
+
[key: string]: unknown;
|
|
30727
|
+
};
|
|
30728
|
+
204: unknown;
|
|
30551
30729
|
};
|
|
30552
30730
|
export type MarketplaceProviderResourcesDetailsRetrieveResponse = MarketplaceProviderResourcesDetailsRetrieveResponses[keyof MarketplaceProviderResourcesDetailsRetrieveResponses];
|
|
30553
30731
|
export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveData = {
|
|
@@ -30619,8 +30797,8 @@ export type MarketplaceProviderResourcesPullData = {
|
|
|
30619
30797
|
url: '/api/marketplace-provider-resources/{uuid}/pull/';
|
|
30620
30798
|
};
|
|
30621
30799
|
export type MarketplaceProviderResourcesPullResponses = {
|
|
30622
|
-
|
|
30623
|
-
|
|
30800
|
+
202: {
|
|
30801
|
+
detail?: string;
|
|
30624
30802
|
};
|
|
30625
30803
|
};
|
|
30626
30804
|
export type MarketplaceProviderResourcesPullResponse = MarketplaceProviderResourcesPullResponses[keyof MarketplaceProviderResourcesPullResponses];
|
|
@@ -30699,11 +30877,11 @@ export type MarketplaceProviderResourcesSetDownscaledData = {
|
|
|
30699
30877
|
url: '/api/marketplace-provider-resources/{uuid}/set_downscaled/';
|
|
30700
30878
|
};
|
|
30701
30879
|
export type MarketplaceProviderResourcesSetDownscaledResponses = {
|
|
30702
|
-
|
|
30703
|
-
|
|
30704
|
-
|
|
30705
|
-
200: unknown;
|
|
30880
|
+
200: {
|
|
30881
|
+
status?: string;
|
|
30882
|
+
};
|
|
30706
30883
|
};
|
|
30884
|
+
export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
|
|
30707
30885
|
export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
30708
30886
|
body?: ResourceEndDateByProviderRequest;
|
|
30709
30887
|
path: {
|
|
@@ -30713,9 +30891,11 @@ export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
|
30713
30891
|
url: '/api/marketplace-provider-resources/{uuid}/set_end_date_by_provider/';
|
|
30714
30892
|
};
|
|
30715
30893
|
export type MarketplaceProviderResourcesSetEndDateByProviderResponses = {
|
|
30716
|
-
|
|
30894
|
+
/**
|
|
30895
|
+
* No response body
|
|
30896
|
+
*/
|
|
30897
|
+
200: unknown;
|
|
30717
30898
|
};
|
|
30718
|
-
export type MarketplaceProviderResourcesSetEndDateByProviderResponse = MarketplaceProviderResourcesSetEndDateByProviderResponses[keyof MarketplaceProviderResourcesSetEndDateByProviderResponses];
|
|
30719
30899
|
export type MarketplaceProviderResourcesSetEndDateByStaffData = {
|
|
30720
30900
|
body?: ResourceEndDateByProviderRequest;
|
|
30721
30901
|
path: {
|
|
@@ -30751,11 +30931,11 @@ export type MarketplaceProviderResourcesSetPausedData = {
|
|
|
30751
30931
|
url: '/api/marketplace-provider-resources/{uuid}/set_paused/';
|
|
30752
30932
|
};
|
|
30753
30933
|
export type MarketplaceProviderResourcesSetPausedResponses = {
|
|
30754
|
-
|
|
30755
|
-
|
|
30756
|
-
|
|
30757
|
-
200: unknown;
|
|
30934
|
+
200: {
|
|
30935
|
+
status?: string;
|
|
30936
|
+
};
|
|
30758
30937
|
};
|
|
30938
|
+
export type MarketplaceProviderResourcesSetPausedResponse = MarketplaceProviderResourcesSetPausedResponses[keyof MarketplaceProviderResourcesSetPausedResponses];
|
|
30759
30939
|
export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
30760
30940
|
body?: ResourceRestrictMemberAccessRequest;
|
|
30761
30941
|
path: {
|
|
@@ -30765,11 +30945,11 @@ export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
|
30765
30945
|
url: '/api/marketplace-provider-resources/{uuid}/set_restrict_member_access/';
|
|
30766
30946
|
};
|
|
30767
30947
|
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponses = {
|
|
30768
|
-
|
|
30769
|
-
|
|
30770
|
-
|
|
30771
|
-
200: unknown;
|
|
30948
|
+
200: {
|
|
30949
|
+
status?: string;
|
|
30950
|
+
};
|
|
30772
30951
|
};
|
|
30952
|
+
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponse = MarketplaceProviderResourcesSetRestrictMemberAccessResponses[keyof MarketplaceProviderResourcesSetRestrictMemberAccessResponses];
|
|
30773
30953
|
export type MarketplaceProviderResourcesSetSlugData = {
|
|
30774
30954
|
body: ResourceSlugRequest;
|
|
30775
30955
|
path: {
|
|
@@ -30779,11 +30959,11 @@ export type MarketplaceProviderResourcesSetSlugData = {
|
|
|
30779
30959
|
url: '/api/marketplace-provider-resources/{uuid}/set_slug/';
|
|
30780
30960
|
};
|
|
30781
30961
|
export type MarketplaceProviderResourcesSetSlugResponses = {
|
|
30782
|
-
|
|
30783
|
-
|
|
30784
|
-
|
|
30785
|
-
200: unknown;
|
|
30962
|
+
200: {
|
|
30963
|
+
status?: string;
|
|
30964
|
+
};
|
|
30786
30965
|
};
|
|
30966
|
+
export type MarketplaceProviderResourcesSetSlugResponse = MarketplaceProviderResourcesSetSlugResponses[keyof MarketplaceProviderResourcesSetSlugResponses];
|
|
30787
30967
|
export type MarketplaceProviderResourcesSubmitReportData = {
|
|
30788
30968
|
body: ResourceReportRequest;
|
|
30789
30969
|
path: {
|
|
@@ -30828,12 +31008,19 @@ export type MarketplaceProviderResourcesUnlinkData = {
|
|
|
30828
31008
|
query?: never;
|
|
30829
31009
|
url: '/api/marketplace-provider-resources/{uuid}/unlink/';
|
|
30830
31010
|
};
|
|
31011
|
+
export type MarketplaceProviderResourcesUnlinkErrors = {
|
|
31012
|
+
/**
|
|
31013
|
+
* No response body
|
|
31014
|
+
*/
|
|
31015
|
+
403: unknown;
|
|
31016
|
+
};
|
|
30831
31017
|
export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
30832
31018
|
/**
|
|
30833
31019
|
* No response body
|
|
30834
31020
|
*/
|
|
30835
|
-
|
|
31021
|
+
204: void;
|
|
30836
31022
|
};
|
|
31023
|
+
export type MarketplaceProviderResourcesUnlinkResponse = MarketplaceProviderResourcesUnlinkResponses[keyof MarketplaceProviderResourcesUnlinkResponses];
|
|
30837
31024
|
export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
30838
31025
|
body?: ResourceOptionsRequest;
|
|
30839
31026
|
path: {
|
|
@@ -30844,6 +31031,7 @@ export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
|
30844
31031
|
};
|
|
30845
31032
|
export type MarketplaceProviderResourcesUpdateOptionsResponses = {
|
|
30846
31033
|
200: ResourceResponseStatus;
|
|
31034
|
+
201: OrderUuid;
|
|
30847
31035
|
};
|
|
30848
31036
|
export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
|
|
30849
31037
|
export type MarketplaceProviderResourcesUpdateOptionsDirectData = {
|
|
@@ -30865,9 +31053,11 @@ export type MarketplacePublicApiCheckSignatureData = {
|
|
|
30865
31053
|
url: '/api/marketplace-public-api/check_signature/';
|
|
30866
31054
|
};
|
|
30867
31055
|
export type MarketplacePublicApiCheckSignatureResponses = {
|
|
30868
|
-
|
|
31056
|
+
/**
|
|
31057
|
+
* No response body
|
|
31058
|
+
*/
|
|
31059
|
+
200: unknown;
|
|
30869
31060
|
};
|
|
30870
|
-
export type MarketplacePublicApiCheckSignatureResponse = MarketplacePublicApiCheckSignatureResponses[keyof MarketplacePublicApiCheckSignatureResponses];
|
|
30871
31061
|
export type MarketplacePublicApiSetUsageData = {
|
|
30872
31062
|
body: ServiceProviderSignatureRequest;
|
|
30873
31063
|
path?: never;
|
|
@@ -30875,9 +31065,11 @@ export type MarketplacePublicApiSetUsageData = {
|
|
|
30875
31065
|
url: '/api/marketplace-public-api/set_usage/';
|
|
30876
31066
|
};
|
|
30877
31067
|
export type MarketplacePublicApiSetUsageResponses = {
|
|
30878
|
-
|
|
31068
|
+
/**
|
|
31069
|
+
* No response body
|
|
31070
|
+
*/
|
|
31071
|
+
201: unknown;
|
|
30879
31072
|
};
|
|
30880
|
-
export type MarketplacePublicApiSetUsageResponse = MarketplacePublicApiSetUsageResponses[keyof MarketplacePublicApiSetUsageResponses];
|
|
30881
31073
|
export type MarketplacePublicOfferingsListData = {
|
|
30882
31074
|
body?: never;
|
|
30883
31075
|
path?: never;
|
|
@@ -31648,13 +31840,17 @@ export type MarketplaceResourcesDetailsRetrieveData = {
|
|
|
31648
31840
|
path: {
|
|
31649
31841
|
uuid: string;
|
|
31650
31842
|
};
|
|
31651
|
-
query?:
|
|
31652
|
-
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'>;
|
|
31653
|
-
};
|
|
31843
|
+
query?: never;
|
|
31654
31844
|
url: '/api/marketplace-resources/{uuid}/details/';
|
|
31655
31845
|
};
|
|
31846
|
+
export type MarketplaceResourcesDetailsRetrieveErrors = {
|
|
31847
|
+
404: unknown;
|
|
31848
|
+
};
|
|
31656
31849
|
export type MarketplaceResourcesDetailsRetrieveResponses = {
|
|
31657
|
-
200:
|
|
31850
|
+
200: {
|
|
31851
|
+
[key: string]: unknown;
|
|
31852
|
+
};
|
|
31853
|
+
204: unknown;
|
|
31658
31854
|
};
|
|
31659
31855
|
export type MarketplaceResourcesDetailsRetrieveResponse = MarketplaceResourcesDetailsRetrieveResponses[keyof MarketplaceResourcesDetailsRetrieveResponses];
|
|
31660
31856
|
export type MarketplaceResourcesGlauthUsersConfigRetrieveData = {
|
|
@@ -31726,8 +31922,8 @@ export type MarketplaceResourcesPullData = {
|
|
|
31726
31922
|
url: '/api/marketplace-resources/{uuid}/pull/';
|
|
31727
31923
|
};
|
|
31728
31924
|
export type MarketplaceResourcesPullResponses = {
|
|
31729
|
-
|
|
31730
|
-
|
|
31925
|
+
202: {
|
|
31926
|
+
detail?: string;
|
|
31731
31927
|
};
|
|
31732
31928
|
};
|
|
31733
31929
|
export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
|
|
@@ -31752,11 +31948,11 @@ export type MarketplaceResourcesSetDownscaledData = {
|
|
|
31752
31948
|
url: '/api/marketplace-resources/{uuid}/set_downscaled/';
|
|
31753
31949
|
};
|
|
31754
31950
|
export type MarketplaceResourcesSetDownscaledResponses = {
|
|
31755
|
-
|
|
31756
|
-
|
|
31757
|
-
|
|
31758
|
-
200: unknown;
|
|
31951
|
+
200: {
|
|
31952
|
+
status?: string;
|
|
31953
|
+
};
|
|
31759
31954
|
};
|
|
31955
|
+
export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
|
|
31760
31956
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
31761
31957
|
body?: ResourceEndDateByProviderRequest;
|
|
31762
31958
|
path: {
|
|
@@ -31780,11 +31976,11 @@ export type MarketplaceResourcesSetPausedData = {
|
|
|
31780
31976
|
url: '/api/marketplace-resources/{uuid}/set_paused/';
|
|
31781
31977
|
};
|
|
31782
31978
|
export type MarketplaceResourcesSetPausedResponses = {
|
|
31783
|
-
|
|
31784
|
-
|
|
31785
|
-
|
|
31786
|
-
200: unknown;
|
|
31979
|
+
200: {
|
|
31980
|
+
status?: string;
|
|
31981
|
+
};
|
|
31787
31982
|
};
|
|
31983
|
+
export type MarketplaceResourcesSetPausedResponse = MarketplaceResourcesSetPausedResponses[keyof MarketplaceResourcesSetPausedResponses];
|
|
31788
31984
|
export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
31789
31985
|
body?: ResourceRestrictMemberAccessRequest;
|
|
31790
31986
|
path: {
|
|
@@ -31794,11 +31990,11 @@ export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
|
31794
31990
|
url: '/api/marketplace-resources/{uuid}/set_restrict_member_access/';
|
|
31795
31991
|
};
|
|
31796
31992
|
export type MarketplaceResourcesSetRestrictMemberAccessResponses = {
|
|
31797
|
-
|
|
31798
|
-
|
|
31799
|
-
|
|
31800
|
-
200: unknown;
|
|
31993
|
+
200: {
|
|
31994
|
+
status?: string;
|
|
31995
|
+
};
|
|
31801
31996
|
};
|
|
31997
|
+
export type MarketplaceResourcesSetRestrictMemberAccessResponse = MarketplaceResourcesSetRestrictMemberAccessResponses[keyof MarketplaceResourcesSetRestrictMemberAccessResponses];
|
|
31802
31998
|
export type MarketplaceResourcesSetSlugData = {
|
|
31803
31999
|
body: ResourceSlugRequest;
|
|
31804
32000
|
path: {
|
|
@@ -31808,11 +32004,11 @@ export type MarketplaceResourcesSetSlugData = {
|
|
|
31808
32004
|
url: '/api/marketplace-resources/{uuid}/set_slug/';
|
|
31809
32005
|
};
|
|
31810
32006
|
export type MarketplaceResourcesSetSlugResponses = {
|
|
31811
|
-
|
|
31812
|
-
|
|
31813
|
-
|
|
31814
|
-
200: unknown;
|
|
32007
|
+
200: {
|
|
32008
|
+
status?: string;
|
|
32009
|
+
};
|
|
31815
32010
|
};
|
|
32011
|
+
export type MarketplaceResourcesSetSlugResponse = MarketplaceResourcesSetSlugResponses[keyof MarketplaceResourcesSetSlugResponses];
|
|
31816
32012
|
export type MarketplaceResourcesSwitchPlanData = {
|
|
31817
32013
|
body: ResourceSwitchPlanRequest;
|
|
31818
32014
|
path: {
|
|
@@ -31857,12 +32053,19 @@ export type MarketplaceResourcesUnlinkData = {
|
|
|
31857
32053
|
query?: never;
|
|
31858
32054
|
url: '/api/marketplace-resources/{uuid}/unlink/';
|
|
31859
32055
|
};
|
|
32056
|
+
export type MarketplaceResourcesUnlinkErrors = {
|
|
32057
|
+
/**
|
|
32058
|
+
* No response body
|
|
32059
|
+
*/
|
|
32060
|
+
403: unknown;
|
|
32061
|
+
};
|
|
31860
32062
|
export type MarketplaceResourcesUnlinkResponses = {
|
|
31861
32063
|
/**
|
|
31862
32064
|
* No response body
|
|
31863
32065
|
*/
|
|
31864
|
-
|
|
32066
|
+
204: void;
|
|
31865
32067
|
};
|
|
32068
|
+
export type MarketplaceResourcesUnlinkResponse = MarketplaceResourcesUnlinkResponses[keyof MarketplaceResourcesUnlinkResponses];
|
|
31866
32069
|
export type MarketplaceResourcesUpdateLimitsData = {
|
|
31867
32070
|
body: ResourceUpdateLimitsRequest;
|
|
31868
32071
|
path: {
|
|
@@ -31885,6 +32088,7 @@ export type MarketplaceResourcesUpdateOptionsData = {
|
|
|
31885
32088
|
};
|
|
31886
32089
|
export type MarketplaceResourcesUpdateOptionsResponses = {
|
|
31887
32090
|
200: ResourceResponseStatus;
|
|
32091
|
+
201: OrderUuid;
|
|
31888
32092
|
};
|
|
31889
32093
|
export type MarketplaceResourcesUpdateOptionsResponse = MarketplaceResourcesUpdateOptionsResponses[keyof MarketplaceResourcesUpdateOptionsResponses];
|
|
31890
32094
|
export type MarketplaceResourcesSuggestNameData = {
|
|
@@ -31894,7 +32098,9 @@ export type MarketplaceResourcesSuggestNameData = {
|
|
|
31894
32098
|
url: '/api/marketplace-resources/suggest_name/';
|
|
31895
32099
|
};
|
|
31896
32100
|
export type MarketplaceResourcesSuggestNameResponses = {
|
|
31897
|
-
200:
|
|
32101
|
+
200: {
|
|
32102
|
+
name?: string;
|
|
32103
|
+
};
|
|
31898
32104
|
};
|
|
31899
32105
|
export type MarketplaceResourcesSuggestNameResponse = MarketplaceResourcesSuggestNameResponses[keyof MarketplaceResourcesSuggestNameResponses];
|
|
31900
32106
|
export type MarketplaceRobotAccountsListData = {
|
|
@@ -32055,6 +32261,10 @@ export type MarketplaceRobotAccountsSetStateDeletedData = {
|
|
|
32055
32261
|
query?: never;
|
|
32056
32262
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_deleted/';
|
|
32057
32263
|
};
|
|
32264
|
+
export type MarketplaceRobotAccountsSetStateDeletedErrors = {
|
|
32265
|
+
400: StateTransitionError;
|
|
32266
|
+
};
|
|
32267
|
+
export type MarketplaceRobotAccountsSetStateDeletedError = MarketplaceRobotAccountsSetStateDeletedErrors[keyof MarketplaceRobotAccountsSetStateDeletedErrors];
|
|
32058
32268
|
export type MarketplaceRobotAccountsSetStateDeletedResponses = {
|
|
32059
32269
|
200: RobotAccountDetails;
|
|
32060
32270
|
};
|
|
@@ -32067,6 +32277,10 @@ export type MarketplaceRobotAccountsSetStateErredData = {
|
|
|
32067
32277
|
query?: never;
|
|
32068
32278
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_erred/';
|
|
32069
32279
|
};
|
|
32280
|
+
export type MarketplaceRobotAccountsSetStateErredErrors = {
|
|
32281
|
+
400: StateTransitionError;
|
|
32282
|
+
};
|
|
32283
|
+
export type MarketplaceRobotAccountsSetStateErredError = MarketplaceRobotAccountsSetStateErredErrors[keyof MarketplaceRobotAccountsSetStateErredErrors];
|
|
32070
32284
|
export type MarketplaceRobotAccountsSetStateErredResponses = {
|
|
32071
32285
|
200: RobotAccountDetails;
|
|
32072
32286
|
};
|
|
@@ -32079,6 +32293,10 @@ export type MarketplaceRobotAccountsSetStateOkData = {
|
|
|
32079
32293
|
query?: never;
|
|
32080
32294
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_ok/';
|
|
32081
32295
|
};
|
|
32296
|
+
export type MarketplaceRobotAccountsSetStateOkErrors = {
|
|
32297
|
+
400: StateTransitionError;
|
|
32298
|
+
};
|
|
32299
|
+
export type MarketplaceRobotAccountsSetStateOkError = MarketplaceRobotAccountsSetStateOkErrors[keyof MarketplaceRobotAccountsSetStateOkErrors];
|
|
32082
32300
|
export type MarketplaceRobotAccountsSetStateOkResponses = {
|
|
32083
32301
|
200: RobotAccountDetails;
|
|
32084
32302
|
};
|
|
@@ -32091,6 +32309,10 @@ export type MarketplaceRobotAccountsSetStateRequestDeletionData = {
|
|
|
32091
32309
|
query?: never;
|
|
32092
32310
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_request_deletion/';
|
|
32093
32311
|
};
|
|
32312
|
+
export type MarketplaceRobotAccountsSetStateRequestDeletionErrors = {
|
|
32313
|
+
400: StateTransitionError;
|
|
32314
|
+
};
|
|
32315
|
+
export type MarketplaceRobotAccountsSetStateRequestDeletionError = MarketplaceRobotAccountsSetStateRequestDeletionErrors[keyof MarketplaceRobotAccountsSetStateRequestDeletionErrors];
|
|
32094
32316
|
export type MarketplaceRobotAccountsSetStateRequestDeletionResponses = {
|
|
32095
32317
|
200: RobotAccountDetails;
|
|
32096
32318
|
};
|
|
@@ -32100,11 +32322,11 @@ export type MarketplaceRuntimeStatesListData = {
|
|
|
32100
32322
|
path?: never;
|
|
32101
32323
|
query?: {
|
|
32102
32324
|
/**
|
|
32103
|
-
*
|
|
32325
|
+
* Filter runtime states by resources belonging to a specific category.
|
|
32104
32326
|
*/
|
|
32105
32327
|
category_uuid?: string;
|
|
32106
32328
|
/**
|
|
32107
|
-
*
|
|
32329
|
+
* Filter runtime states by resources within a specific project.
|
|
32108
32330
|
*/
|
|
32109
32331
|
project_uuid?: string;
|
|
32110
32332
|
};
|
|
@@ -32572,11 +32794,11 @@ export type ServiceProviderOfferingUsersComplianceData = {
|
|
|
32572
32794
|
};
|
|
32573
32795
|
query?: {
|
|
32574
32796
|
/**
|
|
32575
|
-
* Filter by compliance status: completed, pending, no_checklist
|
|
32797
|
+
* Filter by compliance status: completed, pending, no_checklist.
|
|
32576
32798
|
*/
|
|
32577
32799
|
compliance_status?: string;
|
|
32578
32800
|
/**
|
|
32579
|
-
* Filter by offering UUID
|
|
32801
|
+
* Filter by offering UUID.
|
|
32580
32802
|
*/
|
|
32581
32803
|
offering_uuid?: string;
|
|
32582
32804
|
/**
|
|
@@ -32634,7 +32856,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
32634
32856
|
path: {
|
|
32635
32857
|
service_provider_uuid: string;
|
|
32636
32858
|
};
|
|
32637
|
-
query
|
|
32859
|
+
query: {
|
|
32638
32860
|
backend_id?: string;
|
|
32639
32861
|
/**
|
|
32640
32862
|
* Return a list of projects where current user is admin.
|
|
@@ -32682,6 +32904,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
32682
32904
|
* Number of results to return per page.
|
|
32683
32905
|
*/
|
|
32684
32906
|
page_size?: number;
|
|
32907
|
+
/**
|
|
32908
|
+
* UUID of the customer to filter projects by.
|
|
32909
|
+
*/
|
|
32910
|
+
project_customer_uuid: string;
|
|
32685
32911
|
/**
|
|
32686
32912
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
32687
32913
|
*/
|
|
@@ -33087,7 +33313,7 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
33087
33313
|
query?: string;
|
|
33088
33314
|
registration_code?: string;
|
|
33089
33315
|
/**
|
|
33090
|
-
* UUID of user to get related customers for
|
|
33316
|
+
* UUID of the user to get related customers for.
|
|
33091
33317
|
*/
|
|
33092
33318
|
user_uuid: string;
|
|
33093
33319
|
};
|
|
@@ -33372,6 +33598,9 @@ export type MarketplaceServiceProvidersRobotAccountCustomersListData = {
|
|
|
33372
33598
|
uuid: string;
|
|
33373
33599
|
};
|
|
33374
33600
|
query?: {
|
|
33601
|
+
/**
|
|
33602
|
+
* Filter by customer name (case-insensitive partial match).
|
|
33603
|
+
*/
|
|
33375
33604
|
customer_name?: string;
|
|
33376
33605
|
/**
|
|
33377
33606
|
* A page number within the paginated result set.
|
|
@@ -33402,6 +33631,9 @@ export type MarketplaceServiceProvidersRobotAccountProjectsListData = {
|
|
|
33402
33631
|
* Number of results to return per page.
|
|
33403
33632
|
*/
|
|
33404
33633
|
page_size?: number;
|
|
33634
|
+
/**
|
|
33635
|
+
* Filter by project name (case-insensitive partial match).
|
|
33636
|
+
*/
|
|
33405
33637
|
project_name?: string;
|
|
33406
33638
|
};
|
|
33407
33639
|
url: '/api/marketplace-service-providers/{uuid}/robot_account_projects/';
|
|
@@ -41208,6 +41440,20 @@ export type OpenstackTenantsPullServerGroupsResponses = {
|
|
|
41208
41440
|
200: OpenStackTenant;
|
|
41209
41441
|
};
|
|
41210
41442
|
export type OpenstackTenantsPullServerGroupsResponse = OpenstackTenantsPullServerGroupsResponses[keyof OpenstackTenantsPullServerGroupsResponses];
|
|
41443
|
+
export type OpenstackTenantsPushSecurityGroupsData = {
|
|
41444
|
+
body: Array<TenantSecurityGroupUpdateRequest>;
|
|
41445
|
+
path: {
|
|
41446
|
+
uuid: string;
|
|
41447
|
+
};
|
|
41448
|
+
query?: never;
|
|
41449
|
+
url: '/api/openstack-tenants/{uuid}/push_security_groups/';
|
|
41450
|
+
};
|
|
41451
|
+
export type OpenstackTenantsPushSecurityGroupsResponses = {
|
|
41452
|
+
/**
|
|
41453
|
+
* No response body
|
|
41454
|
+
*/
|
|
41455
|
+
200: unknown;
|
|
41456
|
+
};
|
|
41211
41457
|
export type OpenstackTenantsSetQuotasData = {
|
|
41212
41458
|
body?: OpenStackTenantQuotaRequest;
|
|
41213
41459
|
path: {
|