waldur-js-client 7.8.8-dev.10 → 7.8.8-dev.11

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.
@@ -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;
@@ -8353,86 +8259,6 @@ export type OrderAttachmentRequest = {
8353
8259
  export type OrderBackendIdRequest = {
8354
8260
  backend_id: string;
8355
8261
  };
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
8262
  export type OrderCreateRequest = {
8437
8263
  offering: string;
8438
8264
  plan?: string;
@@ -12950,10 +12776,6 @@ export type ResourceSlugRequest = {
12950
12776
  slug: string;
12951
12777
  };
12952
12778
  export type ResourceState = 'Creating' | 'OK' | 'Erred' | 'Updating' | 'Terminating' | 'Terminated';
12953
- export type ResourceSuggestName = {
12954
- project: string;
12955
- offering: string;
12956
- };
12957
12779
  export type ResourceSuggestNameRequest = {
12958
12780
  project: string;
12959
12781
  offering: string;
@@ -13575,11 +13397,6 @@ export type ServiceProviderRevenues = {
13575
13397
  readonly year: number;
13576
13398
  readonly month: number;
13577
13399
  };
13578
- export type ServiceProviderSignature = {
13579
- customer: string;
13580
- data: string;
13581
- dry_run?: boolean;
13582
- };
13583
13400
  export type ServiceProviderSignatureRequest = {
13584
13401
  customer: string;
13585
13402
  data: string;
@@ -14779,6 +14596,7 @@ export type OpenStackTenantCreateOrderAttributes = {
14779
14596
  * Optional availability group. Will be used for all instances provisioned in this tenant
14780
14597
  */
14781
14598
  availability_zone?: string;
14599
+ security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
14782
14600
  };
14783
14601
  export type OpenStackCreateInstancePortRequest = {
14784
14602
  fixed_ips?: Array<OpenStackFixedIpRequest>;
@@ -18484,7 +18302,7 @@ export type BackendResourceRequestsSetDoneData = {
18484
18302
  };
18485
18303
  export type BackendResourceRequestsSetDoneResponses = {
18486
18304
  200: {
18487
- [key: string]: unknown;
18305
+ status?: string;
18488
18306
  };
18489
18307
  };
18490
18308
  export type BackendResourceRequestsSetDoneResponse = BackendResourceRequestsSetDoneResponses[keyof BackendResourceRequestsSetDoneResponses];
@@ -18498,7 +18316,7 @@ export type BackendResourceRequestsSetErredData = {
18498
18316
  };
18499
18317
  export type BackendResourceRequestsSetErredResponses = {
18500
18318
  200: {
18501
- [key: string]: unknown;
18319
+ status?: string;
18502
18320
  };
18503
18321
  };
18504
18322
  export type BackendResourceRequestsSetErredResponse = BackendResourceRequestsSetErredResponses[keyof BackendResourceRequestsSetErredResponses];
@@ -18512,7 +18330,7 @@ export type BackendResourceRequestsStartProcessingData = {
18512
18330
  };
18513
18331
  export type BackendResourceRequestsStartProcessingResponses = {
18514
18332
  200: {
18515
- [key: string]: unknown;
18333
+ status?: string;
18516
18334
  };
18517
18335
  };
18518
18336
  export type BackendResourceRequestsStartProcessingResponse = BackendResourceRequestsStartProcessingResponses[keyof BackendResourceRequestsStartProcessingResponses];
@@ -25596,11 +25414,34 @@ export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccount
25596
25414
  export type MarketplaceCourseAccountsCreateBulkData = {
25597
25415
  body: CourseAccountsBulkCreateRequest;
25598
25416
  path?: never;
25599
- query?: never;
25417
+ query?: {
25418
+ email?: string;
25419
+ /**
25420
+ * Ordering
25421
+ *
25422
+ *
25423
+ */
25424
+ 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'>;
25425
+ /**
25426
+ * A page number within the paginated result set.
25427
+ */
25428
+ page?: number;
25429
+ /**
25430
+ * Number of results to return per page.
25431
+ */
25432
+ page_size?: number;
25433
+ project_end_date_after?: string;
25434
+ project_end_date_before?: string;
25435
+ project_start_date_after?: string;
25436
+ project_start_date_before?: string;
25437
+ project_uuid?: string;
25438
+ state?: Array<'Closed' | 'Erred' | 'OK'>;
25439
+ username?: string;
25440
+ };
25600
25441
  url: '/api/marketplace-course-accounts/create_bulk/';
25601
25442
  };
25602
25443
  export type MarketplaceCourseAccountsCreateBulkResponses = {
25603
- 200: CourseAccountsBulkCreate;
25444
+ 200: Array<CourseAccount>;
25604
25445
  };
25605
25446
  export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
25606
25447
  export type MarketplaceCustomerComponentUsagePoliciesListData = {
@@ -25993,11 +25834,11 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
25993
25834
  path?: never;
25994
25835
  query?: {
25995
25836
  /**
25996
- * UUID of the customer to filter resources by.
25837
+ * Filter counts by resources within a specific customer.
25997
25838
  */
25998
25839
  customer_uuid?: string;
25999
25840
  /**
26000
- * UUID of the project to filter resources by.
25841
+ * Filter counts by resources within a specific project.
26001
25842
  */
26002
25843
  project_uuid?: string;
26003
25844
  };
@@ -26005,7 +25846,7 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
26005
25846
  };
26006
25847
  export type MarketplaceGlobalCategoriesRetrieveResponses = {
26007
25848
  200: {
26008
- [key: string]: number;
25849
+ [key: string]: unknown;
26009
25850
  };
26010
25851
  };
26011
25852
  export type MarketplaceGlobalCategoriesRetrieveResponse = MarketplaceGlobalCategoriesRetrieveResponses[keyof MarketplaceGlobalCategoriesRetrieveResponses];
@@ -27794,7 +27635,7 @@ export type MarketplaceOrdersCreateData = {
27794
27635
  url: '/api/marketplace-orders/';
27795
27636
  };
27796
27637
  export type MarketplaceOrdersCreateResponses = {
27797
- 201: OrderCreate;
27638
+ 201: OrderDetails;
27798
27639
  };
27799
27640
  export type MarketplaceOrdersCreateResponse = MarketplaceOrdersCreateResponses[keyof MarketplaceOrdersCreateResponses];
27800
27641
  export type MarketplaceOrdersDestroyData = {
@@ -27835,11 +27676,9 @@ export type MarketplaceOrdersApproveByConsumerData = {
27835
27676
  url: '/api/marketplace-orders/{uuid}/approve_by_consumer/';
27836
27677
  };
27837
27678
  export type MarketplaceOrdersApproveByConsumerResponses = {
27838
- /**
27839
- * No response body
27840
- */
27841
- 200: unknown;
27679
+ 200: string;
27842
27680
  };
27681
+ export type MarketplaceOrdersApproveByConsumerResponse = MarketplaceOrdersApproveByConsumerResponses[keyof MarketplaceOrdersApproveByConsumerResponses];
27843
27682
  export type MarketplaceOrdersApproveByProviderData = {
27844
27683
  body?: never;
27845
27684
  path: {
@@ -27849,11 +27688,9 @@ export type MarketplaceOrdersApproveByProviderData = {
27849
27688
  url: '/api/marketplace-orders/{uuid}/approve_by_provider/';
27850
27689
  };
27851
27690
  export type MarketplaceOrdersApproveByProviderResponses = {
27852
- /**
27853
- * No response body
27854
- */
27855
- 200: unknown;
27691
+ 200: string;
27856
27692
  };
27693
+ export type MarketplaceOrdersApproveByProviderResponse = MarketplaceOrdersApproveByProviderResponses[keyof MarketplaceOrdersApproveByProviderResponses];
27857
27694
  export type MarketplaceOrdersCancelData = {
27858
27695
  body?: never;
27859
27696
  path: {
@@ -27866,7 +27703,7 @@ export type MarketplaceOrdersCancelResponses = {
27866
27703
  /**
27867
27704
  * No response body
27868
27705
  */
27869
- 200: unknown;
27706
+ 202: unknown;
27870
27707
  };
27871
27708
  export type MarketplaceOrdersDeleteAttachmentData = {
27872
27709
  body?: never;
@@ -27932,11 +27769,11 @@ export type MarketplaceOrdersSetBackendIdData = {
27932
27769
  url: '/api/marketplace-orders/{uuid}/set_backend_id/';
27933
27770
  };
27934
27771
  export type MarketplaceOrdersSetBackendIdResponses = {
27935
- /**
27936
- * No response body
27937
- */
27938
- 200: unknown;
27772
+ 200: {
27773
+ status?: string;
27774
+ };
27939
27775
  };
27776
+ export type MarketplaceOrdersSetBackendIdResponse = MarketplaceOrdersSetBackendIdResponses[keyof MarketplaceOrdersSetBackendIdResponses];
27940
27777
  export type MarketplaceOrdersSetStateDoneData = {
27941
27778
  body?: never;
27942
27779
  path: {
@@ -28228,8 +28065,9 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
28228
28065
  /**
28229
28066
  * No response body
28230
28067
  */
28231
- 200: unknown;
28068
+ 204: void;
28232
28069
  };
28070
+ export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
28233
28071
  export type MarketplacePlansUpdateDiscountsData = {
28234
28072
  body: DiscountsUpdateRequest;
28235
28073
  path: {
@@ -28290,13 +28128,22 @@ export type MarketplacePlansUsageStatsListData = {
28290
28128
  body?: never;
28291
28129
  path?: never;
28292
28130
  query?: {
28131
+ /**
28132
+ * Filter by service provider's customer UUID.
28133
+ */
28293
28134
  customer_provider_uuid?: string;
28135
+ /**
28136
+ * Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
28137
+ */
28294
28138
  o?: string;
28295
28139
  offering?: string;
28296
28140
  /**
28297
28141
  * Multiple values may be separated by commas.
28298
28142
  */
28299
28143
  offering_slug?: Array<string>;
28144
+ /**
28145
+ * Filter by offering UUID.
28146
+ */
28300
28147
  offering_uuid?: string;
28301
28148
  /**
28302
28149
  * A page number within the paginated result set.
@@ -28318,13 +28165,22 @@ export type MarketplacePlansUsageStatsCountData = {
28318
28165
  body?: never;
28319
28166
  path?: never;
28320
28167
  query?: {
28168
+ /**
28169
+ * Filter by service provider's customer UUID.
28170
+ */
28321
28171
  customer_provider_uuid?: string;
28172
+ /**
28173
+ * Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
28174
+ */
28322
28175
  o?: string;
28323
28176
  offering?: string;
28324
28177
  /**
28325
28178
  * Multiple values may be separated by commas.
28326
28179
  */
28327
28180
  offering_slug?: Array<string>;
28181
+ /**
28182
+ * Filter by offering UUID.
28183
+ */
28328
28184
  offering_uuid?: string;
28329
28185
  /**
28330
28186
  * A page number within the paginated result set.
@@ -28920,7 +28776,7 @@ export type MarketplaceProviderOfferingsCreateData = {
28920
28776
  url: '/api/marketplace-provider-offerings/';
28921
28777
  };
28922
28778
  export type MarketplaceProviderOfferingsCreateResponses = {
28923
- 201: OfferingCreate;
28779
+ 201: ProviderOfferingDetails;
28924
28780
  };
28925
28781
  export type MarketplaceProviderOfferingsCreateResponse = MarketplaceProviderOfferingsCreateResponses[keyof MarketplaceProviderOfferingsCreateResponses];
28926
28782
  export type MarketplaceProviderOfferingsDestroyData = {
@@ -29407,8 +29263,9 @@ export type MarketplaceProviderOfferingsDeleteImageResponses = {
29407
29263
  /**
29408
29264
  * No response body
29409
29265
  */
29410
- 200: unknown;
29266
+ 204: void;
29411
29267
  };
29268
+ export type MarketplaceProviderOfferingsDeleteImageResponse = MarketplaceProviderOfferingsDeleteImageResponses[keyof MarketplaceProviderOfferingsDeleteImageResponses];
29412
29269
  export type MarketplaceProviderOfferingsDeleteOrganizationGroupsData = {
29413
29270
  body?: never;
29414
29271
  path: {
@@ -29421,8 +29278,9 @@ export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses = {
29421
29278
  /**
29422
29279
  * No response body
29423
29280
  */
29424
- 200: unknown;
29281
+ 204: void;
29425
29282
  };
29283
+ export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponse = MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses[keyof MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses];
29426
29284
  export type MarketplaceProviderOfferingsDeleteThumbnailData = {
29427
29285
  body?: never;
29428
29286
  path: {
@@ -29509,27 +29367,119 @@ export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
29509
29367
  200: Array<ImportableResource>;
29510
29368
  };
29511
29369
  export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
29512
- export type MarketplaceProviderOfferingsListCourseAccountsRetrieveData = {
29513
- body?: never;
29514
- path: {
29515
- uuid: string;
29516
- };
29517
- query?: {
29518
- 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'>;
29519
- };
29520
- url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
29521
- };
29522
- export type MarketplaceProviderOfferingsListCourseAccountsRetrieveResponses = {
29523
- 200: ProviderOfferingDetails;
29524
- };
29525
- export type MarketplaceProviderOfferingsListCourseAccountsRetrieveResponse = MarketplaceProviderOfferingsListCourseAccountsRetrieveResponses[keyof MarketplaceProviderOfferingsListCourseAccountsRetrieveResponses];
29526
- export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
29370
+ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
29527
29371
  body?: never;
29528
29372
  path: {
29529
29373
  uuid: string;
29530
29374
  };
29531
29375
  query?: {
29532
- field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
29376
+ /**
29377
+ * Accessible via calls
29378
+ */
29379
+ accessible_via_calls?: boolean;
29380
+ /**
29381
+ * Allowed customer UUID
29382
+ */
29383
+ allowed_customer_uuid?: string;
29384
+ attributes?: string;
29385
+ billable?: boolean;
29386
+ can_create_offering_user?: boolean;
29387
+ category_group_uuid?: string;
29388
+ category_uuid?: string;
29389
+ /**
29390
+ * Created after
29391
+ */
29392
+ created?: string;
29393
+ customer?: string;
29394
+ customer_uuid?: string;
29395
+ description?: string;
29396
+ /**
29397
+ * Has Active Terms of Service
29398
+ */
29399
+ has_active_terms_of_service?: boolean;
29400
+ /**
29401
+ * Has Terms of Service
29402
+ */
29403
+ has_terms_of_service?: boolean;
29404
+ /**
29405
+ * Keyword
29406
+ */
29407
+ keyword?: string;
29408
+ /**
29409
+ * Modified after
29410
+ */
29411
+ modified?: string;
29412
+ name?: string;
29413
+ name_exact?: string;
29414
+ /**
29415
+ * Ordering
29416
+ *
29417
+ *
29418
+ */
29419
+ o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
29420
+ organization_group_uuid?: Array<string>;
29421
+ /**
29422
+ * A page number within the paginated result set.
29423
+ */
29424
+ page?: number;
29425
+ /**
29426
+ * Number of results to return per page.
29427
+ */
29428
+ page_size?: number;
29429
+ parent_uuid?: string;
29430
+ /**
29431
+ * Project UUID
29432
+ */
29433
+ project_uuid?: string;
29434
+ /**
29435
+ * Search by offering name, slug or description
29436
+ */
29437
+ query?: string;
29438
+ /**
29439
+ * Resource customer UUID
29440
+ */
29441
+ resource_customer_uuid?: string;
29442
+ /**
29443
+ * Resource project UUID
29444
+ */
29445
+ resource_project_uuid?: string;
29446
+ /**
29447
+ * Scope UUID
29448
+ */
29449
+ scope_uuid?: string;
29450
+ /**
29451
+ * Service manager UUID
29452
+ */
29453
+ service_manager_uuid?: string;
29454
+ shared?: boolean;
29455
+ state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
29456
+ type?: Array<string>;
29457
+ /**
29458
+ * User Has Consent
29459
+ */
29460
+ user_has_consent?: boolean;
29461
+ /**
29462
+ * User Has Offering User
29463
+ */
29464
+ user_has_offering_user?: boolean;
29465
+ /**
29466
+ * Comma-separated offering UUIDs
29467
+ */
29468
+ uuid_list?: string;
29469
+ };
29470
+ url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
29471
+ };
29472
+ export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
29473
+ 200: Array<CourseAccount>;
29474
+ };
29475
+ export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
29476
+ export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
29477
+ body?: never;
29478
+ path: {
29479
+ uuid: string;
29480
+ };
29481
+ query?: {
29482
+ field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
29533
29483
  /**
29534
29484
  * A page number within the paginated result set.
29535
29485
  */
@@ -29545,20 +29495,112 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
29545
29495
  200: Array<Project>;
29546
29496
  };
29547
29497
  export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
29548
- export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveData = {
29498
+ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
29549
29499
  body?: never;
29550
29500
  path: {
29551
29501
  uuid: string;
29552
29502
  };
29553
29503
  query?: {
29554
- 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'>;
29504
+ /**
29505
+ * Accessible via calls
29506
+ */
29507
+ accessible_via_calls?: boolean;
29508
+ /**
29509
+ * Allowed customer UUID
29510
+ */
29511
+ allowed_customer_uuid?: string;
29512
+ attributes?: string;
29513
+ billable?: boolean;
29514
+ can_create_offering_user?: boolean;
29515
+ category_group_uuid?: string;
29516
+ category_uuid?: string;
29517
+ /**
29518
+ * Created after
29519
+ */
29520
+ created?: string;
29521
+ customer?: string;
29522
+ customer_uuid?: string;
29523
+ description?: string;
29524
+ /**
29525
+ * Has Active Terms of Service
29526
+ */
29527
+ has_active_terms_of_service?: boolean;
29528
+ /**
29529
+ * Has Terms of Service
29530
+ */
29531
+ has_terms_of_service?: boolean;
29532
+ /**
29533
+ * Keyword
29534
+ */
29535
+ keyword?: string;
29536
+ /**
29537
+ * Modified after
29538
+ */
29539
+ modified?: string;
29540
+ name?: string;
29541
+ name_exact?: string;
29542
+ /**
29543
+ * Ordering
29544
+ *
29545
+ *
29546
+ */
29547
+ o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
29548
+ organization_group_uuid?: Array<string>;
29549
+ /**
29550
+ * A page number within the paginated result set.
29551
+ */
29552
+ page?: number;
29553
+ /**
29554
+ * Number of results to return per page.
29555
+ */
29556
+ page_size?: number;
29557
+ parent_uuid?: string;
29558
+ /**
29559
+ * Project UUID
29560
+ */
29561
+ project_uuid?: string;
29562
+ /**
29563
+ * Search by offering name, slug or description
29564
+ */
29565
+ query?: string;
29566
+ /**
29567
+ * Resource customer UUID
29568
+ */
29569
+ resource_customer_uuid?: string;
29570
+ /**
29571
+ * Resource project UUID
29572
+ */
29573
+ resource_project_uuid?: string;
29574
+ /**
29575
+ * Scope UUID
29576
+ */
29577
+ scope_uuid?: string;
29578
+ /**
29579
+ * Service manager UUID
29580
+ */
29581
+ service_manager_uuid?: string;
29582
+ shared?: boolean;
29583
+ state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
29584
+ type?: Array<string>;
29585
+ /**
29586
+ * User Has Consent
29587
+ */
29588
+ user_has_consent?: boolean;
29589
+ /**
29590
+ * User Has Offering User
29591
+ */
29592
+ user_has_offering_user?: boolean;
29593
+ /**
29594
+ * Comma-separated offering UUIDs
29595
+ */
29596
+ uuid_list?: string;
29555
29597
  };
29556
29598
  url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
29557
29599
  };
29558
- export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveResponses = {
29559
- 200: ProviderOfferingDetails;
29600
+ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses = {
29601
+ 200: Array<CustomerServiceAccount>;
29560
29602
  };
29561
- export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveResponse = MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveResponses[keyof MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveResponses];
29603
+ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponse = MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses];
29562
29604
  export type MarketplaceProviderOfferingsListCustomerUsersListData = {
29563
29605
  body?: never;
29564
29606
  path: {
@@ -29581,20 +29623,112 @@ export type MarketplaceProviderOfferingsListCustomerUsersListResponses = {
29581
29623
  200: Array<User>;
29582
29624
  };
29583
29625
  export type MarketplaceProviderOfferingsListCustomerUsersListResponse = MarketplaceProviderOfferingsListCustomerUsersListResponses[keyof MarketplaceProviderOfferingsListCustomerUsersListResponses];
29584
- export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveData = {
29626
+ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
29585
29627
  body?: never;
29586
29628
  path: {
29587
29629
  uuid: string;
29588
29630
  };
29589
29631
  query?: {
29590
- 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'>;
29632
+ /**
29633
+ * Accessible via calls
29634
+ */
29635
+ accessible_via_calls?: boolean;
29636
+ /**
29637
+ * Allowed customer UUID
29638
+ */
29639
+ allowed_customer_uuid?: string;
29640
+ attributes?: string;
29641
+ billable?: boolean;
29642
+ can_create_offering_user?: boolean;
29643
+ category_group_uuid?: string;
29644
+ category_uuid?: string;
29645
+ /**
29646
+ * Created after
29647
+ */
29648
+ created?: string;
29649
+ customer?: string;
29650
+ customer_uuid?: string;
29651
+ description?: string;
29652
+ /**
29653
+ * Has Active Terms of Service
29654
+ */
29655
+ has_active_terms_of_service?: boolean;
29656
+ /**
29657
+ * Has Terms of Service
29658
+ */
29659
+ has_terms_of_service?: boolean;
29660
+ /**
29661
+ * Keyword
29662
+ */
29663
+ keyword?: string;
29664
+ /**
29665
+ * Modified after
29666
+ */
29667
+ modified?: string;
29668
+ name?: string;
29669
+ name_exact?: string;
29670
+ /**
29671
+ * Ordering
29672
+ *
29673
+ *
29674
+ */
29675
+ o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
29676
+ organization_group_uuid?: Array<string>;
29677
+ /**
29678
+ * A page number within the paginated result set.
29679
+ */
29680
+ page?: number;
29681
+ /**
29682
+ * Number of results to return per page.
29683
+ */
29684
+ page_size?: number;
29685
+ parent_uuid?: string;
29686
+ /**
29687
+ * Project UUID
29688
+ */
29689
+ project_uuid?: string;
29690
+ /**
29691
+ * Search by offering name, slug or description
29692
+ */
29693
+ query?: string;
29694
+ /**
29695
+ * Resource customer UUID
29696
+ */
29697
+ resource_customer_uuid?: string;
29698
+ /**
29699
+ * Resource project UUID
29700
+ */
29701
+ resource_project_uuid?: string;
29702
+ /**
29703
+ * Scope UUID
29704
+ */
29705
+ scope_uuid?: string;
29706
+ /**
29707
+ * Service manager UUID
29708
+ */
29709
+ service_manager_uuid?: string;
29710
+ shared?: boolean;
29711
+ state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
29712
+ type?: Array<string>;
29713
+ /**
29714
+ * User Has Consent
29715
+ */
29716
+ user_has_consent?: boolean;
29717
+ /**
29718
+ * User Has Offering User
29719
+ */
29720
+ user_has_offering_user?: boolean;
29721
+ /**
29722
+ * Comma-separated offering UUIDs
29723
+ */
29724
+ uuid_list?: string;
29591
29725
  };
29592
29726
  url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
29593
29727
  };
29594
- export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveResponses = {
29595
- 200: ProviderOfferingDetails;
29728
+ export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponses = {
29729
+ 200: Array<ProjectServiceAccount>;
29596
29730
  };
29597
- export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveResponse = MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveResponses[keyof MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveResponses];
29731
+ export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponse = MarketplaceProviderOfferingsListProjectServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListProjectServiceAccountsListResponses];
29598
29732
  export type MarketplaceProviderOfferingsListUsersListData = {
29599
29733
  body?: never;
29600
29734
  path: {
@@ -29753,8 +29887,9 @@ export type MarketplaceProviderOfferingsRemovePartitionResponses = {
29753
29887
  /**
29754
29888
  * No response body
29755
29889
  */
29756
- 200: unknown;
29890
+ 204: void;
29757
29891
  };
29892
+ export type MarketplaceProviderOfferingsRemovePartitionResponse = MarketplaceProviderOfferingsRemovePartitionResponses[keyof MarketplaceProviderOfferingsRemovePartitionResponses];
29758
29893
  export type MarketplaceProviderOfferingsRemoveSoftwareCatalogData = {
29759
29894
  body: RemoveSoftwareCatalogRequest;
29760
29895
  path: {
@@ -29767,8 +29902,9 @@ export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses = {
29767
29902
  /**
29768
29903
  * No response body
29769
29904
  */
29770
- 200: unknown;
29905
+ 204: void;
29771
29906
  };
29907
+ export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponse = MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses[keyof MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses];
29772
29908
  export type MarketplaceProviderOfferingsSetBackendMetadataData = {
29773
29909
  body?: OfferingBackendMetadataRequest;
29774
29910
  path: {
@@ -29788,13 +29924,14 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
29788
29924
  path: {
29789
29925
  uuid: string;
29790
29926
  };
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
- };
29927
+ query?: never;
29794
29928
  url: '/api/marketplace-provider-offerings/{uuid}/stats/';
29795
29929
  };
29796
29930
  export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
29797
- 200: ProviderOfferingDetails;
29931
+ 200: {
29932
+ resources_count?: number;
29933
+ customers_count?: number;
29934
+ };
29798
29935
  };
29799
29936
  export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
29800
29937
  export type MarketplaceProviderOfferingsSyncData = {
@@ -29809,7 +29946,7 @@ export type MarketplaceProviderOfferingsSyncResponses = {
29809
29946
  /**
29810
29947
  * No response body
29811
29948
  */
29812
- 200: unknown;
29949
+ 202: unknown;
29813
29950
  };
29814
29951
  export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
29815
29952
  body?: never;
@@ -29888,9 +30025,11 @@ export type MarketplaceProviderOfferingsUpdateImageData = {
29888
30025
  url: '/api/marketplace-provider-offerings/{uuid}/update_image/';
29889
30026
  };
29890
30027
  export type MarketplaceProviderOfferingsUpdateImageResponses = {
29891
- 200: ProviderOfferingDetails;
30028
+ /**
30029
+ * No response body
30030
+ */
30031
+ 200: unknown;
29892
30032
  };
29893
- export type MarketplaceProviderOfferingsUpdateImageResponse = MarketplaceProviderOfferingsUpdateImageResponses[keyof MarketplaceProviderOfferingsUpdateImageResponses];
29894
30033
  export type MarketplaceProviderOfferingsUpdateIntegrationData = {
29895
30034
  body?: OfferingIntegrationUpdateRequest;
29896
30035
  path: {
@@ -30541,13 +30680,17 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
30541
30680
  path: {
30542
30681
  uuid: string;
30543
30682
  };
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
- };
30683
+ query?: never;
30547
30684
  url: '/api/marketplace-provider-resources/{uuid}/details/';
30548
30685
  };
30686
+ export type MarketplaceProviderResourcesDetailsRetrieveErrors = {
30687
+ 404: unknown;
30688
+ };
30549
30689
  export type MarketplaceProviderResourcesDetailsRetrieveResponses = {
30550
- 200: Resource;
30690
+ 200: {
30691
+ [key: string]: unknown;
30692
+ };
30693
+ 204: unknown;
30551
30694
  };
30552
30695
  export type MarketplaceProviderResourcesDetailsRetrieveResponse = MarketplaceProviderResourcesDetailsRetrieveResponses[keyof MarketplaceProviderResourcesDetailsRetrieveResponses];
30553
30696
  export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveData = {
@@ -30619,8 +30762,8 @@ export type MarketplaceProviderResourcesPullData = {
30619
30762
  url: '/api/marketplace-provider-resources/{uuid}/pull/';
30620
30763
  };
30621
30764
  export type MarketplaceProviderResourcesPullResponses = {
30622
- 200: {
30623
- [key: string]: string;
30765
+ 202: {
30766
+ detail?: string;
30624
30767
  };
30625
30768
  };
30626
30769
  export type MarketplaceProviderResourcesPullResponse = MarketplaceProviderResourcesPullResponses[keyof MarketplaceProviderResourcesPullResponses];
@@ -30699,11 +30842,11 @@ export type MarketplaceProviderResourcesSetDownscaledData = {
30699
30842
  url: '/api/marketplace-provider-resources/{uuid}/set_downscaled/';
30700
30843
  };
30701
30844
  export type MarketplaceProviderResourcesSetDownscaledResponses = {
30702
- /**
30703
- * No response body
30704
- */
30705
- 200: unknown;
30845
+ 200: {
30846
+ status?: string;
30847
+ };
30706
30848
  };
30849
+ export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
30707
30850
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
30708
30851
  body?: ResourceEndDateByProviderRequest;
30709
30852
  path: {
@@ -30713,9 +30856,11 @@ export type MarketplaceProviderResourcesSetEndDateByProviderData = {
30713
30856
  url: '/api/marketplace-provider-resources/{uuid}/set_end_date_by_provider/';
30714
30857
  };
30715
30858
  export type MarketplaceProviderResourcesSetEndDateByProviderResponses = {
30716
- 200: Resource;
30859
+ /**
30860
+ * No response body
30861
+ */
30862
+ 200: unknown;
30717
30863
  };
30718
- export type MarketplaceProviderResourcesSetEndDateByProviderResponse = MarketplaceProviderResourcesSetEndDateByProviderResponses[keyof MarketplaceProviderResourcesSetEndDateByProviderResponses];
30719
30864
  export type MarketplaceProviderResourcesSetEndDateByStaffData = {
30720
30865
  body?: ResourceEndDateByProviderRequest;
30721
30866
  path: {
@@ -30751,11 +30896,11 @@ export type MarketplaceProviderResourcesSetPausedData = {
30751
30896
  url: '/api/marketplace-provider-resources/{uuid}/set_paused/';
30752
30897
  };
30753
30898
  export type MarketplaceProviderResourcesSetPausedResponses = {
30754
- /**
30755
- * No response body
30756
- */
30757
- 200: unknown;
30899
+ 200: {
30900
+ status?: string;
30901
+ };
30758
30902
  };
30903
+ export type MarketplaceProviderResourcesSetPausedResponse = MarketplaceProviderResourcesSetPausedResponses[keyof MarketplaceProviderResourcesSetPausedResponses];
30759
30904
  export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
30760
30905
  body?: ResourceRestrictMemberAccessRequest;
30761
30906
  path: {
@@ -30765,11 +30910,11 @@ export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
30765
30910
  url: '/api/marketplace-provider-resources/{uuid}/set_restrict_member_access/';
30766
30911
  };
30767
30912
  export type MarketplaceProviderResourcesSetRestrictMemberAccessResponses = {
30768
- /**
30769
- * No response body
30770
- */
30771
- 200: unknown;
30913
+ 200: {
30914
+ status?: string;
30915
+ };
30772
30916
  };
30917
+ export type MarketplaceProviderResourcesSetRestrictMemberAccessResponse = MarketplaceProviderResourcesSetRestrictMemberAccessResponses[keyof MarketplaceProviderResourcesSetRestrictMemberAccessResponses];
30773
30918
  export type MarketplaceProviderResourcesSetSlugData = {
30774
30919
  body: ResourceSlugRequest;
30775
30920
  path: {
@@ -30779,11 +30924,11 @@ export type MarketplaceProviderResourcesSetSlugData = {
30779
30924
  url: '/api/marketplace-provider-resources/{uuid}/set_slug/';
30780
30925
  };
30781
30926
  export type MarketplaceProviderResourcesSetSlugResponses = {
30782
- /**
30783
- * No response body
30784
- */
30785
- 200: unknown;
30927
+ 200: {
30928
+ status?: string;
30929
+ };
30786
30930
  };
30931
+ export type MarketplaceProviderResourcesSetSlugResponse = MarketplaceProviderResourcesSetSlugResponses[keyof MarketplaceProviderResourcesSetSlugResponses];
30787
30932
  export type MarketplaceProviderResourcesSubmitReportData = {
30788
30933
  body: ResourceReportRequest;
30789
30934
  path: {
@@ -30828,12 +30973,19 @@ export type MarketplaceProviderResourcesUnlinkData = {
30828
30973
  query?: never;
30829
30974
  url: '/api/marketplace-provider-resources/{uuid}/unlink/';
30830
30975
  };
30976
+ export type MarketplaceProviderResourcesUnlinkErrors = {
30977
+ /**
30978
+ * No response body
30979
+ */
30980
+ 403: unknown;
30981
+ };
30831
30982
  export type MarketplaceProviderResourcesUnlinkResponses = {
30832
30983
  /**
30833
30984
  * No response body
30834
30985
  */
30835
- 200: unknown;
30986
+ 204: void;
30836
30987
  };
30988
+ export type MarketplaceProviderResourcesUnlinkResponse = MarketplaceProviderResourcesUnlinkResponses[keyof MarketplaceProviderResourcesUnlinkResponses];
30837
30989
  export type MarketplaceProviderResourcesUpdateOptionsData = {
30838
30990
  body?: ResourceOptionsRequest;
30839
30991
  path: {
@@ -30844,6 +30996,7 @@ export type MarketplaceProviderResourcesUpdateOptionsData = {
30844
30996
  };
30845
30997
  export type MarketplaceProviderResourcesUpdateOptionsResponses = {
30846
30998
  200: ResourceResponseStatus;
30999
+ 201: OrderUuid;
30847
31000
  };
30848
31001
  export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
30849
31002
  export type MarketplaceProviderResourcesUpdateOptionsDirectData = {
@@ -30865,9 +31018,11 @@ export type MarketplacePublicApiCheckSignatureData = {
30865
31018
  url: '/api/marketplace-public-api/check_signature/';
30866
31019
  };
30867
31020
  export type MarketplacePublicApiCheckSignatureResponses = {
30868
- 200: ServiceProviderSignature;
31021
+ /**
31022
+ * No response body
31023
+ */
31024
+ 200: unknown;
30869
31025
  };
30870
- export type MarketplacePublicApiCheckSignatureResponse = MarketplacePublicApiCheckSignatureResponses[keyof MarketplacePublicApiCheckSignatureResponses];
30871
31026
  export type MarketplacePublicApiSetUsageData = {
30872
31027
  body: ServiceProviderSignatureRequest;
30873
31028
  path?: never;
@@ -30875,9 +31030,11 @@ export type MarketplacePublicApiSetUsageData = {
30875
31030
  url: '/api/marketplace-public-api/set_usage/';
30876
31031
  };
30877
31032
  export type MarketplacePublicApiSetUsageResponses = {
30878
- 200: ServiceProviderSignature;
31033
+ /**
31034
+ * No response body
31035
+ */
31036
+ 201: unknown;
30879
31037
  };
30880
- export type MarketplacePublicApiSetUsageResponse = MarketplacePublicApiSetUsageResponses[keyof MarketplacePublicApiSetUsageResponses];
30881
31038
  export type MarketplacePublicOfferingsListData = {
30882
31039
  body?: never;
30883
31040
  path?: never;
@@ -31648,13 +31805,17 @@ export type MarketplaceResourcesDetailsRetrieveData = {
31648
31805
  path: {
31649
31806
  uuid: string;
31650
31807
  };
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
- };
31808
+ query?: never;
31654
31809
  url: '/api/marketplace-resources/{uuid}/details/';
31655
31810
  };
31811
+ export type MarketplaceResourcesDetailsRetrieveErrors = {
31812
+ 404: unknown;
31813
+ };
31656
31814
  export type MarketplaceResourcesDetailsRetrieveResponses = {
31657
- 200: Resource;
31815
+ 200: {
31816
+ [key: string]: unknown;
31817
+ };
31818
+ 204: unknown;
31658
31819
  };
31659
31820
  export type MarketplaceResourcesDetailsRetrieveResponse = MarketplaceResourcesDetailsRetrieveResponses[keyof MarketplaceResourcesDetailsRetrieveResponses];
31660
31821
  export type MarketplaceResourcesGlauthUsersConfigRetrieveData = {
@@ -31726,8 +31887,8 @@ export type MarketplaceResourcesPullData = {
31726
31887
  url: '/api/marketplace-resources/{uuid}/pull/';
31727
31888
  };
31728
31889
  export type MarketplaceResourcesPullResponses = {
31729
- 200: {
31730
- [key: string]: string;
31890
+ 202: {
31891
+ detail?: string;
31731
31892
  };
31732
31893
  };
31733
31894
  export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
@@ -31752,11 +31913,11 @@ export type MarketplaceResourcesSetDownscaledData = {
31752
31913
  url: '/api/marketplace-resources/{uuid}/set_downscaled/';
31753
31914
  };
31754
31915
  export type MarketplaceResourcesSetDownscaledResponses = {
31755
- /**
31756
- * No response body
31757
- */
31758
- 200: unknown;
31916
+ 200: {
31917
+ status?: string;
31918
+ };
31759
31919
  };
31920
+ export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
31760
31921
  export type MarketplaceResourcesSetEndDateByStaffData = {
31761
31922
  body?: ResourceEndDateByProviderRequest;
31762
31923
  path: {
@@ -31780,11 +31941,11 @@ export type MarketplaceResourcesSetPausedData = {
31780
31941
  url: '/api/marketplace-resources/{uuid}/set_paused/';
31781
31942
  };
31782
31943
  export type MarketplaceResourcesSetPausedResponses = {
31783
- /**
31784
- * No response body
31785
- */
31786
- 200: unknown;
31944
+ 200: {
31945
+ status?: string;
31946
+ };
31787
31947
  };
31948
+ export type MarketplaceResourcesSetPausedResponse = MarketplaceResourcesSetPausedResponses[keyof MarketplaceResourcesSetPausedResponses];
31788
31949
  export type MarketplaceResourcesSetRestrictMemberAccessData = {
31789
31950
  body?: ResourceRestrictMemberAccessRequest;
31790
31951
  path: {
@@ -31794,11 +31955,11 @@ export type MarketplaceResourcesSetRestrictMemberAccessData = {
31794
31955
  url: '/api/marketplace-resources/{uuid}/set_restrict_member_access/';
31795
31956
  };
31796
31957
  export type MarketplaceResourcesSetRestrictMemberAccessResponses = {
31797
- /**
31798
- * No response body
31799
- */
31800
- 200: unknown;
31958
+ 200: {
31959
+ status?: string;
31960
+ };
31801
31961
  };
31962
+ export type MarketplaceResourcesSetRestrictMemberAccessResponse = MarketplaceResourcesSetRestrictMemberAccessResponses[keyof MarketplaceResourcesSetRestrictMemberAccessResponses];
31802
31963
  export type MarketplaceResourcesSetSlugData = {
31803
31964
  body: ResourceSlugRequest;
31804
31965
  path: {
@@ -31808,11 +31969,11 @@ export type MarketplaceResourcesSetSlugData = {
31808
31969
  url: '/api/marketplace-resources/{uuid}/set_slug/';
31809
31970
  };
31810
31971
  export type MarketplaceResourcesSetSlugResponses = {
31811
- /**
31812
- * No response body
31813
- */
31814
- 200: unknown;
31972
+ 200: {
31973
+ status?: string;
31974
+ };
31815
31975
  };
31976
+ export type MarketplaceResourcesSetSlugResponse = MarketplaceResourcesSetSlugResponses[keyof MarketplaceResourcesSetSlugResponses];
31816
31977
  export type MarketplaceResourcesSwitchPlanData = {
31817
31978
  body: ResourceSwitchPlanRequest;
31818
31979
  path: {
@@ -31857,12 +32018,19 @@ export type MarketplaceResourcesUnlinkData = {
31857
32018
  query?: never;
31858
32019
  url: '/api/marketplace-resources/{uuid}/unlink/';
31859
32020
  };
32021
+ export type MarketplaceResourcesUnlinkErrors = {
32022
+ /**
32023
+ * No response body
32024
+ */
32025
+ 403: unknown;
32026
+ };
31860
32027
  export type MarketplaceResourcesUnlinkResponses = {
31861
32028
  /**
31862
32029
  * No response body
31863
32030
  */
31864
- 200: unknown;
32031
+ 204: void;
31865
32032
  };
32033
+ export type MarketplaceResourcesUnlinkResponse = MarketplaceResourcesUnlinkResponses[keyof MarketplaceResourcesUnlinkResponses];
31866
32034
  export type MarketplaceResourcesUpdateLimitsData = {
31867
32035
  body: ResourceUpdateLimitsRequest;
31868
32036
  path: {
@@ -31885,6 +32053,7 @@ export type MarketplaceResourcesUpdateOptionsData = {
31885
32053
  };
31886
32054
  export type MarketplaceResourcesUpdateOptionsResponses = {
31887
32055
  200: ResourceResponseStatus;
32056
+ 201: OrderUuid;
31888
32057
  };
31889
32058
  export type MarketplaceResourcesUpdateOptionsResponse = MarketplaceResourcesUpdateOptionsResponses[keyof MarketplaceResourcesUpdateOptionsResponses];
31890
32059
  export type MarketplaceResourcesSuggestNameData = {
@@ -31894,7 +32063,9 @@ export type MarketplaceResourcesSuggestNameData = {
31894
32063
  url: '/api/marketplace-resources/suggest_name/';
31895
32064
  };
31896
32065
  export type MarketplaceResourcesSuggestNameResponses = {
31897
- 200: ResourceSuggestName;
32066
+ 200: {
32067
+ name?: string;
32068
+ };
31898
32069
  };
31899
32070
  export type MarketplaceResourcesSuggestNameResponse = MarketplaceResourcesSuggestNameResponses[keyof MarketplaceResourcesSuggestNameResponses];
31900
32071
  export type MarketplaceRobotAccountsListData = {
@@ -32055,6 +32226,10 @@ export type MarketplaceRobotAccountsSetStateDeletedData = {
32055
32226
  query?: never;
32056
32227
  url: '/api/marketplace-robot-accounts/{uuid}/set_state_deleted/';
32057
32228
  };
32229
+ export type MarketplaceRobotAccountsSetStateDeletedErrors = {
32230
+ 400: StateTransitionError;
32231
+ };
32232
+ export type MarketplaceRobotAccountsSetStateDeletedError = MarketplaceRobotAccountsSetStateDeletedErrors[keyof MarketplaceRobotAccountsSetStateDeletedErrors];
32058
32233
  export type MarketplaceRobotAccountsSetStateDeletedResponses = {
32059
32234
  200: RobotAccountDetails;
32060
32235
  };
@@ -32067,6 +32242,10 @@ export type MarketplaceRobotAccountsSetStateErredData = {
32067
32242
  query?: never;
32068
32243
  url: '/api/marketplace-robot-accounts/{uuid}/set_state_erred/';
32069
32244
  };
32245
+ export type MarketplaceRobotAccountsSetStateErredErrors = {
32246
+ 400: StateTransitionError;
32247
+ };
32248
+ export type MarketplaceRobotAccountsSetStateErredError = MarketplaceRobotAccountsSetStateErredErrors[keyof MarketplaceRobotAccountsSetStateErredErrors];
32070
32249
  export type MarketplaceRobotAccountsSetStateErredResponses = {
32071
32250
  200: RobotAccountDetails;
32072
32251
  };
@@ -32079,6 +32258,10 @@ export type MarketplaceRobotAccountsSetStateOkData = {
32079
32258
  query?: never;
32080
32259
  url: '/api/marketplace-robot-accounts/{uuid}/set_state_ok/';
32081
32260
  };
32261
+ export type MarketplaceRobotAccountsSetStateOkErrors = {
32262
+ 400: StateTransitionError;
32263
+ };
32264
+ export type MarketplaceRobotAccountsSetStateOkError = MarketplaceRobotAccountsSetStateOkErrors[keyof MarketplaceRobotAccountsSetStateOkErrors];
32082
32265
  export type MarketplaceRobotAccountsSetStateOkResponses = {
32083
32266
  200: RobotAccountDetails;
32084
32267
  };
@@ -32091,6 +32274,10 @@ export type MarketplaceRobotAccountsSetStateRequestDeletionData = {
32091
32274
  query?: never;
32092
32275
  url: '/api/marketplace-robot-accounts/{uuid}/set_state_request_deletion/';
32093
32276
  };
32277
+ export type MarketplaceRobotAccountsSetStateRequestDeletionErrors = {
32278
+ 400: StateTransitionError;
32279
+ };
32280
+ export type MarketplaceRobotAccountsSetStateRequestDeletionError = MarketplaceRobotAccountsSetStateRequestDeletionErrors[keyof MarketplaceRobotAccountsSetStateRequestDeletionErrors];
32094
32281
  export type MarketplaceRobotAccountsSetStateRequestDeletionResponses = {
32095
32282
  200: RobotAccountDetails;
32096
32283
  };
@@ -32100,11 +32287,11 @@ export type MarketplaceRuntimeStatesListData = {
32100
32287
  path?: never;
32101
32288
  query?: {
32102
32289
  /**
32103
- * UUID of the category to filter runtime states by.
32290
+ * Filter runtime states by resources belonging to a specific category.
32104
32291
  */
32105
32292
  category_uuid?: string;
32106
32293
  /**
32107
- * UUID of the project to filter runtime states by.
32294
+ * Filter runtime states by resources within a specific project.
32108
32295
  */
32109
32296
  project_uuid?: string;
32110
32297
  };
@@ -32572,11 +32759,11 @@ export type ServiceProviderOfferingUsersComplianceData = {
32572
32759
  };
32573
32760
  query?: {
32574
32761
  /**
32575
- * Filter by compliance status: completed, pending, no_checklist
32762
+ * Filter by compliance status: completed, pending, no_checklist.
32576
32763
  */
32577
32764
  compliance_status?: string;
32578
32765
  /**
32579
- * Filter by offering UUID
32766
+ * Filter by offering UUID.
32580
32767
  */
32581
32768
  offering_uuid?: string;
32582
32769
  /**
@@ -32634,7 +32821,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
32634
32821
  path: {
32635
32822
  service_provider_uuid: string;
32636
32823
  };
32637
- query?: {
32824
+ query: {
32638
32825
  backend_id?: string;
32639
32826
  /**
32640
32827
  * Return a list of projects where current user is admin.
@@ -32682,6 +32869,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
32682
32869
  * Number of results to return per page.
32683
32870
  */
32684
32871
  page_size?: number;
32872
+ /**
32873
+ * UUID of the customer to filter projects by.
32874
+ */
32875
+ project_customer_uuid: string;
32685
32876
  /**
32686
32877
  * Filter by name, slug, UUID, backend ID or resource effective ID
32687
32878
  */
@@ -33087,7 +33278,7 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
33087
33278
  query?: string;
33088
33279
  registration_code?: string;
33089
33280
  /**
33090
- * UUID of user to get related customers for
33281
+ * UUID of the user to get related customers for.
33091
33282
  */
33092
33283
  user_uuid: string;
33093
33284
  };
@@ -33372,6 +33563,9 @@ export type MarketplaceServiceProvidersRobotAccountCustomersListData = {
33372
33563
  uuid: string;
33373
33564
  };
33374
33565
  query?: {
33566
+ /**
33567
+ * Filter by customer name (case-insensitive partial match).
33568
+ */
33375
33569
  customer_name?: string;
33376
33570
  /**
33377
33571
  * A page number within the paginated result set.
@@ -33402,6 +33596,9 @@ export type MarketplaceServiceProvidersRobotAccountProjectsListData = {
33402
33596
  * Number of results to return per page.
33403
33597
  */
33404
33598
  page_size?: number;
33599
+ /**
33600
+ * Filter by project name (case-insensitive partial match).
33601
+ */
33405
33602
  project_name?: string;
33406
33603
  };
33407
33604
  url: '/api/marketplace-service-providers/{uuid}/robot_account_projects/';