waldur-js-client 7.8.8-dev.8 → 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 +1949 -126
- package/dist/sdk.gen.js +1982 -117
- package/dist/types.gen.d.ts +696 -371
- 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];
|
|
@@ -19393,13 +19337,10 @@ export type CallManagingOrganisationsAddUserData = {
|
|
|
19393
19337
|
};
|
|
19394
19338
|
export type CallManagingOrganisationsAddUserErrors = {
|
|
19395
19339
|
/**
|
|
19396
|
-
* Validation error when trying to add user to terminated project
|
|
19340
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
19397
19341
|
*/
|
|
19398
|
-
400:
|
|
19399
|
-
non_field_errors?: Array<string>;
|
|
19400
|
-
};
|
|
19342
|
+
400: unknown;
|
|
19401
19343
|
};
|
|
19402
|
-
export type CallManagingOrganisationsAddUserError = CallManagingOrganisationsAddUserErrors[keyof CallManagingOrganisationsAddUserErrors];
|
|
19403
19344
|
export type CallManagingOrganisationsAddUserResponses = {
|
|
19404
19345
|
201: UserRoleExpirationTime;
|
|
19405
19346
|
};
|
|
@@ -19414,7 +19355,7 @@ export type CallManagingOrganisationsDeleteUserData = {
|
|
|
19414
19355
|
};
|
|
19415
19356
|
export type CallManagingOrganisationsDeleteUserResponses = {
|
|
19416
19357
|
/**
|
|
19417
|
-
*
|
|
19358
|
+
* Role revoked successfully.
|
|
19418
19359
|
*/
|
|
19419
19360
|
200: unknown;
|
|
19420
19361
|
};
|
|
@@ -21048,13 +20989,10 @@ export type CustomersAddUserData = {
|
|
|
21048
20989
|
};
|
|
21049
20990
|
export type CustomersAddUserErrors = {
|
|
21050
20991
|
/**
|
|
21051
|
-
* Validation error when trying to add user to terminated project
|
|
20992
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
21052
20993
|
*/
|
|
21053
|
-
400:
|
|
21054
|
-
non_field_errors?: Array<string>;
|
|
21055
|
-
};
|
|
20994
|
+
400: unknown;
|
|
21056
20995
|
};
|
|
21057
|
-
export type CustomersAddUserError = CustomersAddUserErrors[keyof CustomersAddUserErrors];
|
|
21058
20996
|
export type CustomersAddUserResponses = {
|
|
21059
20997
|
201: UserRoleExpirationTime;
|
|
21060
20998
|
};
|
|
@@ -21069,7 +21007,7 @@ export type CustomersDeleteUserData = {
|
|
|
21069
21007
|
};
|
|
21070
21008
|
export type CustomersDeleteUserResponses = {
|
|
21071
21009
|
/**
|
|
21072
|
-
*
|
|
21010
|
+
* Role revoked successfully.
|
|
21073
21011
|
*/
|
|
21074
21012
|
200: unknown;
|
|
21075
21013
|
};
|
|
@@ -25554,11 +25492,34 @@ export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccount
|
|
|
25554
25492
|
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
25555
25493
|
body: CourseAccountsBulkCreateRequest;
|
|
25556
25494
|
path?: never;
|
|
25557
|
-
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
|
+
};
|
|
25558
25519
|
url: '/api/marketplace-course-accounts/create_bulk/';
|
|
25559
25520
|
};
|
|
25560
25521
|
export type MarketplaceCourseAccountsCreateBulkResponses = {
|
|
25561
|
-
200:
|
|
25522
|
+
200: Array<CourseAccount>;
|
|
25562
25523
|
};
|
|
25563
25524
|
export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
|
|
25564
25525
|
export type MarketplaceCustomerComponentUsagePoliciesListData = {
|
|
@@ -25951,11 +25912,11 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
|
25951
25912
|
path?: never;
|
|
25952
25913
|
query?: {
|
|
25953
25914
|
/**
|
|
25954
|
-
*
|
|
25915
|
+
* Filter counts by resources within a specific customer.
|
|
25955
25916
|
*/
|
|
25956
25917
|
customer_uuid?: string;
|
|
25957
25918
|
/**
|
|
25958
|
-
*
|
|
25919
|
+
* Filter counts by resources within a specific project.
|
|
25959
25920
|
*/
|
|
25960
25921
|
project_uuid?: string;
|
|
25961
25922
|
};
|
|
@@ -25963,7 +25924,7 @@ export type MarketplaceGlobalCategoriesRetrieveData = {
|
|
|
25963
25924
|
};
|
|
25964
25925
|
export type MarketplaceGlobalCategoriesRetrieveResponses = {
|
|
25965
25926
|
200: {
|
|
25966
|
-
[key: string]:
|
|
25927
|
+
[key: string]: unknown;
|
|
25967
25928
|
};
|
|
25968
25929
|
};
|
|
25969
25930
|
export type MarketplaceGlobalCategoriesRetrieveResponse = MarketplaceGlobalCategoriesRetrieveResponses[keyof MarketplaceGlobalCategoriesRetrieveResponses];
|
|
@@ -27642,7 +27603,7 @@ export type MarketplaceOrdersListData = {
|
|
|
27642
27603
|
*/
|
|
27643
27604
|
created?: string;
|
|
27644
27605
|
customer_uuid?: string;
|
|
27645
|
-
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'>;
|
|
27646
27607
|
/**
|
|
27647
27608
|
* Modified after
|
|
27648
27609
|
*/
|
|
@@ -27752,7 +27713,7 @@ export type MarketplaceOrdersCreateData = {
|
|
|
27752
27713
|
url: '/api/marketplace-orders/';
|
|
27753
27714
|
};
|
|
27754
27715
|
export type MarketplaceOrdersCreateResponses = {
|
|
27755
|
-
201:
|
|
27716
|
+
201: OrderDetails;
|
|
27756
27717
|
};
|
|
27757
27718
|
export type MarketplaceOrdersCreateResponse = MarketplaceOrdersCreateResponses[keyof MarketplaceOrdersCreateResponses];
|
|
27758
27719
|
export type MarketplaceOrdersDestroyData = {
|
|
@@ -27776,7 +27737,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
27776
27737
|
uuid: string;
|
|
27777
27738
|
};
|
|
27778
27739
|
query?: {
|
|
27779
|
-
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'>;
|
|
27780
27741
|
};
|
|
27781
27742
|
url: '/api/marketplace-orders/{uuid}/';
|
|
27782
27743
|
};
|
|
@@ -27793,11 +27754,9 @@ export type MarketplaceOrdersApproveByConsumerData = {
|
|
|
27793
27754
|
url: '/api/marketplace-orders/{uuid}/approve_by_consumer/';
|
|
27794
27755
|
};
|
|
27795
27756
|
export type MarketplaceOrdersApproveByConsumerResponses = {
|
|
27796
|
-
|
|
27797
|
-
* No response body
|
|
27798
|
-
*/
|
|
27799
|
-
200: unknown;
|
|
27757
|
+
200: string;
|
|
27800
27758
|
};
|
|
27759
|
+
export type MarketplaceOrdersApproveByConsumerResponse = MarketplaceOrdersApproveByConsumerResponses[keyof MarketplaceOrdersApproveByConsumerResponses];
|
|
27801
27760
|
export type MarketplaceOrdersApproveByProviderData = {
|
|
27802
27761
|
body?: never;
|
|
27803
27762
|
path: {
|
|
@@ -27807,11 +27766,9 @@ export type MarketplaceOrdersApproveByProviderData = {
|
|
|
27807
27766
|
url: '/api/marketplace-orders/{uuid}/approve_by_provider/';
|
|
27808
27767
|
};
|
|
27809
27768
|
export type MarketplaceOrdersApproveByProviderResponses = {
|
|
27810
|
-
|
|
27811
|
-
* No response body
|
|
27812
|
-
*/
|
|
27813
|
-
200: unknown;
|
|
27769
|
+
200: string;
|
|
27814
27770
|
};
|
|
27771
|
+
export type MarketplaceOrdersApproveByProviderResponse = MarketplaceOrdersApproveByProviderResponses[keyof MarketplaceOrdersApproveByProviderResponses];
|
|
27815
27772
|
export type MarketplaceOrdersCancelData = {
|
|
27816
27773
|
body?: never;
|
|
27817
27774
|
path: {
|
|
@@ -27824,7 +27781,7 @@ export type MarketplaceOrdersCancelResponses = {
|
|
|
27824
27781
|
/**
|
|
27825
27782
|
* No response body
|
|
27826
27783
|
*/
|
|
27827
|
-
|
|
27784
|
+
202: unknown;
|
|
27828
27785
|
};
|
|
27829
27786
|
export type MarketplaceOrdersDeleteAttachmentData = {
|
|
27830
27787
|
body?: never;
|
|
@@ -27890,11 +27847,11 @@ export type MarketplaceOrdersSetBackendIdData = {
|
|
|
27890
27847
|
url: '/api/marketplace-orders/{uuid}/set_backend_id/';
|
|
27891
27848
|
};
|
|
27892
27849
|
export type MarketplaceOrdersSetBackendIdResponses = {
|
|
27893
|
-
|
|
27894
|
-
|
|
27895
|
-
|
|
27896
|
-
200: unknown;
|
|
27850
|
+
200: {
|
|
27851
|
+
status?: string;
|
|
27852
|
+
};
|
|
27897
27853
|
};
|
|
27854
|
+
export type MarketplaceOrdersSetBackendIdResponse = MarketplaceOrdersSetBackendIdResponses[keyof MarketplaceOrdersSetBackendIdResponses];
|
|
27898
27855
|
export type MarketplaceOrdersSetStateDoneData = {
|
|
27899
27856
|
body?: never;
|
|
27900
27857
|
path: {
|
|
@@ -28186,8 +28143,9 @@ export type MarketplacePlansDeleteOrganizationGroupsResponses = {
|
|
|
28186
28143
|
/**
|
|
28187
28144
|
* No response body
|
|
28188
28145
|
*/
|
|
28189
|
-
|
|
28146
|
+
204: void;
|
|
28190
28147
|
};
|
|
28148
|
+
export type MarketplacePlansDeleteOrganizationGroupsResponse = MarketplacePlansDeleteOrganizationGroupsResponses[keyof MarketplacePlansDeleteOrganizationGroupsResponses];
|
|
28191
28149
|
export type MarketplacePlansUpdateDiscountsData = {
|
|
28192
28150
|
body: DiscountsUpdateRequest;
|
|
28193
28151
|
path: {
|
|
@@ -28248,13 +28206,22 @@ export type MarketplacePlansUsageStatsListData = {
|
|
|
28248
28206
|
body?: never;
|
|
28249
28207
|
path?: never;
|
|
28250
28208
|
query?: {
|
|
28209
|
+
/**
|
|
28210
|
+
* Filter by service provider's customer UUID.
|
|
28211
|
+
*/
|
|
28251
28212
|
customer_provider_uuid?: string;
|
|
28213
|
+
/**
|
|
28214
|
+
* Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
|
|
28215
|
+
*/
|
|
28252
28216
|
o?: string;
|
|
28253
28217
|
offering?: string;
|
|
28254
28218
|
/**
|
|
28255
28219
|
* Multiple values may be separated by commas.
|
|
28256
28220
|
*/
|
|
28257
28221
|
offering_slug?: Array<string>;
|
|
28222
|
+
/**
|
|
28223
|
+
* Filter by offering UUID.
|
|
28224
|
+
*/
|
|
28258
28225
|
offering_uuid?: string;
|
|
28259
28226
|
/**
|
|
28260
28227
|
* A page number within the paginated result set.
|
|
@@ -28276,13 +28243,22 @@ export type MarketplacePlansUsageStatsCountData = {
|
|
|
28276
28243
|
body?: never;
|
|
28277
28244
|
path?: never;
|
|
28278
28245
|
query?: {
|
|
28246
|
+
/**
|
|
28247
|
+
* Filter by service provider's customer UUID.
|
|
28248
|
+
*/
|
|
28279
28249
|
customer_provider_uuid?: string;
|
|
28250
|
+
/**
|
|
28251
|
+
* Ordering field. Available options: `usage`, `limit`, `remaining`, and their descending counterparts (e.g., `-usage`).
|
|
28252
|
+
*/
|
|
28280
28253
|
o?: string;
|
|
28281
28254
|
offering?: string;
|
|
28282
28255
|
/**
|
|
28283
28256
|
* Multiple values may be separated by commas.
|
|
28284
28257
|
*/
|
|
28285
28258
|
offering_slug?: Array<string>;
|
|
28259
|
+
/**
|
|
28260
|
+
* Filter by offering UUID.
|
|
28261
|
+
*/
|
|
28286
28262
|
offering_uuid?: string;
|
|
28287
28263
|
/**
|
|
28288
28264
|
* A page number within the paginated result set.
|
|
@@ -28878,7 +28854,7 @@ export type MarketplaceProviderOfferingsCreateData = {
|
|
|
28878
28854
|
url: '/api/marketplace-provider-offerings/';
|
|
28879
28855
|
};
|
|
28880
28856
|
export type MarketplaceProviderOfferingsCreateResponses = {
|
|
28881
|
-
201:
|
|
28857
|
+
201: ProviderOfferingDetails;
|
|
28882
28858
|
};
|
|
28883
28859
|
export type MarketplaceProviderOfferingsCreateResponse = MarketplaceProviderOfferingsCreateResponses[keyof MarketplaceProviderOfferingsCreateResponses];
|
|
28884
28860
|
export type MarketplaceProviderOfferingsDestroyData = {
|
|
@@ -28968,13 +28944,10 @@ export type MarketplaceProviderOfferingsAddUserData = {
|
|
|
28968
28944
|
};
|
|
28969
28945
|
export type MarketplaceProviderOfferingsAddUserErrors = {
|
|
28970
28946
|
/**
|
|
28971
|
-
* Validation error when trying to add user to terminated project
|
|
28947
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
28972
28948
|
*/
|
|
28973
|
-
400:
|
|
28974
|
-
non_field_errors?: Array<string>;
|
|
28975
|
-
};
|
|
28949
|
+
400: unknown;
|
|
28976
28950
|
};
|
|
28977
|
-
export type MarketplaceProviderOfferingsAddUserError = MarketplaceProviderOfferingsAddUserErrors[keyof MarketplaceProviderOfferingsAddUserErrors];
|
|
28978
28951
|
export type MarketplaceProviderOfferingsAddUserResponses = {
|
|
28979
28952
|
201: UserRoleExpirationTime;
|
|
28980
28953
|
};
|
|
@@ -29368,8 +29341,9 @@ export type MarketplaceProviderOfferingsDeleteImageResponses = {
|
|
|
29368
29341
|
/**
|
|
29369
29342
|
* No response body
|
|
29370
29343
|
*/
|
|
29371
|
-
|
|
29344
|
+
204: void;
|
|
29372
29345
|
};
|
|
29346
|
+
export type MarketplaceProviderOfferingsDeleteImageResponse = MarketplaceProviderOfferingsDeleteImageResponses[keyof MarketplaceProviderOfferingsDeleteImageResponses];
|
|
29373
29347
|
export type MarketplaceProviderOfferingsDeleteOrganizationGroupsData = {
|
|
29374
29348
|
body?: never;
|
|
29375
29349
|
path: {
|
|
@@ -29382,8 +29356,9 @@ export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses = {
|
|
|
29382
29356
|
/**
|
|
29383
29357
|
* No response body
|
|
29384
29358
|
*/
|
|
29385
|
-
|
|
29359
|
+
204: void;
|
|
29386
29360
|
};
|
|
29361
|
+
export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponse = MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses[keyof MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses];
|
|
29387
29362
|
export type MarketplaceProviderOfferingsDeleteThumbnailData = {
|
|
29388
29363
|
body?: never;
|
|
29389
29364
|
path: {
|
|
@@ -29409,7 +29384,7 @@ export type MarketplaceProviderOfferingsDeleteUserData = {
|
|
|
29409
29384
|
};
|
|
29410
29385
|
export type MarketplaceProviderOfferingsDeleteUserResponses = {
|
|
29411
29386
|
/**
|
|
29412
|
-
*
|
|
29387
|
+
* Role revoked successfully.
|
|
29413
29388
|
*/
|
|
29414
29389
|
200: unknown;
|
|
29415
29390
|
};
|
|
@@ -29470,20 +29445,112 @@ export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
|
|
|
29470
29445
|
200: Array<ImportableResource>;
|
|
29471
29446
|
};
|
|
29472
29447
|
export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
|
|
29473
|
-
export type
|
|
29448
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
29474
29449
|
body?: never;
|
|
29475
29450
|
path: {
|
|
29476
29451
|
uuid: string;
|
|
29477
29452
|
};
|
|
29478
29453
|
query?: {
|
|
29479
|
-
|
|
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;
|
|
29480
29547
|
};
|
|
29481
29548
|
url: '/api/marketplace-provider-offerings/{uuid}/list_course_accounts/';
|
|
29482
29549
|
};
|
|
29483
|
-
export type
|
|
29484
|
-
200:
|
|
29550
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponses = {
|
|
29551
|
+
200: Array<CourseAccount>;
|
|
29485
29552
|
};
|
|
29486
|
-
export type
|
|
29553
|
+
export type MarketplaceProviderOfferingsListCourseAccountsListResponse = MarketplaceProviderOfferingsListCourseAccountsListResponses[keyof MarketplaceProviderOfferingsListCourseAccountsListResponses];
|
|
29487
29554
|
export type MarketplaceProviderOfferingsListCustomerProjectsListData = {
|
|
29488
29555
|
body?: never;
|
|
29489
29556
|
path: {
|
|
@@ -29506,20 +29573,112 @@ export type MarketplaceProviderOfferingsListCustomerProjectsListResponses = {
|
|
|
29506
29573
|
200: Array<Project>;
|
|
29507
29574
|
};
|
|
29508
29575
|
export type MarketplaceProviderOfferingsListCustomerProjectsListResponse = MarketplaceProviderOfferingsListCustomerProjectsListResponses[keyof MarketplaceProviderOfferingsListCustomerProjectsListResponses];
|
|
29509
|
-
export type
|
|
29576
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
29510
29577
|
body?: never;
|
|
29511
29578
|
path: {
|
|
29512
29579
|
uuid: string;
|
|
29513
29580
|
};
|
|
29514
29581
|
query?: {
|
|
29515
|
-
|
|
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;
|
|
29516
29675
|
};
|
|
29517
29676
|
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
|
|
29518
29677
|
};
|
|
29519
|
-
export type
|
|
29520
|
-
200:
|
|
29678
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses = {
|
|
29679
|
+
200: Array<CustomerServiceAccount>;
|
|
29521
29680
|
};
|
|
29522
|
-
export type
|
|
29681
|
+
export type MarketplaceProviderOfferingsListCustomerServiceAccountsListResponse = MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListCustomerServiceAccountsListResponses];
|
|
29523
29682
|
export type MarketplaceProviderOfferingsListCustomerUsersListData = {
|
|
29524
29683
|
body?: never;
|
|
29525
29684
|
path: {
|
|
@@ -29542,20 +29701,112 @@ export type MarketplaceProviderOfferingsListCustomerUsersListResponses = {
|
|
|
29542
29701
|
200: Array<User>;
|
|
29543
29702
|
};
|
|
29544
29703
|
export type MarketplaceProviderOfferingsListCustomerUsersListResponse = MarketplaceProviderOfferingsListCustomerUsersListResponses[keyof MarketplaceProviderOfferingsListCustomerUsersListResponses];
|
|
29545
|
-
export type
|
|
29704
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
29546
29705
|
body?: never;
|
|
29547
29706
|
path: {
|
|
29548
29707
|
uuid: string;
|
|
29549
29708
|
};
|
|
29550
29709
|
query?: {
|
|
29551
|
-
|
|
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;
|
|
29552
29803
|
};
|
|
29553
29804
|
url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
|
|
29554
29805
|
};
|
|
29555
|
-
export type
|
|
29556
|
-
200:
|
|
29806
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponses = {
|
|
29807
|
+
200: Array<ProjectServiceAccount>;
|
|
29557
29808
|
};
|
|
29558
|
-
export type
|
|
29809
|
+
export type MarketplaceProviderOfferingsListProjectServiceAccountsListResponse = MarketplaceProviderOfferingsListProjectServiceAccountsListResponses[keyof MarketplaceProviderOfferingsListProjectServiceAccountsListResponses];
|
|
29559
29810
|
export type MarketplaceProviderOfferingsListUsersListData = {
|
|
29560
29811
|
body?: never;
|
|
29561
29812
|
path: {
|
|
@@ -29635,7 +29886,7 @@ export type MarketplaceProviderOfferingsOrdersListData = {
|
|
|
29635
29886
|
uuid: string;
|
|
29636
29887
|
};
|
|
29637
29888
|
query?: {
|
|
29638
|
-
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'>;
|
|
29639
29890
|
/**
|
|
29640
29891
|
* A page number within the paginated result set.
|
|
29641
29892
|
*/
|
|
@@ -29714,8 +29965,9 @@ export type MarketplaceProviderOfferingsRemovePartitionResponses = {
|
|
|
29714
29965
|
/**
|
|
29715
29966
|
* No response body
|
|
29716
29967
|
*/
|
|
29717
|
-
|
|
29968
|
+
204: void;
|
|
29718
29969
|
};
|
|
29970
|
+
export type MarketplaceProviderOfferingsRemovePartitionResponse = MarketplaceProviderOfferingsRemovePartitionResponses[keyof MarketplaceProviderOfferingsRemovePartitionResponses];
|
|
29719
29971
|
export type MarketplaceProviderOfferingsRemoveSoftwareCatalogData = {
|
|
29720
29972
|
body: RemoveSoftwareCatalogRequest;
|
|
29721
29973
|
path: {
|
|
@@ -29728,8 +29980,9 @@ export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses = {
|
|
|
29728
29980
|
/**
|
|
29729
29981
|
* No response body
|
|
29730
29982
|
*/
|
|
29731
|
-
|
|
29983
|
+
204: void;
|
|
29732
29984
|
};
|
|
29985
|
+
export type MarketplaceProviderOfferingsRemoveSoftwareCatalogResponse = MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses[keyof MarketplaceProviderOfferingsRemoveSoftwareCatalogResponses];
|
|
29733
29986
|
export type MarketplaceProviderOfferingsSetBackendMetadataData = {
|
|
29734
29987
|
body?: OfferingBackendMetadataRequest;
|
|
29735
29988
|
path: {
|
|
@@ -29749,13 +30002,14 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
|
|
|
29749
30002
|
path: {
|
|
29750
30003
|
uuid: string;
|
|
29751
30004
|
};
|
|
29752
|
-
query?:
|
|
29753
|
-
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'>;
|
|
29754
|
-
};
|
|
30005
|
+
query?: never;
|
|
29755
30006
|
url: '/api/marketplace-provider-offerings/{uuid}/stats/';
|
|
29756
30007
|
};
|
|
29757
30008
|
export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
|
|
29758
|
-
200:
|
|
30009
|
+
200: {
|
|
30010
|
+
resources_count?: number;
|
|
30011
|
+
customers_count?: number;
|
|
30012
|
+
};
|
|
29759
30013
|
};
|
|
29760
30014
|
export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
|
|
29761
30015
|
export type MarketplaceProviderOfferingsSyncData = {
|
|
@@ -29770,7 +30024,7 @@ export type MarketplaceProviderOfferingsSyncResponses = {
|
|
|
29770
30024
|
/**
|
|
29771
30025
|
* No response body
|
|
29772
30026
|
*/
|
|
29773
|
-
|
|
30027
|
+
202: unknown;
|
|
29774
30028
|
};
|
|
29775
30029
|
export type MarketplaceProviderOfferingsTosStatsRetrieveData = {
|
|
29776
30030
|
body?: never;
|
|
@@ -29849,9 +30103,11 @@ export type MarketplaceProviderOfferingsUpdateImageData = {
|
|
|
29849
30103
|
url: '/api/marketplace-provider-offerings/{uuid}/update_image/';
|
|
29850
30104
|
};
|
|
29851
30105
|
export type MarketplaceProviderOfferingsUpdateImageResponses = {
|
|
29852
|
-
|
|
30106
|
+
/**
|
|
30107
|
+
* No response body
|
|
30108
|
+
*/
|
|
30109
|
+
200: unknown;
|
|
29853
30110
|
};
|
|
29854
|
-
export type MarketplaceProviderOfferingsUpdateImageResponse = MarketplaceProviderOfferingsUpdateImageResponses[keyof MarketplaceProviderOfferingsUpdateImageResponses];
|
|
29855
30111
|
export type MarketplaceProviderOfferingsUpdateIntegrationData = {
|
|
29856
30112
|
body?: OfferingIntegrationUpdateRequest;
|
|
29857
30113
|
path: {
|
|
@@ -30502,13 +30758,17 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
|
|
|
30502
30758
|
path: {
|
|
30503
30759
|
uuid: string;
|
|
30504
30760
|
};
|
|
30505
|
-
query?:
|
|
30506
|
-
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'>;
|
|
30507
|
-
};
|
|
30761
|
+
query?: never;
|
|
30508
30762
|
url: '/api/marketplace-provider-resources/{uuid}/details/';
|
|
30509
30763
|
};
|
|
30764
|
+
export type MarketplaceProviderResourcesDetailsRetrieveErrors = {
|
|
30765
|
+
404: unknown;
|
|
30766
|
+
};
|
|
30510
30767
|
export type MarketplaceProviderResourcesDetailsRetrieveResponses = {
|
|
30511
|
-
200:
|
|
30768
|
+
200: {
|
|
30769
|
+
[key: string]: unknown;
|
|
30770
|
+
};
|
|
30771
|
+
204: unknown;
|
|
30512
30772
|
};
|
|
30513
30773
|
export type MarketplaceProviderResourcesDetailsRetrieveResponse = MarketplaceProviderResourcesDetailsRetrieveResponses[keyof MarketplaceProviderResourcesDetailsRetrieveResponses];
|
|
30514
30774
|
export type MarketplaceProviderResourcesGlauthUsersConfigRetrieveData = {
|
|
@@ -30580,8 +30840,8 @@ export type MarketplaceProviderResourcesPullData = {
|
|
|
30580
30840
|
url: '/api/marketplace-provider-resources/{uuid}/pull/';
|
|
30581
30841
|
};
|
|
30582
30842
|
export type MarketplaceProviderResourcesPullResponses = {
|
|
30583
|
-
|
|
30584
|
-
|
|
30843
|
+
202: {
|
|
30844
|
+
detail?: string;
|
|
30585
30845
|
};
|
|
30586
30846
|
};
|
|
30587
30847
|
export type MarketplaceProviderResourcesPullResponse = MarketplaceProviderResourcesPullResponses[keyof MarketplaceProviderResourcesPullResponses];
|
|
@@ -30660,11 +30920,11 @@ export type MarketplaceProviderResourcesSetDownscaledData = {
|
|
|
30660
30920
|
url: '/api/marketplace-provider-resources/{uuid}/set_downscaled/';
|
|
30661
30921
|
};
|
|
30662
30922
|
export type MarketplaceProviderResourcesSetDownscaledResponses = {
|
|
30663
|
-
|
|
30664
|
-
|
|
30665
|
-
|
|
30666
|
-
200: unknown;
|
|
30923
|
+
200: {
|
|
30924
|
+
status?: string;
|
|
30925
|
+
};
|
|
30667
30926
|
};
|
|
30927
|
+
export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
|
|
30668
30928
|
export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
30669
30929
|
body?: ResourceEndDateByProviderRequest;
|
|
30670
30930
|
path: {
|
|
@@ -30674,9 +30934,11 @@ export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
|
30674
30934
|
url: '/api/marketplace-provider-resources/{uuid}/set_end_date_by_provider/';
|
|
30675
30935
|
};
|
|
30676
30936
|
export type MarketplaceProviderResourcesSetEndDateByProviderResponses = {
|
|
30677
|
-
|
|
30937
|
+
/**
|
|
30938
|
+
* No response body
|
|
30939
|
+
*/
|
|
30940
|
+
200: unknown;
|
|
30678
30941
|
};
|
|
30679
|
-
export type MarketplaceProviderResourcesSetEndDateByProviderResponse = MarketplaceProviderResourcesSetEndDateByProviderResponses[keyof MarketplaceProviderResourcesSetEndDateByProviderResponses];
|
|
30680
30942
|
export type MarketplaceProviderResourcesSetEndDateByStaffData = {
|
|
30681
30943
|
body?: ResourceEndDateByProviderRequest;
|
|
30682
30944
|
path: {
|
|
@@ -30712,11 +30974,11 @@ export type MarketplaceProviderResourcesSetPausedData = {
|
|
|
30712
30974
|
url: '/api/marketplace-provider-resources/{uuid}/set_paused/';
|
|
30713
30975
|
};
|
|
30714
30976
|
export type MarketplaceProviderResourcesSetPausedResponses = {
|
|
30715
|
-
|
|
30716
|
-
|
|
30717
|
-
|
|
30718
|
-
200: unknown;
|
|
30977
|
+
200: {
|
|
30978
|
+
status?: string;
|
|
30979
|
+
};
|
|
30719
30980
|
};
|
|
30981
|
+
export type MarketplaceProviderResourcesSetPausedResponse = MarketplaceProviderResourcesSetPausedResponses[keyof MarketplaceProviderResourcesSetPausedResponses];
|
|
30720
30982
|
export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
30721
30983
|
body?: ResourceRestrictMemberAccessRequest;
|
|
30722
30984
|
path: {
|
|
@@ -30726,11 +30988,11 @@ export type MarketplaceProviderResourcesSetRestrictMemberAccessData = {
|
|
|
30726
30988
|
url: '/api/marketplace-provider-resources/{uuid}/set_restrict_member_access/';
|
|
30727
30989
|
};
|
|
30728
30990
|
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponses = {
|
|
30729
|
-
|
|
30730
|
-
|
|
30731
|
-
|
|
30732
|
-
200: unknown;
|
|
30991
|
+
200: {
|
|
30992
|
+
status?: string;
|
|
30993
|
+
};
|
|
30733
30994
|
};
|
|
30995
|
+
export type MarketplaceProviderResourcesSetRestrictMemberAccessResponse = MarketplaceProviderResourcesSetRestrictMemberAccessResponses[keyof MarketplaceProviderResourcesSetRestrictMemberAccessResponses];
|
|
30734
30996
|
export type MarketplaceProviderResourcesSetSlugData = {
|
|
30735
30997
|
body: ResourceSlugRequest;
|
|
30736
30998
|
path: {
|
|
@@ -30740,11 +31002,11 @@ export type MarketplaceProviderResourcesSetSlugData = {
|
|
|
30740
31002
|
url: '/api/marketplace-provider-resources/{uuid}/set_slug/';
|
|
30741
31003
|
};
|
|
30742
31004
|
export type MarketplaceProviderResourcesSetSlugResponses = {
|
|
30743
|
-
|
|
30744
|
-
|
|
30745
|
-
|
|
30746
|
-
200: unknown;
|
|
31005
|
+
200: {
|
|
31006
|
+
status?: string;
|
|
31007
|
+
};
|
|
30747
31008
|
};
|
|
31009
|
+
export type MarketplaceProviderResourcesSetSlugResponse = MarketplaceProviderResourcesSetSlugResponses[keyof MarketplaceProviderResourcesSetSlugResponses];
|
|
30748
31010
|
export type MarketplaceProviderResourcesSubmitReportData = {
|
|
30749
31011
|
body: ResourceReportRequest;
|
|
30750
31012
|
path: {
|
|
@@ -30789,12 +31051,19 @@ export type MarketplaceProviderResourcesUnlinkData = {
|
|
|
30789
31051
|
query?: never;
|
|
30790
31052
|
url: '/api/marketplace-provider-resources/{uuid}/unlink/';
|
|
30791
31053
|
};
|
|
31054
|
+
export type MarketplaceProviderResourcesUnlinkErrors = {
|
|
31055
|
+
/**
|
|
31056
|
+
* No response body
|
|
31057
|
+
*/
|
|
31058
|
+
403: unknown;
|
|
31059
|
+
};
|
|
30792
31060
|
export type MarketplaceProviderResourcesUnlinkResponses = {
|
|
30793
31061
|
/**
|
|
30794
31062
|
* No response body
|
|
30795
31063
|
*/
|
|
30796
|
-
|
|
31064
|
+
204: void;
|
|
30797
31065
|
};
|
|
31066
|
+
export type MarketplaceProviderResourcesUnlinkResponse = MarketplaceProviderResourcesUnlinkResponses[keyof MarketplaceProviderResourcesUnlinkResponses];
|
|
30798
31067
|
export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
30799
31068
|
body?: ResourceOptionsRequest;
|
|
30800
31069
|
path: {
|
|
@@ -30805,6 +31074,7 @@ export type MarketplaceProviderResourcesUpdateOptionsData = {
|
|
|
30805
31074
|
};
|
|
30806
31075
|
export type MarketplaceProviderResourcesUpdateOptionsResponses = {
|
|
30807
31076
|
200: ResourceResponseStatus;
|
|
31077
|
+
201: OrderUuid;
|
|
30808
31078
|
};
|
|
30809
31079
|
export type MarketplaceProviderResourcesUpdateOptionsResponse = MarketplaceProviderResourcesUpdateOptionsResponses[keyof MarketplaceProviderResourcesUpdateOptionsResponses];
|
|
30810
31080
|
export type MarketplaceProviderResourcesUpdateOptionsDirectData = {
|
|
@@ -30826,9 +31096,11 @@ export type MarketplacePublicApiCheckSignatureData = {
|
|
|
30826
31096
|
url: '/api/marketplace-public-api/check_signature/';
|
|
30827
31097
|
};
|
|
30828
31098
|
export type MarketplacePublicApiCheckSignatureResponses = {
|
|
30829
|
-
|
|
31099
|
+
/**
|
|
31100
|
+
* No response body
|
|
31101
|
+
*/
|
|
31102
|
+
200: unknown;
|
|
30830
31103
|
};
|
|
30831
|
-
export type MarketplacePublicApiCheckSignatureResponse = MarketplacePublicApiCheckSignatureResponses[keyof MarketplacePublicApiCheckSignatureResponses];
|
|
30832
31104
|
export type MarketplacePublicApiSetUsageData = {
|
|
30833
31105
|
body: ServiceProviderSignatureRequest;
|
|
30834
31106
|
path?: never;
|
|
@@ -30836,9 +31108,11 @@ export type MarketplacePublicApiSetUsageData = {
|
|
|
30836
31108
|
url: '/api/marketplace-public-api/set_usage/';
|
|
30837
31109
|
};
|
|
30838
31110
|
export type MarketplacePublicApiSetUsageResponses = {
|
|
30839
|
-
|
|
31111
|
+
/**
|
|
31112
|
+
* No response body
|
|
31113
|
+
*/
|
|
31114
|
+
201: unknown;
|
|
30840
31115
|
};
|
|
30841
|
-
export type MarketplacePublicApiSetUsageResponse = MarketplacePublicApiSetUsageResponses[keyof MarketplacePublicApiSetUsageResponses];
|
|
30842
31116
|
export type MarketplacePublicOfferingsListData = {
|
|
30843
31117
|
body?: never;
|
|
30844
31118
|
path?: never;
|
|
@@ -31609,13 +31883,17 @@ export type MarketplaceResourcesDetailsRetrieveData = {
|
|
|
31609
31883
|
path: {
|
|
31610
31884
|
uuid: string;
|
|
31611
31885
|
};
|
|
31612
|
-
query?:
|
|
31613
|
-
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'>;
|
|
31614
|
-
};
|
|
31886
|
+
query?: never;
|
|
31615
31887
|
url: '/api/marketplace-resources/{uuid}/details/';
|
|
31616
31888
|
};
|
|
31889
|
+
export type MarketplaceResourcesDetailsRetrieveErrors = {
|
|
31890
|
+
404: unknown;
|
|
31891
|
+
};
|
|
31617
31892
|
export type MarketplaceResourcesDetailsRetrieveResponses = {
|
|
31618
|
-
200:
|
|
31893
|
+
200: {
|
|
31894
|
+
[key: string]: unknown;
|
|
31895
|
+
};
|
|
31896
|
+
204: unknown;
|
|
31619
31897
|
};
|
|
31620
31898
|
export type MarketplaceResourcesDetailsRetrieveResponse = MarketplaceResourcesDetailsRetrieveResponses[keyof MarketplaceResourcesDetailsRetrieveResponses];
|
|
31621
31899
|
export type MarketplaceResourcesGlauthUsersConfigRetrieveData = {
|
|
@@ -31687,11 +31965,23 @@ export type MarketplaceResourcesPullData = {
|
|
|
31687
31965
|
url: '/api/marketplace-resources/{uuid}/pull/';
|
|
31688
31966
|
};
|
|
31689
31967
|
export type MarketplaceResourcesPullResponses = {
|
|
31690
|
-
|
|
31691
|
-
|
|
31968
|
+
202: {
|
|
31969
|
+
detail?: string;
|
|
31692
31970
|
};
|
|
31693
31971
|
};
|
|
31694
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];
|
|
31695
31985
|
export type MarketplaceResourcesRenewData = {
|
|
31696
31986
|
body: ResourceRenewRequest;
|
|
31697
31987
|
path: {
|
|
@@ -31713,11 +32003,11 @@ export type MarketplaceResourcesSetDownscaledData = {
|
|
|
31713
32003
|
url: '/api/marketplace-resources/{uuid}/set_downscaled/';
|
|
31714
32004
|
};
|
|
31715
32005
|
export type MarketplaceResourcesSetDownscaledResponses = {
|
|
31716
|
-
|
|
31717
|
-
|
|
31718
|
-
|
|
31719
|
-
200: unknown;
|
|
32006
|
+
200: {
|
|
32007
|
+
status?: string;
|
|
32008
|
+
};
|
|
31720
32009
|
};
|
|
32010
|
+
export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
|
|
31721
32011
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
31722
32012
|
body?: ResourceEndDateByProviderRequest;
|
|
31723
32013
|
path: {
|
|
@@ -31741,11 +32031,11 @@ export type MarketplaceResourcesSetPausedData = {
|
|
|
31741
32031
|
url: '/api/marketplace-resources/{uuid}/set_paused/';
|
|
31742
32032
|
};
|
|
31743
32033
|
export type MarketplaceResourcesSetPausedResponses = {
|
|
31744
|
-
|
|
31745
|
-
|
|
31746
|
-
|
|
31747
|
-
200: unknown;
|
|
32034
|
+
200: {
|
|
32035
|
+
status?: string;
|
|
32036
|
+
};
|
|
31748
32037
|
};
|
|
32038
|
+
export type MarketplaceResourcesSetPausedResponse = MarketplaceResourcesSetPausedResponses[keyof MarketplaceResourcesSetPausedResponses];
|
|
31749
32039
|
export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
31750
32040
|
body?: ResourceRestrictMemberAccessRequest;
|
|
31751
32041
|
path: {
|
|
@@ -31755,11 +32045,11 @@ export type MarketplaceResourcesSetRestrictMemberAccessData = {
|
|
|
31755
32045
|
url: '/api/marketplace-resources/{uuid}/set_restrict_member_access/';
|
|
31756
32046
|
};
|
|
31757
32047
|
export type MarketplaceResourcesSetRestrictMemberAccessResponses = {
|
|
31758
|
-
|
|
31759
|
-
|
|
31760
|
-
|
|
31761
|
-
200: unknown;
|
|
32048
|
+
200: {
|
|
32049
|
+
status?: string;
|
|
32050
|
+
};
|
|
31762
32051
|
};
|
|
32052
|
+
export type MarketplaceResourcesSetRestrictMemberAccessResponse = MarketplaceResourcesSetRestrictMemberAccessResponses[keyof MarketplaceResourcesSetRestrictMemberAccessResponses];
|
|
31763
32053
|
export type MarketplaceResourcesSetSlugData = {
|
|
31764
32054
|
body: ResourceSlugRequest;
|
|
31765
32055
|
path: {
|
|
@@ -31769,11 +32059,11 @@ export type MarketplaceResourcesSetSlugData = {
|
|
|
31769
32059
|
url: '/api/marketplace-resources/{uuid}/set_slug/';
|
|
31770
32060
|
};
|
|
31771
32061
|
export type MarketplaceResourcesSetSlugResponses = {
|
|
31772
|
-
|
|
31773
|
-
|
|
31774
|
-
|
|
31775
|
-
200: unknown;
|
|
32062
|
+
200: {
|
|
32063
|
+
status?: string;
|
|
32064
|
+
};
|
|
31776
32065
|
};
|
|
32066
|
+
export type MarketplaceResourcesSetSlugResponse = MarketplaceResourcesSetSlugResponses[keyof MarketplaceResourcesSetSlugResponses];
|
|
31777
32067
|
export type MarketplaceResourcesSwitchPlanData = {
|
|
31778
32068
|
body: ResourceSwitchPlanRequest;
|
|
31779
32069
|
path: {
|
|
@@ -31818,12 +32108,19 @@ export type MarketplaceResourcesUnlinkData = {
|
|
|
31818
32108
|
query?: never;
|
|
31819
32109
|
url: '/api/marketplace-resources/{uuid}/unlink/';
|
|
31820
32110
|
};
|
|
32111
|
+
export type MarketplaceResourcesUnlinkErrors = {
|
|
32112
|
+
/**
|
|
32113
|
+
* No response body
|
|
32114
|
+
*/
|
|
32115
|
+
403: unknown;
|
|
32116
|
+
};
|
|
31821
32117
|
export type MarketplaceResourcesUnlinkResponses = {
|
|
31822
32118
|
/**
|
|
31823
32119
|
* No response body
|
|
31824
32120
|
*/
|
|
31825
|
-
|
|
32121
|
+
204: void;
|
|
31826
32122
|
};
|
|
32123
|
+
export type MarketplaceResourcesUnlinkResponse = MarketplaceResourcesUnlinkResponses[keyof MarketplaceResourcesUnlinkResponses];
|
|
31827
32124
|
export type MarketplaceResourcesUpdateLimitsData = {
|
|
31828
32125
|
body: ResourceUpdateLimitsRequest;
|
|
31829
32126
|
path: {
|
|
@@ -31846,6 +32143,7 @@ export type MarketplaceResourcesUpdateOptionsData = {
|
|
|
31846
32143
|
};
|
|
31847
32144
|
export type MarketplaceResourcesUpdateOptionsResponses = {
|
|
31848
32145
|
200: ResourceResponseStatus;
|
|
32146
|
+
201: OrderUuid;
|
|
31849
32147
|
};
|
|
31850
32148
|
export type MarketplaceResourcesUpdateOptionsResponse = MarketplaceResourcesUpdateOptionsResponses[keyof MarketplaceResourcesUpdateOptionsResponses];
|
|
31851
32149
|
export type MarketplaceResourcesSuggestNameData = {
|
|
@@ -31855,7 +32153,9 @@ export type MarketplaceResourcesSuggestNameData = {
|
|
|
31855
32153
|
url: '/api/marketplace-resources/suggest_name/';
|
|
31856
32154
|
};
|
|
31857
32155
|
export type MarketplaceResourcesSuggestNameResponses = {
|
|
31858
|
-
200:
|
|
32156
|
+
200: {
|
|
32157
|
+
name?: string;
|
|
32158
|
+
};
|
|
31859
32159
|
};
|
|
31860
32160
|
export type MarketplaceResourcesSuggestNameResponse = MarketplaceResourcesSuggestNameResponses[keyof MarketplaceResourcesSuggestNameResponses];
|
|
31861
32161
|
export type MarketplaceRobotAccountsListData = {
|
|
@@ -32016,6 +32316,10 @@ export type MarketplaceRobotAccountsSetStateDeletedData = {
|
|
|
32016
32316
|
query?: never;
|
|
32017
32317
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_deleted/';
|
|
32018
32318
|
};
|
|
32319
|
+
export type MarketplaceRobotAccountsSetStateDeletedErrors = {
|
|
32320
|
+
400: StateTransitionError;
|
|
32321
|
+
};
|
|
32322
|
+
export type MarketplaceRobotAccountsSetStateDeletedError = MarketplaceRobotAccountsSetStateDeletedErrors[keyof MarketplaceRobotAccountsSetStateDeletedErrors];
|
|
32019
32323
|
export type MarketplaceRobotAccountsSetStateDeletedResponses = {
|
|
32020
32324
|
200: RobotAccountDetails;
|
|
32021
32325
|
};
|
|
@@ -32028,6 +32332,10 @@ export type MarketplaceRobotAccountsSetStateErredData = {
|
|
|
32028
32332
|
query?: never;
|
|
32029
32333
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_erred/';
|
|
32030
32334
|
};
|
|
32335
|
+
export type MarketplaceRobotAccountsSetStateErredErrors = {
|
|
32336
|
+
400: StateTransitionError;
|
|
32337
|
+
};
|
|
32338
|
+
export type MarketplaceRobotAccountsSetStateErredError = MarketplaceRobotAccountsSetStateErredErrors[keyof MarketplaceRobotAccountsSetStateErredErrors];
|
|
32031
32339
|
export type MarketplaceRobotAccountsSetStateErredResponses = {
|
|
32032
32340
|
200: RobotAccountDetails;
|
|
32033
32341
|
};
|
|
@@ -32040,6 +32348,10 @@ export type MarketplaceRobotAccountsSetStateOkData = {
|
|
|
32040
32348
|
query?: never;
|
|
32041
32349
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_ok/';
|
|
32042
32350
|
};
|
|
32351
|
+
export type MarketplaceRobotAccountsSetStateOkErrors = {
|
|
32352
|
+
400: StateTransitionError;
|
|
32353
|
+
};
|
|
32354
|
+
export type MarketplaceRobotAccountsSetStateOkError = MarketplaceRobotAccountsSetStateOkErrors[keyof MarketplaceRobotAccountsSetStateOkErrors];
|
|
32043
32355
|
export type MarketplaceRobotAccountsSetStateOkResponses = {
|
|
32044
32356
|
200: RobotAccountDetails;
|
|
32045
32357
|
};
|
|
@@ -32052,6 +32364,10 @@ export type MarketplaceRobotAccountsSetStateRequestDeletionData = {
|
|
|
32052
32364
|
query?: never;
|
|
32053
32365
|
url: '/api/marketplace-robot-accounts/{uuid}/set_state_request_deletion/';
|
|
32054
32366
|
};
|
|
32367
|
+
export type MarketplaceRobotAccountsSetStateRequestDeletionErrors = {
|
|
32368
|
+
400: StateTransitionError;
|
|
32369
|
+
};
|
|
32370
|
+
export type MarketplaceRobotAccountsSetStateRequestDeletionError = MarketplaceRobotAccountsSetStateRequestDeletionErrors[keyof MarketplaceRobotAccountsSetStateRequestDeletionErrors];
|
|
32055
32371
|
export type MarketplaceRobotAccountsSetStateRequestDeletionResponses = {
|
|
32056
32372
|
200: RobotAccountDetails;
|
|
32057
32373
|
};
|
|
@@ -32061,11 +32377,11 @@ export type MarketplaceRuntimeStatesListData = {
|
|
|
32061
32377
|
path?: never;
|
|
32062
32378
|
query?: {
|
|
32063
32379
|
/**
|
|
32064
|
-
*
|
|
32380
|
+
* Filter runtime states by resources belonging to a specific category.
|
|
32065
32381
|
*/
|
|
32066
32382
|
category_uuid?: string;
|
|
32067
32383
|
/**
|
|
32068
|
-
*
|
|
32384
|
+
* Filter runtime states by resources within a specific project.
|
|
32069
32385
|
*/
|
|
32070
32386
|
project_uuid?: string;
|
|
32071
32387
|
};
|
|
@@ -32533,11 +32849,11 @@ export type ServiceProviderOfferingUsersComplianceData = {
|
|
|
32533
32849
|
};
|
|
32534
32850
|
query?: {
|
|
32535
32851
|
/**
|
|
32536
|
-
* Filter by compliance status: completed, pending, no_checklist
|
|
32852
|
+
* Filter by compliance status: completed, pending, no_checklist.
|
|
32537
32853
|
*/
|
|
32538
32854
|
compliance_status?: string;
|
|
32539
32855
|
/**
|
|
32540
|
-
* Filter by offering UUID
|
|
32856
|
+
* Filter by offering UUID.
|
|
32541
32857
|
*/
|
|
32542
32858
|
offering_uuid?: string;
|
|
32543
32859
|
/**
|
|
@@ -32595,7 +32911,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
32595
32911
|
path: {
|
|
32596
32912
|
service_provider_uuid: string;
|
|
32597
32913
|
};
|
|
32598
|
-
query
|
|
32914
|
+
query: {
|
|
32599
32915
|
backend_id?: string;
|
|
32600
32916
|
/**
|
|
32601
32917
|
* Return a list of projects where current user is admin.
|
|
@@ -32643,6 +32959,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
|
|
|
32643
32959
|
* Number of results to return per page.
|
|
32644
32960
|
*/
|
|
32645
32961
|
page_size?: number;
|
|
32962
|
+
/**
|
|
32963
|
+
* UUID of the customer to filter projects by.
|
|
32964
|
+
*/
|
|
32965
|
+
project_customer_uuid: string;
|
|
32646
32966
|
/**
|
|
32647
32967
|
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
32648
32968
|
*/
|
|
@@ -33048,7 +33368,7 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
33048
33368
|
query?: string;
|
|
33049
33369
|
registration_code?: string;
|
|
33050
33370
|
/**
|
|
33051
|
-
* UUID of user to get related customers for
|
|
33371
|
+
* UUID of the user to get related customers for.
|
|
33052
33372
|
*/
|
|
33053
33373
|
user_uuid: string;
|
|
33054
33374
|
};
|
|
@@ -33199,13 +33519,10 @@ export type MarketplaceServiceProvidersAddUserData = {
|
|
|
33199
33519
|
};
|
|
33200
33520
|
export type MarketplaceServiceProvidersAddUserErrors = {
|
|
33201
33521
|
/**
|
|
33202
|
-
* Validation error when trying to add user to terminated project
|
|
33522
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
33203
33523
|
*/
|
|
33204
|
-
400:
|
|
33205
|
-
non_field_errors?: Array<string>;
|
|
33206
|
-
};
|
|
33524
|
+
400: unknown;
|
|
33207
33525
|
};
|
|
33208
|
-
export type MarketplaceServiceProvidersAddUserError = MarketplaceServiceProvidersAddUserErrors[keyof MarketplaceServiceProvidersAddUserErrors];
|
|
33209
33526
|
export type MarketplaceServiceProvidersAddUserResponses = {
|
|
33210
33527
|
201: UserRoleExpirationTime;
|
|
33211
33528
|
};
|
|
@@ -33244,7 +33561,7 @@ export type MarketplaceServiceProvidersDeleteUserData = {
|
|
|
33244
33561
|
};
|
|
33245
33562
|
export type MarketplaceServiceProvidersDeleteUserResponses = {
|
|
33246
33563
|
/**
|
|
33247
|
-
*
|
|
33564
|
+
* Role revoked successfully.
|
|
33248
33565
|
*/
|
|
33249
33566
|
200: unknown;
|
|
33250
33567
|
};
|
|
@@ -33336,6 +33653,9 @@ export type MarketplaceServiceProvidersRobotAccountCustomersListData = {
|
|
|
33336
33653
|
uuid: string;
|
|
33337
33654
|
};
|
|
33338
33655
|
query?: {
|
|
33656
|
+
/**
|
|
33657
|
+
* Filter by customer name (case-insensitive partial match).
|
|
33658
|
+
*/
|
|
33339
33659
|
customer_name?: string;
|
|
33340
33660
|
/**
|
|
33341
33661
|
* A page number within the paginated result set.
|
|
@@ -33366,6 +33686,9 @@ export type MarketplaceServiceProvidersRobotAccountProjectsListData = {
|
|
|
33366
33686
|
* Number of results to return per page.
|
|
33367
33687
|
*/
|
|
33368
33688
|
page_size?: number;
|
|
33689
|
+
/**
|
|
33690
|
+
* Filter by project name (case-insensitive partial match).
|
|
33691
|
+
*/
|
|
33369
33692
|
project_name?: string;
|
|
33370
33693
|
};
|
|
33371
33694
|
url: '/api/marketplace-service-providers/{uuid}/robot_account_projects/';
|
|
@@ -36179,7 +36502,7 @@ export type OnboardingVerificationsCreateCustomerResponses = {
|
|
|
36179
36502
|
};
|
|
36180
36503
|
export type OnboardingVerificationsCreateCustomerResponse = OnboardingVerificationsCreateCustomerResponses[keyof OnboardingVerificationsCreateCustomerResponses];
|
|
36181
36504
|
export type OnboardingVerificationsRunValidationData = {
|
|
36182
|
-
body?:
|
|
36505
|
+
body?: OnboardingRunValidationRequestRequest;
|
|
36183
36506
|
path: {
|
|
36184
36507
|
uuid: string;
|
|
36185
36508
|
};
|
|
@@ -37502,13 +37825,10 @@ export type OpenportalUnmanagedProjectsAddUserData = {
|
|
|
37502
37825
|
};
|
|
37503
37826
|
export type OpenportalUnmanagedProjectsAddUserErrors = {
|
|
37504
37827
|
/**
|
|
37505
|
-
* Validation error when trying to add user to terminated project
|
|
37828
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
37506
37829
|
*/
|
|
37507
|
-
400:
|
|
37508
|
-
non_field_errors?: Array<string>;
|
|
37509
|
-
};
|
|
37830
|
+
400: unknown;
|
|
37510
37831
|
};
|
|
37511
|
-
export type OpenportalUnmanagedProjectsAddUserError = OpenportalUnmanagedProjectsAddUserErrors[keyof OpenportalUnmanagedProjectsAddUserErrors];
|
|
37512
37832
|
export type OpenportalUnmanagedProjectsAddUserResponses = {
|
|
37513
37833
|
201: UserRoleExpirationTime;
|
|
37514
37834
|
};
|
|
@@ -37567,7 +37887,7 @@ export type OpenportalUnmanagedProjectsDeleteUserData = {
|
|
|
37567
37887
|
};
|
|
37568
37888
|
export type OpenportalUnmanagedProjectsDeleteUserResponses = {
|
|
37569
37889
|
/**
|
|
37570
|
-
*
|
|
37890
|
+
* Role revoked successfully.
|
|
37571
37891
|
*/
|
|
37572
37892
|
200: unknown;
|
|
37573
37893
|
};
|
|
@@ -40827,7 +41147,7 @@ export type OpenstackTenantsListData = {
|
|
|
40827
41147
|
customer_uuid?: string;
|
|
40828
41148
|
description?: string;
|
|
40829
41149
|
external_ip?: string;
|
|
40830
|
-
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'>;
|
|
40831
41151
|
name?: string;
|
|
40832
41152
|
name_exact?: string;
|
|
40833
41153
|
/**
|
|
@@ -40925,7 +41245,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
40925
41245
|
uuid: string;
|
|
40926
41246
|
};
|
|
40927
41247
|
query?: {
|
|
40928
|
-
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'>;
|
|
40929
41249
|
};
|
|
40930
41250
|
url: '/api/openstack-tenants/{uuid}/';
|
|
40931
41251
|
};
|
|
@@ -41175,6 +41495,20 @@ export type OpenstackTenantsPullServerGroupsResponses = {
|
|
|
41175
41495
|
200: OpenStackTenant;
|
|
41176
41496
|
};
|
|
41177
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
|
+
};
|
|
41178
41512
|
export type OpenstackTenantsSetQuotasData = {
|
|
41179
41513
|
body?: OpenStackTenantQuotaRequest;
|
|
41180
41514
|
path: {
|
|
@@ -42590,13 +42924,10 @@ export type ProjectsAddUserData = {
|
|
|
42590
42924
|
};
|
|
42591
42925
|
export type ProjectsAddUserErrors = {
|
|
42592
42926
|
/**
|
|
42593
|
-
* Validation error when trying to add user to terminated project
|
|
42927
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
42594
42928
|
*/
|
|
42595
|
-
400:
|
|
42596
|
-
non_field_errors?: Array<string>;
|
|
42597
|
-
};
|
|
42929
|
+
400: unknown;
|
|
42598
42930
|
};
|
|
42599
|
-
export type ProjectsAddUserError = ProjectsAddUserErrors[keyof ProjectsAddUserErrors];
|
|
42600
42931
|
export type ProjectsAddUserResponses = {
|
|
42601
42932
|
201: UserRoleExpirationTime;
|
|
42602
42933
|
};
|
|
@@ -42655,7 +42986,7 @@ export type ProjectsDeleteUserData = {
|
|
|
42655
42986
|
};
|
|
42656
42987
|
export type ProjectsDeleteUserResponses = {
|
|
42657
42988
|
/**
|
|
42658
|
-
*
|
|
42989
|
+
* Role revoked successfully.
|
|
42659
42990
|
*/
|
|
42660
42991
|
200: unknown;
|
|
42661
42992
|
};
|
|
@@ -43015,7 +43346,7 @@ export type PromotionsCampaignsOrdersListData = {
|
|
|
43015
43346
|
uuid: string;
|
|
43016
43347
|
};
|
|
43017
43348
|
query?: {
|
|
43018
|
-
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'>;
|
|
43019
43350
|
/**
|
|
43020
43351
|
* A page number within the paginated result set.
|
|
43021
43352
|
*/
|
|
@@ -43182,13 +43513,10 @@ export type ProposalProposalsAddUserData = {
|
|
|
43182
43513
|
};
|
|
43183
43514
|
export type ProposalProposalsAddUserErrors = {
|
|
43184
43515
|
/**
|
|
43185
|
-
* Validation error when trying to add user to terminated project
|
|
43516
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
43186
43517
|
*/
|
|
43187
|
-
400:
|
|
43188
|
-
non_field_errors?: Array<string>;
|
|
43189
|
-
};
|
|
43518
|
+
400: unknown;
|
|
43190
43519
|
};
|
|
43191
|
-
export type ProposalProposalsAddUserError = ProposalProposalsAddUserErrors[keyof ProposalProposalsAddUserErrors];
|
|
43192
43520
|
export type ProposalProposalsAddUserResponses = {
|
|
43193
43521
|
201: UserRoleExpirationTime;
|
|
43194
43522
|
};
|
|
@@ -43319,7 +43647,7 @@ export type ProposalProposalsDeleteUserData = {
|
|
|
43319
43647
|
};
|
|
43320
43648
|
export type ProposalProposalsDeleteUserResponses = {
|
|
43321
43649
|
/**
|
|
43322
|
-
*
|
|
43650
|
+
* Role revoked successfully.
|
|
43323
43651
|
*/
|
|
43324
43652
|
200: unknown;
|
|
43325
43653
|
};
|
|
@@ -43744,13 +44072,10 @@ export type ProposalProtectedCallsAddUserData = {
|
|
|
43744
44072
|
};
|
|
43745
44073
|
export type ProposalProtectedCallsAddUserErrors = {
|
|
43746
44074
|
/**
|
|
43747
|
-
* Validation error when trying to add user to terminated project
|
|
44075
|
+
* Validation error, for example when trying to add a user to a terminated project.
|
|
43748
44076
|
*/
|
|
43749
|
-
400:
|
|
43750
|
-
non_field_errors?: Array<string>;
|
|
43751
|
-
};
|
|
44077
|
+
400: unknown;
|
|
43752
44078
|
};
|
|
43753
|
-
export type ProposalProtectedCallsAddUserError = ProposalProtectedCallsAddUserErrors[keyof ProposalProtectedCallsAddUserErrors];
|
|
43754
44079
|
export type ProposalProtectedCallsAddUserResponses = {
|
|
43755
44080
|
201: UserRoleExpirationTime;
|
|
43756
44081
|
};
|
|
@@ -43803,7 +44128,7 @@ export type ProposalProtectedCallsDeleteUserData = {
|
|
|
43803
44128
|
};
|
|
43804
44129
|
export type ProposalProtectedCallsDeleteUserResponses = {
|
|
43805
44130
|
/**
|
|
43806
|
-
*
|
|
44131
|
+
* Role revoked successfully.
|
|
43807
44132
|
*/
|
|
43808
44133
|
200: unknown;
|
|
43809
44134
|
};
|
|
@@ -47267,7 +47592,7 @@ export type RolesDisableData = {
|
|
|
47267
47592
|
};
|
|
47268
47593
|
export type RolesDisableResponses = {
|
|
47269
47594
|
/**
|
|
47270
|
-
*
|
|
47595
|
+
* Role disabled successfully.
|
|
47271
47596
|
*/
|
|
47272
47597
|
200: unknown;
|
|
47273
47598
|
};
|
|
@@ -47281,7 +47606,7 @@ export type RolesEnableData = {
|
|
|
47281
47606
|
};
|
|
47282
47607
|
export type RolesEnableResponses = {
|
|
47283
47608
|
/**
|
|
47284
|
-
*
|
|
47609
|
+
* Role enabled successfully.
|
|
47285
47610
|
*/
|
|
47286
47611
|
200: unknown;
|
|
47287
47612
|
};
|