waldur-js-client 7.7.7-dev.0 → 7.7.7-dev.1
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 +31 -1
- package/dist/sdk.gen.js +279 -0
- package/dist/types.gen.d.ts +383 -38
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -864,7 +864,6 @@ export type BookingResource = {
|
|
|
864
864
|
readonly offering_image?: string;
|
|
865
865
|
readonly offering_thumbnail?: string;
|
|
866
866
|
readonly offering_type?: string;
|
|
867
|
-
readonly offering_terms_of_service?: string;
|
|
868
867
|
/**
|
|
869
868
|
* Accessible to all customers.
|
|
870
869
|
*/
|
|
@@ -955,6 +954,10 @@ export type BookingResource = {
|
|
|
955
954
|
readonly service_settings_uuid?: string;
|
|
956
955
|
readonly project_slug?: string;
|
|
957
956
|
readonly customer_slug?: string;
|
|
957
|
+
/**
|
|
958
|
+
* Check if the current user needs to re-consent for this resource's offering.
|
|
959
|
+
*/
|
|
960
|
+
readonly user_requires_reconsent?: boolean;
|
|
958
961
|
readonly created_by?: string;
|
|
959
962
|
/**
|
|
960
963
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -4553,8 +4556,6 @@ export type Offering = {
|
|
|
4553
4556
|
readonly slug?: string;
|
|
4554
4557
|
description?: string;
|
|
4555
4558
|
full_description?: string;
|
|
4556
|
-
terms_of_service?: string;
|
|
4557
|
-
terms_of_service_link?: string;
|
|
4558
4559
|
privacy_policy_link?: string;
|
|
4559
4560
|
/**
|
|
4560
4561
|
* Publicly accessible offering access URL
|
|
@@ -4722,8 +4723,6 @@ export type OfferingCreate = {
|
|
|
4722
4723
|
readonly slug: string;
|
|
4723
4724
|
description?: string;
|
|
4724
4725
|
full_description?: string;
|
|
4725
|
-
terms_of_service?: string;
|
|
4726
|
-
terms_of_service_link?: string;
|
|
4727
4726
|
privacy_policy_link?: string;
|
|
4728
4727
|
/**
|
|
4729
4728
|
* Publicly accessible offering access URL
|
|
@@ -4798,8 +4797,6 @@ export type OfferingCreateRequest = {
|
|
|
4798
4797
|
name: string;
|
|
4799
4798
|
description?: string;
|
|
4800
4799
|
full_description?: string;
|
|
4801
|
-
terms_of_service?: string;
|
|
4802
|
-
terms_of_service_link?: string;
|
|
4803
4800
|
privacy_policy_link?: string;
|
|
4804
4801
|
/**
|
|
4805
4802
|
* Publicly accessible offering access URL
|
|
@@ -4921,8 +4918,6 @@ export type OfferingOverviewUpdateRequest = {
|
|
|
4921
4918
|
name: string;
|
|
4922
4919
|
description?: string;
|
|
4923
4920
|
full_description?: string;
|
|
4924
|
-
terms_of_service?: string;
|
|
4925
|
-
terms_of_service_link?: string;
|
|
4926
4921
|
privacy_policy_link?: string;
|
|
4927
4922
|
/**
|
|
4928
4923
|
* Publicly accessible offering access URL
|
|
@@ -4997,6 +4992,53 @@ export type OfferingStatsCounter = {
|
|
|
4997
4992
|
service_provider_uuid: string;
|
|
4998
4993
|
count: number;
|
|
4999
4994
|
};
|
|
4995
|
+
export type OfferingTermsOfService = {
|
|
4996
|
+
readonly uuid: string;
|
|
4997
|
+
readonly offering_uuid: string;
|
|
4998
|
+
readonly offering_name: string;
|
|
4999
|
+
terms_of_service?: string;
|
|
5000
|
+
terms_of_service_link?: string;
|
|
5001
|
+
version?: string;
|
|
5002
|
+
is_active?: boolean;
|
|
5003
|
+
/**
|
|
5004
|
+
* If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
|
|
5005
|
+
*/
|
|
5006
|
+
requires_reconsent?: boolean;
|
|
5007
|
+
readonly created: string;
|
|
5008
|
+
readonly modified: string;
|
|
5009
|
+
};
|
|
5010
|
+
export type OfferingTermsOfServiceCreate = {
|
|
5011
|
+
offering: string;
|
|
5012
|
+
terms_of_service?: string;
|
|
5013
|
+
terms_of_service_link?: string;
|
|
5014
|
+
version?: string;
|
|
5015
|
+
is_active?: boolean;
|
|
5016
|
+
/**
|
|
5017
|
+
* If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
|
|
5018
|
+
*/
|
|
5019
|
+
requires_reconsent?: boolean;
|
|
5020
|
+
};
|
|
5021
|
+
export type OfferingTermsOfServiceCreateRequest = {
|
|
5022
|
+
offering: string;
|
|
5023
|
+
terms_of_service?: string;
|
|
5024
|
+
terms_of_service_link?: string;
|
|
5025
|
+
version?: string;
|
|
5026
|
+
is_active?: boolean;
|
|
5027
|
+
/**
|
|
5028
|
+
* If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
|
|
5029
|
+
*/
|
|
5030
|
+
requires_reconsent?: boolean;
|
|
5031
|
+
};
|
|
5032
|
+
export type OfferingTermsOfServiceRequest = {
|
|
5033
|
+
terms_of_service?: string;
|
|
5034
|
+
terms_of_service_link?: string;
|
|
5035
|
+
version?: string;
|
|
5036
|
+
is_active?: boolean;
|
|
5037
|
+
/**
|
|
5038
|
+
* If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
|
|
5039
|
+
*/
|
|
5040
|
+
requires_reconsent?: boolean;
|
|
5041
|
+
};
|
|
5000
5042
|
export type OfferingThumbnailRequest = {
|
|
5001
5043
|
thumbnail: Blob | File;
|
|
5002
5044
|
};
|
|
@@ -6659,7 +6701,6 @@ export type OrderCreate = {
|
|
|
6659
6701
|
readonly offering_image: string;
|
|
6660
6702
|
readonly offering_thumbnail: string;
|
|
6661
6703
|
readonly offering_type: string;
|
|
6662
|
-
readonly offering_terms_of_service: string;
|
|
6663
6704
|
/**
|
|
6664
6705
|
* Accessible to all customers.
|
|
6665
6706
|
*/
|
|
@@ -6747,7 +6788,6 @@ export type OrderDetails = {
|
|
|
6747
6788
|
readonly offering_image?: string;
|
|
6748
6789
|
readonly offering_thumbnail?: string;
|
|
6749
6790
|
readonly offering_type?: string;
|
|
6750
|
-
readonly offering_terms_of_service?: string;
|
|
6751
6791
|
/**
|
|
6752
6792
|
* Accessible to all customers.
|
|
6753
6793
|
*/
|
|
@@ -7254,6 +7294,16 @@ export type PatchedOfferingEstimatedCostPolicyRequest = {
|
|
|
7254
7294
|
period?: PeriodEnum;
|
|
7255
7295
|
organization_groups?: Array<string>;
|
|
7256
7296
|
};
|
|
7297
|
+
export type PatchedOfferingTermsOfServiceRequest = {
|
|
7298
|
+
terms_of_service?: string;
|
|
7299
|
+
terms_of_service_link?: string;
|
|
7300
|
+
version?: string;
|
|
7301
|
+
is_active?: boolean;
|
|
7302
|
+
/**
|
|
7303
|
+
* If True, user will be asked to re-consent to the terms of service when the terms of service are updated.
|
|
7304
|
+
*/
|
|
7305
|
+
requires_reconsent?: boolean;
|
|
7306
|
+
};
|
|
7257
7307
|
export type PatchedOfferingUsagePolicyRequest = {
|
|
7258
7308
|
scope?: string;
|
|
7259
7309
|
actions?: string;
|
|
@@ -7788,6 +7838,9 @@ export type PatchedUserAgreementRequest = {
|
|
|
7788
7838
|
content?: string;
|
|
7789
7839
|
agreement_type?: AgreementTypeEnum;
|
|
7790
7840
|
};
|
|
7841
|
+
export type PatchedUserOfferingConsentRequest = {
|
|
7842
|
+
version?: string;
|
|
7843
|
+
};
|
|
7791
7844
|
export type PatchedUserRequest = {
|
|
7792
7845
|
/**
|
|
7793
7846
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -8546,8 +8599,6 @@ export type ProviderOfferingDetails = {
|
|
|
8546
8599
|
readonly slug?: string;
|
|
8547
8600
|
description?: string;
|
|
8548
8601
|
full_description?: string;
|
|
8549
|
-
terms_of_service?: string;
|
|
8550
|
-
terms_of_service_link?: string;
|
|
8551
8602
|
privacy_policy_link?: string;
|
|
8552
8603
|
/**
|
|
8553
8604
|
* Publicly accessible offering access URL
|
|
@@ -8630,8 +8681,6 @@ export type ProviderOfferingDetailsRequest = {
|
|
|
8630
8681
|
name: string;
|
|
8631
8682
|
description?: string;
|
|
8632
8683
|
full_description?: string;
|
|
8633
|
-
terms_of_service?: string;
|
|
8634
|
-
terms_of_service_link?: string;
|
|
8635
8684
|
privacy_policy_link?: string;
|
|
8636
8685
|
/**
|
|
8637
8686
|
* Publicly accessible offering access URL
|
|
@@ -8847,8 +8896,6 @@ export type PublicOfferingDetails = {
|
|
|
8847
8896
|
readonly slug?: string;
|
|
8848
8897
|
description?: string;
|
|
8849
8898
|
full_description?: string;
|
|
8850
|
-
terms_of_service?: string;
|
|
8851
|
-
terms_of_service_link?: string;
|
|
8852
8899
|
privacy_policy_link?: string;
|
|
8853
8900
|
/**
|
|
8854
8901
|
* Publicly accessible offering access URL
|
|
@@ -9996,7 +10043,6 @@ export type Resource = {
|
|
|
9996
10043
|
readonly offering_image?: string;
|
|
9997
10044
|
readonly offering_thumbnail?: string;
|
|
9998
10045
|
readonly offering_type?: string;
|
|
9999
|
-
readonly offering_terms_of_service?: string;
|
|
10000
10046
|
/**
|
|
10001
10047
|
* Accessible to all customers.
|
|
10002
10048
|
*/
|
|
@@ -10087,6 +10133,10 @@ export type Resource = {
|
|
|
10087
10133
|
readonly service_settings_uuid?: string;
|
|
10088
10134
|
readonly project_slug?: string;
|
|
10089
10135
|
readonly customer_slug?: string;
|
|
10136
|
+
/**
|
|
10137
|
+
* Check if the current user needs to re-consent for this resource's offering.
|
|
10138
|
+
*/
|
|
10139
|
+
readonly user_requires_reconsent?: boolean;
|
|
10090
10140
|
};
|
|
10091
10141
|
export type ResourceBackendIdRequest = {
|
|
10092
10142
|
backend_id?: string;
|
|
@@ -11123,6 +11173,39 @@ export type UserAuthToken = {
|
|
|
11123
11173
|
export type UserEmailChangeRequest = {
|
|
11124
11174
|
email: string;
|
|
11125
11175
|
};
|
|
11176
|
+
export type UserOfferingConsent = {
|
|
11177
|
+
readonly uuid: string;
|
|
11178
|
+
readonly user_uuid: string;
|
|
11179
|
+
readonly offering_uuid: string;
|
|
11180
|
+
readonly agreement_date: string;
|
|
11181
|
+
version?: string;
|
|
11182
|
+
readonly revocation_date: string | null;
|
|
11183
|
+
readonly created: string;
|
|
11184
|
+
/**
|
|
11185
|
+
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
11186
|
+
*/
|
|
11187
|
+
readonly user_username: string;
|
|
11188
|
+
readonly user_full_name: string;
|
|
11189
|
+
/**
|
|
11190
|
+
* Email address
|
|
11191
|
+
*/
|
|
11192
|
+
readonly user_email: string;
|
|
11193
|
+
readonly offering_name: string;
|
|
11194
|
+
readonly offering_slug: string;
|
|
11195
|
+
readonly offering_url: string;
|
|
11196
|
+
readonly modified: string;
|
|
11197
|
+
readonly has_consent: boolean;
|
|
11198
|
+
readonly requires_reconsent: boolean;
|
|
11199
|
+
};
|
|
11200
|
+
export type UserOfferingConsentCreate = {
|
|
11201
|
+
offering: string;
|
|
11202
|
+
};
|
|
11203
|
+
export type UserOfferingConsentCreateRequest = {
|
|
11204
|
+
offering: string;
|
|
11205
|
+
};
|
|
11206
|
+
export type UserOfferingConsentRequest = {
|
|
11207
|
+
version?: string;
|
|
11208
|
+
};
|
|
11126
11209
|
export type UserRequest = {
|
|
11127
11210
|
/**
|
|
11128
11211
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -14274,7 +14357,7 @@ export type BookingOfferingsListData = {
|
|
|
14274
14357
|
body?: never;
|
|
14275
14358
|
path?: never;
|
|
14276
14359
|
query?: {
|
|
14277
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | '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' | 'shared' | 'slug' | 'state' | '
|
|
14360
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | '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' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
14278
14361
|
/**
|
|
14279
14362
|
* A page number within the paginated result set.
|
|
14280
14363
|
*/
|
|
@@ -14317,7 +14400,7 @@ export type BookingOfferingsRetrieveData = {
|
|
|
14317
14400
|
uuid: string;
|
|
14318
14401
|
};
|
|
14319
14402
|
query?: {
|
|
14320
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | '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' | 'shared' | 'slug' | 'state' | '
|
|
14403
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | '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' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
14321
14404
|
};
|
|
14322
14405
|
url: '/api/booking-offerings/{uuid}/';
|
|
14323
14406
|
};
|
|
@@ -14384,7 +14467,7 @@ export type BookingResourcesListData = {
|
|
|
14384
14467
|
customer?: string;
|
|
14385
14468
|
customer_uuid?: string;
|
|
14386
14469
|
downscaled?: boolean;
|
|
14387
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
14470
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
14388
14471
|
/**
|
|
14389
14472
|
* Has termination date
|
|
14390
14473
|
*/
|
|
@@ -14542,7 +14625,7 @@ export type BookingResourcesRetrieveData = {
|
|
|
14542
14625
|
uuid: string;
|
|
14543
14626
|
};
|
|
14544
14627
|
query?: {
|
|
14545
|
-
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
14628
|
+
field?: Array<'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_billable' | 'offering_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
14546
14629
|
};
|
|
14547
14630
|
url: '/api/booking-resources/{uuid}/';
|
|
14548
14631
|
};
|
|
@@ -21678,6 +21761,129 @@ export type MarketplaceOfferingReferralsRetrieveResponses = {
|
|
|
21678
21761
|
200: OfferingReferral;
|
|
21679
21762
|
};
|
|
21680
21763
|
export type MarketplaceOfferingReferralsRetrieveResponse = MarketplaceOfferingReferralsRetrieveResponses[keyof MarketplaceOfferingReferralsRetrieveResponses];
|
|
21764
|
+
export type MarketplaceOfferingTermsOfServiceListData = {
|
|
21765
|
+
body?: never;
|
|
21766
|
+
path?: never;
|
|
21767
|
+
query?: {
|
|
21768
|
+
is_active?: boolean;
|
|
21769
|
+
/**
|
|
21770
|
+
* Ordering
|
|
21771
|
+
*
|
|
21772
|
+
*
|
|
21773
|
+
*/
|
|
21774
|
+
o?: Array<'-created' | '-modified' | '-version' | 'created' | 'modified' | 'version'>;
|
|
21775
|
+
offering?: string;
|
|
21776
|
+
offering_uuid?: string;
|
|
21777
|
+
/**
|
|
21778
|
+
* A page number within the paginated result set.
|
|
21779
|
+
*/
|
|
21780
|
+
page?: number;
|
|
21781
|
+
/**
|
|
21782
|
+
* Number of results to return per page.
|
|
21783
|
+
*/
|
|
21784
|
+
page_size?: number;
|
|
21785
|
+
requires_reconsent?: boolean;
|
|
21786
|
+
version?: string;
|
|
21787
|
+
};
|
|
21788
|
+
url: '/api/marketplace-offering-terms-of-service/';
|
|
21789
|
+
};
|
|
21790
|
+
export type MarketplaceOfferingTermsOfServiceListResponses = {
|
|
21791
|
+
200: Array<OfferingTermsOfService>;
|
|
21792
|
+
};
|
|
21793
|
+
export type MarketplaceOfferingTermsOfServiceListResponse = MarketplaceOfferingTermsOfServiceListResponses[keyof MarketplaceOfferingTermsOfServiceListResponses];
|
|
21794
|
+
export type MarketplaceOfferingTermsOfServiceCountData = {
|
|
21795
|
+
body?: never;
|
|
21796
|
+
path?: never;
|
|
21797
|
+
query?: {
|
|
21798
|
+
is_active?: boolean;
|
|
21799
|
+
/**
|
|
21800
|
+
* Ordering
|
|
21801
|
+
*
|
|
21802
|
+
*
|
|
21803
|
+
*/
|
|
21804
|
+
o?: Array<'-created' | '-modified' | '-version' | 'created' | 'modified' | 'version'>;
|
|
21805
|
+
offering?: string;
|
|
21806
|
+
offering_uuid?: string;
|
|
21807
|
+
/**
|
|
21808
|
+
* A page number within the paginated result set.
|
|
21809
|
+
*/
|
|
21810
|
+
page?: number;
|
|
21811
|
+
/**
|
|
21812
|
+
* Number of results to return per page.
|
|
21813
|
+
*/
|
|
21814
|
+
page_size?: number;
|
|
21815
|
+
requires_reconsent?: boolean;
|
|
21816
|
+
version?: string;
|
|
21817
|
+
};
|
|
21818
|
+
url: '/api/marketplace-offering-terms-of-service/';
|
|
21819
|
+
};
|
|
21820
|
+
export type MarketplaceOfferingTermsOfServiceCountResponses = {
|
|
21821
|
+
/**
|
|
21822
|
+
* No response body
|
|
21823
|
+
*/
|
|
21824
|
+
200: unknown;
|
|
21825
|
+
};
|
|
21826
|
+
export type MarketplaceOfferingTermsOfServiceCreateData = {
|
|
21827
|
+
body: OfferingTermsOfServiceCreateRequest;
|
|
21828
|
+
path?: never;
|
|
21829
|
+
query?: never;
|
|
21830
|
+
url: '/api/marketplace-offering-terms-of-service/';
|
|
21831
|
+
};
|
|
21832
|
+
export type MarketplaceOfferingTermsOfServiceCreateResponses = {
|
|
21833
|
+
201: OfferingTermsOfServiceCreate;
|
|
21834
|
+
};
|
|
21835
|
+
export type MarketplaceOfferingTermsOfServiceCreateResponse = MarketplaceOfferingTermsOfServiceCreateResponses[keyof MarketplaceOfferingTermsOfServiceCreateResponses];
|
|
21836
|
+
export type MarketplaceOfferingTermsOfServiceDestroyData = {
|
|
21837
|
+
body?: never;
|
|
21838
|
+
path: {
|
|
21839
|
+
uuid: string;
|
|
21840
|
+
};
|
|
21841
|
+
query?: never;
|
|
21842
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/';
|
|
21843
|
+
};
|
|
21844
|
+
export type MarketplaceOfferingTermsOfServiceDestroyResponses = {
|
|
21845
|
+
/**
|
|
21846
|
+
* No response body
|
|
21847
|
+
*/
|
|
21848
|
+
204: void;
|
|
21849
|
+
};
|
|
21850
|
+
export type MarketplaceOfferingTermsOfServiceDestroyResponse = MarketplaceOfferingTermsOfServiceDestroyResponses[keyof MarketplaceOfferingTermsOfServiceDestroyResponses];
|
|
21851
|
+
export type MarketplaceOfferingTermsOfServiceRetrieveData = {
|
|
21852
|
+
body?: never;
|
|
21853
|
+
path: {
|
|
21854
|
+
uuid: string;
|
|
21855
|
+
};
|
|
21856
|
+
query?: never;
|
|
21857
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/';
|
|
21858
|
+
};
|
|
21859
|
+
export type MarketplaceOfferingTermsOfServiceRetrieveResponses = {
|
|
21860
|
+
200: OfferingTermsOfService;
|
|
21861
|
+
};
|
|
21862
|
+
export type MarketplaceOfferingTermsOfServiceRetrieveResponse = MarketplaceOfferingTermsOfServiceRetrieveResponses[keyof MarketplaceOfferingTermsOfServiceRetrieveResponses];
|
|
21863
|
+
export type MarketplaceOfferingTermsOfServicePartialUpdateData = {
|
|
21864
|
+
body?: PatchedOfferingTermsOfServiceRequest;
|
|
21865
|
+
path: {
|
|
21866
|
+
uuid: string;
|
|
21867
|
+
};
|
|
21868
|
+
query?: never;
|
|
21869
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/';
|
|
21870
|
+
};
|
|
21871
|
+
export type MarketplaceOfferingTermsOfServicePartialUpdateResponses = {
|
|
21872
|
+
200: OfferingTermsOfService;
|
|
21873
|
+
};
|
|
21874
|
+
export type MarketplaceOfferingTermsOfServicePartialUpdateResponse = MarketplaceOfferingTermsOfServicePartialUpdateResponses[keyof MarketplaceOfferingTermsOfServicePartialUpdateResponses];
|
|
21875
|
+
export type MarketplaceOfferingTermsOfServiceUpdateData = {
|
|
21876
|
+
body?: OfferingTermsOfServiceRequest;
|
|
21877
|
+
path: {
|
|
21878
|
+
uuid: string;
|
|
21879
|
+
};
|
|
21880
|
+
query?: never;
|
|
21881
|
+
url: '/api/marketplace-offering-terms-of-service/{uuid}/';
|
|
21882
|
+
};
|
|
21883
|
+
export type MarketplaceOfferingTermsOfServiceUpdateResponses = {
|
|
21884
|
+
200: OfferingTermsOfService;
|
|
21885
|
+
};
|
|
21886
|
+
export type MarketplaceOfferingTermsOfServiceUpdateResponse = MarketplaceOfferingTermsOfServiceUpdateResponses[keyof MarketplaceOfferingTermsOfServiceUpdateResponses];
|
|
21681
21887
|
export type MarketplaceOfferingUsagePoliciesListData = {
|
|
21682
21888
|
body?: never;
|
|
21683
21889
|
path?: never;
|
|
@@ -22356,7 +22562,7 @@ export type MarketplaceOrdersListData = {
|
|
|
22356
22562
|
*/
|
|
22357
22563
|
created?: string;
|
|
22358
22564
|
customer_uuid?: string;
|
|
22359
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | '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' | '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' | '
|
|
22565
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | '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' | '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_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22360
22566
|
/**
|
|
22361
22567
|
* Modified after
|
|
22362
22568
|
*/
|
|
@@ -22482,7 +22688,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
22482
22688
|
uuid: string;
|
|
22483
22689
|
};
|
|
22484
22690
|
query?: {
|
|
22485
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | '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' | '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' | '
|
|
22691
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | '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' | '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_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22486
22692
|
};
|
|
22487
22693
|
url: '/api/marketplace-orders/{uuid}/';
|
|
22488
22694
|
};
|
|
@@ -23316,7 +23522,7 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
23316
23522
|
customer?: string;
|
|
23317
23523
|
customer_uuid?: string;
|
|
23318
23524
|
description?: string;
|
|
23319
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | '
|
|
23525
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23320
23526
|
/**
|
|
23321
23527
|
* Keyword
|
|
23322
23528
|
*/
|
|
@@ -23493,7 +23699,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
|
|
|
23493
23699
|
uuid: string;
|
|
23494
23700
|
};
|
|
23495
23701
|
query?: {
|
|
23496
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | '
|
|
23702
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23497
23703
|
};
|
|
23498
23704
|
url: '/api/marketplace-provider-offerings/{uuid}/';
|
|
23499
23705
|
};
|
|
@@ -23991,7 +24197,7 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsRetrieveData
|
|
|
23991
24197
|
uuid: string;
|
|
23992
24198
|
};
|
|
23993
24199
|
query?: {
|
|
23994
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | '
|
|
24200
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
23995
24201
|
};
|
|
23996
24202
|
url: '/api/marketplace-provider-offerings/{uuid}/list_customer_service_accounts/';
|
|
23997
24203
|
};
|
|
@@ -24026,7 +24232,7 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsRetrieveData =
|
|
|
24026
24232
|
uuid: string;
|
|
24027
24233
|
};
|
|
24028
24234
|
query?: {
|
|
24029
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | '
|
|
24235
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24030
24236
|
};
|
|
24031
24237
|
url: '/api/marketplace-provider-offerings/{uuid}/list_project_service_accounts/';
|
|
24032
24238
|
};
|
|
@@ -24199,7 +24405,7 @@ export type MarketplaceProviderOfferingsStatsRetrieveData = {
|
|
|
24199
24405
|
uuid: string;
|
|
24200
24406
|
};
|
|
24201
24407
|
query?: {
|
|
24202
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | '
|
|
24408
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24203
24409
|
};
|
|
24204
24410
|
url: '/api/marketplace-provider-offerings/{uuid}/stats/';
|
|
24205
24411
|
};
|
|
@@ -24405,7 +24611,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
|
|
|
24405
24611
|
uuid: string;
|
|
24406
24612
|
};
|
|
24407
24613
|
query: {
|
|
24408
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | '
|
|
24614
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | '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' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
24409
24615
|
/**
|
|
24410
24616
|
* Username of the user to check.
|
|
24411
24617
|
*/
|
|
@@ -24601,7 +24807,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
24601
24807
|
customer?: string;
|
|
24602
24808
|
customer_uuid?: string;
|
|
24603
24809
|
downscaled?: boolean;
|
|
24604
|
-
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_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
24810
|
+
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_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
24605
24811
|
/**
|
|
24606
24812
|
* Has termination date
|
|
24607
24813
|
*/
|
|
@@ -24758,7 +24964,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
|
|
|
24758
24964
|
uuid: string;
|
|
24759
24965
|
};
|
|
24760
24966
|
query?: {
|
|
24761
|
-
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_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
24967
|
+
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_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
24762
24968
|
};
|
|
24763
24969
|
url: '/api/marketplace-provider-resources/{uuid}/';
|
|
24764
24970
|
};
|
|
@@ -24796,7 +25002,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
|
|
|
24796
25002
|
uuid: string;
|
|
24797
25003
|
};
|
|
24798
25004
|
query?: {
|
|
24799
|
-
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_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
25005
|
+
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_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
24800
25006
|
};
|
|
24801
25007
|
url: '/api/marketplace-provider-resources/{uuid}/details/';
|
|
24802
25008
|
};
|
|
@@ -25089,7 +25295,7 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
25089
25295
|
customer?: string;
|
|
25090
25296
|
customer_uuid?: string;
|
|
25091
25297
|
description?: string;
|
|
25092
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | '
|
|
25298
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
25093
25299
|
/**
|
|
25094
25300
|
* Keyword
|
|
25095
25301
|
*/
|
|
@@ -25241,7 +25447,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
|
|
|
25241
25447
|
uuid: string;
|
|
25242
25448
|
};
|
|
25243
25449
|
query?: {
|
|
25244
|
-
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | '
|
|
25450
|
+
field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | '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' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'shared' | 'slug' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
|
|
25245
25451
|
};
|
|
25246
25452
|
url: '/api/marketplace-public-offerings/{uuid}/';
|
|
25247
25453
|
};
|
|
@@ -25536,7 +25742,7 @@ export type MarketplaceResourcesListData = {
|
|
|
25536
25742
|
customer?: string;
|
|
25537
25743
|
customer_uuid?: string;
|
|
25538
25744
|
downscaled?: boolean;
|
|
25539
|
-
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_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
25745
|
+
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_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
25540
25746
|
/**
|
|
25541
25747
|
* Has termination date
|
|
25542
25748
|
*/
|
|
@@ -25693,7 +25899,7 @@ export type MarketplaceResourcesRetrieveData = {
|
|
|
25693
25899
|
uuid: string;
|
|
25694
25900
|
};
|
|
25695
25901
|
query?: {
|
|
25696
|
-
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_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
25902
|
+
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_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
25697
25903
|
};
|
|
25698
25904
|
url: '/api/marketplace-resources/{uuid}/';
|
|
25699
25905
|
};
|
|
@@ -25731,7 +25937,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
|
|
|
25731
25937
|
uuid: string;
|
|
25732
25938
|
};
|
|
25733
25939
|
query?: {
|
|
25734
|
-
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_customer_uuid' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | '
|
|
25940
|
+
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_customer_uuid' | '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_uuid' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
25735
25941
|
};
|
|
25736
25942
|
url: '/api/marketplace-resources/{uuid}/details/';
|
|
25737
25943
|
};
|
|
@@ -28182,6 +28388,145 @@ export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingCountResponses
|
|
|
28182
28388
|
*/
|
|
28183
28389
|
200: unknown;
|
|
28184
28390
|
};
|
|
28391
|
+
export type MarketplaceUserOfferingConsentsListData = {
|
|
28392
|
+
body?: never;
|
|
28393
|
+
path?: never;
|
|
28394
|
+
query?: {
|
|
28395
|
+
has_consent?: boolean;
|
|
28396
|
+
/**
|
|
28397
|
+
* Ordering
|
|
28398
|
+
*
|
|
28399
|
+
*
|
|
28400
|
+
*/
|
|
28401
|
+
o?: Array<'-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date'>;
|
|
28402
|
+
offering?: string;
|
|
28403
|
+
offering_uuid?: string;
|
|
28404
|
+
/**
|
|
28405
|
+
* A page number within the paginated result set.
|
|
28406
|
+
*/
|
|
28407
|
+
page?: number;
|
|
28408
|
+
/**
|
|
28409
|
+
* Number of results to return per page.
|
|
28410
|
+
*/
|
|
28411
|
+
page_size?: number;
|
|
28412
|
+
requires_reconsent?: boolean;
|
|
28413
|
+
user?: string;
|
|
28414
|
+
user_uuid?: string;
|
|
28415
|
+
version?: string;
|
|
28416
|
+
};
|
|
28417
|
+
url: '/api/marketplace-user-offering-consents/';
|
|
28418
|
+
};
|
|
28419
|
+
export type MarketplaceUserOfferingConsentsListResponses = {
|
|
28420
|
+
200: Array<UserOfferingConsent>;
|
|
28421
|
+
};
|
|
28422
|
+
export type MarketplaceUserOfferingConsentsListResponse = MarketplaceUserOfferingConsentsListResponses[keyof MarketplaceUserOfferingConsentsListResponses];
|
|
28423
|
+
export type MarketplaceUserOfferingConsentsCountData = {
|
|
28424
|
+
body?: never;
|
|
28425
|
+
path?: never;
|
|
28426
|
+
query?: {
|
|
28427
|
+
has_consent?: boolean;
|
|
28428
|
+
/**
|
|
28429
|
+
* Ordering
|
|
28430
|
+
*
|
|
28431
|
+
*
|
|
28432
|
+
*/
|
|
28433
|
+
o?: Array<'-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date'>;
|
|
28434
|
+
offering?: string;
|
|
28435
|
+
offering_uuid?: string;
|
|
28436
|
+
/**
|
|
28437
|
+
* A page number within the paginated result set.
|
|
28438
|
+
*/
|
|
28439
|
+
page?: number;
|
|
28440
|
+
/**
|
|
28441
|
+
* Number of results to return per page.
|
|
28442
|
+
*/
|
|
28443
|
+
page_size?: number;
|
|
28444
|
+
requires_reconsent?: boolean;
|
|
28445
|
+
user?: string;
|
|
28446
|
+
user_uuid?: string;
|
|
28447
|
+
version?: string;
|
|
28448
|
+
};
|
|
28449
|
+
url: '/api/marketplace-user-offering-consents/';
|
|
28450
|
+
};
|
|
28451
|
+
export type MarketplaceUserOfferingConsentsCountResponses = {
|
|
28452
|
+
/**
|
|
28453
|
+
* No response body
|
|
28454
|
+
*/
|
|
28455
|
+
200: unknown;
|
|
28456
|
+
};
|
|
28457
|
+
export type MarketplaceUserOfferingConsentsCreateData = {
|
|
28458
|
+
body: UserOfferingConsentCreateRequest;
|
|
28459
|
+
path?: never;
|
|
28460
|
+
query?: never;
|
|
28461
|
+
url: '/api/marketplace-user-offering-consents/';
|
|
28462
|
+
};
|
|
28463
|
+
export type MarketplaceUserOfferingConsentsCreateResponses = {
|
|
28464
|
+
201: UserOfferingConsentCreate;
|
|
28465
|
+
};
|
|
28466
|
+
export type MarketplaceUserOfferingConsentsCreateResponse = MarketplaceUserOfferingConsentsCreateResponses[keyof MarketplaceUserOfferingConsentsCreateResponses];
|
|
28467
|
+
export type MarketplaceUserOfferingConsentsDestroyData = {
|
|
28468
|
+
body?: never;
|
|
28469
|
+
path: {
|
|
28470
|
+
uuid: string;
|
|
28471
|
+
};
|
|
28472
|
+
query?: never;
|
|
28473
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/';
|
|
28474
|
+
};
|
|
28475
|
+
export type MarketplaceUserOfferingConsentsDestroyResponses = {
|
|
28476
|
+
/**
|
|
28477
|
+
* No response body
|
|
28478
|
+
*/
|
|
28479
|
+
204: void;
|
|
28480
|
+
};
|
|
28481
|
+
export type MarketplaceUserOfferingConsentsDestroyResponse = MarketplaceUserOfferingConsentsDestroyResponses[keyof MarketplaceUserOfferingConsentsDestroyResponses];
|
|
28482
|
+
export type MarketplaceUserOfferingConsentsRetrieveData = {
|
|
28483
|
+
body?: never;
|
|
28484
|
+
path: {
|
|
28485
|
+
uuid: string;
|
|
28486
|
+
};
|
|
28487
|
+
query?: never;
|
|
28488
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/';
|
|
28489
|
+
};
|
|
28490
|
+
export type MarketplaceUserOfferingConsentsRetrieveResponses = {
|
|
28491
|
+
200: UserOfferingConsent;
|
|
28492
|
+
};
|
|
28493
|
+
export type MarketplaceUserOfferingConsentsRetrieveResponse = MarketplaceUserOfferingConsentsRetrieveResponses[keyof MarketplaceUserOfferingConsentsRetrieveResponses];
|
|
28494
|
+
export type MarketplaceUserOfferingConsentsPartialUpdateData = {
|
|
28495
|
+
body?: PatchedUserOfferingConsentRequest;
|
|
28496
|
+
path: {
|
|
28497
|
+
uuid: string;
|
|
28498
|
+
};
|
|
28499
|
+
query?: never;
|
|
28500
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/';
|
|
28501
|
+
};
|
|
28502
|
+
export type MarketplaceUserOfferingConsentsPartialUpdateResponses = {
|
|
28503
|
+
200: UserOfferingConsent;
|
|
28504
|
+
};
|
|
28505
|
+
export type MarketplaceUserOfferingConsentsPartialUpdateResponse = MarketplaceUserOfferingConsentsPartialUpdateResponses[keyof MarketplaceUserOfferingConsentsPartialUpdateResponses];
|
|
28506
|
+
export type MarketplaceUserOfferingConsentsUpdateData = {
|
|
28507
|
+
body?: UserOfferingConsentRequest;
|
|
28508
|
+
path: {
|
|
28509
|
+
uuid: string;
|
|
28510
|
+
};
|
|
28511
|
+
query?: never;
|
|
28512
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/';
|
|
28513
|
+
};
|
|
28514
|
+
export type MarketplaceUserOfferingConsentsUpdateResponses = {
|
|
28515
|
+
200: UserOfferingConsent;
|
|
28516
|
+
};
|
|
28517
|
+
export type MarketplaceUserOfferingConsentsUpdateResponse = MarketplaceUserOfferingConsentsUpdateResponses[keyof MarketplaceUserOfferingConsentsUpdateResponses];
|
|
28518
|
+
export type MarketplaceUserOfferingConsentsRevokeData = {
|
|
28519
|
+
body?: never;
|
|
28520
|
+
path: {
|
|
28521
|
+
uuid: string;
|
|
28522
|
+
};
|
|
28523
|
+
query?: never;
|
|
28524
|
+
url: '/api/marketplace-user-offering-consents/{uuid}/revoke/';
|
|
28525
|
+
};
|
|
28526
|
+
export type MarketplaceUserOfferingConsentsRevokeResponses = {
|
|
28527
|
+
200: UserOfferingConsent;
|
|
28528
|
+
};
|
|
28529
|
+
export type MarketplaceUserOfferingConsentsRevokeResponse = MarketplaceUserOfferingConsentsRevokeResponses[keyof MarketplaceUserOfferingConsentsRevokeResponses];
|
|
28185
28530
|
export type MediaRetrieveData = {
|
|
28186
28531
|
body?: never;
|
|
28187
28532
|
path: {
|