waldur-js-client 7.8.5-dev.1 → 7.8.5-dev.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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: AgentServiceStateEnum;
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 AgentServiceStateEnum = 'Active' | 'Idle' | 'Error';
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
@@ -1752,6 +1757,7 @@ export type ConstanceSettings = {
1752
1757
  DOCS_URL?: string;
1753
1758
  SHORT_PAGE_TITLE?: string;
1754
1759
  FULL_PAGE_TITLE?: string;
1760
+ PROJECT_END_DATE_MANDATORY?: boolean;
1755
1761
  BRAND_COLOR?: string;
1756
1762
  HERO_LINK_LABEL?: string;
1757
1763
  HERO_LINK_URL?: string;
@@ -1895,6 +1901,7 @@ export type ConstanceSettingsRequest = {
1895
1901
  DOCS_URL?: string;
1896
1902
  SHORT_PAGE_TITLE?: string;
1897
1903
  FULL_PAGE_TITLE?: string;
1904
+ PROJECT_END_DATE_MANDATORY?: boolean;
1898
1905
  BRAND_COLOR?: string;
1899
1906
  HERO_LINK_LABEL?: string;
1900
1907
  HERO_LINK_URL?: string;
@@ -2230,6 +2237,33 @@ export type Customer = {
2230
2237
  readonly call_managing_organization_uuid?: string | null;
2231
2238
  billing_price_estimate?: NestedPriceEstimate;
2232
2239
  };
2240
+ export type CustomerComponentUsagePolicy = {
2241
+ readonly uuid: string;
2242
+ readonly url: string;
2243
+ scope: string;
2244
+ readonly scope_name: string;
2245
+ readonly scope_uuid: string;
2246
+ actions: string;
2247
+ readonly created: string;
2248
+ readonly created_by_full_name: string;
2249
+ readonly created_by_username: string;
2250
+ readonly has_fired: boolean;
2251
+ readonly fired_datetime: string;
2252
+ /**
2253
+ * Fields for saving actions extra data. Keys are name of actions.
2254
+ */
2255
+ options?: unknown;
2256
+ component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
2257
+ };
2258
+ export type CustomerComponentUsagePolicyRequest = {
2259
+ scope: string;
2260
+ actions: string;
2261
+ /**
2262
+ * Fields for saving actions extra data. Keys are name of actions.
2263
+ */
2264
+ options?: unknown;
2265
+ component_limits_set: Array<NestedCustomerUsagePolicyComponentRequest>;
2266
+ };
2233
2267
  export type CustomerCredit = {
2234
2268
  readonly uuid: string;
2235
2269
  readonly url: string;
@@ -4046,6 +4080,14 @@ export type MergedPluginOptions = {
4046
4080
  * Slurm account name generation policy
4047
4081
  */
4048
4082
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
4083
+ /**
4084
+ * Defines if backend_id should be shown more prominently by the UI
4085
+ */
4086
+ highlight_backend_id_display?: boolean;
4087
+ /**
4088
+ * Label used by UI for showing value of the backend_id
4089
+ */
4090
+ backend_id_display_label?: string;
4049
4091
  };
4050
4092
  export type MergedPluginOptionsRequest = {
4051
4093
  /**
@@ -4216,6 +4258,14 @@ export type MergedPluginOptionsRequest = {
4216
4258
  * Slurm account name generation policy
4217
4259
  */
4218
4260
  account_name_generation_policy?: AccountNameGenerationPolicyEnum | NullEnum | null;
4261
+ /**
4262
+ * Defines if backend_id should be shown more prominently by the UI
4263
+ */
4264
+ highlight_backend_id_display?: boolean;
4265
+ /**
4266
+ * Label used by UI for showing value of the backend_id
4267
+ */
4268
+ backend_id_display_label?: string;
4219
4269
  };
4220
4270
  export type MergedSecretOptions = {
4221
4271
  /**
@@ -4588,6 +4638,34 @@ export type NameUuid = {
4588
4638
  readonly name: string;
4589
4639
  readonly uuid: string;
4590
4640
  };
4641
+ export type NestedAgentProcessor = {
4642
+ readonly uuid: string;
4643
+ readonly url: string;
4644
+ name: string;
4645
+ last_run?: string | null;
4646
+ /**
4647
+ * Type of the backend, for example SLURM.
4648
+ */
4649
+ backend_type: string;
4650
+ backend_version?: string | null;
4651
+ readonly created: string;
4652
+ readonly modified: string;
4653
+ };
4654
+ export type NestedAgentService = {
4655
+ readonly uuid: string;
4656
+ readonly url: string;
4657
+ name: string;
4658
+ mode?: string | null;
4659
+ state: AgentServiceState;
4660
+ statistics?: unknown;
4661
+ readonly created: string;
4662
+ readonly modified: string;
4663
+ };
4664
+ export type NestedAgentServiceRequest = {
4665
+ name: string;
4666
+ mode?: string | null;
4667
+ statistics?: unknown;
4668
+ };
4591
4669
  export type NestedAttribute = {
4592
4670
  key?: string;
4593
4671
  title?: string;
@@ -4677,6 +4755,18 @@ export type NestedColumnRequest = {
4677
4755
  */
4678
4756
  widget?: WidgetEnum | BlankEnum | NullEnum | null;
4679
4757
  };
4758
+ export type NestedCustomerUsagePolicyComponent = {
4759
+ readonly type: string;
4760
+ limit: number;
4761
+ period?: PeriodEnum;
4762
+ readonly period_name: string;
4763
+ component: string;
4764
+ };
4765
+ export type NestedCustomerUsagePolicyComponentRequest = {
4766
+ limit: number;
4767
+ period?: PeriodEnum;
4768
+ component: string;
4769
+ };
4680
4770
  export type NestedEndpoint = {
4681
4771
  readonly uuid?: string;
4682
4772
  name?: string;
@@ -5624,10 +5714,12 @@ export type OnboardingJustification = {
5624
5714
  readonly uuid: string;
5625
5715
  verification: number;
5626
5716
  user: number;
5717
+ readonly legal_person_identifier: string;
5718
+ readonly legal_name: string;
5627
5719
  /**
5628
5720
  * User's explanation for why they should be authorized
5629
5721
  */
5630
- user_justification: string;
5722
+ user_justification?: string | null;
5631
5723
  readonly validated_by: number | null;
5632
5724
  readonly validated_at: string | null;
5633
5725
  validation_decision: ValidationDecisionEnum;
@@ -5647,7 +5739,7 @@ export type OnboardingJustificationCreateRequest = {
5647
5739
  /**
5648
5740
  * User's explanation for why they should be authorized
5649
5741
  */
5650
- user_justification: string;
5742
+ user_justification?: string;
5651
5743
  };
5652
5744
  export type OnboardingJustificationDocumentation = {
5653
5745
  readonly uuid: string;
@@ -5671,7 +5763,7 @@ export type OnboardingJustificationRequest = {
5671
5763
  /**
5672
5764
  * User's explanation for why they should be authorized
5673
5765
  */
5674
- user_justification: string;
5766
+ user_justification?: string | null;
5675
5767
  };
5676
5768
  export type OnboardingJustificationReviewRequest = {
5677
5769
  /**
@@ -7353,6 +7445,9 @@ export type OrderAttachment = {
7353
7445
  export type OrderAttachmentRequest = {
7354
7446
  attachment?: (Blob | File) | null;
7355
7447
  };
7448
+ export type OrderBackendIdRequest = {
7449
+ backend_id: string;
7450
+ };
7356
7451
  export type OrderCreate = {
7357
7452
  offering: string;
7358
7453
  readonly offering_name: string;
@@ -7717,6 +7812,15 @@ export type PatchedCreateCustomerCreditRequest = {
7717
7812
  grace_coefficient?: string;
7718
7813
  apply_as_minimal_consumption?: boolean;
7719
7814
  };
7815
+ export type PatchedCustomerComponentUsagePolicyRequest = {
7816
+ scope?: string;
7817
+ actions?: string;
7818
+ /**
7819
+ * Fields for saving actions extra data. Keys are name of actions.
7820
+ */
7821
+ options?: unknown;
7822
+ component_limits_set?: Array<NestedCustomerUsagePolicyComponentRequest>;
7823
+ };
7720
7824
  export type PatchedCustomerEstimatedCostPolicyRequest = {
7721
7825
  scope?: string;
7722
7826
  actions?: string;
@@ -8049,7 +8153,7 @@ export type PatchedOnboardingJustificationRequest = {
8049
8153
  /**
8050
8154
  * User's explanation for why they should be authorized
8051
8155
  */
8052
- user_justification?: string;
8156
+ user_justification?: string | null;
8053
8157
  };
8054
8158
  export type PatchedOnboardingVerificationRequest = {
8055
8159
  /**
@@ -8861,6 +8965,8 @@ export type Project = {
8861
8965
  * Project type
8862
8966
  */
8863
8967
  kind?: KindEnum;
8968
+ readonly is_removed?: boolean;
8969
+ readonly termination_metadata?: unknown;
8864
8970
  readonly project_credit?: number | null;
8865
8971
  readonly marketplace_resource_count?: {
8866
8972
  [key: string]: number;
@@ -9030,6 +9136,16 @@ export type ProjectQuotas = {
9030
9136
  readonly customer_abbreviation: string;
9031
9137
  readonly value: number;
9032
9138
  };
9139
+ export type ProjectRecoveryRequest = {
9140
+ /**
9141
+ * Whether to automatically restore team members who had access before project deletion (staff only)
9142
+ */
9143
+ restore_team_members?: boolean;
9144
+ /**
9145
+ * Whether to send invitations to users who had access before project deletion
9146
+ */
9147
+ send_invitations_to_previous_members?: boolean;
9148
+ };
9033
9149
  export type ProjectRequest = {
9034
9150
  name: string;
9035
9151
  slug?: string;
@@ -11129,6 +11245,9 @@ export type Resource = {
11129
11245
  * Check if the current user needs to re-consent for this resource's offering.
11130
11246
  */
11131
11247
  readonly user_requires_reconsent?: boolean;
11248
+ readonly renewal_date?: {
11249
+ [key: string]: string;
11250
+ } | null;
11132
11251
  };
11133
11252
  export type ResourceBackendIdRequest = {
11134
11253
  backend_id?: string;
@@ -13427,6 +13546,7 @@ export type ConstanceSettingsRequestForm = {
13427
13546
  DOCS_URL?: string;
13428
13547
  SHORT_PAGE_TITLE?: string;
13429
13548
  FULL_PAGE_TITLE?: string;
13549
+ PROJECT_END_DATE_MANDATORY?: boolean;
13430
13550
  BRAND_COLOR?: string;
13431
13551
  HERO_LINK_LABEL?: string;
13432
13552
  HERO_LINK_URL?: string;
@@ -13570,6 +13690,7 @@ export type ConstanceSettingsRequestMultipart = {
13570
13690
  DOCS_URL?: string;
13571
13691
  SHORT_PAGE_TITLE?: string;
13572
13692
  FULL_PAGE_TITLE?: string;
13693
+ PROJECT_END_DATE_MANDATORY?: boolean;
13573
13694
  BRAND_COLOR?: string;
13574
13695
  HERO_LINK_LABEL?: string;
13575
13696
  HERO_LINK_URL?: string;
@@ -16602,6 +16723,10 @@ export type BookingResourcesListData = {
16602
16723
  */
16603
16724
  backend_id?: string;
16604
16725
  category_uuid?: string;
16726
+ /**
16727
+ * Filter by exact number of components
16728
+ */
16729
+ component_count?: number;
16605
16730
  connected_customer_uuid?: string;
16606
16731
  /**
16607
16732
  * Created after
@@ -16610,7 +16735,7 @@ export type BookingResourcesListData = {
16610
16735
  customer?: string;
16611
16736
  customer_uuid?: string;
16612
16737
  downscaled?: boolean;
16613
- 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'>;
16738
+ 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'>;
16614
16739
  /**
16615
16740
  * Has termination date
16616
16741
  */
@@ -16619,6 +16744,14 @@ export type BookingResourcesListData = {
16619
16744
  * LEXIS links supported
16620
16745
  */
16621
16746
  lexis_links_supported?: boolean;
16747
+ /**
16748
+ * Filter by limit-based offerings
16749
+ */
16750
+ limit_based?: boolean;
16751
+ /**
16752
+ * Filter by exact number of limit-based components
16753
+ */
16754
+ limit_component_count?: number;
16622
16755
  /**
16623
16756
  * Modified after
16624
16757
  */
@@ -16646,6 +16779,14 @@ export type BookingResourcesListData = {
16646
16779
  * Multiple values may be separated by commas.
16647
16780
  */
16648
16781
  offering_uuid?: Array<string>;
16782
+ /**
16783
+ * Filter out resources with only limit-based components
16784
+ */
16785
+ only_limit_based?: boolean;
16786
+ /**
16787
+ * Filter out resources with only usage-based components
16788
+ */
16789
+ only_usage_based?: boolean;
16649
16790
  /**
16650
16791
  * A page number within the paginated result set.
16651
16792
  */
@@ -16674,6 +16815,10 @@ export type BookingResourcesListData = {
16674
16815
  */
16675
16816
  service_manager_uuid?: string;
16676
16817
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
16818
+ /**
16819
+ * Filter by usage-based offerings
16820
+ */
16821
+ usage_based?: boolean;
16677
16822
  /**
16678
16823
  * Visible to username
16679
16824
  */
@@ -16694,6 +16839,10 @@ export type BookingResourcesCountData = {
16694
16839
  */
16695
16840
  backend_id?: string;
16696
16841
  category_uuid?: string;
16842
+ /**
16843
+ * Filter by exact number of components
16844
+ */
16845
+ component_count?: number;
16697
16846
  connected_customer_uuid?: string;
16698
16847
  /**
16699
16848
  * Created after
@@ -16710,6 +16859,14 @@ export type BookingResourcesCountData = {
16710
16859
  * LEXIS links supported
16711
16860
  */
16712
16861
  lexis_links_supported?: boolean;
16862
+ /**
16863
+ * Filter by limit-based offerings
16864
+ */
16865
+ limit_based?: boolean;
16866
+ /**
16867
+ * Filter by exact number of limit-based components
16868
+ */
16869
+ limit_component_count?: number;
16713
16870
  /**
16714
16871
  * Modified after
16715
16872
  */
@@ -16737,6 +16894,14 @@ export type BookingResourcesCountData = {
16737
16894
  * Multiple values may be separated by commas.
16738
16895
  */
16739
16896
  offering_uuid?: Array<string>;
16897
+ /**
16898
+ * Filter out resources with only limit-based components
16899
+ */
16900
+ only_limit_based?: boolean;
16901
+ /**
16902
+ * Filter out resources with only usage-based components
16903
+ */
16904
+ only_usage_based?: boolean;
16740
16905
  /**
16741
16906
  * A page number within the paginated result set.
16742
16907
  */
@@ -16765,6 +16930,10 @@ export type BookingResourcesCountData = {
16765
16930
  */
16766
16931
  service_manager_uuid?: string;
16767
16932
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
16933
+ /**
16934
+ * Filter by usage-based offerings
16935
+ */
16936
+ usage_based?: boolean;
16768
16937
  /**
16769
16938
  * Visible to username
16770
16939
  */
@@ -16784,7 +16953,7 @@ export type BookingResourcesRetrieveData = {
16784
16953
  uuid: string;
16785
16954
  };
16786
16955
  query?: {
16787
- 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'>;
16956
+ 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'>;
16788
16957
  };
16789
16958
  url: '/api/booking-resources/{uuid}/';
16790
16959
  };
@@ -17222,6 +17391,15 @@ export type CallManagingOrganisationsAddUserData = {
17222
17391
  query?: never;
17223
17392
  url: '/api/call-managing-organisations/{uuid}/add_user/';
17224
17393
  };
17394
+ export type CallManagingOrganisationsAddUserErrors = {
17395
+ /**
17396
+ * Validation error when trying to add user to terminated project
17397
+ */
17398
+ 400: {
17399
+ non_field_errors?: Array<string>;
17400
+ };
17401
+ };
17402
+ export type CallManagingOrganisationsAddUserError = CallManagingOrganisationsAddUserErrors[keyof CallManagingOrganisationsAddUserErrors];
17225
17403
  export type CallManagingOrganisationsAddUserResponses = {
17226
17404
  201: UserRoleExpirationTime;
17227
17405
  };
@@ -18856,6 +19034,15 @@ export type CustomersAddUserData = {
18856
19034
  query?: never;
18857
19035
  url: '/api/customers/{uuid}/add_user/';
18858
19036
  };
19037
+ export type CustomersAddUserErrors = {
19038
+ /**
19039
+ * Validation error when trying to add user to terminated project
19040
+ */
19041
+ 400: {
19042
+ non_field_errors?: Array<string>;
19043
+ };
19044
+ };
19045
+ export type CustomersAddUserError = CustomersAddUserErrors[keyof CustomersAddUserErrors];
18859
19046
  export type CustomersAddUserResponses = {
18860
19047
  201: UserRoleExpirationTime;
18861
19048
  };
@@ -22309,7 +22496,7 @@ export type ManagedRancherClusterResourcesListData = {
22309
22496
  body?: never;
22310
22497
  path?: never;
22311
22498
  query?: {
22312
- 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'>;
22499
+ 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'>;
22313
22500
  /**
22314
22501
  * A page number within the paginated result set.
22315
22502
  */
@@ -22352,7 +22539,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
22352
22539
  uuid: string;
22353
22540
  };
22354
22541
  query?: {
22355
- 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'>;
22542
+ 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'>;
22356
22543
  };
22357
22544
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
22358
22545
  };
@@ -23030,6 +23217,8 @@ export type MarketplaceComponentUsagesListData = {
23030
23217
  path?: never;
23031
23218
  query?: {
23032
23219
  billing_period?: string;
23220
+ billing_period_month?: number;
23221
+ billing_period_year?: number;
23033
23222
  customer_uuid?: string;
23034
23223
  date_after?: string;
23035
23224
  date_before?: string;
@@ -23065,6 +23254,8 @@ export type MarketplaceComponentUsagesCountData = {
23065
23254
  path?: never;
23066
23255
  query?: {
23067
23256
  billing_period?: string;
23257
+ billing_period_month?: number;
23258
+ billing_period_year?: number;
23068
23259
  customer_uuid?: string;
23069
23260
  date_after?: string;
23070
23261
  date_before?: string;
@@ -23348,6 +23539,137 @@ export type MarketplaceCourseAccountsCreateBulkResponses = {
23348
23539
  200: CourseAccountsBulkCreate;
23349
23540
  };
23350
23541
  export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
23542
+ export type MarketplaceCustomerComponentUsagePoliciesListData = {
23543
+ body?: never;
23544
+ path?: never;
23545
+ query?: {
23546
+ customer?: string;
23547
+ customer_uuid?: string;
23548
+ /**
23549
+ * A page number within the paginated result set.
23550
+ */
23551
+ page?: number;
23552
+ /**
23553
+ * Number of results to return per page.
23554
+ */
23555
+ page_size?: number;
23556
+ scope?: string;
23557
+ scope_uuid?: string;
23558
+ };
23559
+ url: '/api/marketplace-customer-component-usage-policies/';
23560
+ };
23561
+ export type MarketplaceCustomerComponentUsagePoliciesListResponses = {
23562
+ 200: Array<CustomerComponentUsagePolicy>;
23563
+ };
23564
+ export type MarketplaceCustomerComponentUsagePoliciesListResponse = MarketplaceCustomerComponentUsagePoliciesListResponses[keyof MarketplaceCustomerComponentUsagePoliciesListResponses];
23565
+ export type MarketplaceCustomerComponentUsagePoliciesCountData = {
23566
+ body?: never;
23567
+ path?: never;
23568
+ query?: {
23569
+ customer?: string;
23570
+ customer_uuid?: string;
23571
+ /**
23572
+ * A page number within the paginated result set.
23573
+ */
23574
+ page?: number;
23575
+ /**
23576
+ * Number of results to return per page.
23577
+ */
23578
+ page_size?: number;
23579
+ scope?: string;
23580
+ scope_uuid?: string;
23581
+ };
23582
+ url: '/api/marketplace-customer-component-usage-policies/';
23583
+ };
23584
+ export type MarketplaceCustomerComponentUsagePoliciesCountResponses = {
23585
+ /**
23586
+ * No response body
23587
+ */
23588
+ 200: unknown;
23589
+ };
23590
+ export type MarketplaceCustomerComponentUsagePoliciesCreateData = {
23591
+ body: CustomerComponentUsagePolicyRequest;
23592
+ path?: never;
23593
+ query?: never;
23594
+ url: '/api/marketplace-customer-component-usage-policies/';
23595
+ };
23596
+ export type MarketplaceCustomerComponentUsagePoliciesCreateResponses = {
23597
+ 201: CustomerComponentUsagePolicy;
23598
+ };
23599
+ export type MarketplaceCustomerComponentUsagePoliciesCreateResponse = MarketplaceCustomerComponentUsagePoliciesCreateResponses[keyof MarketplaceCustomerComponentUsagePoliciesCreateResponses];
23600
+ export type MarketplaceCustomerComponentUsagePoliciesDestroyData = {
23601
+ body?: never;
23602
+ path: {
23603
+ uuid: string;
23604
+ };
23605
+ query?: never;
23606
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23607
+ };
23608
+ export type MarketplaceCustomerComponentUsagePoliciesDestroyResponses = {
23609
+ /**
23610
+ * No response body
23611
+ */
23612
+ 204: void;
23613
+ };
23614
+ export type MarketplaceCustomerComponentUsagePoliciesDestroyResponse = MarketplaceCustomerComponentUsagePoliciesDestroyResponses[keyof MarketplaceCustomerComponentUsagePoliciesDestroyResponses];
23615
+ export type MarketplaceCustomerComponentUsagePoliciesRetrieveData = {
23616
+ body?: never;
23617
+ path: {
23618
+ uuid: string;
23619
+ };
23620
+ query?: never;
23621
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23622
+ };
23623
+ export type MarketplaceCustomerComponentUsagePoliciesRetrieveResponses = {
23624
+ 200: CustomerComponentUsagePolicy;
23625
+ };
23626
+ export type MarketplaceCustomerComponentUsagePoliciesRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesRetrieveResponses];
23627
+ export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateData = {
23628
+ body?: PatchedCustomerComponentUsagePolicyRequest;
23629
+ path: {
23630
+ uuid: string;
23631
+ };
23632
+ query?: never;
23633
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23634
+ };
23635
+ export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses = {
23636
+ 200: CustomerComponentUsagePolicy;
23637
+ };
23638
+ export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponse = MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses[keyof MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses];
23639
+ export type MarketplaceCustomerComponentUsagePoliciesUpdateData = {
23640
+ body: CustomerComponentUsagePolicyRequest;
23641
+ path: {
23642
+ uuid: string;
23643
+ };
23644
+ query?: never;
23645
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23646
+ };
23647
+ export type MarketplaceCustomerComponentUsagePoliciesUpdateResponses = {
23648
+ 200: CustomerComponentUsagePolicy;
23649
+ };
23650
+ export type MarketplaceCustomerComponentUsagePoliciesUpdateResponse = MarketplaceCustomerComponentUsagePoliciesUpdateResponses[keyof MarketplaceCustomerComponentUsagePoliciesUpdateResponses];
23651
+ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveData = {
23652
+ body?: never;
23653
+ path?: never;
23654
+ query?: never;
23655
+ url: '/api/marketplace-customer-component-usage-policies/actions/';
23656
+ };
23657
+ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses = {
23658
+ 200: CustomerComponentUsagePolicy;
23659
+ };
23660
+ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses];
23661
+ export type MarketplaceCustomerComponentUsagePoliciesActionsCountData = {
23662
+ body?: never;
23663
+ path?: never;
23664
+ query?: never;
23665
+ url: '/api/marketplace-customer-component-usage-policies/actions/';
23666
+ };
23667
+ export type MarketplaceCustomerComponentUsagePoliciesActionsCountResponses = {
23668
+ /**
23669
+ * No response body
23670
+ */
23671
+ 200: unknown;
23672
+ };
23351
23673
  export type MarketplaceCustomerEstimatedCostPoliciesListData = {
23352
23674
  body?: never;
23353
23675
  path?: never;
@@ -25523,6 +25845,20 @@ export type MarketplaceOrdersRejectByProviderResponses = {
25523
25845
  */
25524
25846
  200: unknown;
25525
25847
  };
25848
+ export type MarketplaceOrdersSetBackendIdData = {
25849
+ body: OrderBackendIdRequest;
25850
+ path: {
25851
+ uuid: string;
25852
+ };
25853
+ query?: never;
25854
+ url: '/api/marketplace-orders/{uuid}/set_backend_id/';
25855
+ };
25856
+ export type MarketplaceOrdersSetBackendIdResponses = {
25857
+ /**
25858
+ * No response body
25859
+ */
25860
+ 200: unknown;
25861
+ };
25526
25862
  export type MarketplaceOrdersSetStateDoneData = {
25527
25863
  body?: never;
25528
25864
  path: {
@@ -26359,6 +26695,10 @@ export type MarketplaceProviderOfferingsListData = {
26359
26695
  * User Has Consent
26360
26696
  */
26361
26697
  user_has_consent?: boolean;
26698
+ /**
26699
+ * User Has Offering User
26700
+ */
26701
+ user_has_offering_user?: boolean;
26362
26702
  /**
26363
26703
  * Comma-separated offering UUIDs
26364
26704
  */
@@ -26454,6 +26794,10 @@ export type MarketplaceProviderOfferingsCountData = {
26454
26794
  * User Has Consent
26455
26795
  */
26456
26796
  user_has_consent?: boolean;
26797
+ /**
26798
+ * User Has Offering User
26799
+ */
26800
+ user_has_offering_user?: boolean;
26457
26801
  /**
26458
26802
  * Comma-separated offering UUIDs
26459
26803
  */
@@ -26538,6 +26882,15 @@ export type MarketplaceProviderOfferingsAddUserData = {
26538
26882
  query?: never;
26539
26883
  url: '/api/marketplace-provider-offerings/{uuid}/add_user/';
26540
26884
  };
26885
+ export type MarketplaceProviderOfferingsAddUserErrors = {
26886
+ /**
26887
+ * Validation error when trying to add user to terminated project
26888
+ */
26889
+ 400: {
26890
+ non_field_errors?: Array<string>;
26891
+ };
26892
+ };
26893
+ export type MarketplaceProviderOfferingsAddUserError = MarketplaceProviderOfferingsAddUserErrors[keyof MarketplaceProviderOfferingsAddUserErrors];
26541
26894
  export type MarketplaceProviderOfferingsAddUserResponses = {
26542
26895
  201: UserRoleExpirationTime;
26543
26896
  };
@@ -26648,6 +27001,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
26648
27001
  * User Has Consent
26649
27002
  */
26650
27003
  user_has_consent?: boolean;
27004
+ /**
27005
+ * User Has Offering User
27006
+ */
27007
+ user_has_offering_user?: boolean;
26651
27008
  /**
26652
27009
  * Comma-separated offering UUIDs
26653
27010
  */
@@ -26754,6 +27111,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
26754
27111
  * User Has Consent
26755
27112
  */
26756
27113
  user_has_consent?: boolean;
27114
+ /**
27115
+ * User Has Offering User
27116
+ */
27117
+ user_has_offering_user?: boolean;
26757
27118
  /**
26758
27119
  * Comma-separated offering UUIDs
26759
27120
  */
@@ -26865,6 +27226,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
26865
27226
  * User Has Consent
26866
27227
  */
26867
27228
  user_has_consent?: boolean;
27229
+ /**
27230
+ * User Has Offering User
27231
+ */
27232
+ user_has_offering_user?: boolean;
26868
27233
  /**
26869
27234
  * Comma-separated offering UUIDs
26870
27235
  */
@@ -27582,6 +27947,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
27582
27947
  * User Has Consent
27583
27948
  */
27584
27949
  user_has_consent?: boolean;
27950
+ /**
27951
+ * User Has Offering User
27952
+ */
27953
+ user_has_offering_user?: boolean;
27585
27954
  /**
27586
27955
  * Comma-separated offering UUIDs
27587
27956
  */
@@ -27677,6 +28046,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
27677
28046
  * User Has Consent
27678
28047
  */
27679
28048
  user_has_consent?: boolean;
28049
+ /**
28050
+ * User Has Offering User
28051
+ */
28052
+ user_has_offering_user?: boolean;
27680
28053
  /**
27681
28054
  * Comma-separated offering UUIDs
27682
28055
  */
@@ -27699,6 +28072,10 @@ export type MarketplaceProviderResourcesListData = {
27699
28072
  */
27700
28073
  backend_id?: string;
27701
28074
  category_uuid?: string;
28075
+ /**
28076
+ * Filter by exact number of components
28077
+ */
28078
+ component_count?: number;
27702
28079
  /**
27703
28080
  * Created after
27704
28081
  */
@@ -27706,7 +28083,7 @@ export type MarketplaceProviderResourcesListData = {
27706
28083
  customer?: string;
27707
28084
  customer_uuid?: string;
27708
28085
  downscaled?: boolean;
27709
- 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'>;
28086
+ 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'>;
27710
28087
  /**
27711
28088
  * Has termination date
27712
28089
  */
@@ -27715,6 +28092,14 @@ export type MarketplaceProviderResourcesListData = {
27715
28092
  * LEXIS links supported
27716
28093
  */
27717
28094
  lexis_links_supported?: boolean;
28095
+ /**
28096
+ * Filter by limit-based offerings
28097
+ */
28098
+ limit_based?: boolean;
28099
+ /**
28100
+ * Filter by exact number of limit-based components
28101
+ */
28102
+ limit_component_count?: number;
27718
28103
  /**
27719
28104
  * Modified after
27720
28105
  */
@@ -27742,6 +28127,14 @@ export type MarketplaceProviderResourcesListData = {
27742
28127
  * Multiple values may be separated by commas.
27743
28128
  */
27744
28129
  offering_uuid?: Array<string>;
28130
+ /**
28131
+ * Filter out resources with only limit-based components
28132
+ */
28133
+ only_limit_based?: boolean;
28134
+ /**
28135
+ * Filter out resources with only usage-based components
28136
+ */
28137
+ only_usage_based?: boolean;
27745
28138
  /**
27746
28139
  * A page number within the paginated result set.
27747
28140
  */
@@ -27770,6 +28163,10 @@ export type MarketplaceProviderResourcesListData = {
27770
28163
  */
27771
28164
  service_manager_uuid?: string;
27772
28165
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
28166
+ /**
28167
+ * Filter by usage-based offerings
28168
+ */
28169
+ usage_based?: boolean;
27773
28170
  /**
27774
28171
  * Visible to username
27775
28172
  */
@@ -27790,6 +28187,10 @@ export type MarketplaceProviderResourcesCountData = {
27790
28187
  */
27791
28188
  backend_id?: string;
27792
28189
  category_uuid?: string;
28190
+ /**
28191
+ * Filter by exact number of components
28192
+ */
28193
+ component_count?: number;
27793
28194
  /**
27794
28195
  * Created after
27795
28196
  */
@@ -27805,6 +28206,14 @@ export type MarketplaceProviderResourcesCountData = {
27805
28206
  * LEXIS links supported
27806
28207
  */
27807
28208
  lexis_links_supported?: boolean;
28209
+ /**
28210
+ * Filter by limit-based offerings
28211
+ */
28212
+ limit_based?: boolean;
28213
+ /**
28214
+ * Filter by exact number of limit-based components
28215
+ */
28216
+ limit_component_count?: number;
27808
28217
  /**
27809
28218
  * Modified after
27810
28219
  */
@@ -27832,6 +28241,14 @@ export type MarketplaceProviderResourcesCountData = {
27832
28241
  * Multiple values may be separated by commas.
27833
28242
  */
27834
28243
  offering_uuid?: Array<string>;
28244
+ /**
28245
+ * Filter out resources with only limit-based components
28246
+ */
28247
+ only_limit_based?: boolean;
28248
+ /**
28249
+ * Filter out resources with only usage-based components
28250
+ */
28251
+ only_usage_based?: boolean;
27835
28252
  /**
27836
28253
  * A page number within the paginated result set.
27837
28254
  */
@@ -27860,6 +28277,10 @@ export type MarketplaceProviderResourcesCountData = {
27860
28277
  */
27861
28278
  service_manager_uuid?: string;
27862
28279
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
28280
+ /**
28281
+ * Filter by usage-based offerings
28282
+ */
28283
+ usage_based?: boolean;
27863
28284
  /**
27864
28285
  * Visible to username
27865
28286
  */
@@ -27879,7 +28300,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
27879
28300
  uuid: string;
27880
28301
  };
27881
28302
  query?: {
27882
- 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'>;
28303
+ 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'>;
27883
28304
  };
27884
28305
  url: '/api/marketplace-provider-resources/{uuid}/';
27885
28306
  };
@@ -27917,7 +28338,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
27917
28338
  uuid: string;
27918
28339
  };
27919
28340
  query?: {
27920
- 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'>;
28341
+ 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'>;
27921
28342
  };
27922
28343
  url: '/api/marketplace-provider-resources/{uuid}/details/';
27923
28344
  };
@@ -28326,6 +28747,10 @@ export type MarketplacePublicOfferingsListData = {
28326
28747
  * User Has Consent
28327
28748
  */
28328
28749
  user_has_consent?: boolean;
28750
+ /**
28751
+ * User Has Offering User
28752
+ */
28753
+ user_has_offering_user?: boolean;
28329
28754
  /**
28330
28755
  * Comma-separated offering UUIDs
28331
28756
  */
@@ -28421,6 +28846,10 @@ export type MarketplacePublicOfferingsCountData = {
28421
28846
  * User Has Consent
28422
28847
  */
28423
28848
  user_has_consent?: boolean;
28849
+ /**
28850
+ * User Has Offering User
28851
+ */
28852
+ user_has_offering_user?: boolean;
28424
28853
  /**
28425
28854
  * Comma-separated offering UUIDs
28426
28855
  */
@@ -28728,6 +29157,10 @@ export type MarketplaceResourcesListData = {
28728
29157
  */
28729
29158
  backend_id?: string;
28730
29159
  category_uuid?: string;
29160
+ /**
29161
+ * Filter by exact number of components
29162
+ */
29163
+ component_count?: number;
28731
29164
  /**
28732
29165
  * Created after
28733
29166
  */
@@ -28735,7 +29168,7 @@ export type MarketplaceResourcesListData = {
28735
29168
  customer?: string;
28736
29169
  customer_uuid?: string;
28737
29170
  downscaled?: boolean;
28738
- 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'>;
29171
+ 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'>;
28739
29172
  /**
28740
29173
  * Has termination date
28741
29174
  */
@@ -28744,6 +29177,14 @@ export type MarketplaceResourcesListData = {
28744
29177
  * LEXIS links supported
28745
29178
  */
28746
29179
  lexis_links_supported?: boolean;
29180
+ /**
29181
+ * Filter by limit-based offerings
29182
+ */
29183
+ limit_based?: boolean;
29184
+ /**
29185
+ * Filter by exact number of limit-based components
29186
+ */
29187
+ limit_component_count?: number;
28747
29188
  /**
28748
29189
  * Modified after
28749
29190
  */
@@ -28771,6 +29212,14 @@ export type MarketplaceResourcesListData = {
28771
29212
  * Multiple values may be separated by commas.
28772
29213
  */
28773
29214
  offering_uuid?: Array<string>;
29215
+ /**
29216
+ * Filter out resources with only limit-based components
29217
+ */
29218
+ only_limit_based?: boolean;
29219
+ /**
29220
+ * Filter out resources with only usage-based components
29221
+ */
29222
+ only_usage_based?: boolean;
28774
29223
  /**
28775
29224
  * A page number within the paginated result set.
28776
29225
  */
@@ -28799,6 +29248,10 @@ export type MarketplaceResourcesListData = {
28799
29248
  */
28800
29249
  service_manager_uuid?: string;
28801
29250
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
29251
+ /**
29252
+ * Filter by usage-based offerings
29253
+ */
29254
+ usage_based?: boolean;
28802
29255
  /**
28803
29256
  * Visible to username
28804
29257
  */
@@ -28819,6 +29272,10 @@ export type MarketplaceResourcesCountData = {
28819
29272
  */
28820
29273
  backend_id?: string;
28821
29274
  category_uuid?: string;
29275
+ /**
29276
+ * Filter by exact number of components
29277
+ */
29278
+ component_count?: number;
28822
29279
  /**
28823
29280
  * Created after
28824
29281
  */
@@ -28834,6 +29291,14 @@ export type MarketplaceResourcesCountData = {
28834
29291
  * LEXIS links supported
28835
29292
  */
28836
29293
  lexis_links_supported?: boolean;
29294
+ /**
29295
+ * Filter by limit-based offerings
29296
+ */
29297
+ limit_based?: boolean;
29298
+ /**
29299
+ * Filter by exact number of limit-based components
29300
+ */
29301
+ limit_component_count?: number;
28837
29302
  /**
28838
29303
  * Modified after
28839
29304
  */
@@ -28861,6 +29326,14 @@ export type MarketplaceResourcesCountData = {
28861
29326
  * Multiple values may be separated by commas.
28862
29327
  */
28863
29328
  offering_uuid?: Array<string>;
29329
+ /**
29330
+ * Filter out resources with only limit-based components
29331
+ */
29332
+ only_limit_based?: boolean;
29333
+ /**
29334
+ * Filter out resources with only usage-based components
29335
+ */
29336
+ only_usage_based?: boolean;
28864
29337
  /**
28865
29338
  * A page number within the paginated result set.
28866
29339
  */
@@ -28889,6 +29362,10 @@ export type MarketplaceResourcesCountData = {
28889
29362
  */
28890
29363
  service_manager_uuid?: string;
28891
29364
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
29365
+ /**
29366
+ * Filter by usage-based offerings
29367
+ */
29368
+ usage_based?: boolean;
28892
29369
  /**
28893
29370
  * Visible to username
28894
29371
  */
@@ -28908,7 +29385,7 @@ export type MarketplaceResourcesRetrieveData = {
28908
29385
  uuid: string;
28909
29386
  };
28910
29387
  query?: {
28911
- 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'>;
29388
+ 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'>;
28912
29389
  };
28913
29390
  url: '/api/marketplace-resources/{uuid}/';
28914
29391
  };
@@ -28946,7 +29423,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
28946
29423
  uuid: string;
28947
29424
  };
28948
29425
  query?: {
28949
- 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'>;
29426
+ 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'>;
28950
29427
  };
28951
29428
  url: '/api/marketplace-resources/{uuid}/details/';
28952
29429
  };
@@ -29958,6 +30435,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
29958
30435
  customer_native_name?: string;
29959
30436
  description?: string;
29960
30437
  field?: Array<'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid'>;
30438
+ is_removed?: boolean;
29961
30439
  /**
29962
30440
  * Modified after
29963
30441
  */
@@ -30165,6 +30643,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
30165
30643
  * User Has Consent
30166
30644
  */
30167
30645
  user_has_consent?: boolean;
30646
+ /**
30647
+ * User Has Offering User
30648
+ */
30649
+ user_has_offering_user?: boolean;
30168
30650
  /**
30169
30651
  * Comma-separated offering UUIDs
30170
30652
  */
@@ -30302,7 +30784,8 @@ export type MarketplaceServiceProvidersProjectsListData = {
30302
30784
  customer_name?: string;
30303
30785
  customer_native_name?: string;
30304
30786
  description?: string;
30305
- 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'>;
30787
+ 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' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
30788
+ is_removed?: boolean;
30306
30789
  /**
30307
30790
  * Modified after
30308
30791
  */
@@ -30522,6 +31005,15 @@ export type MarketplaceServiceProvidersAddUserData = {
30522
31005
  query?: never;
30523
31006
  url: '/api/marketplace-service-providers/{uuid}/add_user/';
30524
31007
  };
31008
+ export type MarketplaceServiceProvidersAddUserErrors = {
31009
+ /**
31010
+ * Validation error when trying to add user to terminated project
31011
+ */
31012
+ 400: {
31013
+ non_field_errors?: Array<string>;
31014
+ };
31015
+ };
31016
+ export type MarketplaceServiceProvidersAddUserError = MarketplaceServiceProvidersAddUserErrors[keyof MarketplaceServiceProvidersAddUserErrors];
30525
31017
  export type MarketplaceServiceProvidersAddUserResponses = {
30526
31018
  201: UserRoleExpirationTime;
30527
31019
  };
@@ -36866,7 +37358,12 @@ export type ProjectsListData = {
36866
37358
  customer_name?: string;
36867
37359
  customer_native_name?: string;
36868
37360
  description?: string;
36869
- 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'>;
37361
+ 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' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
37362
+ /**
37363
+ * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
37364
+ */
37365
+ include_terminated?: boolean;
37366
+ is_removed?: boolean;
36870
37367
  /**
36871
37368
  * Modified after
36872
37369
  */
@@ -36928,6 +37425,11 @@ export type ProjectsCountData = {
36928
37425
  customer_name?: string;
36929
37426
  customer_native_name?: string;
36930
37427
  description?: string;
37428
+ /**
37429
+ * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
37430
+ */
37431
+ include_terminated?: boolean;
37432
+ is_removed?: boolean;
36931
37433
  /**
36932
37434
  * Modified after
36933
37435
  */
@@ -37051,7 +37553,7 @@ export type ProjectsRetrieveData = {
37051
37553
  uuid: string;
37052
37554
  };
37053
37555
  query?: {
37054
- 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'>;
37556
+ 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' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
37055
37557
  };
37056
37558
  url: '/api/projects/{uuid}/';
37057
37559
  };
@@ -37091,6 +37593,15 @@ export type ProjectsAddUserData = {
37091
37593
  query?: never;
37092
37594
  url: '/api/projects/{uuid}/add_user/';
37093
37595
  };
37596
+ export type ProjectsAddUserErrors = {
37597
+ /**
37598
+ * Validation error when trying to add user to terminated project
37599
+ */
37600
+ 400: {
37601
+ non_field_errors?: Array<string>;
37602
+ };
37603
+ };
37604
+ export type ProjectsAddUserError = ProjectsAddUserErrors[keyof ProjectsAddUserErrors];
37094
37605
  export type ProjectsAddUserResponses = {
37095
37606
  201: UserRoleExpirationTime;
37096
37607
  };
@@ -37222,10 +37733,31 @@ export type ProjectsMoveProjectData = {
37222
37733
  query?: never;
37223
37734
  url: '/api/projects/{uuid}/move_project/';
37224
37735
  };
37736
+ export type ProjectsMoveProjectErrors = {
37737
+ /**
37738
+ * Validation error when trying to move a terminated project
37739
+ */
37740
+ 400: {
37741
+ non_field_errors?: Array<string>;
37742
+ };
37743
+ };
37744
+ export type ProjectsMoveProjectError = ProjectsMoveProjectErrors[keyof ProjectsMoveProjectErrors];
37225
37745
  export type ProjectsMoveProjectResponses = {
37226
37746
  200: Project;
37227
37747
  };
37228
37748
  export type ProjectsMoveProjectResponse = ProjectsMoveProjectResponses[keyof ProjectsMoveProjectResponses];
37749
+ export type ProjectsRecoverData = {
37750
+ body?: ProjectRecoveryRequest;
37751
+ path: {
37752
+ uuid: string;
37753
+ };
37754
+ query?: never;
37755
+ url: '/api/projects/{uuid}/recover/';
37756
+ };
37757
+ export type ProjectsRecoverResponses = {
37758
+ 200: Project;
37759
+ };
37760
+ export type ProjectsRecoverResponse = ProjectsRecoverResponses[keyof ProjectsRecoverResponses];
37229
37761
  export type ProjectsStatsRetrieveData = {
37230
37762
  body?: never;
37231
37763
  path: {
@@ -37620,6 +38152,15 @@ export type ProposalProposalsAddUserData = {
37620
38152
  query?: never;
37621
38153
  url: '/api/proposal-proposals/{uuid}/add_user/';
37622
38154
  };
38155
+ export type ProposalProposalsAddUserErrors = {
38156
+ /**
38157
+ * Validation error when trying to add user to terminated project
38158
+ */
38159
+ 400: {
38160
+ non_field_errors?: Array<string>;
38161
+ };
38162
+ };
38163
+ export type ProposalProposalsAddUserError = ProposalProposalsAddUserErrors[keyof ProposalProposalsAddUserErrors];
37623
38164
  export type ProposalProposalsAddUserResponses = {
37624
38165
  201: UserRoleExpirationTime;
37625
38166
  };
@@ -38159,6 +38700,15 @@ export type ProposalProtectedCallsAddUserData = {
38159
38700
  query?: never;
38160
38701
  url: '/api/proposal-protected-calls/{uuid}/add_user/';
38161
38702
  };
38703
+ export type ProposalProtectedCallsAddUserErrors = {
38704
+ /**
38705
+ * Validation error when trying to add user to terminated project
38706
+ */
38707
+ 400: {
38708
+ non_field_errors?: Array<string>;
38709
+ };
38710
+ };
38711
+ export type ProposalProtectedCallsAddUserError = ProposalProtectedCallsAddUserErrors[keyof ProposalProtectedCallsAddUserErrors];
38162
38712
  export type ProposalProtectedCallsAddUserResponses = {
38163
38713
  201: UserRoleExpirationTime;
38164
38714
  };