waldur-js-client 7.8.8-dev.9 → 7.8.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +1405 -121
- package/dist/sdk.gen.js +1439 -113
- package/dist/types.gen.d.ts +670 -321
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1994,6 +1994,11 @@ export type ConstanceSettings = {
|
|
|
1994
1994
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
1995
1995
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
1996
1996
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
1997
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
1998
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
1999
|
+
LLM_INFERENCES_API_URL?: string;
|
|
2000
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
2001
|
+
LLM_INFERENCES_MODEL?: string;
|
|
1997
2002
|
};
|
|
1998
2003
|
export type ConstanceSettingsRequest = {
|
|
1999
2004
|
SITE_NAME?: string;
|
|
@@ -2149,6 +2154,11 @@ export type ConstanceSettingsRequest = {
|
|
|
2149
2154
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
2150
2155
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
2151
2156
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
2157
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
2158
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
2159
|
+
LLM_INFERENCES_API_URL?: string;
|
|
2160
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
2161
|
+
LLM_INFERENCES_MODEL?: string;
|
|
2152
2162
|
};
|
|
2153
2163
|
export type ContainerFormatEnum = 'bare' | 'ovf' | 'aki' | 'ami' | 'ari';
|
|
2154
2164
|
export type CoreAuthToken = {
|
|
@@ -2221,10 +2231,6 @@ export type CourseAccount = {
|
|
|
2221
2231
|
readonly error_message: string;
|
|
2222
2232
|
readonly error_traceback: string;
|
|
2223
2233
|
};
|
|
2224
|
-
export type CourseAccountCreateNested = {
|
|
2225
|
-
email?: string;
|
|
2226
|
-
description?: string;
|
|
2227
|
-
};
|
|
2228
2234
|
export type CourseAccountCreateNestedRequest = {
|
|
2229
2235
|
email?: string;
|
|
2230
2236
|
description?: string;
|
|
@@ -2234,10 +2240,6 @@ export type CourseAccountRequest = {
|
|
|
2234
2240
|
email?: string;
|
|
2235
2241
|
description?: string;
|
|
2236
2242
|
};
|
|
2237
|
-
export type CourseAccountsBulkCreate = {
|
|
2238
|
-
course_accounts: Array<CourseAccountCreateNested>;
|
|
2239
|
-
project: string;
|
|
2240
|
-
};
|
|
2241
2243
|
export type CourseAccountsBulkCreateRequest = {
|
|
2242
2244
|
course_accounts: Array<CourseAccountCreateNestedRequest>;
|
|
2243
2245
|
project: string;
|
|
@@ -3849,6 +3851,7 @@ export type MaintenanceAnnouncement = {
|
|
|
3849
3851
|
readonly uuid: string;
|
|
3850
3852
|
name: string;
|
|
3851
3853
|
message?: string;
|
|
3854
|
+
internal_notes?: string;
|
|
3852
3855
|
/**
|
|
3853
3856
|
* Type of maintenance being performed
|
|
3854
3857
|
*/
|
|
@@ -3942,6 +3945,7 @@ export type MaintenanceAnnouncementOfferingTemplateRequest = {
|
|
|
3942
3945
|
export type MaintenanceAnnouncementRequest = {
|
|
3943
3946
|
name: string;
|
|
3944
3947
|
message?: string;
|
|
3948
|
+
internal_notes?: string;
|
|
3945
3949
|
/**
|
|
3946
3950
|
* Type of maintenance being performed
|
|
3947
3951
|
*/
|
|
@@ -5737,11 +5741,6 @@ export type OfferingComponent = {
|
|
|
5737
5741
|
min_prepaid_duration?: number | null;
|
|
5738
5742
|
max_prepaid_duration?: number | null;
|
|
5739
5743
|
};
|
|
5740
|
-
export type OfferingComponentLimit = {
|
|
5741
|
-
min: number;
|
|
5742
|
-
max: number;
|
|
5743
|
-
max_available_limit: number;
|
|
5744
|
-
};
|
|
5745
5744
|
export type OfferingComponentLimitRequest = {
|
|
5746
5745
|
min: number;
|
|
5747
5746
|
max: number;
|
|
@@ -5797,87 +5796,6 @@ export type OfferingCountryStats = {
|
|
|
5797
5796
|
country: string;
|
|
5798
5797
|
count: number;
|
|
5799
5798
|
};
|
|
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
5799
|
export type OfferingCreateRequest = {
|
|
5882
5800
|
name: string;
|
|
5883
5801
|
slug?: string;
|
|
@@ -5942,7 +5860,11 @@ export type OfferingEstimatedCostPolicy = {
|
|
|
5942
5860
|
limit_cost: number;
|
|
5943
5861
|
period?: PeriodEnum;
|
|
5944
5862
|
readonly period_name: string;
|
|
5945
|
-
organization_groups
|
|
5863
|
+
organization_groups?: Array<string>;
|
|
5864
|
+
/**
|
|
5865
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
5866
|
+
*/
|
|
5867
|
+
apply_to_all?: boolean;
|
|
5946
5868
|
};
|
|
5947
5869
|
export type OfferingEstimatedCostPolicyRequest = {
|
|
5948
5870
|
scope: string;
|
|
@@ -5953,7 +5875,11 @@ export type OfferingEstimatedCostPolicyRequest = {
|
|
|
5953
5875
|
options?: unknown;
|
|
5954
5876
|
limit_cost: number;
|
|
5955
5877
|
period?: PeriodEnum;
|
|
5956
|
-
organization_groups
|
|
5878
|
+
organization_groups?: Array<string>;
|
|
5879
|
+
/**
|
|
5880
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
5881
|
+
*/
|
|
5882
|
+
apply_to_all?: boolean;
|
|
5957
5883
|
};
|
|
5958
5884
|
export type OfferingFile = {
|
|
5959
5885
|
readonly url?: string;
|
|
@@ -6362,7 +6288,11 @@ export type OfferingUsagePolicy = {
|
|
|
6362
6288
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
6363
6289
|
*/
|
|
6364
6290
|
options?: unknown;
|
|
6365
|
-
organization_groups
|
|
6291
|
+
organization_groups?: Array<string>;
|
|
6292
|
+
/**
|
|
6293
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
6294
|
+
*/
|
|
6295
|
+
apply_to_all?: boolean;
|
|
6366
6296
|
component_limits_set: Array<NestedOfferingComponentLimit>;
|
|
6367
6297
|
period?: PeriodEnum;
|
|
6368
6298
|
readonly period_name: string;
|
|
@@ -6374,7 +6304,11 @@ export type OfferingUsagePolicyRequest = {
|
|
|
6374
6304
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
6375
6305
|
*/
|
|
6376
6306
|
options?: unknown;
|
|
6377
|
-
organization_groups
|
|
6307
|
+
organization_groups?: Array<string>;
|
|
6308
|
+
/**
|
|
6309
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
6310
|
+
*/
|
|
6311
|
+
apply_to_all?: boolean;
|
|
6378
6312
|
component_limits_set: Array<NestedOfferingComponentLimitRequest>;
|
|
6379
6313
|
period?: PeriodEnum;
|
|
6380
6314
|
};
|
|
@@ -6476,22 +6410,6 @@ export type OnboardingCompanyValidationRequestRequest = {
|
|
|
6476
6410
|
* Indicates if the validation is to be performed manually
|
|
6477
6411
|
*/
|
|
6478
6412
|
is_manual_validation?: boolean;
|
|
6479
|
-
/**
|
|
6480
|
-
* Personal identifier (temporary workaround for Estonian civil_number)
|
|
6481
|
-
*/
|
|
6482
|
-
person_identifier?: string;
|
|
6483
|
-
/**
|
|
6484
|
-
* User's first name (temporary workaround for Austrian validation)
|
|
6485
|
-
*/
|
|
6486
|
-
first_name?: string;
|
|
6487
|
-
/**
|
|
6488
|
-
* User's last name (temporary workaround for Austrian validation)
|
|
6489
|
-
*/
|
|
6490
|
-
last_name?: string;
|
|
6491
|
-
/**
|
|
6492
|
-
* User's birth date (temporary workaround for Austrian validation)
|
|
6493
|
-
*/
|
|
6494
|
-
birth_date?: string | null;
|
|
6495
6413
|
};
|
|
6496
6414
|
export type OnboardingCountryChecklistConfiguration = {
|
|
6497
6415
|
readonly url: string;
|
|
@@ -6621,6 +6539,24 @@ export type OnboardingQuestionMetadataRequest = {
|
|
|
6621
6539
|
*/
|
|
6622
6540
|
intent_field?: string;
|
|
6623
6541
|
};
|
|
6542
|
+
export type OnboardingRunValidationRequestRequest = {
|
|
6543
|
+
/**
|
|
6544
|
+
* Personal identifier (temporary workaround for Estonian civil_number)
|
|
6545
|
+
*/
|
|
6546
|
+
person_identifier?: string;
|
|
6547
|
+
/**
|
|
6548
|
+
* User's first name (temporary workaround for Austrian validation)
|
|
6549
|
+
*/
|
|
6550
|
+
first_name?: string;
|
|
6551
|
+
/**
|
|
6552
|
+
* User's last name (temporary workaround for Austrian validation)
|
|
6553
|
+
*/
|
|
6554
|
+
last_name?: string;
|
|
6555
|
+
/**
|
|
6556
|
+
* User's birth date (temporary workaround for Austrian validation)
|
|
6557
|
+
*/
|
|
6558
|
+
birth_date?: string | null;
|
|
6559
|
+
};
|
|
6624
6560
|
export type OnboardingVerification = {
|
|
6625
6561
|
readonly uuid: string;
|
|
6626
6562
|
/**
|
|
@@ -7731,6 +7667,35 @@ export type OpenStackSecurityGroupRuleCreateRequest = {
|
|
|
7731
7667
|
*/
|
|
7732
7668
|
remote_group?: string | null;
|
|
7733
7669
|
};
|
|
7670
|
+
export type OpenStackSecurityGroupRuleUpdateByNameRequest = {
|
|
7671
|
+
/**
|
|
7672
|
+
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
7673
|
+
*/
|
|
7674
|
+
ethertype?: EthertypeEnum;
|
|
7675
|
+
/**
|
|
7676
|
+
* Traffic direction - either 'ingress' (incoming) or 'egress' (outgoing)
|
|
7677
|
+
*/
|
|
7678
|
+
direction?: DirectionEnum;
|
|
7679
|
+
/**
|
|
7680
|
+
* The network protocol (TCP, UDP, ICMP, or empty for any protocol)
|
|
7681
|
+
*/
|
|
7682
|
+
protocol?: ProtocolEnum | BlankEnum;
|
|
7683
|
+
/**
|
|
7684
|
+
* Starting port number in the range (1-65535)
|
|
7685
|
+
*/
|
|
7686
|
+
from_port?: number | null;
|
|
7687
|
+
/**
|
|
7688
|
+
* Ending port number in the range (1-65535)
|
|
7689
|
+
*/
|
|
7690
|
+
to_port?: number | null;
|
|
7691
|
+
/**
|
|
7692
|
+
* CIDR notation for the source/destination network address range
|
|
7693
|
+
*/
|
|
7694
|
+
cidr?: string | null;
|
|
7695
|
+
description?: string;
|
|
7696
|
+
remote_group_name?: string;
|
|
7697
|
+
remote_group?: string;
|
|
7698
|
+
};
|
|
7734
7699
|
export type OpenStackSecurityGroupRuleUpdateRequest = {
|
|
7735
7700
|
/**
|
|
7736
7701
|
* IP protocol version - either 'IPv4' or 'IPv6'
|
|
@@ -8170,6 +8135,17 @@ export type OpenStackTenantRequest = {
|
|
|
8170
8135
|
* Volume type name to use when creating volumes.
|
|
8171
8136
|
*/
|
|
8172
8137
|
default_volume_type_name?: string;
|
|
8138
|
+
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
8139
|
+
};
|
|
8140
|
+
export type OpenStackTenantSecurityGroup = {
|
|
8141
|
+
name: string;
|
|
8142
|
+
description?: string;
|
|
8143
|
+
rules?: Array<OpenStackSecurityGroupRuleCreate>;
|
|
8144
|
+
};
|
|
8145
|
+
export type OpenStackTenantSecurityGroupRequest = {
|
|
8146
|
+
name: string;
|
|
8147
|
+
description?: string;
|
|
8148
|
+
rules?: Array<OpenStackSecurityGroupRuleCreateRequest>;
|
|
8173
8149
|
};
|
|
8174
8150
|
export type OpenStackVolume = {
|
|
8175
8151
|
readonly url?: string;
|
|
@@ -8326,86 +8302,6 @@ export type OrderAttachmentRequest = {
|
|
|
8326
8302
|
export type OrderBackendIdRequest = {
|
|
8327
8303
|
backend_id: string;
|
|
8328
8304
|
};
|
|
8329
|
-
export type OrderCreate = {
|
|
8330
|
-
offering: string;
|
|
8331
|
-
readonly offering_name: string;
|
|
8332
|
-
readonly offering_uuid: string;
|
|
8333
|
-
readonly offering_description: string;
|
|
8334
|
-
readonly offering_image: string;
|
|
8335
|
-
readonly offering_thumbnail: string;
|
|
8336
|
-
readonly offering_type: string;
|
|
8337
|
-
/**
|
|
8338
|
-
* Accessible to all customers.
|
|
8339
|
-
*/
|
|
8340
|
-
readonly offering_shared: boolean;
|
|
8341
|
-
/**
|
|
8342
|
-
* Purchase and usage is invoiced.
|
|
8343
|
-
*/
|
|
8344
|
-
readonly offering_billable: boolean;
|
|
8345
|
-
/**
|
|
8346
|
-
* Public data used by specific plugin, such as storage mode for OpenStack.
|
|
8347
|
-
*/
|
|
8348
|
-
readonly offering_plugin_options: unknown;
|
|
8349
|
-
readonly provider_name: string;
|
|
8350
|
-
readonly provider_uuid: string;
|
|
8351
|
-
readonly provider_slug: string;
|
|
8352
|
-
readonly category_title: string;
|
|
8353
|
-
readonly category_uuid: string;
|
|
8354
|
-
readonly category_icon: string;
|
|
8355
|
-
plan?: string;
|
|
8356
|
-
plan_unit: BillingUnit | null;
|
|
8357
|
-
readonly plan_name: string | null;
|
|
8358
|
-
readonly plan_uuid: string | null;
|
|
8359
|
-
readonly plan_description: string | null;
|
|
8360
|
-
attributes?: unknown;
|
|
8361
|
-
limits?: {
|
|
8362
|
-
[key: string]: number;
|
|
8363
|
-
};
|
|
8364
|
-
readonly uuid: string;
|
|
8365
|
-
readonly created: string;
|
|
8366
|
-
readonly modified: string;
|
|
8367
|
-
readonly resource_uuid: string | null;
|
|
8368
|
-
readonly resource_type: string | null;
|
|
8369
|
-
readonly resource_name: string;
|
|
8370
|
-
readonly cost: string | null;
|
|
8371
|
-
state: OrderState;
|
|
8372
|
-
readonly output: string;
|
|
8373
|
-
readonly marketplace_resource_uuid: string;
|
|
8374
|
-
readonly error_message: string;
|
|
8375
|
-
readonly error_traceback?: string;
|
|
8376
|
-
callback_url?: string | null;
|
|
8377
|
-
/**
|
|
8378
|
-
* Completion time
|
|
8379
|
-
*/
|
|
8380
|
-
readonly completed_at: string | null;
|
|
8381
|
-
request_comment?: string | null;
|
|
8382
|
-
readonly attachment: string | null;
|
|
8383
|
-
type?: RequestTypes;
|
|
8384
|
-
/**
|
|
8385
|
-
* Enables delayed processing of resource provisioning order.
|
|
8386
|
-
*/
|
|
8387
|
-
start_date?: string | null;
|
|
8388
|
-
readonly url: string;
|
|
8389
|
-
readonly created_by: string;
|
|
8390
|
-
/**
|
|
8391
|
-
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
8392
|
-
*/
|
|
8393
|
-
readonly created_by_username: string;
|
|
8394
|
-
readonly created_by_full_name: string;
|
|
8395
|
-
readonly consumer_reviewed_by: string | null;
|
|
8396
|
-
readonly consumer_reviewed_at: string | null;
|
|
8397
|
-
/**
|
|
8398
|
-
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
8399
|
-
*/
|
|
8400
|
-
readonly consumer_reviewed_by_username: string | null;
|
|
8401
|
-
readonly consumer_reviewed_by_full_name: string | null;
|
|
8402
|
-
project: string;
|
|
8403
|
-
readonly project_uuid: string;
|
|
8404
|
-
readonly project_name: string;
|
|
8405
|
-
readonly project_description: string;
|
|
8406
|
-
readonly customer_name: string;
|
|
8407
|
-
readonly customer_uuid: string;
|
|
8408
|
-
};
|
|
8409
8305
|
export type OrderCreateRequest = {
|
|
8410
8306
|
offering: string;
|
|
8411
8307
|
plan?: string;
|
|
@@ -8424,6 +8320,7 @@ export type OrderCreateRequest = {
|
|
|
8424
8320
|
* Enables delayed processing of resource provisioning order.
|
|
8425
8321
|
*/
|
|
8426
8322
|
start_date?: string | null;
|
|
8323
|
+
slug?: string;
|
|
8427
8324
|
project: string;
|
|
8428
8325
|
};
|
|
8429
8326
|
export type OrderDetails = {
|
|
@@ -8485,6 +8382,7 @@ export type OrderDetails = {
|
|
|
8485
8382
|
* Enables delayed processing of resource provisioning order.
|
|
8486
8383
|
*/
|
|
8487
8384
|
start_date?: string | null;
|
|
8385
|
+
readonly slug?: string;
|
|
8488
8386
|
readonly url?: string;
|
|
8489
8387
|
/**
|
|
8490
8388
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -8941,6 +8839,7 @@ export type PatchedMaintenanceAnnouncementOfferingTemplateRequest = {
|
|
|
8941
8839
|
export type PatchedMaintenanceAnnouncementRequest = {
|
|
8942
8840
|
name?: string;
|
|
8943
8841
|
message?: string;
|
|
8842
|
+
internal_notes?: string;
|
|
8944
8843
|
/**
|
|
8945
8844
|
* Type of maintenance being performed
|
|
8946
8845
|
*/
|
|
@@ -9031,6 +8930,10 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
9031
8930
|
limit_cost?: number;
|
|
9032
8931
|
period?: PeriodEnum;
|
|
9033
8932
|
organization_groups?: Array<string>;
|
|
8933
|
+
/**
|
|
8934
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
8935
|
+
*/
|
|
8936
|
+
apply_to_all?: boolean;
|
|
9034
8937
|
};
|
|
9035
8938
|
export type PatchedOfferingPartitionUpdateRequest = {
|
|
9036
8939
|
partition_uuid?: string;
|
|
@@ -9145,6 +9048,10 @@ export type PatchedOfferingUsagePolicyRequest = {
|
|
|
9145
9048
|
*/
|
|
9146
9049
|
options?: unknown;
|
|
9147
9050
|
organization_groups?: Array<string>;
|
|
9051
|
+
/**
|
|
9052
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
9053
|
+
*/
|
|
9054
|
+
apply_to_all?: boolean;
|
|
9148
9055
|
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
9149
9056
|
period?: PeriodEnum;
|
|
9150
9057
|
};
|
|
@@ -9296,6 +9203,7 @@ export type PatchedOpenStackTenantRequest = {
|
|
|
9296
9203
|
* Volume type name to use when creating volumes.
|
|
9297
9204
|
*/
|
|
9298
9205
|
default_volume_type_name?: string;
|
|
9206
|
+
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
9299
9207
|
};
|
|
9300
9208
|
export type PatchedOpenStackVolumeRequest = {
|
|
9301
9209
|
name?: string;
|
|
@@ -9806,6 +9714,10 @@ export type PatchedSlurmPeriodicUsagePolicyRequest = {
|
|
|
9806
9714
|
*/
|
|
9807
9715
|
options?: unknown;
|
|
9808
9716
|
organization_groups?: Array<string>;
|
|
9717
|
+
/**
|
|
9718
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
9719
|
+
*/
|
|
9720
|
+
apply_to_all?: boolean;
|
|
9809
9721
|
component_limits_set?: Array<NestedOfferingComponentLimitRequest>;
|
|
9810
9722
|
period?: PeriodEnum;
|
|
9811
9723
|
/**
|
|
@@ -12878,6 +12790,22 @@ export type ResourcePlanPeriod = {
|
|
|
12878
12790
|
end?: string | null;
|
|
12879
12791
|
components: Array<BaseComponentUsage>;
|
|
12880
12792
|
};
|
|
12793
|
+
export type ResourceReallocateLimitsRequest = {
|
|
12794
|
+
limits: {
|
|
12795
|
+
[key: string]: number;
|
|
12796
|
+
};
|
|
12797
|
+
targets: Array<ResourceReallocateTargetRequest>;
|
|
12798
|
+
};
|
|
12799
|
+
export type ResourceReallocateLimitsResponse = {
|
|
12800
|
+
readonly source_order_uuid: string;
|
|
12801
|
+
readonly target_order_uuids: Array<string>;
|
|
12802
|
+
};
|
|
12803
|
+
export type ResourceReallocateTargetRequest = {
|
|
12804
|
+
resource_uuid: string;
|
|
12805
|
+
allocated_limits: {
|
|
12806
|
+
[key: string]: number;
|
|
12807
|
+
};
|
|
12808
|
+
};
|
|
12881
12809
|
export type ResourceRenewRequest = {
|
|
12882
12810
|
/**
|
|
12883
12811
|
* Number of months to extend the subscription by.
|
|
@@ -12910,10 +12838,6 @@ export type ResourceSlugRequest = {
|
|
|
12910
12838
|
slug: string;
|
|
12911
12839
|
};
|
|
12912
12840
|
export type ResourceState = 'Creating' | 'OK' | 'Erred' | 'Updating' | 'Terminating' | 'Terminated';
|
|
12913
|
-
export type ResourceSuggestName = {
|
|
12914
|
-
project: string;
|
|
12915
|
-
offering: string;
|
|
12916
|
-
};
|
|
12917
12841
|
export type ResourceSuggestNameRequest = {
|
|
12918
12842
|
project: string;
|
|
12919
12843
|
offering: string;
|
|
@@ -13535,11 +13459,6 @@ export type ServiceProviderRevenues = {
|
|
|
13535
13459
|
readonly year: number;
|
|
13536
13460
|
readonly month: number;
|
|
13537
13461
|
};
|
|
13538
|
-
export type ServiceProviderSignature = {
|
|
13539
|
-
customer: string;
|
|
13540
|
-
data: string;
|
|
13541
|
-
dry_run?: boolean;
|
|
13542
|
-
};
|
|
13543
13462
|
export type ServiceProviderSignatureRequest = {
|
|
13544
13463
|
customer: string;
|
|
13545
13464
|
data: string;
|
|
@@ -13695,7 +13614,11 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
13695
13614
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
13696
13615
|
*/
|
|
13697
13616
|
options?: unknown;
|
|
13698
|
-
organization_groups
|
|
13617
|
+
organization_groups?: Array<string>;
|
|
13618
|
+
/**
|
|
13619
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
13620
|
+
*/
|
|
13621
|
+
apply_to_all?: boolean;
|
|
13699
13622
|
component_limits_set: Array<NestedOfferingComponentLimit>;
|
|
13700
13623
|
period?: PeriodEnum;
|
|
13701
13624
|
readonly period_name: string;
|
|
@@ -13739,7 +13662,11 @@ export type SlurmPeriodicUsagePolicyRequest = {
|
|
|
13739
13662
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
13740
13663
|
*/
|
|
13741
13664
|
options?: unknown;
|
|
13742
|
-
organization_groups
|
|
13665
|
+
organization_groups?: Array<string>;
|
|
13666
|
+
/**
|
|
13667
|
+
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
13668
|
+
*/
|
|
13669
|
+
apply_to_all?: boolean;
|
|
13743
13670
|
component_limits_set: Array<NestedOfferingComponentLimitRequest>;
|
|
13744
13671
|
period?: PeriodEnum;
|
|
13745
13672
|
/**
|
|
@@ -13965,6 +13892,12 @@ export type Tenant = {
|
|
|
13965
13892
|
readonly uuid: string;
|
|
13966
13893
|
name: string;
|
|
13967
13894
|
};
|
|
13895
|
+
export type TenantSecurityGroupUpdateRequest = {
|
|
13896
|
+
uuid?: string;
|
|
13897
|
+
name: string;
|
|
13898
|
+
description?: string;
|
|
13899
|
+
rules?: Array<OpenStackSecurityGroupRuleUpdateByNameRequest>;
|
|
13900
|
+
};
|
|
13968
13901
|
export type TimeSeriesToSData = {
|
|
13969
13902
|
readonly date: string;
|
|
13970
13903
|
readonly count: number;
|
|
@@ -14731,6 +14664,7 @@ export type OpenStackTenantCreateOrderAttributes = {
|
|
|
14731
14664
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
14732
14665
|
*/
|
|
14733
14666
|
availability_zone?: string;
|
|
14667
|
+
security_groups?: Array<OpenStackTenantSecurityGroupRequest>;
|
|
14734
14668
|
};
|
|
14735
14669
|
export type OpenStackCreateInstancePortRequest = {
|
|
14736
14670
|
fixed_ips?: Array<OpenStackFixedIpRequest>;
|
|
@@ -15689,6 +15623,11 @@ export type ConstanceSettingsRequestForm = {
|
|
|
15689
15623
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15690
15624
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15691
15625
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15626
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
15627
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
15628
|
+
LLM_INFERENCES_API_URL?: string;
|
|
15629
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
15630
|
+
LLM_INFERENCES_MODEL?: string;
|
|
15692
15631
|
};
|
|
15693
15632
|
export type ConstanceSettingsRequestMultipart = {
|
|
15694
15633
|
SITE_NAME?: string;
|
|
@@ -15844,6 +15783,11 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
15844
15783
|
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15845
15784
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15846
15785
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15786
|
+
LLM_CHAT_ENABLED?: boolean;
|
|
15787
|
+
LLM_INFERENCES_BACKEND_TYPE?: string;
|
|
15788
|
+
LLM_INFERENCES_API_URL?: string;
|
|
15789
|
+
LLM_INFERENCES_API_TOKEN?: string;
|
|
15790
|
+
LLM_INFERENCES_MODEL?: string;
|
|
15847
15791
|
};
|
|
15848
15792
|
export type PaymentRequestForm = {
|
|
15849
15793
|
profile: string;
|
|
@@ -18436,7 +18380,7 @@ export type BackendResourceRequestsSetDoneData = {
|
|
|
18436
18380
|
};
|
|
18437
18381
|
export type BackendResourceRequestsSetDoneResponses = {
|
|
18438
18382
|
200: {
|
|
18439
|
-
|
|
18383
|
+
status?: string;
|
|
18440
18384
|
};
|
|
18441
18385
|
};
|
|
18442
18386
|
export type BackendResourceRequestsSetDoneResponse = BackendResourceRequestsSetDoneResponses[keyof BackendResourceRequestsSetDoneResponses];
|
|
@@ -18450,7 +18394,7 @@ export type BackendResourceRequestsSetErredData = {
|
|
|
18450
18394
|
};
|
|
18451
18395
|
export type BackendResourceRequestsSetErredResponses = {
|
|
18452
18396
|
200: {
|
|
18453
|
-
|
|
18397
|
+
status?: string;
|
|
18454
18398
|
};
|
|
18455
18399
|
};
|
|
18456
18400
|
export type BackendResourceRequestsSetErredResponse = BackendResourceRequestsSetErredResponses[keyof BackendResourceRequestsSetErredResponses];
|
|
@@ -18464,7 +18408,7 @@ export type BackendResourceRequestsStartProcessingData = {
|
|
|
18464
18408
|
};
|
|
18465
18409
|
export type BackendResourceRequestsStartProcessingResponses = {
|
|
18466
18410
|
200: {
|
|
18467
|
-
|
|
18411
|
+
status?: string;
|
|
18468
18412
|
};
|
|
18469
18413
|
};
|
|
18470
18414
|
export type BackendResourceRequestsStartProcessingResponse = BackendResourceRequestsStartProcessingResponses[keyof BackendResourceRequestsStartProcessingResponses];
|
|
@@ -25548,11 +25492,34 @@ export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccount
|
|
|
25548
25492
|
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
25549
25493
|
body: CourseAccountsBulkCreateRequest;
|
|
25550
25494
|
path?: never;
|
|
25551
|
-
query?:
|
|
25495
|
+
query?: {
|
|
25496
|
+
email?: string;
|
|
25497
|
+
/**
|
|
25498
|
+
* Ordering
|
|
25499
|
+
*
|
|
25500
|
+
*
|
|
25501
|
+
*/
|
|
25502
|
+
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'>;
|
|
25503
|
+
/**
|
|
25504
|
+
* A page number within the paginated result set.
|
|
25505
|
+
*/
|
|
25506
|
+
page?: number;
|
|
25507
|
+
/**
|
|
25508
|
+
* Number of results to return per page.
|
|
25509
|
+
*/
|
|
25510
|
+
page_size?: number;
|
|
25511
|
+
project_end_date_after?: string;
|
|
25512
|
+
project_end_date_before?: string;
|
|
25513
|
+
project_start_date_after?: string;
|
|
25514
|
+
project_start_date_before?: string;
|
|
25515
|
+
project_uuid?: string;
|
|
25516
|
+
state?: Array<'Closed' | 'Erred' | 'OK'>;
|
|
25517
|
+
username?: string;
|
|
25518
|
+
};
|
|
25552
25519
|
url: '/api/marketplace-course-accounts/create_bulk/';
|
|
25553
25520
|
};
|
|
25554
25521
|
export type MarketplaceCourseAccountsCreateBulkResponses = {
|
|
25555
|
-
200:
|
|
25522
|
+
200: Array<CourseAccount>;
|
|
25556
25523
|
};
|
|
25557
25524
|
export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
|
|
25558
25525
|
export type MarketplaceCustomerComponentUsagePoliciesListData = {
|
|
@@ -25945,11 +25912,11 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
|
25945
25912
|
path?: never;
|
|
25946
25913
|
query?: {
|
|
25947
25914
|
/**
|
|
25948
|
-
*
|
|
25915
|
+
* Filter counts by resources within a specific customer.
|
|
25949
25916
|
*/
|
|
25950
25917
|
customer_uuid?: string;
|
|
25951
25918
|
/**
|
|
25952
|
-
*
|
|
25919
|
+
* Filter counts by resources within a specific project.
|
|
25953
25920
|
*/
|
|
25954
25921
|
project_uuid?: string;
|
|
25955
25922
|
};
|
|
@@ -25957,7 +25924,7 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
|
25957
25924
|
};
|
|
25958
25925
|
export type MarketplaceGlobalCategoriesRetrieveResponses = {
|
|
25959
25926
|
200: {
|
|
25960
|
-
[key: string]:
|
|
25927
|
+
[key: string]: unknown;
|
|
25961
25928
|
};
|
|
25962
25929
|
};
|
|
25963
25930
|
export type MarketplaceGlobalCategoriesRetrieveResponse = MarketplaceGlobalCategoriesRetrieveResponses[keyof MarketplaceGlobalCategoriesRetrieveResponses];
|
|
@@ -27636,7 +27603,7 @@ export type MarketplaceOrdersListData = {
|
|
|
27636
27603
|
*/
|
|
27637
27604
|
created?: string;
|
|
27638
27605
|
customer_uuid?: string;
|
|
27639
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
27606
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
27640
27607
|
/**
|
|
27641
27608
|
* Modified after
|
|
27642
27609
|
*/
|
|
@@ -27746,7 +27713,7 @@ export type MarketplaceOrdersCreateData = {
|
|
|
27746
27713
|
url: '/api/marketplace-orders/';
|
|
27747
27714
|
};
|
|
27748
27715
|
export type MarketplaceOrdersCreateResponses = {
|
|
27749
|
-
201:
|
|
27716
|
+
201: OrderDetails;
|
|
27750
27717
|
};
|
|
27751
27718
|
export type MarketplaceOrdersCreateResponse = MarketplaceOrdersCreateResponses[keyof MarketplaceOrdersCreateResponses];
|
|
27752
27719
|
export type MarketplaceOrdersDestroyData = {
|
|
@@ -27770,7 +27737,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
27770
27737
|
uuid: string;
|
|
27771
27738
|
};
|
|
27772
27739
|
query?: {
|
|
27773
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
27740
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
27774
27741
|
};
|
|
27775
27742
|
url: '/api/marketplace-orders/{uuid}/';
|
|
27776
27743
|
};
|
|
@@ -27787,11 +27754,9 @@ export type MarketplaceOrdersApproveByConsumerData = {
|
|
|
27787
27754
|
url: '/api/marketplace-orders/{uuid}/approve_by_consumer/';
|
|
27788
27755
|
};
|
|
27789
27756
|
export type MarketplaceOrdersApproveByConsumerResponses = {
|
|
27790
|
-
|
|
27791
|
-
* No response body
|
|
27792
|
-
*/
|
|
27793
|
-
200: unknown;
|
|
27757
|
+
200: string;
|
|
27794
27758
|
};
|
|
27759
|
+
export type MarketplaceOrdersApproveByConsumerResponse = MarketplaceOrdersApproveByConsumerResponses[keyof MarketplaceOrdersApproveByConsumerResponses];
|
|
27795
27760
|
export type MarketplaceOrdersApproveByProviderData = {
|
|
27796
27761
|
body?: never;
|
|
27797
27762
|
path: {
|
|
@@ -27801,11 +27766,9 @@ export type MarketplaceOrdersApproveByProviderData = {
|
|
|
27801
27766
|
url: '/api/marketplace-orders/{uuid}/approve_by_provider/';
|
|
27802
27767
|
};
|
|
27803
27768
|
export type MarketplaceOrdersApproveByProviderResponses = {
|
|
27804
|
-
|
|
27805
|
-
* No response body
|
|
27806
|
-
*/
|
|
27807
|
-
200: unknown;
|
|
27769
|
+
200: string;
|
|
27808
27770
|
};
|
|
27771
|
+
export type MarketplaceOrdersApproveByProviderResponse = MarketplaceOrdersApproveByProviderResponses[keyof MarketplaceOrdersApproveByProviderResponses];
|
|
27809
27772
|
export type MarketplaceOrdersCancelData = {
|
|
27810
27773
|
body?: never;
|
|
27811
27774
|
path: {
|
|
@@ -27818,7 +27781,7 @@ export type MarketplaceOrdersCancelResponses = {
|
|
|
27818
27781
|
/**
|
|
27819
27782
|
* No response body
|
|
27820
27783
|
*/
|
|
27821
|
-
|
|
27784
|
+
202: unknown;
|
|
27822
27785
|
};
|
|
27823
27786
|
export type MarketplaceOrdersDeleteAttachmentData = {
|
|
27824
27787
|
body?: never;
|
|
@@ -27884,11 +27847,11 @@ export type MarketplaceOrdersSetBackendIdData = {
|
|
|
27884
27847
|
url: '/api/marketplace-orders/{uuid}/set_backend_id/';
|
|
27885
27848
|
};
|
|
27886
27849
|
export type MarketplaceOrdersSetBackendIdResponses = {
|
|
27887
|
-
|
|
27888
|
-
|
|
27889
|
-
|
|
27890
|
-
200: unknown;
|
|
27850
|
+
200: {
|
|
27851
|
+
status?: string;
|
|
27852
|
+
};
|
|
27891
27853
|
};
|
|
27854
|
+
export type MarketplaceOrdersSetBackendIdResponse = MarketplaceOrdersSetBackendIdResponses[keyof MarketplaceOrdersSetBackendIdResponses];
|
|
27892
27855
|
export type MarketplaceOrdersSetStateDoneData = {
|
|
27893
27856
|
body?: never;
|
|
27894
27857
|
path: {
|
|
@@ -28180,8 +28143,9 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
|
|
|
28180
28143
|
/**
|
|
28181
28144
|
* No response body
|
|
28182
28145
|
*/
|
|
28183
|
-
|
|
28146
|
+
204: void;
|
|
28184
28147
|
};
|
|
28148
|
+
export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
|
|
28185
28149
|
export type MarketplacePlansUpdateDiscountsData = {
|
|
28186
28150
|
body: DiscountsUpdateRequest;
|
|
28187
28151
|
path: {
|
|
@@ -28242,13 +28206,22 @@ export type MarketplacePlansUsageStatsListData = {
|
|
|
28242
28206
|
body?: never;
|
|
28243
28207
|
path?: never;
|
|
28244
28208
|
query?: {
|
|
28209
|
+
/**
|
|
28210
|
+
* Filter by service provider's customer UUID.
|
|
28211
|
+
*/
|
|
28245
28212
|
customer_provider_uuid?: string;
|
|
28213
|
+
/**
|
|
28214
|
+
* Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
|
|
28215
|
+
*/
|
|
28246
28216
|
o?: string;
|
|
28247
28217
|
offering?: string;
|
|
28248
28218
|
/**
|
|
28249
28219
|
* Multiple values may be separated by commas.
|
|
28250
28220
|
*/
|
|
28251
28221
|
offering_slug?: Array<string>;
|
|
28222
|
+
/**
|
|
28223
|
+
* Filter by offering UUID.
|
|
28224
|
+
*/
|
|
28252
28225
|
offering_uuid?: string;
|
|
28253
28226
|
/**
|
|
28254
28227
|
* A page number within the paginated result set.
|
|
@@ -28270,13 +28243,22 @@ export type MarketplacePlansUsageStatsCountData = {
|
|
|
28270
28243
|
body?: never;
|
|
28271
28244
|
path?: never;
|
|
28272
28245
|
query?: {
|
|
28246
|
+
/**
|
|
28247
|
+
* Filter by service provider's customer UUID.
|
|
28248
|
+
*/
|
|
28273
28249
|
customer_provider_uuid?: string;
|
|
28250
|
+
/**
|
|
28251
|
+
* Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
|
|
28252
|
+
*/
|
|
28274
28253
|
o?: string;
|
|
28275
28254
|
offering?: string;
|
|
28276
28255
|
/**
|
|
28277
28256
|
* Multiple values may be separated by commas.
|
|
28278
28257
|
*/
|
|
28279
28258
|
offering_slug?: Array<string>;
|
|
28259
|
+
/**
|
|
28260
|
+
* Filter by offering UUID.
|
|
28261
|
+
*/
|
|
28280
28262
|
offering_uuid?: string;
|
|
28281
28263
|
/**
|
|
28282
28264
|
* A page number within the paginated result set.
|
|
@@ -28872,7 +28854,7 @@ export type MarketplaceProviderOfferingsCreateData = {
|
|
|
28872
28854
|
url: '/api/marketplace-provider-offerings/';
|
|
28873
28855
|
};
|
|
28874
28856
|
export type MarketplaceProviderOfferingsCreateResponses = {
|
|
28875
|
-
201:
|
|
28857
|
+
201: ProviderOfferingDetails;
|
|
28876
28858
|
};
|
|
28877
28859
|
export type MarketplaceProviderOfferingsCreateResponse = MarketplaceProviderOfferingsCreateResponses[keyof MarketplaceProviderOfferingsCreateResponses];
|
|
28878
28860
|
export type MarketplaceProviderOfferingsDestroyData = {
|
|
@@ -29359,8 +29341,9 @@ export type MarketplaceProviderOfferingsDeleteImageResponses = {
|
|
|
29359
29341
|
/**
|
|
29360
29342
|
* No response body
|
|
29361
29343
|
*/
|
|
29362
|
-
|
|
29344
|
+
204: void;
|
|
29363
29345
|
};
|
|
29346
|
+
export type MarketplaceProviderOfferingsDeleteImageResponse = MarketplaceProviderOfferingsDeleteImageResponses[keyof MarketplaceProviderOfferingsDeleteImageResponses];
|
|
29364
29347
|
export type MarketplaceProviderOfferingsDeleteOrganizationGroupsData = {
|
|
29365
29348
|
body?: never;
|
|
29366
29349
|
path: {
|
|
@@ -29373,8 +29356,9 @@ export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses = {
|
|
|
29373
29356
|
/**
|
|
29374
29357
|
* No response body
|
|
29375
29358
|
*/
|
|
29376
|
-
|
|
29359
|
+
204: void;
|
|
29377
29360
|
};
|
|
29361
|
+
export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponse = MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses[keyof MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses];
|
|
29378
29362
|
export type MarketplaceProviderOfferingsDeleteThumbnailData = {
|
|
29379
29363
|
body?: never;
|
|
29380
29364
|
path: {
|
|
@@ -29461,20 +29445,112 @@ export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
|
29461
29445
|
200: Array<ImportableResource>;
|
|
29462
29446
|
};
|
|
29463
29447
|
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
29464
|
-
export type
|
|
29448
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
29465
29449
|
body?: never;
|
|
29466
29450
|
path: {
|
|
29467
29451
|
uuid: string;
|
|
29468
29452
|
};
|
|
29469
29453
|
query?: {
|
|
29470
|
-
|
|
29454
|
+
/**
|
|
29455
|
+
* Accessible via calls
|
|
29456
|
+
*/
|
|
29457
|
+
accessible_via_calls?: boolean;
|
|
29458
|
+
/**
|
|
29459
|
+
* Allowed customer UUID
|
|
29460
|
+
*/
|
|
29461
|
+
allowed_customer_uuid?: string;
|
|
29462
|
+
attributes?: string;
|
|
29463
|
+
billable?: boolean;
|
|
29464
|
+
can_create_offering_user?: boolean;
|
|
29465
|
+
category_group_uuid?: string;
|
|
29466
|
+
category_uuid?: string;
|
|
29467
|
+
/**
|
|
29468
|
+
* Created after
|
|
29469
|
+
*/
|
|
29470
|
+
created?: string;
|
|
29471
|
+
customer?: string;
|
|
29472
|
+
customer_uuid?: string;
|
|
29473
|
+
description?: string;
|
|
29474
|
+
/**
|
|
29475
|
+
* Has Active Terms of Service
|
|
29476
|
+
*/
|
|
29477
|
+
has_active_terms_of_service?: boolean;
|
|
29478
|
+
/**
|
|
29479
|
+
* Has Terms of Service
|
|
29480
|
+
*/
|
|
29481
|
+
has_terms_of_service?: boolean;
|
|
29482
|
+
/**
|
|
29483
|
+
* Keyword
|
|
29484
|
+
*/
|
|
29485
|
+
keyword?: string;
|
|
29486
|
+
/**
|
|
29487
|
+
* Modified after
|
|
29488
|
+
*/
|
|
29489
|
+
modified?: string;
|
|
29490
|
+
name?: string;
|
|
29491
|
+
name_exact?: string;
|
|
29492
|
+
/**
|
|
29493
|
+
* Ordering
|
|
29494
|
+
*
|
|
29495
|
+
*
|
|
29496
|
+
*/
|
|
29497
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
29498
|
+
organization_group_uuid?: Array<string>;
|
|
29499
|
+
/**
|
|
29500
|
+
* A page number within the paginated result set.
|
|
29501
|
+
*/
|
|
29502
|
+
page?: number;
|
|
29503
|
+
/**
|
|
29504
|
+
* Number of results to return per page.
|
|
29505
|
+
*/
|
|
29506
|
+
page_size?: number;
|
|
29507
|
+
parent_uuid?: string;
|
|
29508
|
+
/**
|
|
29509
|
+
* Project UUID
|
|
29510
|
+
*/
|
|
29511
|
+
project_uuid?: string;
|
|
29512
|
+
/**
|
|
29513
|
+
* Search by offering name, slug or description
|
|
29514
|
+
*/
|
|
29515
|
+
query?: string;
|
|
29516
|
+
/**
|
|
29517
|
+
* Resource customer UUID
|
|
29518
|
+
*/
|
|
29519
|
+
resource_customer_uuid?: string;
|
|
29520
|
+
/**
|
|
29521
|
+
* Resource project UUID
|
|
29522
|
+
*/
|
|
29523
|
+
resource_project_uuid?: string;
|
|
29524
|
+
/**
|
|
29525
|
+
* Scope UUID
|
|
29526
|
+
*/
|
|
29527
|
+
scope_uuid?: string;
|
|
29528
|
+
/**
|
|
29529
|
+
* Service manager UUID
|
|
29530
|
+
*/
|
|
29531
|
+
service_manager_uuid?: string;
|
|
29532
|
+
shared?: boolean;
|
|
29533
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
|
|
29534
|
+
type?: Array<string>;
|
|
29535
|
+
/**
|
|
29536
|
+
* User Has Consent
|
|
29537
|
+
*/
|
|
29538
|
+
user_has_consent?: boolean;
|
|
29539
|
+
/**
|
|
29540
|
+
* User Has Offering User
|
|
29541
|
+
*/
|
|
29542
|
+
user_has_offering_user?: boolean;
|
|
29543
|
+
/**
|
|
29544
|
+
* Comma-separated offering UUIDs
|
|
29545
|
+
*/
|
|
29546
|
+
uuid_list?: string;
|
|
29471
29547
|
};
|
|
29472
29548
|
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
29473
29549
|
};
|
|
29474
|
-
export type
|
|
29475
|
-
200:
|
|
29550
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
29551
|
+
200: Array<CourseAccount>;
|
|
29476
29552
|
};
|
|
29477
|
-
export type
|
|
29553
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
29478
29554
|
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
29479
29555
|
body?: never;
|
|
29480
29556
|
path: {
|
|
@@ -29497,20 +29573,112 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
|
29497
29573
|
200: Array<Project>;
|
|
29498
29574
|
};
|
|
29499
29575
|
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
29500
|
-
export type
|
|
29576
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
29501
29577
|
body?: never;
|
|
29502
29578
|
path: {
|
|
29503
29579
|
uuid: string;
|
|
29504
29580
|
};
|
|
29505
29581
|
query?: {
|
|
29506
|
-
|
|
29582
|
+
/**
|
|
29583
|
+
* Accessible via calls
|
|
29584
|
+
*/
|
|
29585
|
+
accessible_via_calls?: boolean;
|
|
29586
|
+
/**
|
|
29587
|
+
* Allowed customer UUID
|
|
29588
|
+
*/
|
|
29589
|
+
allowed_customer_uuid?: string;
|
|
29590
|
+
attributes?: string;
|
|
29591
|
+
billable?: boolean;
|
|
29592
|
+
can_create_offering_user?: boolean;
|
|
29593
|
+
category_group_uuid?: string;
|
|
29594
|
+
category_uuid?: string;
|
|
29595
|
+
/**
|
|
29596
|
+
* Created after
|
|
29597
|
+
*/
|
|
29598
|
+
created?: string;
|
|
29599
|
+
customer?: string;
|
|
29600
|
+
customer_uuid?: string;
|
|
29601
|
+
description?: string;
|
|
29602
|
+
/**
|
|
29603
|
+
* Has Active Terms of Service
|
|
29604
|
+
*/
|
|
29605
|
+
has_active_terms_of_service?: boolean;
|
|
29606
|
+
/**
|
|
29607
|
+
* Has Terms of Service
|
|
29608
|
+
*/
|
|
29609
|
+
has_terms_of_service?: boolean;
|
|
29610
|
+
/**
|
|
29611
|
+
* Keyword
|
|
29612
|
+
*/
|
|
29613
|
+
keyword?: string;
|
|
29614
|
+
/**
|
|
29615
|
+
* Modified after
|
|
29616
|
+
*/
|
|
29617
|
+
modified?: string;
|
|
29618
|
+
name?: string;
|
|
29619
|
+
name_exact?: string;
|
|
29620
|
+
/**
|
|
29621
|
+
* Ordering
|
|
29622
|
+
*
|
|
29623
|
+
*
|
|
29624
|
+
*/
|
|
29625
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
29626
|
+
organization_group_uuid?: Array<string>;
|
|
29627
|
+
/**
|
|
29628
|
+
* A page number within the paginated result set.
|
|
29629
|
+
*/
|
|
29630
|
+
page?: number;
|
|
29631
|
+
/**
|
|
29632
|
+
* Number of results to return per page.
|
|
29633
|
+
*/
|
|
29634
|
+
page_size?: number;
|
|
29635
|
+
parent_uuid?: string;
|
|
29636
|
+
/**
|
|
29637
|
+
* Project UUID
|
|
29638
|
+
*/
|
|
29639
|
+
project_uuid?: string;
|
|
29640
|
+
/**
|
|
29641
|
+
* Search by offering name, slug or description
|
|
29642
|
+
*/
|
|
29643
|
+
query?: string;
|
|
29644
|
+
/**
|
|
29645
|
+
* Resource customer UUID
|
|
29646
|
+
*/
|
|
29647
|
+
resource_customer_uuid?: string;
|
|
29648
|
+
/**
|
|
29649
|
+
* Resource project UUID
|
|
29650
|
+
*/
|
|
29651
|
+
resource_project_uuid?: string;
|
|
29652
|
+
/**
|
|
29653
|
+
* Scope UUID
|
|
29654
|
+
*/
|
|
29655
|
+
scope_uuid?: string;
|
|
29656
|
+
/**
|
|
29657
|
+
* Service manager UUID
|
|
29658
|
+
*/
|
|
29659
|
+
service_manager_uuid?: string;
|
|
29660
|
+
shared?: boolean;
|
|
29661
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
|
|
29662
|
+
type?: Array<string>;
|
|
29663
|
+
/**
|
|
29664
|
+
* User Has Consent
|
|
29665
|
+
*/
|
|
29666
|
+
user_has_consent?: boolean;
|
|
29667
|
+
/**
|
|
29668
|
+
* User Has Offering User
|
|
29669
|
+
*/
|
|
29670
|
+
user_has_offering_user?: boolean;
|
|
29671
|
+
/**
|
|
29672
|
+
* Comma-separated offering UUIDs
|
|
29673
|
+
*/
|
|
29674
|
+
uuid_list?: string;
|
|
29507
29675
|
};
|
|
29508
29676
|
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
|
|
29509
29677
|
};
|
|
29510
|
-
export type
|
|
29511
|
-
200:
|
|
29678
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses = {
|
|
29679
|
+
200: Array<CustomerServiceAccount>;
|
|
29512
29680
|
};
|
|
29513
|
-
export type
|
|
29681
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponse = MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses];
|
|
29514
29682
|
export type MarketplaceProviderOfferingsListCustomerUsersListData = {
|
|
29515
29683
|
body?: never;
|
|
29516
29684
|
path: {
|
|
@@ -29533,20 +29701,112 @@ export type MarketplaceProviderOfferingsListCustomerUsersListResponses = {
|
|
|
29533
29701
|
200: Array<User>;
|
|
29534
29702
|
};
|
|
29535
29703
|
export type MarketplaceProviderOfferingsListCustomerUsersListResponse = MarketplaceProviderOfferingsListCustomerUsersListResponses[keyof MarketplaceProviderOfferingsListCustomerUsersListResponses];
|
|
29536
|
-
export type
|
|
29704
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
29537
29705
|
body?: never;
|
|
29538
29706
|
path: {
|
|
29539
29707
|
uuid: string;
|
|
29540
29708
|
};
|
|
29541
29709
|
query?: {
|
|
29542
|
-
|
|
29710
|
+
/**
|
|
29711
|
+
* Accessible via calls
|
|
29712
|
+
*/
|
|
29713
|
+
accessible_via_calls?: boolean;
|
|
29714
|
+
/**
|
|
29715
|
+
* Allowed customer UUID
|
|
29716
|
+
*/
|
|
29717
|
+
allowed_customer_uuid?: string;
|
|
29718
|
+
attributes?: string;
|
|
29719
|
+
billable?: boolean;
|
|
29720
|
+
can_create_offering_user?: boolean;
|
|
29721
|
+
category_group_uuid?: string;
|
|
29722
|
+
category_uuid?: string;
|
|
29723
|
+
/**
|
|
29724
|
+
* Created after
|
|
29725
|
+
*/
|
|
29726
|
+
created?: string;
|
|
29727
|
+
customer?: string;
|
|
29728
|
+
customer_uuid?: string;
|
|
29729
|
+
description?: string;
|
|
29730
|
+
/**
|
|
29731
|
+
* Has Active Terms of Service
|
|
29732
|
+
*/
|
|
29733
|
+
has_active_terms_of_service?: boolean;
|
|
29734
|
+
/**
|
|
29735
|
+
* Has Terms of Service
|
|
29736
|
+
*/
|
|
29737
|
+
has_terms_of_service?: boolean;
|
|
29738
|
+
/**
|
|
29739
|
+
* Keyword
|
|
29740
|
+
*/
|
|
29741
|
+
keyword?: string;
|
|
29742
|
+
/**
|
|
29743
|
+
* Modified after
|
|
29744
|
+
*/
|
|
29745
|
+
modified?: string;
|
|
29746
|
+
name?: string;
|
|
29747
|
+
name_exact?: string;
|
|
29748
|
+
/**
|
|
29749
|
+
* Ordering
|
|
29750
|
+
*
|
|
29751
|
+
*
|
|
29752
|
+
*/
|
|
29753
|
+
o?: Array<'-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type'>;
|
|
29754
|
+
organization_group_uuid?: Array<string>;
|
|
29755
|
+
/**
|
|
29756
|
+
* A page number within the paginated result set.
|
|
29757
|
+
*/
|
|
29758
|
+
page?: number;
|
|
29759
|
+
/**
|
|
29760
|
+
* Number of results to return per page.
|
|
29761
|
+
*/
|
|
29762
|
+
page_size?: number;
|
|
29763
|
+
parent_uuid?: string;
|
|
29764
|
+
/**
|
|
29765
|
+
* Project UUID
|
|
29766
|
+
*/
|
|
29767
|
+
project_uuid?: string;
|
|
29768
|
+
/**
|
|
29769
|
+
* Search by offering name, slug or description
|
|
29770
|
+
*/
|
|
29771
|
+
query?: string;
|
|
29772
|
+
/**
|
|
29773
|
+
* Resource customer UUID
|
|
29774
|
+
*/
|
|
29775
|
+
resource_customer_uuid?: string;
|
|
29776
|
+
/**
|
|
29777
|
+
* Resource project UUID
|
|
29778
|
+
*/
|
|
29779
|
+
resource_project_uuid?: string;
|
|
29780
|
+
/**
|
|
29781
|
+
* Scope UUID
|
|
29782
|
+
*/
|
|
29783
|
+
scope_uuid?: string;
|
|
29784
|
+
/**
|
|
29785
|
+
* Service manager UUID
|
|
29786
|
+
*/
|
|
29787
|
+
service_manager_uuid?: string;
|
|
29788
|
+
shared?: boolean;
|
|
29789
|
+
state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused'>;
|
|
29790
|
+
type?: Array<string>;
|
|
29791
|
+
/**
|
|
29792
|
+
* User Has Consent
|
|
29793
|
+
*/
|
|
29794
|
+
user_has_consent?: boolean;
|
|
29795
|
+
/**
|
|
29796
|
+
* User Has Offering User
|
|
29797
|
+
*/
|
|
29798
|
+
user_has_offering_user?: boolean;
|
|
29799
|
+
/**
|
|
29800
|
+
* Comma-separated offering UUIDs
|
|
29801
|
+
*/
|
|
29802
|
+
uuid_list?: string;
|
|
29543
29803
|
};
|
|
29544
29804
|
url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
|
|
29545
29805
|
};
|
|
29546
|
-
export type
|
|
29547
|
-
200:
|
|
29806
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponses = {
|
|
29807
|
+
200: Array<ProjectServiceAccount>;
|
|
29548
29808
|
};
|
|
29549
|
-
export type
|
|
29809
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponse = MarketplaceProviderOfferingsListProjectServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListProjectServiceAccountsListResponses];
|
|
29550
29810
|
export type MarketplaceProviderOfferingsListUsersListData = {
|
|
29551
29811
|
body?: never;
|
|
29552
29812
|
path: {
|
|
@@ -29626,7 +29886,7 @@ export type MarketplaceProviderOfferingsOrdersListData = {
|
|
|
29626
29886
|
uuid: string;
|
|
29627
29887
|
};
|
|
29628
29888
|
query?: {
|
|
29629
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
29889
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
29630
29890
|
/**
|
|
29631
29891
|
* A page number within the paginated result set.
|
|
29632
29892
|
*/
|
|
@@ -29705,8 +29965,9 @@ export type MarketplaceProviderOfferingsRemovePartitionResponses = {
|
|
|
29705
29965
|
/**
|
|
29706
29966
|
* No response body
|
|
29707
29967
|
*/
|
|
29708
|
-
|
|
29968
|
+
204: void;
|
|
29709
29969
|
};
|
|
29970
|
+
export type MarketplaceProviderOfferingsRemovePartitionResponse = MarketplaceProviderOfferingsRemovePartitionResponses[keyof MarketplaceProviderOfferingsRemovePartitionResponses];
|
|
29710
29971
|
export type MarketplaceProviderOfferingsRemoveSoftwareCatalogData = {
|
|
29711
29972
|
body: RemoveSoftwareCatalogRequest;
|
|
29712
29973
|
path: {
|
|
@@ -29719,8 +29980,9 @@ export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses = {
|
|
|
29719
29980
|
/**
|
|
29720
29981
|
* No response body
|
|
29721
29982
|
*/
|
|
29722
|
-
|
|
29983
|
+
204: void;
|
|
29723
29984
|
};
|
|
29985
|
+
export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponse = MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses[keyof MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses];
|
|
29724
29986
|
export type MarketplaceProviderOfferingsSetBackendMetadataData = {
|
|
29725
29987
|
body?: OfferingBackendMetadataRequest;
|
|
29726
29988
|
path: {
|
|
@@ -29740,13 +30002,14 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
|
|
|
29740
30002
|
path: {
|
|
29741
30003
|
uuid: string;
|
|
29742
30004
|
};
|
|
29743
|
-
query?:
|
|
29744
|
-
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'>;
|
|
29745
|
-
};
|
|
30005
|
+
query?: never;
|
|
29746
30006
|
url: '/api/marketplace-provider-offerings/{uuid}/stats/';
|
|
29747
30007
|
};
|
|
29748
30008
|
export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
|
|
29749
|
-
200:
|
|
30009
|
+
200: {
|
|
30010
|
+
resources_count?: number;
|
|
30011
|
+
customers_count?: number;
|
|
30012
|
+
};
|
|
29750
30013
|
};
|
|
29751
30014
|
export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
|
|
29752
30015
|
export type MarketplaceProviderOfferingsSyncData = {
|
|
@@ -29761,7 +30024,7 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
29761
30024
|
/**
|
|
29762
30025
|
* No response body
|
|
29763
30026
|
*/
|
|
29764
|
-
|
|
30027
|
+
202: unknown;
|
|
29765
30028
|
};
|
|
29766
30029
|
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
29767
30030
|
body?: never;
|
|
@@ -29840,9 +30103,11 @@ export type MarketplaceProviderOfferingsUpdateImageData = {
|
|
|
29840
30103
|
url: '/api/marketplace-provider-offerings/{uuid}/update_image/';
|
|
29841
30104
|
};
|
|
29842
30105
|
export type MarketplaceProviderOfferingsUpdateImageResponses = {
|
|
29843
|
-
|
|
30106
|
+
/**
|
|
30107
|
+
* No response body
|
|
30108
|
+
*/
|
|
30109
|
+
200: unknown;
|
|
29844
30110
|
};
|
|
29845
|
-
export type MarketplaceProviderOfferingsUpdateImageResponse = MarketplaceProviderOfferingsUpdateImageResponses[keyof MarketplaceProviderOfferingsUpdateImageResponses];
|
|
29846
30111
|
export type MarketplaceProviderOfferingsUpdateIntegrationData = {
|
|
29847
30112
|
body?: OfferingIntegrationUpdateRequest;
|
|
29848
30113
|
path: {
|
|
@@ -30493,13 +30758,17 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
|
|
|
30493
30758
|
path: {
|
|
30494
30759
|
uuid: string;
|
|
30495
30760
|
};
|
|
30496
|
-
query?:
|
|
30497
|
-
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'>;
|
|
30498
|
-
};
|
|
30761
|
+
query?: never;
|
|
30499
30762
|
url: '/api/marketplace-provider-resources/{uuid}/details/';
|
|
30500
30763
|
};
|
|
30764
|
+
export type MarketplaceProviderResourcesDetailsRetrieveErrors = {
|
|
30765
|
+
404: unknown;
|
|
30766
|
+
};
|
|
30501
30767
|
export type MarketplaceProviderResourcesDetailsRetrieveResponses = {
|
|
30502
|
-
200:
|
|
30768
|
+
200: {
|
|
30769
|
+
[key: string]: unknown;
|
|
30770
|
+
};
|
|
30771
|
+
204: unknown;
|
|
30503
30772
|
};
|
|
30504
30773
|
export type MarketplaceProviderResourcesDetailsRetrieveResponse = MarketplaceProviderResourcesDetailsRetrieveResponses[keyof MarketplaceProviderResourcesDetailsRetrieveResponses];
|
|
30505
30774
|
export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveData = {
|
|
@@ -30571,8 +30840,8 @@ export type MarketplaceProviderResourcesPullData = {
|
|
|
30571
30840
|
url: '/api/marketplace-provider-resources/{uuid}/pull/';
|
|
30572
30841
|
};
|
|
30573
30842
|
export type MarketplaceProviderResourcesPullResponses = {
|
|
30574
|
-
|
|
30575
|
-
|
|
30843
|
+
202: {
|
|
30844
|
+
detail?: string;
|
|
30576
30845
|
};
|
|
30577
30846
|
};
|
|
30578
30847
|
export type MarketplaceProviderResourcesPullResponse = MarketplaceProviderResourcesPullResponses[keyof MarketplaceProviderResourcesPullResponses];
|
|
@@ -30651,11 +30920,11 @@ export type MarketplaceProviderResourcesSetDownscaledData = {
|
|
|
30651
30920
|
url: '/api/marketplace-provider-resources/{uuid}/set_downscaled/';
|
|
30652
30921
|
};
|
|
30653
30922
|
export type MarketplaceProviderResourcesSetDownscaledResponses = {
|
|
30654
|
-
|
|
30655
|
-
|
|
30656
|
-
|
|
30657
|
-
200: unknown;
|
|
30923
|
+
200: {
|
|
30924
|
+
status?: string;
|
|
30925
|
+
};
|
|
30658
30926
|
};
|
|
30927
|
+
export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
|
|
30659
30928
|
export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
30660
30929
|
body?: ResourceEndDateByProviderRequest;
|
|
30661
30930
|
path: {
|
|
@@ -30665,9 +30934,11 @@ export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
|
30665
30934
|
url: '/api/marketplace-provider-resources/{uuid}/set_end_date_by_provider/';
|
|
30666
30935
|
};
|
|
30667
30936
|
export type MarketplaceProviderResourcesSetEndDateByProviderResponses = {
|
|
30668
|
-
|
|
30937
|
+
/**
|
|
30938
|
+
* No response body
|
|
30939
|
+
*/
|
|
30940
|
+
200: unknown;
|
|
30669
30941
|
};
|
|
30670
|
-
export type MarketplaceProviderResourcesSetEndDateByProviderResponse = MarketplaceProviderResourcesSetEndDateByProviderResponses[keyof MarketplaceProviderResourcesSetEndDateByProviderResponses];
|
|
30671
30942
|
export type MarketplaceProviderResourcesSetEndDateByStaffData = {
|
|
30672
30943
|
body?: ResourceEndDateByProviderRequest;
|
|
30673
30944
|
path: {
|
|
@@ -30703,11 +30974,11 @@ export type MarketplaceProviderResourcesSetPausedData = {
|
|
|
30703
30974
|
url: '/api/marketplace-provider-resources/{uuid}/set_paused/';
|
|
30704
30975
|
};
|
|
30705
30976
|
export type MarketplaceProviderResourcesSetPausedResponses = {
|
|
30706
|
-
|
|
30707
|
-
|
|
30708
|
-
|
|
30709
|
-
200: unknown;
|
|
30977
|
+
200: {
|
|
30978
|
+
status?: string;
|
|
30979
|
+
};
|
|
30710
30980
|
};
|
|
30981
|
+
export type MarketplaceProviderResourcesSetPausedResponse = MarketplaceProviderResourcesSetPausedResponses[keyof MarketplaceProviderResourcesSetPausedResponses];
|
|
30711
30982
|
export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
30712
30983
|
body?: ResourceRestrictMemberAccessRequest;
|
|
30713
30984
|
path: {
|
|
@@ -30717,11 +30988,11 @@ export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
|
30717
30988
|
url: '/api/marketplace-provider-resources/{uuid}/set_restrict_member_access/';
|
|
30718
30989
|
};
|
|
30719
30990
|
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponses = {
|
|
30720
|
-
|
|
30721
|
-
|
|
30722
|
-
|
|
30723
|
-
200: unknown;
|
|
30991
|
+
200: {
|
|
30992
|
+
status?: string;
|
|
30993
|
+
};
|
|
30724
30994
|
};
|
|
30995
|
+
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponse = MarketplaceProviderResourcesSetRestrictMemberAccessResponses[keyof MarketplaceProviderResourcesSetRestrictMemberAccessResponses];
|
|
30725
30996
|
export type MarketplaceProviderResourcesSetSlugData = {
|
|
30726
30997
|
body: ResourceSlugRequest;
|
|
30727
30998
|
path: {
|
|
@@ -30731,11 +31002,11 @@ export type MarketplaceProviderResourcesSetSlugData = {
|
|
|
30731
31002
|
url: '/api/marketplace-provider-resources/{uuid}/set_slug/';
|
|
30732
31003
|
};
|
|
30733
31004
|
export type MarketplaceProviderResourcesSetSlugResponses = {
|
|
30734
|
-
|
|
30735
|
-
|
|
30736
|
-
|
|
30737
|
-
200: unknown;
|
|
31005
|
+
200: {
|
|
31006
|
+
status?: string;
|
|
31007
|
+
};
|
|
30738
31008
|
};
|
|
31009
|
+
export type MarketplaceProviderResourcesSetSlugResponse = MarketplaceProviderResourcesSetSlugResponses[keyof MarketplaceProviderResourcesSetSlugResponses];
|
|
30739
31010
|
export type MarketplaceProviderResourcesSubmitReportData = {
|
|
30740
31011
|
body: ResourceReportRequest;
|
|
30741
31012
|
path: {
|
|
@@ -30780,12 +31051,19 @@ export type MarketplaceProviderResourcesUnlinkData = {
|
|
|
30780
31051
|
query?: never;
|
|
30781
31052
|
url: '/api/marketplace-provider-resources/{uuid}/unlink/';
|
|
30782
31053
|
};
|
|
31054
|
+
export type MarketplaceProviderResourcesUnlinkErrors = {
|
|
31055
|
+
/**
|
|
31056
|
+
* No response body
|
|
31057
|
+
*/
|
|
31058
|
+
403: unknown;
|
|
31059
|
+
};
|
|
30783
31060
|
export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
30784
31061
|
/**
|
|
30785
31062
|
* No response body
|
|
30786
31063
|
*/
|
|
30787
|
-
|
|
31064
|
+
204: void;
|
|
30788
31065
|
};
|
|
31066
|
+
export type MarketplaceProviderResourcesUnlinkResponse = MarketplaceProviderResourcesUnlinkResponses[keyof MarketplaceProviderResourcesUnlinkResponses];
|
|
30789
31067
|
export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
30790
31068
|
body?: ResourceOptionsRequest;
|
|
30791
31069
|
path: {
|
|
@@ -30796,6 +31074,7 @@ export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
|
30796
31074
|
};
|
|
30797
31075
|
export type MarketplaceProviderResourcesUpdateOptionsResponses = {
|
|
30798
31076
|
200: ResourceResponseStatus;
|
|
31077
|
+
201: OrderUuid;
|
|
30799
31078
|
};
|
|
30800
31079
|
export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
|
|
30801
31080
|
export type MarketplaceProviderResourcesUpdateOptionsDirectData = {
|
|
@@ -30817,9 +31096,11 @@ export type MarketplacePublicApiCheckSignatureData = {
|
|
|
30817
31096
|
url: '/api/marketplace-public-api/check_signature/';
|
|
30818
31097
|
};
|
|
30819
31098
|
export type MarketplacePublicApiCheckSignatureResponses = {
|
|
30820
|
-
|
|
31099
|
+
/**
|
|
31100
|
+
* No response body
|
|
31101
|
+
*/
|
|
31102
|
+
200: unknown;
|
|
30821
31103
|
};
|
|
30822
|
-
export type MarketplacePublicApiCheckSignatureResponse = MarketplacePublicApiCheckSignatureResponses[keyof MarketplacePublicApiCheckSignatureResponses];
|
|
30823
31104
|
export type MarketplacePublicApiSetUsageData = {
|
|
30824
31105
|
body: ServiceProviderSignatureRequest;
|
|
30825
31106
|
path?: never;
|
|
@@ -30827,9 +31108,11 @@ export type MarketplacePublicApiSetUsageData = {
|
|
|
30827
31108
|
url: '/api/marketplace-public-api/set_usage/';
|
|
30828
31109
|
};
|
|
30829
31110
|
export type MarketplacePublicApiSetUsageResponses = {
|
|
30830
|
-
|
|
31111
|
+
/**
|
|
31112
|
+
* No response body
|
|
31113
|
+
*/
|
|
31114
|
+
201: unknown;
|
|
30831
31115
|
};
|
|
30832
|
-
export type MarketplacePublicApiSetUsageResponse = MarketplacePublicApiSetUsageResponses[keyof MarketplacePublicApiSetUsageResponses];
|
|
30833
31116
|
export type MarketplacePublicOfferingsListData = {
|
|
30834
31117
|
body?: never;
|
|
30835
31118
|
path?: never;
|
|
@@ -31600,13 +31883,17 @@ export type MarketplaceResourcesDetailsRetrieveData = {
|
|
|
31600
31883
|
path: {
|
|
31601
31884
|
uuid: string;
|
|
31602
31885
|
};
|
|
31603
|
-
query?:
|
|
31604
|
-
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'>;
|
|
31605
|
-
};
|
|
31886
|
+
query?: never;
|
|
31606
31887
|
url: '/api/marketplace-resources/{uuid}/details/';
|
|
31607
31888
|
};
|
|
31889
|
+
export type MarketplaceResourcesDetailsRetrieveErrors = {
|
|
31890
|
+
404: unknown;
|
|
31891
|
+
};
|
|
31608
31892
|
export type MarketplaceResourcesDetailsRetrieveResponses = {
|
|
31609
|
-
200:
|
|
31893
|
+
200: {
|
|
31894
|
+
[key: string]: unknown;
|
|
31895
|
+
};
|
|
31896
|
+
204: unknown;
|
|
31610
31897
|
};
|
|
31611
31898
|
export type MarketplaceResourcesDetailsRetrieveResponse = MarketplaceResourcesDetailsRetrieveResponses[keyof MarketplaceResourcesDetailsRetrieveResponses];
|
|
31612
31899
|
export type MarketplaceResourcesGlauthUsersConfigRetrieveData = {
|
|
@@ -31678,11 +31965,23 @@ export type MarketplaceResourcesPullData = {
|
|
|
31678
31965
|
url: '/api/marketplace-resources/{uuid}/pull/';
|
|
31679
31966
|
};
|
|
31680
31967
|
export type MarketplaceResourcesPullResponses = {
|
|
31681
|
-
|
|
31682
|
-
|
|
31968
|
+
202: {
|
|
31969
|
+
detail?: string;
|
|
31683
31970
|
};
|
|
31684
31971
|
};
|
|
31685
31972
|
export type MarketplaceResourcesPullResponse = MarketplaceResourcesPullResponses[keyof MarketplaceResourcesPullResponses];
|
|
31973
|
+
export type MarketplaceResourcesReallocateLimitsData = {
|
|
31974
|
+
body: ResourceReallocateLimitsRequest;
|
|
31975
|
+
path: {
|
|
31976
|
+
uuid: string;
|
|
31977
|
+
};
|
|
31978
|
+
query?: never;
|
|
31979
|
+
url: '/api/marketplace-resources/{uuid}/reallocate_limits/';
|
|
31980
|
+
};
|
|
31981
|
+
export type MarketplaceResourcesReallocateLimitsResponses = {
|
|
31982
|
+
200: ResourceReallocateLimitsResponse;
|
|
31983
|
+
};
|
|
31984
|
+
export type MarketplaceResourcesReallocateLimitsResponse = MarketplaceResourcesReallocateLimitsResponses[keyof MarketplaceResourcesReallocateLimitsResponses];
|
|
31686
31985
|
export type MarketplaceResourcesRenewData = {
|
|
31687
31986
|
body: ResourceRenewRequest;
|
|
31688
31987
|
path: {
|
|
@@ -31704,11 +32003,11 @@ export type MarketplaceResourcesSetDownscaledData = {
|
|
|
31704
32003
|
url: '/api/marketplace-resources/{uuid}/set_downscaled/';
|
|
31705
32004
|
};
|
|
31706
32005
|
export type MarketplaceResourcesSetDownscaledResponses = {
|
|
31707
|
-
|
|
31708
|
-
|
|
31709
|
-
|
|
31710
|
-
200: unknown;
|
|
32006
|
+
200: {
|
|
32007
|
+
status?: string;
|
|
32008
|
+
};
|
|
31711
32009
|
};
|
|
32010
|
+
export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
|
|
31712
32011
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
31713
32012
|
body?: ResourceEndDateByProviderRequest;
|
|
31714
32013
|
path: {
|
|
@@ -31732,11 +32031,11 @@ export type MarketplaceResourcesSetPausedData = {
|
|
|
31732
32031
|
url: '/api/marketplace-resources/{uuid}/set_paused/';
|
|
31733
32032
|
};
|
|
31734
32033
|
export type MarketplaceResourcesSetPausedResponses = {
|
|
31735
|
-
|
|
31736
|
-
|
|
31737
|
-
|
|
31738
|
-
200: unknown;
|
|
32034
|
+
200: {
|
|
32035
|
+
status?: string;
|
|
32036
|
+
};
|
|
31739
32037
|
};
|
|
32038
|
+
export type MarketplaceResourcesSetPausedResponse = MarketplaceResourcesSetPausedResponses[keyof MarketplaceResourcesSetPausedResponses];
|
|
31740
32039
|
export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
31741
32040
|
body?: ResourceRestrictMemberAccessRequest;
|
|
31742
32041
|
path: {
|
|
@@ -31746,11 +32045,11 @@ export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
|
31746
32045
|
url: '/api/marketplace-resources/{uuid}/set_restrict_member_access/';
|
|
31747
32046
|
};
|
|
31748
32047
|
export type MarketplaceResourcesSetRestrictMemberAccessResponses = {
|
|
31749
|
-
|
|
31750
|
-
|
|
31751
|
-
|
|
31752
|
-
200: unknown;
|
|
32048
|
+
200: {
|
|
32049
|
+
status?: string;
|
|
32050
|
+
};
|
|
31753
32051
|
};
|
|
32052
|
+
export type MarketplaceResourcesSetRestrictMemberAccessResponse = MarketplaceResourcesSetRestrictMemberAccessResponses[keyof MarketplaceResourcesSetRestrictMemberAccessResponses];
|
|
31754
32053
|
export type MarketplaceResourcesSetSlugData = {
|
|
31755
32054
|
body: ResourceSlugRequest;
|
|
31756
32055
|
path: {
|
|
@@ -31760,11 +32059,11 @@ export type MarketplaceResourcesSetSlugData = {
|
|
|
31760
32059
|
url: '/api/marketplace-resources/{uuid}/set_slug/';
|
|
31761
32060
|
};
|
|
31762
32061
|
export type MarketplaceResourcesSetSlugResponses = {
|
|
31763
|
-
|
|
31764
|
-
|
|
31765
|
-
|
|
31766
|
-
200: unknown;
|
|
32062
|
+
200: {
|
|
32063
|
+
status?: string;
|
|
32064
|
+
};
|
|
31767
32065
|
};
|
|
32066
|
+
export type MarketplaceResourcesSetSlugResponse = MarketplaceResourcesSetSlugResponses[keyof MarketplaceResourcesSetSlugResponses];
|
|
31768
32067
|
export type MarketplaceResourcesSwitchPlanData = {
|
|
31769
32068
|
body: ResourceSwitchPlanRequest;
|
|
31770
32069
|
path: {
|
|
@@ -31809,12 +32108,19 @@ export type MarketplaceResourcesUnlinkData = {
|
|
|
31809
32108
|
query?: never;
|
|
31810
32109
|
url: '/api/marketplace-resources/{uuid}/unlink/';
|
|
31811
32110
|
};
|
|
32111
|
+
export type MarketplaceResourcesUnlinkErrors = {
|
|
32112
|
+
/**
|
|
32113
|
+
* No response body
|
|
32114
|
+
*/
|
|
32115
|
+
403: unknown;
|
|
32116
|
+
};
|
|
31812
32117
|
export type MarketplaceResourcesUnlinkResponses = {
|
|
31813
32118
|
/**
|
|
31814
32119
|
* No response body
|
|
31815
32120
|
*/
|
|
31816
|
-
|
|
32121
|
+
204: void;
|
|
31817
32122
|
};
|
|
32123
|
+
export type MarketplaceResourcesUnlinkResponse = MarketplaceResourcesUnlinkResponses[keyof MarketplaceResourcesUnlinkResponses];
|
|
31818
32124
|
export type MarketplaceResourcesUpdateLimitsData = {
|
|
31819
32125
|
body: ResourceUpdateLimitsRequest;
|
|
31820
32126
|
path: {
|
|
@@ -31837,6 +32143,7 @@ export type MarketplaceResourcesUpdateOptionsData = {
|
|
|
31837
32143
|
};
|
|
31838
32144
|
export type MarketplaceResourcesUpdateOptionsResponses = {
|
|
31839
32145
|
200: ResourceResponseStatus;
|
|
32146
|
+
201: OrderUuid;
|
|
31840
32147
|
};
|
|
31841
32148
|
export type MarketplaceResourcesUpdateOptionsResponse = MarketplaceResourcesUpdateOptionsResponses[keyof MarketplaceResourcesUpdateOptionsResponses];
|
|
31842
32149
|
export type MarketplaceResourcesSuggestNameData = {
|
|
@@ -31846,7 +32153,9 @@ export type MarketplaceResourcesSuggestNameData = {
|
|
|
31846
32153
|
url: '/api/marketplace-resources/suggest_name/';
|
|
31847
32154
|
};
|
|
31848
32155
|
export type MarketplaceResourcesSuggestNameResponses = {
|
|
31849
|
-
200:
|
|
32156
|
+
200: {
|
|
32157
|
+
name?: string;
|
|
32158
|
+
};
|
|
31850
32159
|
};
|
|
31851
32160
|
export type MarketplaceResourcesSuggestNameResponse = MarketplaceResourcesSuggestNameResponses[keyof MarketplaceResourcesSuggestNameResponses];
|
|
31852
32161
|
export type MarketplaceRobotAccountsListData = {
|
|
@@ -32007,6 +32316,10 @@ export type MarketplaceRobotAccountsSetStateDeletedData = {
|
|
|
32007
32316
|
query?: never;
|
|
32008
32317
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_deleted/';
|
|
32009
32318
|
};
|
|
32319
|
+
export type MarketplaceRobotAccountsSetStateDeletedErrors = {
|
|
32320
|
+
400: StateTransitionError;
|
|
32321
|
+
};
|
|
32322
|
+
export type MarketplaceRobotAccountsSetStateDeletedError = MarketplaceRobotAccountsSetStateDeletedErrors[keyof MarketplaceRobotAccountsSetStateDeletedErrors];
|
|
32010
32323
|
export type MarketplaceRobotAccountsSetStateDeletedResponses = {
|
|
32011
32324
|
200: RobotAccountDetails;
|
|
32012
32325
|
};
|
|
@@ -32019,6 +32332,10 @@ export type MarketplaceRobotAccountsSetStateErredData = {
|
|
|
32019
32332
|
query?: never;
|
|
32020
32333
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_erred/';
|
|
32021
32334
|
};
|
|
32335
|
+
export type MarketplaceRobotAccountsSetStateErredErrors = {
|
|
32336
|
+
400: StateTransitionError;
|
|
32337
|
+
};
|
|
32338
|
+
export type MarketplaceRobotAccountsSetStateErredError = MarketplaceRobotAccountsSetStateErredErrors[keyof MarketplaceRobotAccountsSetStateErredErrors];
|
|
32022
32339
|
export type MarketplaceRobotAccountsSetStateErredResponses = {
|
|
32023
32340
|
200: RobotAccountDetails;
|
|
32024
32341
|
};
|
|
@@ -32031,6 +32348,10 @@ export type MarketplaceRobotAccountsSetStateOkData = {
|
|
|
32031
32348
|
query?: never;
|
|
32032
32349
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_ok/';
|
|
32033
32350
|
};
|
|
32351
|
+
export type MarketplaceRobotAccountsSetStateOkErrors = {
|
|
32352
|
+
400: StateTransitionError;
|
|
32353
|
+
};
|
|
32354
|
+
export type MarketplaceRobotAccountsSetStateOkError = MarketplaceRobotAccountsSetStateOkErrors[keyof MarketplaceRobotAccountsSetStateOkErrors];
|
|
32034
32355
|
export type MarketplaceRobotAccountsSetStateOkResponses = {
|
|
32035
32356
|
200: RobotAccountDetails;
|
|
32036
32357
|
};
|
|
@@ -32043,6 +32364,10 @@ export type MarketplaceRobotAccountsSetStateRequestDeletionData = {
|
|
|
32043
32364
|
query?: never;
|
|
32044
32365
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_request_deletion/';
|
|
32045
32366
|
};
|
|
32367
|
+
export type MarketplaceRobotAccountsSetStateRequestDeletionErrors = {
|
|
32368
|
+
400: StateTransitionError;
|
|
32369
|
+
};
|
|
32370
|
+
export type MarketplaceRobotAccountsSetStateRequestDeletionError = MarketplaceRobotAccountsSetStateRequestDeletionErrors[keyof MarketplaceRobotAccountsSetStateRequestDeletionErrors];
|
|
32046
32371
|
export type MarketplaceRobotAccountsSetStateRequestDeletionResponses = {
|
|
32047
32372
|
200: RobotAccountDetails;
|
|
32048
32373
|
};
|
|
@@ -32052,11 +32377,11 @@ export type MarketplaceRuntimeStatesListData = {
|
|
|
32052
32377
|
path?: never;
|
|
32053
32378
|
query?: {
|
|
32054
32379
|
/**
|
|
32055
|
-
*
|
|
32380
|
+
* Filter runtime states by resources belonging to a specific category.
|
|
32056
32381
|
*/
|
|
32057
32382
|
category_uuid?: string;
|
|
32058
32383
|
/**
|
|
32059
|
-
*
|
|
32384
|
+
* Filter runtime states by resources within a specific project.
|
|
32060
32385
|
*/
|
|
32061
32386
|
project_uuid?: string;
|
|
32062
32387
|
};
|
|
@@ -32524,11 +32849,11 @@ export type ServiceProviderOfferingUsersComplianceData = {
|
|
|
32524
32849
|
};
|
|
32525
32850
|
query?: {
|
|
32526
32851
|
/**
|
|
32527
|
-
* Filter by compliance status: completed, pending, no_checklist
|
|
32852
|
+
* Filter by compliance status: completed, pending, no_checklist.
|
|
32528
32853
|
*/
|
|
32529
32854
|
compliance_status?: string;
|
|
32530
32855
|
/**
|
|
32531
|
-
* Filter by offering UUID
|
|
32856
|
+
* Filter by offering UUID.
|
|
32532
32857
|
*/
|
|
32533
32858
|
offering_uuid?: string;
|
|
32534
32859
|
/**
|
|
@@ -32586,7 +32911,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
32586
32911
|
path: {
|
|
32587
32912
|
service_provider_uuid: string;
|
|
32588
32913
|
};
|
|
32589
|
-
query
|
|
32914
|
+
query: {
|
|
32590
32915
|
backend_id?: string;
|
|
32591
32916
|
/**
|
|
32592
32917
|
* Return a list of projects where current user is admin.
|
|
@@ -32634,6 +32959,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
32634
32959
|
* Number of results to return per page.
|
|
32635
32960
|
*/
|
|
32636
32961
|
page_size?: number;
|
|
32962
|
+
/**
|
|
32963
|
+
* UUID of the customer to filter projects by.
|
|
32964
|
+
*/
|
|
32965
|
+
project_customer_uuid: string;
|
|
32637
32966
|
/**
|
|
32638
32967
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
32639
32968
|
*/
|
|
@@ -33039,7 +33368,7 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
33039
33368
|
query?: string;
|
|
33040
33369
|
registration_code?: string;
|
|
33041
33370
|
/**
|
|
33042
|
-
* UUID of user to get related customers for
|
|
33371
|
+
* UUID of the user to get related customers for.
|
|
33043
33372
|
*/
|
|
33044
33373
|
user_uuid: string;
|
|
33045
33374
|
};
|
|
@@ -33324,6 +33653,9 @@ export type MarketplaceServiceProvidersRobotAccountCustomersListData = {
|
|
|
33324
33653
|
uuid: string;
|
|
33325
33654
|
};
|
|
33326
33655
|
query?: {
|
|
33656
|
+
/**
|
|
33657
|
+
* Filter by customer name (case-insensitive partial match).
|
|
33658
|
+
*/
|
|
33327
33659
|
customer_name?: string;
|
|
33328
33660
|
/**
|
|
33329
33661
|
* A page number within the paginated result set.
|
|
@@ -33354,6 +33686,9 @@ export type MarketplaceServiceProvidersRobotAccountProjectsListData = {
|
|
|
33354
33686
|
* Number of results to return per page.
|
|
33355
33687
|
*/
|
|
33356
33688
|
page_size?: number;
|
|
33689
|
+
/**
|
|
33690
|
+
* Filter by project name (case-insensitive partial match).
|
|
33691
|
+
*/
|
|
33357
33692
|
project_name?: string;
|
|
33358
33693
|
};
|
|
33359
33694
|
url: '/api/marketplace-service-providers/{uuid}/robot_account_projects/';
|
|
@@ -36167,7 +36502,7 @@ export type OnboardingVerificationsCreateCustomerResponses = {
|
|
|
36167
36502
|
};
|
|
36168
36503
|
export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
|
|
36169
36504
|
export type OnboardingVerificationsRunValidationData = {
|
|
36170
|
-
body?:
|
|
36505
|
+
body?: OnboardingRunValidationRequestRequest;
|
|
36171
36506
|
path: {
|
|
36172
36507
|
uuid: string;
|
|
36173
36508
|
};
|
|
@@ -40812,7 +41147,7 @@ export type OpenstackTenantsListData = {
|
|
|
40812
41147
|
customer_uuid?: string;
|
|
40813
41148
|
description?: string;
|
|
40814
41149
|
external_ip?: string;
|
|
40815
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
41150
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
40816
41151
|
name?: string;
|
|
40817
41152
|
name_exact?: string;
|
|
40818
41153
|
/**
|
|
@@ -40910,7 +41245,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
40910
41245
|
uuid: string;
|
|
40911
41246
|
};
|
|
40912
41247
|
query?: {
|
|
40913
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
41248
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
40914
41249
|
};
|
|
40915
41250
|
url: '/api/openstack-tenants/{uuid}/';
|
|
40916
41251
|
};
|
|
@@ -41160,6 +41495,20 @@ export type OpenstackTenantsPullServerGroupsResponses = {
|
|
|
41160
41495
|
200: OpenStackTenant;
|
|
41161
41496
|
};
|
|
41162
41497
|
export type OpenstackTenantsPullServerGroupsResponse = OpenstackTenantsPullServerGroupsResponses[keyof OpenstackTenantsPullServerGroupsResponses];
|
|
41498
|
+
export type OpenstackTenantsPushSecurityGroupsData = {
|
|
41499
|
+
body: Array<TenantSecurityGroupUpdateRequest>;
|
|
41500
|
+
path: {
|
|
41501
|
+
uuid: string;
|
|
41502
|
+
};
|
|
41503
|
+
query?: never;
|
|
41504
|
+
url: '/api/openstack-tenants/{uuid}/push_security_groups/';
|
|
41505
|
+
};
|
|
41506
|
+
export type OpenstackTenantsPushSecurityGroupsResponses = {
|
|
41507
|
+
/**
|
|
41508
|
+
* No response body
|
|
41509
|
+
*/
|
|
41510
|
+
200: unknown;
|
|
41511
|
+
};
|
|
41163
41512
|
export type OpenstackTenantsSetQuotasData = {
|
|
41164
41513
|
body?: OpenStackTenantQuotaRequest;
|
|
41165
41514
|
path: {
|
|
@@ -42997,7 +43346,7 @@ export type PromotionsCampaignsOrdersListData = {
|
|
|
42997
43346
|
uuid: string;
|
|
42998
43347
|
};
|
|
42999
43348
|
query?: {
|
|
43000
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
43349
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
43001
43350
|
/**
|
|
43002
43351
|
* A page number within the paginated result set.
|
|
43003
43352
|
*/
|