waldur-js-client 7.8.5-dev.3 → 7.8.5-dev.5
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 +19 -1
- package/dist/sdk.gen.js +165 -0
- package/dist/types.gen.d.ts +279 -15
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -68,6 +68,7 @@ export type AgentIdentity = {
|
|
|
68
68
|
last_restarted?: string;
|
|
69
69
|
readonly created: string;
|
|
70
70
|
readonly modified: string;
|
|
71
|
+
readonly services: Array<NestedAgentService>;
|
|
71
72
|
};
|
|
72
73
|
export type AgentIdentityRequest = {
|
|
73
74
|
offering: string;
|
|
@@ -114,16 +115,17 @@ export type AgentService = {
|
|
|
114
115
|
readonly identity_name: string;
|
|
115
116
|
name: string;
|
|
116
117
|
mode?: string | null;
|
|
117
|
-
state:
|
|
118
|
+
state: AgentServiceState;
|
|
118
119
|
statistics?: unknown;
|
|
119
120
|
readonly created: string;
|
|
120
121
|
readonly modified: string;
|
|
122
|
+
readonly processors: Array<NestedAgentProcessor>;
|
|
121
123
|
};
|
|
122
124
|
export type AgentServiceCreateRequest = {
|
|
123
125
|
name: string;
|
|
124
126
|
mode?: string | null;
|
|
125
127
|
};
|
|
126
|
-
export type
|
|
128
|
+
export type AgentServiceState = 'Active' | 'Idle' | 'Error';
|
|
127
129
|
export type AgentServiceStatisticsRequest = {
|
|
128
130
|
/**
|
|
129
131
|
* Statistics data to be stored for the service
|
|
@@ -1049,6 +1051,9 @@ export type BookingResource = {
|
|
|
1049
1051
|
* Check if the current user needs to re-consent for this resource's offering.
|
|
1050
1052
|
*/
|
|
1051
1053
|
readonly user_requires_reconsent?: boolean;
|
|
1054
|
+
readonly renewal_date?: {
|
|
1055
|
+
[key: string]: string;
|
|
1056
|
+
} | null;
|
|
1052
1057
|
readonly created_by?: string;
|
|
1053
1058
|
/**
|
|
1054
1059
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
@@ -2230,6 +2235,33 @@ export type Customer = {
|
|
|
2230
2235
|
readonly call_managing_organization_uuid?: string | null;
|
|
2231
2236
|
billing_price_estimate?: NestedPriceEstimate;
|
|
2232
2237
|
};
|
|
2238
|
+
export type CustomerComponentUsagePolicy = {
|
|
2239
|
+
readonly uuid: string;
|
|
2240
|
+
readonly url: string;
|
|
2241
|
+
scope: string;
|
|
2242
|
+
readonly scope_name: string;
|
|
2243
|
+
readonly scope_uuid: string;
|
|
2244
|
+
actions: string;
|
|
2245
|
+
readonly created: string;
|
|
2246
|
+
readonly created_by_full_name: string;
|
|
2247
|
+
readonly created_by_username: string;
|
|
2248
|
+
readonly has_fired: boolean;
|
|
2249
|
+
readonly fired_datetime: string;
|
|
2250
|
+
/**
|
|
2251
|
+
* Fields for saving actions extra data. Keys are name of actions.
|
|
2252
|
+
*/
|
|
2253
|
+
options?: unknown;
|
|
2254
|
+
component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
|
|
2255
|
+
};
|
|
2256
|
+
export type CustomerComponentUsagePolicyRequest = {
|
|
2257
|
+
scope: string;
|
|
2258
|
+
actions: string;
|
|
2259
|
+
/**
|
|
2260
|
+
* Fields for saving actions extra data. Keys are name of actions.
|
|
2261
|
+
*/
|
|
2262
|
+
options?: unknown;
|
|
2263
|
+
component_limits_set: Array<NestedCustomerUsagePolicyComponentRequest>;
|
|
2264
|
+
};
|
|
2233
2265
|
export type CustomerCredit = {
|
|
2234
2266
|
readonly uuid: string;
|
|
2235
2267
|
readonly url: string;
|
|
@@ -4588,6 +4620,34 @@ export type NameUuid = {
|
|
|
4588
4620
|
readonly name: string;
|
|
4589
4621
|
readonly uuid: string;
|
|
4590
4622
|
};
|
|
4623
|
+
export type NestedAgentProcessor = {
|
|
4624
|
+
readonly uuid: string;
|
|
4625
|
+
readonly url: string;
|
|
4626
|
+
name: string;
|
|
4627
|
+
last_run?: string | null;
|
|
4628
|
+
/**
|
|
4629
|
+
* Type of the backend, for example SLURM.
|
|
4630
|
+
*/
|
|
4631
|
+
backend_type: string;
|
|
4632
|
+
backend_version?: string | null;
|
|
4633
|
+
readonly created: string;
|
|
4634
|
+
readonly modified: string;
|
|
4635
|
+
};
|
|
4636
|
+
export type NestedAgentService = {
|
|
4637
|
+
readonly uuid: string;
|
|
4638
|
+
readonly url: string;
|
|
4639
|
+
name: string;
|
|
4640
|
+
mode?: string | null;
|
|
4641
|
+
state: AgentServiceState;
|
|
4642
|
+
statistics?: unknown;
|
|
4643
|
+
readonly created: string;
|
|
4644
|
+
readonly modified: string;
|
|
4645
|
+
};
|
|
4646
|
+
export type NestedAgentServiceRequest = {
|
|
4647
|
+
name: string;
|
|
4648
|
+
mode?: string | null;
|
|
4649
|
+
statistics?: unknown;
|
|
4650
|
+
};
|
|
4591
4651
|
export type NestedAttribute = {
|
|
4592
4652
|
key?: string;
|
|
4593
4653
|
title?: string;
|
|
@@ -4677,6 +4737,18 @@ export type NestedColumnRequest = {
|
|
|
4677
4737
|
*/
|
|
4678
4738
|
widget?: WidgetEnum | BlankEnum | NullEnum | null;
|
|
4679
4739
|
};
|
|
4740
|
+
export type NestedCustomerUsagePolicyComponent = {
|
|
4741
|
+
readonly type: string;
|
|
4742
|
+
limit: number;
|
|
4743
|
+
period?: PeriodEnum;
|
|
4744
|
+
readonly period_name: string;
|
|
4745
|
+
component: string;
|
|
4746
|
+
};
|
|
4747
|
+
export type NestedCustomerUsagePolicyComponentRequest = {
|
|
4748
|
+
limit: number;
|
|
4749
|
+
period?: PeriodEnum;
|
|
4750
|
+
component: string;
|
|
4751
|
+
};
|
|
4680
4752
|
export type NestedEndpoint = {
|
|
4681
4753
|
readonly uuid?: string;
|
|
4682
4754
|
name?: string;
|
|
@@ -7720,6 +7792,15 @@ export type PatchedCreateCustomerCreditRequest = {
|
|
|
7720
7792
|
grace_coefficient?: string;
|
|
7721
7793
|
apply_as_minimal_consumption?: boolean;
|
|
7722
7794
|
};
|
|
7795
|
+
export type PatchedCustomerComponentUsagePolicyRequest = {
|
|
7796
|
+
scope?: string;
|
|
7797
|
+
actions?: string;
|
|
7798
|
+
/**
|
|
7799
|
+
* Fields for saving actions extra data. Keys are name of actions.
|
|
7800
|
+
*/
|
|
7801
|
+
options?: unknown;
|
|
7802
|
+
component_limits_set?: Array<NestedCustomerUsagePolicyComponentRequest>;
|
|
7803
|
+
};
|
|
7723
7804
|
export type PatchedCustomerEstimatedCostPolicyRequest = {
|
|
7724
7805
|
scope?: string;
|
|
7725
7806
|
actions?: string;
|
|
@@ -8864,6 +8945,7 @@ export type Project = {
|
|
|
8864
8945
|
* Project type
|
|
8865
8946
|
*/
|
|
8866
8947
|
kind?: KindEnum;
|
|
8948
|
+
readonly is_removed?: boolean;
|
|
8867
8949
|
readonly project_credit?: number | null;
|
|
8868
8950
|
readonly marketplace_resource_count?: {
|
|
8869
8951
|
[key: string]: number;
|
|
@@ -11132,6 +11214,9 @@ export type Resource = {
|
|
|
11132
11214
|
* Check if the current user needs to re-consent for this resource's offering.
|
|
11133
11215
|
*/
|
|
11134
11216
|
readonly user_requires_reconsent?: boolean;
|
|
11217
|
+
readonly renewal_date?: {
|
|
11218
|
+
[key: string]: string;
|
|
11219
|
+
} | null;
|
|
11135
11220
|
};
|
|
11136
11221
|
export type ResourceBackendIdRequest = {
|
|
11137
11222
|
backend_id?: string;
|
|
@@ -16613,7 +16698,7 @@ export type BookingResourcesListData = {
|
|
|
16613
16698
|
customer?: string;
|
|
16614
16699
|
customer_uuid?: string;
|
|
16615
16700
|
downscaled?: boolean;
|
|
16616
|
-
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_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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
16701
|
+
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_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' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
16617
16702
|
/**
|
|
16618
16703
|
* Has termination date
|
|
16619
16704
|
*/
|
|
@@ -16819,7 +16904,7 @@ export type BookingResourcesRetrieveData = {
|
|
|
16819
16904
|
uuid: string;
|
|
16820
16905
|
};
|
|
16821
16906
|
query?: {
|
|
16822
|
-
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_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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
16907
|
+
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_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' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
16823
16908
|
};
|
|
16824
16909
|
url: '/api/booking-resources/{uuid}/';
|
|
16825
16910
|
};
|
|
@@ -22344,7 +22429,7 @@ export type ManagedRancherClusterResourcesListData = {
|
|
|
22344
22429
|
body?: never;
|
|
22345
22430
|
path?: never;
|
|
22346
22431
|
query?: {
|
|
22347
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
22432
|
+
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'>;
|
|
22348
22433
|
/**
|
|
22349
22434
|
* A page number within the paginated result set.
|
|
22350
22435
|
*/
|
|
@@ -22387,7 +22472,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
|
|
|
22387
22472
|
uuid: string;
|
|
22388
22473
|
};
|
|
22389
22474
|
query?: {
|
|
22390
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
22475
|
+
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'>;
|
|
22391
22476
|
};
|
|
22392
22477
|
url: '/api/managed-rancher-cluster-resources/{uuid}/';
|
|
22393
22478
|
};
|
|
@@ -23383,6 +23468,137 @@ export type MarketplaceCourseAccountsCreateBulkResponses = {
|
|
|
23383
23468
|
200: CourseAccountsBulkCreate;
|
|
23384
23469
|
};
|
|
23385
23470
|
export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
|
|
23471
|
+
export type MarketplaceCustomerComponentUsagePoliciesListData = {
|
|
23472
|
+
body?: never;
|
|
23473
|
+
path?: never;
|
|
23474
|
+
query?: {
|
|
23475
|
+
customer?: string;
|
|
23476
|
+
customer_uuid?: string;
|
|
23477
|
+
/**
|
|
23478
|
+
* A page number within the paginated result set.
|
|
23479
|
+
*/
|
|
23480
|
+
page?: number;
|
|
23481
|
+
/**
|
|
23482
|
+
* Number of results to return per page.
|
|
23483
|
+
*/
|
|
23484
|
+
page_size?: number;
|
|
23485
|
+
scope?: string;
|
|
23486
|
+
scope_uuid?: string;
|
|
23487
|
+
};
|
|
23488
|
+
url: '/api/marketplace-customer-component-usage-policies/';
|
|
23489
|
+
};
|
|
23490
|
+
export type MarketplaceCustomerComponentUsagePoliciesListResponses = {
|
|
23491
|
+
200: Array<CustomerComponentUsagePolicy>;
|
|
23492
|
+
};
|
|
23493
|
+
export type MarketplaceCustomerComponentUsagePoliciesListResponse = MarketplaceCustomerComponentUsagePoliciesListResponses[keyof MarketplaceCustomerComponentUsagePoliciesListResponses];
|
|
23494
|
+
export type MarketplaceCustomerComponentUsagePoliciesCountData = {
|
|
23495
|
+
body?: never;
|
|
23496
|
+
path?: never;
|
|
23497
|
+
query?: {
|
|
23498
|
+
customer?: string;
|
|
23499
|
+
customer_uuid?: string;
|
|
23500
|
+
/**
|
|
23501
|
+
* A page number within the paginated result set.
|
|
23502
|
+
*/
|
|
23503
|
+
page?: number;
|
|
23504
|
+
/**
|
|
23505
|
+
* Number of results to return per page.
|
|
23506
|
+
*/
|
|
23507
|
+
page_size?: number;
|
|
23508
|
+
scope?: string;
|
|
23509
|
+
scope_uuid?: string;
|
|
23510
|
+
};
|
|
23511
|
+
url: '/api/marketplace-customer-component-usage-policies/';
|
|
23512
|
+
};
|
|
23513
|
+
export type MarketplaceCustomerComponentUsagePoliciesCountResponses = {
|
|
23514
|
+
/**
|
|
23515
|
+
* No response body
|
|
23516
|
+
*/
|
|
23517
|
+
200: unknown;
|
|
23518
|
+
};
|
|
23519
|
+
export type MarketplaceCustomerComponentUsagePoliciesCreateData = {
|
|
23520
|
+
body: CustomerComponentUsagePolicyRequest;
|
|
23521
|
+
path?: never;
|
|
23522
|
+
query?: never;
|
|
23523
|
+
url: '/api/marketplace-customer-component-usage-policies/';
|
|
23524
|
+
};
|
|
23525
|
+
export type MarketplaceCustomerComponentUsagePoliciesCreateResponses = {
|
|
23526
|
+
201: CustomerComponentUsagePolicy;
|
|
23527
|
+
};
|
|
23528
|
+
export type MarketplaceCustomerComponentUsagePoliciesCreateResponse = MarketplaceCustomerComponentUsagePoliciesCreateResponses[keyof MarketplaceCustomerComponentUsagePoliciesCreateResponses];
|
|
23529
|
+
export type MarketplaceCustomerComponentUsagePoliciesDestroyData = {
|
|
23530
|
+
body?: never;
|
|
23531
|
+
path: {
|
|
23532
|
+
uuid: string;
|
|
23533
|
+
};
|
|
23534
|
+
query?: never;
|
|
23535
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
|
|
23536
|
+
};
|
|
23537
|
+
export type MarketplaceCustomerComponentUsagePoliciesDestroyResponses = {
|
|
23538
|
+
/**
|
|
23539
|
+
* No response body
|
|
23540
|
+
*/
|
|
23541
|
+
204: void;
|
|
23542
|
+
};
|
|
23543
|
+
export type MarketplaceCustomerComponentUsagePoliciesDestroyResponse = MarketplaceCustomerComponentUsagePoliciesDestroyResponses[keyof MarketplaceCustomerComponentUsagePoliciesDestroyResponses];
|
|
23544
|
+
export type MarketplaceCustomerComponentUsagePoliciesRetrieveData = {
|
|
23545
|
+
body?: never;
|
|
23546
|
+
path: {
|
|
23547
|
+
uuid: string;
|
|
23548
|
+
};
|
|
23549
|
+
query?: never;
|
|
23550
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
|
|
23551
|
+
};
|
|
23552
|
+
export type MarketplaceCustomerComponentUsagePoliciesRetrieveResponses = {
|
|
23553
|
+
200: CustomerComponentUsagePolicy;
|
|
23554
|
+
};
|
|
23555
|
+
export type MarketplaceCustomerComponentUsagePoliciesRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesRetrieveResponses];
|
|
23556
|
+
export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateData = {
|
|
23557
|
+
body?: PatchedCustomerComponentUsagePolicyRequest;
|
|
23558
|
+
path: {
|
|
23559
|
+
uuid: string;
|
|
23560
|
+
};
|
|
23561
|
+
query?: never;
|
|
23562
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
|
|
23563
|
+
};
|
|
23564
|
+
export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses = {
|
|
23565
|
+
200: CustomerComponentUsagePolicy;
|
|
23566
|
+
};
|
|
23567
|
+
export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponse = MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses[keyof MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses];
|
|
23568
|
+
export type MarketplaceCustomerComponentUsagePoliciesUpdateData = {
|
|
23569
|
+
body: CustomerComponentUsagePolicyRequest;
|
|
23570
|
+
path: {
|
|
23571
|
+
uuid: string;
|
|
23572
|
+
};
|
|
23573
|
+
query?: never;
|
|
23574
|
+
url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
|
|
23575
|
+
};
|
|
23576
|
+
export type MarketplaceCustomerComponentUsagePoliciesUpdateResponses = {
|
|
23577
|
+
200: CustomerComponentUsagePolicy;
|
|
23578
|
+
};
|
|
23579
|
+
export type MarketplaceCustomerComponentUsagePoliciesUpdateResponse = MarketplaceCustomerComponentUsagePoliciesUpdateResponses[keyof MarketplaceCustomerComponentUsagePoliciesUpdateResponses];
|
|
23580
|
+
export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveData = {
|
|
23581
|
+
body?: never;
|
|
23582
|
+
path?: never;
|
|
23583
|
+
query?: never;
|
|
23584
|
+
url: '/api/marketplace-customer-component-usage-policies/actions/';
|
|
23585
|
+
};
|
|
23586
|
+
export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses = {
|
|
23587
|
+
200: CustomerComponentUsagePolicy;
|
|
23588
|
+
};
|
|
23589
|
+
export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses];
|
|
23590
|
+
export type MarketplaceCustomerComponentUsagePoliciesActionsCountData = {
|
|
23591
|
+
body?: never;
|
|
23592
|
+
path?: never;
|
|
23593
|
+
query?: never;
|
|
23594
|
+
url: '/api/marketplace-customer-component-usage-policies/actions/';
|
|
23595
|
+
};
|
|
23596
|
+
export type MarketplaceCustomerComponentUsagePoliciesActionsCountResponses = {
|
|
23597
|
+
/**
|
|
23598
|
+
* No response body
|
|
23599
|
+
*/
|
|
23600
|
+
200: unknown;
|
|
23601
|
+
};
|
|
23386
23602
|
export type MarketplaceCustomerEstimatedCostPoliciesListData = {
|
|
23387
23603
|
body?: never;
|
|
23388
23604
|
path?: never;
|
|
@@ -26408,6 +26624,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
26408
26624
|
* User Has Consent
|
|
26409
26625
|
*/
|
|
26410
26626
|
user_has_consent?: boolean;
|
|
26627
|
+
/**
|
|
26628
|
+
* User Has Offering User
|
|
26629
|
+
*/
|
|
26630
|
+
user_has_offering_user?: boolean;
|
|
26411
26631
|
/**
|
|
26412
26632
|
* Comma-separated offering UUIDs
|
|
26413
26633
|
*/
|
|
@@ -26503,6 +26723,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
26503
26723
|
* User Has Consent
|
|
26504
26724
|
*/
|
|
26505
26725
|
user_has_consent?: boolean;
|
|
26726
|
+
/**
|
|
26727
|
+
* User Has Offering User
|
|
26728
|
+
*/
|
|
26729
|
+
user_has_offering_user?: boolean;
|
|
26506
26730
|
/**
|
|
26507
26731
|
* Comma-separated offering UUIDs
|
|
26508
26732
|
*/
|
|
@@ -26697,6 +26921,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
26697
26921
|
* User Has Consent
|
|
26698
26922
|
*/
|
|
26699
26923
|
user_has_consent?: boolean;
|
|
26924
|
+
/**
|
|
26925
|
+
* User Has Offering User
|
|
26926
|
+
*/
|
|
26927
|
+
user_has_offering_user?: boolean;
|
|
26700
26928
|
/**
|
|
26701
26929
|
* Comma-separated offering UUIDs
|
|
26702
26930
|
*/
|
|
@@ -26803,6 +27031,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
26803
27031
|
* User Has Consent
|
|
26804
27032
|
*/
|
|
26805
27033
|
user_has_consent?: boolean;
|
|
27034
|
+
/**
|
|
27035
|
+
* User Has Offering User
|
|
27036
|
+
*/
|
|
27037
|
+
user_has_offering_user?: boolean;
|
|
26806
27038
|
/**
|
|
26807
27039
|
* Comma-separated offering UUIDs
|
|
26808
27040
|
*/
|
|
@@ -26914,6 +27146,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
26914
27146
|
* User Has Consent
|
|
26915
27147
|
*/
|
|
26916
27148
|
user_has_consent?: boolean;
|
|
27149
|
+
/**
|
|
27150
|
+
* User Has Offering User
|
|
27151
|
+
*/
|
|
27152
|
+
user_has_offering_user?: boolean;
|
|
26917
27153
|
/**
|
|
26918
27154
|
* Comma-separated offering UUIDs
|
|
26919
27155
|
*/
|
|
@@ -27631,6 +27867,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
27631
27867
|
* User Has Consent
|
|
27632
27868
|
*/
|
|
27633
27869
|
user_has_consent?: boolean;
|
|
27870
|
+
/**
|
|
27871
|
+
* User Has Offering User
|
|
27872
|
+
*/
|
|
27873
|
+
user_has_offering_user?: boolean;
|
|
27634
27874
|
/**
|
|
27635
27875
|
* Comma-separated offering UUIDs
|
|
27636
27876
|
*/
|
|
@@ -27726,6 +27966,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
27726
27966
|
* User Has Consent
|
|
27727
27967
|
*/
|
|
27728
27968
|
user_has_consent?: boolean;
|
|
27969
|
+
/**
|
|
27970
|
+
* User Has Offering User
|
|
27971
|
+
*/
|
|
27972
|
+
user_has_offering_user?: boolean;
|
|
27729
27973
|
/**
|
|
27730
27974
|
* Comma-separated offering UUIDs
|
|
27731
27975
|
*/
|
|
@@ -27755,7 +27999,7 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
27755
27999
|
customer?: string;
|
|
27756
28000
|
customer_uuid?: string;
|
|
27757
28001
|
downscaled?: boolean;
|
|
27758
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
28002
|
+
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'>;
|
|
27759
28003
|
/**
|
|
27760
28004
|
* Has termination date
|
|
27761
28005
|
*/
|
|
@@ -27960,7 +28204,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
|
|
|
27960
28204
|
uuid: string;
|
|
27961
28205
|
};
|
|
27962
28206
|
query?: {
|
|
27963
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
28207
|
+
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'>;
|
|
27964
28208
|
};
|
|
27965
28209
|
url: '/api/marketplace-provider-resources/{uuid}/';
|
|
27966
28210
|
};
|
|
@@ -27998,7 +28242,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
|
|
|
27998
28242
|
uuid: string;
|
|
27999
28243
|
};
|
|
28000
28244
|
query?: {
|
|
28001
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
28245
|
+
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'>;
|
|
28002
28246
|
};
|
|
28003
28247
|
url: '/api/marketplace-provider-resources/{uuid}/details/';
|
|
28004
28248
|
};
|
|
@@ -28407,6 +28651,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
28407
28651
|
* User Has Consent
|
|
28408
28652
|
*/
|
|
28409
28653
|
user_has_consent?: boolean;
|
|
28654
|
+
/**
|
|
28655
|
+
* User Has Offering User
|
|
28656
|
+
*/
|
|
28657
|
+
user_has_offering_user?: boolean;
|
|
28410
28658
|
/**
|
|
28411
28659
|
* Comma-separated offering UUIDs
|
|
28412
28660
|
*/
|
|
@@ -28502,6 +28750,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
28502
28750
|
* User Has Consent
|
|
28503
28751
|
*/
|
|
28504
28752
|
user_has_consent?: boolean;
|
|
28753
|
+
/**
|
|
28754
|
+
* User Has Offering User
|
|
28755
|
+
*/
|
|
28756
|
+
user_has_offering_user?: boolean;
|
|
28505
28757
|
/**
|
|
28506
28758
|
* Comma-separated offering UUIDs
|
|
28507
28759
|
*/
|
|
@@ -28816,7 +29068,7 @@ export type MarketplaceResourcesListData = {
|
|
|
28816
29068
|
customer?: string;
|
|
28817
29069
|
customer_uuid?: string;
|
|
28818
29070
|
downscaled?: boolean;
|
|
28819
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
29071
|
+
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'>;
|
|
28820
29072
|
/**
|
|
28821
29073
|
* Has termination date
|
|
28822
29074
|
*/
|
|
@@ -29021,7 +29273,7 @@ export type MarketplaceResourcesRetrieveData = {
|
|
|
29021
29273
|
uuid: string;
|
|
29022
29274
|
};
|
|
29023
29275
|
query?: {
|
|
29024
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
29276
|
+
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'>;
|
|
29025
29277
|
};
|
|
29026
29278
|
url: '/api/marketplace-resources/{uuid}/';
|
|
29027
29279
|
};
|
|
@@ -29059,7 +29311,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
|
|
|
29059
29311
|
uuid: string;
|
|
29060
29312
|
};
|
|
29061
29313
|
query?: {
|
|
29062
|
-
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' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid'>;
|
|
29314
|
+
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'>;
|
|
29063
29315
|
};
|
|
29064
29316
|
url: '/api/marketplace-resources/{uuid}/details/';
|
|
29065
29317
|
};
|
|
@@ -30278,6 +30530,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
30278
30530
|
* User Has Consent
|
|
30279
30531
|
*/
|
|
30280
30532
|
user_has_consent?: boolean;
|
|
30533
|
+
/**
|
|
30534
|
+
* User Has Offering User
|
|
30535
|
+
*/
|
|
30536
|
+
user_has_offering_user?: boolean;
|
|
30281
30537
|
/**
|
|
30282
30538
|
* Comma-separated offering UUIDs
|
|
30283
30539
|
*/
|
|
@@ -30415,7 +30671,7 @@ export type MarketplaceServiceProvidersProjectsListData = {
|
|
|
30415
30671
|
customer_name?: string;
|
|
30416
30672
|
customer_native_name?: string;
|
|
30417
30673
|
description?: string;
|
|
30418
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
30674
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
30419
30675
|
/**
|
|
30420
30676
|
* Modified after
|
|
30421
30677
|
*/
|
|
@@ -36979,7 +37235,11 @@ export type ProjectsListData = {
|
|
|
36979
37235
|
customer_name?: string;
|
|
36980
37236
|
customer_native_name?: string;
|
|
36981
37237
|
description?: string;
|
|
36982
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
37238
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
37239
|
+
/**
|
|
37240
|
+
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
37241
|
+
*/
|
|
37242
|
+
include_terminated?: boolean;
|
|
36983
37243
|
/**
|
|
36984
37244
|
* Modified after
|
|
36985
37245
|
*/
|
|
@@ -37041,6 +37301,10 @@ export type ProjectsCountData = {
|
|
|
37041
37301
|
customer_name?: string;
|
|
37042
37302
|
customer_native_name?: string;
|
|
37043
37303
|
description?: string;
|
|
37304
|
+
/**
|
|
37305
|
+
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
37306
|
+
*/
|
|
37307
|
+
include_terminated?: boolean;
|
|
37044
37308
|
/**
|
|
37045
37309
|
* Modified after
|
|
37046
37310
|
*/
|
|
@@ -37164,7 +37428,7 @@ export type ProjectsRetrieveData = {
|
|
|
37164
37428
|
uuid: string;
|
|
37165
37429
|
};
|
|
37166
37430
|
query?: {
|
|
37167
|
-
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
37431
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'start_date' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
37168
37432
|
};
|
|
37169
37433
|
url: '/api/projects/{uuid}/';
|
|
37170
37434
|
};
|