waldur-js-client 7.8.5-dev.0 → 7.8.5-dev.10

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,7 @@ export type Project = {
8861
8965
  * Project type
8862
8966
  */
8863
8967
  kind?: KindEnum;
8968
+ readonly is_removed?: boolean;
8864
8969
  readonly project_credit?: number | null;
8865
8970
  readonly marketplace_resource_count?: {
8866
8971
  [key: string]: number;
@@ -11129,6 +11234,9 @@ export type Resource = {
11129
11234
  * Check if the current user needs to re-consent for this resource's offering.
11130
11235
  */
11131
11236
  readonly user_requires_reconsent?: boolean;
11237
+ readonly renewal_date?: {
11238
+ [key: string]: string;
11239
+ } | null;
11132
11240
  };
11133
11241
  export type ResourceBackendIdRequest = {
11134
11242
  backend_id?: string;
@@ -13427,6 +13535,7 @@ export type ConstanceSettingsRequestForm = {
13427
13535
  DOCS_URL?: string;
13428
13536
  SHORT_PAGE_TITLE?: string;
13429
13537
  FULL_PAGE_TITLE?: string;
13538
+ PROJECT_END_DATE_MANDATORY?: boolean;
13430
13539
  BRAND_COLOR?: string;
13431
13540
  HERO_LINK_LABEL?: string;
13432
13541
  HERO_LINK_URL?: string;
@@ -13570,6 +13679,7 @@ export type ConstanceSettingsRequestMultipart = {
13570
13679
  DOCS_URL?: string;
13571
13680
  SHORT_PAGE_TITLE?: string;
13572
13681
  FULL_PAGE_TITLE?: string;
13682
+ PROJECT_END_DATE_MANDATORY?: boolean;
13573
13683
  BRAND_COLOR?: string;
13574
13684
  HERO_LINK_LABEL?: string;
13575
13685
  HERO_LINK_URL?: string;
@@ -16602,6 +16712,10 @@ export type BookingResourcesListData = {
16602
16712
  */
16603
16713
  backend_id?: string;
16604
16714
  category_uuid?: string;
16715
+ /**
16716
+ * Filter by exact number of components
16717
+ */
16718
+ component_count?: number;
16605
16719
  connected_customer_uuid?: string;
16606
16720
  /**
16607
16721
  * Created after
@@ -16610,7 +16724,7 @@ export type BookingResourcesListData = {
16610
16724
  customer?: string;
16611
16725
  customer_uuid?: string;
16612
16726
  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'>;
16727
+ 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
16728
  /**
16615
16729
  * Has termination date
16616
16730
  */
@@ -16619,6 +16733,14 @@ export type BookingResourcesListData = {
16619
16733
  * LEXIS links supported
16620
16734
  */
16621
16735
  lexis_links_supported?: boolean;
16736
+ /**
16737
+ * Filter by limit-based offerings
16738
+ */
16739
+ limit_based?: boolean;
16740
+ /**
16741
+ * Filter by exact number of limit-based components
16742
+ */
16743
+ limit_component_count?: number;
16622
16744
  /**
16623
16745
  * Modified after
16624
16746
  */
@@ -16646,6 +16768,14 @@ export type BookingResourcesListData = {
16646
16768
  * Multiple values may be separated by commas.
16647
16769
  */
16648
16770
  offering_uuid?: Array<string>;
16771
+ /**
16772
+ * Filter out resources with only limit-based components
16773
+ */
16774
+ only_limit_based?: boolean;
16775
+ /**
16776
+ * Filter out resources with only usage-based components
16777
+ */
16778
+ only_usage_based?: boolean;
16649
16779
  /**
16650
16780
  * A page number within the paginated result set.
16651
16781
  */
@@ -16674,6 +16804,10 @@ export type BookingResourcesListData = {
16674
16804
  */
16675
16805
  service_manager_uuid?: string;
16676
16806
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
16807
+ /**
16808
+ * Filter by usage-based offerings
16809
+ */
16810
+ usage_based?: boolean;
16677
16811
  /**
16678
16812
  * Visible to username
16679
16813
  */
@@ -16694,6 +16828,10 @@ export type BookingResourcesCountData = {
16694
16828
  */
16695
16829
  backend_id?: string;
16696
16830
  category_uuid?: string;
16831
+ /**
16832
+ * Filter by exact number of components
16833
+ */
16834
+ component_count?: number;
16697
16835
  connected_customer_uuid?: string;
16698
16836
  /**
16699
16837
  * Created after
@@ -16710,6 +16848,14 @@ export type BookingResourcesCountData = {
16710
16848
  * LEXIS links supported
16711
16849
  */
16712
16850
  lexis_links_supported?: boolean;
16851
+ /**
16852
+ * Filter by limit-based offerings
16853
+ */
16854
+ limit_based?: boolean;
16855
+ /**
16856
+ * Filter by exact number of limit-based components
16857
+ */
16858
+ limit_component_count?: number;
16713
16859
  /**
16714
16860
  * Modified after
16715
16861
  */
@@ -16737,6 +16883,14 @@ export type BookingResourcesCountData = {
16737
16883
  * Multiple values may be separated by commas.
16738
16884
  */
16739
16885
  offering_uuid?: Array<string>;
16886
+ /**
16887
+ * Filter out resources with only limit-based components
16888
+ */
16889
+ only_limit_based?: boolean;
16890
+ /**
16891
+ * Filter out resources with only usage-based components
16892
+ */
16893
+ only_usage_based?: boolean;
16740
16894
  /**
16741
16895
  * A page number within the paginated result set.
16742
16896
  */
@@ -16765,6 +16919,10 @@ export type BookingResourcesCountData = {
16765
16919
  */
16766
16920
  service_manager_uuid?: string;
16767
16921
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
16922
+ /**
16923
+ * Filter by usage-based offerings
16924
+ */
16925
+ usage_based?: boolean;
16768
16926
  /**
16769
16927
  * Visible to username
16770
16928
  */
@@ -16784,7 +16942,7 @@ export type BookingResourcesRetrieveData = {
16784
16942
  uuid: string;
16785
16943
  };
16786
16944
  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'>;
16945
+ 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
16946
  };
16789
16947
  url: '/api/booking-resources/{uuid}/';
16790
16948
  };
@@ -22309,7 +22467,7 @@ export type ManagedRancherClusterResourcesListData = {
22309
22467
  body?: never;
22310
22468
  path?: never;
22311
22469
  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'>;
22470
+ 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
22471
  /**
22314
22472
  * A page number within the paginated result set.
22315
22473
  */
@@ -22352,7 +22510,7 @@ export type ManagedRancherClusterResourcesRetrieveData = {
22352
22510
  uuid: string;
22353
22511
  };
22354
22512
  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'>;
22513
+ 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
22514
  };
22357
22515
  url: '/api/managed-rancher-cluster-resources/{uuid}/';
22358
22516
  };
@@ -23348,6 +23506,137 @@ export type MarketplaceCourseAccountsCreateBulkResponses = {
23348
23506
  200: CourseAccountsBulkCreate;
23349
23507
  };
23350
23508
  export type MarketplaceCourseAccountsCreateBulkResponse = MarketplaceCourseAccountsCreateBulkResponses[keyof MarketplaceCourseAccountsCreateBulkResponses];
23509
+ export type MarketplaceCustomerComponentUsagePoliciesListData = {
23510
+ body?: never;
23511
+ path?: never;
23512
+ query?: {
23513
+ customer?: string;
23514
+ customer_uuid?: string;
23515
+ /**
23516
+ * A page number within the paginated result set.
23517
+ */
23518
+ page?: number;
23519
+ /**
23520
+ * Number of results to return per page.
23521
+ */
23522
+ page_size?: number;
23523
+ scope?: string;
23524
+ scope_uuid?: string;
23525
+ };
23526
+ url: '/api/marketplace-customer-component-usage-policies/';
23527
+ };
23528
+ export type MarketplaceCustomerComponentUsagePoliciesListResponses = {
23529
+ 200: Array<CustomerComponentUsagePolicy>;
23530
+ };
23531
+ export type MarketplaceCustomerComponentUsagePoliciesListResponse = MarketplaceCustomerComponentUsagePoliciesListResponses[keyof MarketplaceCustomerComponentUsagePoliciesListResponses];
23532
+ export type MarketplaceCustomerComponentUsagePoliciesCountData = {
23533
+ body?: never;
23534
+ path?: never;
23535
+ query?: {
23536
+ customer?: string;
23537
+ customer_uuid?: string;
23538
+ /**
23539
+ * A page number within the paginated result set.
23540
+ */
23541
+ page?: number;
23542
+ /**
23543
+ * Number of results to return per page.
23544
+ */
23545
+ page_size?: number;
23546
+ scope?: string;
23547
+ scope_uuid?: string;
23548
+ };
23549
+ url: '/api/marketplace-customer-component-usage-policies/';
23550
+ };
23551
+ export type MarketplaceCustomerComponentUsagePoliciesCountResponses = {
23552
+ /**
23553
+ * No response body
23554
+ */
23555
+ 200: unknown;
23556
+ };
23557
+ export type MarketplaceCustomerComponentUsagePoliciesCreateData = {
23558
+ body: CustomerComponentUsagePolicyRequest;
23559
+ path?: never;
23560
+ query?: never;
23561
+ url: '/api/marketplace-customer-component-usage-policies/';
23562
+ };
23563
+ export type MarketplaceCustomerComponentUsagePoliciesCreateResponses = {
23564
+ 201: CustomerComponentUsagePolicy;
23565
+ };
23566
+ export type MarketplaceCustomerComponentUsagePoliciesCreateResponse = MarketplaceCustomerComponentUsagePoliciesCreateResponses[keyof MarketplaceCustomerComponentUsagePoliciesCreateResponses];
23567
+ export type MarketplaceCustomerComponentUsagePoliciesDestroyData = {
23568
+ body?: never;
23569
+ path: {
23570
+ uuid: string;
23571
+ };
23572
+ query?: never;
23573
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23574
+ };
23575
+ export type MarketplaceCustomerComponentUsagePoliciesDestroyResponses = {
23576
+ /**
23577
+ * No response body
23578
+ */
23579
+ 204: void;
23580
+ };
23581
+ export type MarketplaceCustomerComponentUsagePoliciesDestroyResponse = MarketplaceCustomerComponentUsagePoliciesDestroyResponses[keyof MarketplaceCustomerComponentUsagePoliciesDestroyResponses];
23582
+ export type MarketplaceCustomerComponentUsagePoliciesRetrieveData = {
23583
+ body?: never;
23584
+ path: {
23585
+ uuid: string;
23586
+ };
23587
+ query?: never;
23588
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23589
+ };
23590
+ export type MarketplaceCustomerComponentUsagePoliciesRetrieveResponses = {
23591
+ 200: CustomerComponentUsagePolicy;
23592
+ };
23593
+ export type MarketplaceCustomerComponentUsagePoliciesRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesRetrieveResponses];
23594
+ export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateData = {
23595
+ body?: PatchedCustomerComponentUsagePolicyRequest;
23596
+ path: {
23597
+ uuid: string;
23598
+ };
23599
+ query?: never;
23600
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23601
+ };
23602
+ export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses = {
23603
+ 200: CustomerComponentUsagePolicy;
23604
+ };
23605
+ export type MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponse = MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses[keyof MarketplaceCustomerComponentUsagePoliciesPartialUpdateResponses];
23606
+ export type MarketplaceCustomerComponentUsagePoliciesUpdateData = {
23607
+ body: CustomerComponentUsagePolicyRequest;
23608
+ path: {
23609
+ uuid: string;
23610
+ };
23611
+ query?: never;
23612
+ url: '/api/marketplace-customer-component-usage-policies/{uuid}/';
23613
+ };
23614
+ export type MarketplaceCustomerComponentUsagePoliciesUpdateResponses = {
23615
+ 200: CustomerComponentUsagePolicy;
23616
+ };
23617
+ export type MarketplaceCustomerComponentUsagePoliciesUpdateResponse = MarketplaceCustomerComponentUsagePoliciesUpdateResponses[keyof MarketplaceCustomerComponentUsagePoliciesUpdateResponses];
23618
+ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveData = {
23619
+ body?: never;
23620
+ path?: never;
23621
+ query?: never;
23622
+ url: '/api/marketplace-customer-component-usage-policies/actions/';
23623
+ };
23624
+ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses = {
23625
+ 200: CustomerComponentUsagePolicy;
23626
+ };
23627
+ export type MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponse = MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses[keyof MarketplaceCustomerComponentUsagePoliciesActionsRetrieveResponses];
23628
+ export type MarketplaceCustomerComponentUsagePoliciesActionsCountData = {
23629
+ body?: never;
23630
+ path?: never;
23631
+ query?: never;
23632
+ url: '/api/marketplace-customer-component-usage-policies/actions/';
23633
+ };
23634
+ export type MarketplaceCustomerComponentUsagePoliciesActionsCountResponses = {
23635
+ /**
23636
+ * No response body
23637
+ */
23638
+ 200: unknown;
23639
+ };
23351
23640
  export type MarketplaceCustomerEstimatedCostPoliciesListData = {
23352
23641
  body?: never;
23353
23642
  path?: never;
@@ -25523,6 +25812,20 @@ export type MarketplaceOrdersRejectByProviderResponses = {
25523
25812
  */
25524
25813
  200: unknown;
25525
25814
  };
25815
+ export type MarketplaceOrdersSetBackendIdData = {
25816
+ body: OrderBackendIdRequest;
25817
+ path: {
25818
+ uuid: string;
25819
+ };
25820
+ query?: never;
25821
+ url: '/api/marketplace-orders/{uuid}/set_backend_id/';
25822
+ };
25823
+ export type MarketplaceOrdersSetBackendIdResponses = {
25824
+ /**
25825
+ * No response body
25826
+ */
25827
+ 200: unknown;
25828
+ };
25526
25829
  export type MarketplaceOrdersSetStateDoneData = {
25527
25830
  body?: never;
25528
25831
  path: {
@@ -26359,6 +26662,10 @@ export type MarketplaceProviderOfferingsListData = {
26359
26662
  * User Has Consent
26360
26663
  */
26361
26664
  user_has_consent?: boolean;
26665
+ /**
26666
+ * User Has Offering User
26667
+ */
26668
+ user_has_offering_user?: boolean;
26362
26669
  /**
26363
26670
  * Comma-separated offering UUIDs
26364
26671
  */
@@ -26454,6 +26761,10 @@ export type MarketplaceProviderOfferingsCountData = {
26454
26761
  * User Has Consent
26455
26762
  */
26456
26763
  user_has_consent?: boolean;
26764
+ /**
26765
+ * User Has Offering User
26766
+ */
26767
+ user_has_offering_user?: boolean;
26457
26768
  /**
26458
26769
  * Comma-separated offering UUIDs
26459
26770
  */
@@ -26648,6 +26959,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
26648
26959
  * User Has Consent
26649
26960
  */
26650
26961
  user_has_consent?: boolean;
26962
+ /**
26963
+ * User Has Offering User
26964
+ */
26965
+ user_has_offering_user?: boolean;
26651
26966
  /**
26652
26967
  * Comma-separated offering UUIDs
26653
26968
  */
@@ -26754,6 +27069,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
26754
27069
  * User Has Consent
26755
27070
  */
26756
27071
  user_has_consent?: boolean;
27072
+ /**
27073
+ * User Has Offering User
27074
+ */
27075
+ user_has_offering_user?: boolean;
26757
27076
  /**
26758
27077
  * Comma-separated offering UUIDs
26759
27078
  */
@@ -26865,6 +27184,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
26865
27184
  * User Has Consent
26866
27185
  */
26867
27186
  user_has_consent?: boolean;
27187
+ /**
27188
+ * User Has Offering User
27189
+ */
27190
+ user_has_offering_user?: boolean;
26868
27191
  /**
26869
27192
  * Comma-separated offering UUIDs
26870
27193
  */
@@ -27582,6 +27905,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
27582
27905
  * User Has Consent
27583
27906
  */
27584
27907
  user_has_consent?: boolean;
27908
+ /**
27909
+ * User Has Offering User
27910
+ */
27911
+ user_has_offering_user?: boolean;
27585
27912
  /**
27586
27913
  * Comma-separated offering UUIDs
27587
27914
  */
@@ -27677,6 +28004,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
27677
28004
  * User Has Consent
27678
28005
  */
27679
28006
  user_has_consent?: boolean;
28007
+ /**
28008
+ * User Has Offering User
28009
+ */
28010
+ user_has_offering_user?: boolean;
27680
28011
  /**
27681
28012
  * Comma-separated offering UUIDs
27682
28013
  */
@@ -27699,6 +28030,10 @@ export type MarketplaceProviderResourcesListData = {
27699
28030
  */
27700
28031
  backend_id?: string;
27701
28032
  category_uuid?: string;
28033
+ /**
28034
+ * Filter by exact number of components
28035
+ */
28036
+ component_count?: number;
27702
28037
  /**
27703
28038
  * Created after
27704
28039
  */
@@ -27706,7 +28041,7 @@ export type MarketplaceProviderResourcesListData = {
27706
28041
  customer?: string;
27707
28042
  customer_uuid?: string;
27708
28043
  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'>;
28044
+ 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
28045
  /**
27711
28046
  * Has termination date
27712
28047
  */
@@ -27715,6 +28050,14 @@ export type MarketplaceProviderResourcesListData = {
27715
28050
  * LEXIS links supported
27716
28051
  */
27717
28052
  lexis_links_supported?: boolean;
28053
+ /**
28054
+ * Filter by limit-based offerings
28055
+ */
28056
+ limit_based?: boolean;
28057
+ /**
28058
+ * Filter by exact number of limit-based components
28059
+ */
28060
+ limit_component_count?: number;
27718
28061
  /**
27719
28062
  * Modified after
27720
28063
  */
@@ -27742,6 +28085,14 @@ export type MarketplaceProviderResourcesListData = {
27742
28085
  * Multiple values may be separated by commas.
27743
28086
  */
27744
28087
  offering_uuid?: Array<string>;
28088
+ /**
28089
+ * Filter out resources with only limit-based components
28090
+ */
28091
+ only_limit_based?: boolean;
28092
+ /**
28093
+ * Filter out resources with only usage-based components
28094
+ */
28095
+ only_usage_based?: boolean;
27745
28096
  /**
27746
28097
  * A page number within the paginated result set.
27747
28098
  */
@@ -27770,6 +28121,10 @@ export type MarketplaceProviderResourcesListData = {
27770
28121
  */
27771
28122
  service_manager_uuid?: string;
27772
28123
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
28124
+ /**
28125
+ * Filter by usage-based offerings
28126
+ */
28127
+ usage_based?: boolean;
27773
28128
  /**
27774
28129
  * Visible to username
27775
28130
  */
@@ -27790,6 +28145,10 @@ export type MarketplaceProviderResourcesCountData = {
27790
28145
  */
27791
28146
  backend_id?: string;
27792
28147
  category_uuid?: string;
28148
+ /**
28149
+ * Filter by exact number of components
28150
+ */
28151
+ component_count?: number;
27793
28152
  /**
27794
28153
  * Created after
27795
28154
  */
@@ -27805,6 +28164,14 @@ export type MarketplaceProviderResourcesCountData = {
27805
28164
  * LEXIS links supported
27806
28165
  */
27807
28166
  lexis_links_supported?: boolean;
28167
+ /**
28168
+ * Filter by limit-based offerings
28169
+ */
28170
+ limit_based?: boolean;
28171
+ /**
28172
+ * Filter by exact number of limit-based components
28173
+ */
28174
+ limit_component_count?: number;
27808
28175
  /**
27809
28176
  * Modified after
27810
28177
  */
@@ -27832,6 +28199,14 @@ export type MarketplaceProviderResourcesCountData = {
27832
28199
  * Multiple values may be separated by commas.
27833
28200
  */
27834
28201
  offering_uuid?: Array<string>;
28202
+ /**
28203
+ * Filter out resources with only limit-based components
28204
+ */
28205
+ only_limit_based?: boolean;
28206
+ /**
28207
+ * Filter out resources with only usage-based components
28208
+ */
28209
+ only_usage_based?: boolean;
27835
28210
  /**
27836
28211
  * A page number within the paginated result set.
27837
28212
  */
@@ -27860,6 +28235,10 @@ export type MarketplaceProviderResourcesCountData = {
27860
28235
  */
27861
28236
  service_manager_uuid?: string;
27862
28237
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
28238
+ /**
28239
+ * Filter by usage-based offerings
28240
+ */
28241
+ usage_based?: boolean;
27863
28242
  /**
27864
28243
  * Visible to username
27865
28244
  */
@@ -27879,7 +28258,7 @@ export type MarketplaceProviderResourcesRetrieveData = {
27879
28258
  uuid: string;
27880
28259
  };
27881
28260
  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'>;
28261
+ 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
28262
  };
27884
28263
  url: '/api/marketplace-provider-resources/{uuid}/';
27885
28264
  };
@@ -27917,7 +28296,7 @@ export type MarketplaceProviderResourcesDetailsRetrieveData = {
27917
28296
  uuid: string;
27918
28297
  };
27919
28298
  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'>;
28299
+ 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
28300
  };
27922
28301
  url: '/api/marketplace-provider-resources/{uuid}/details/';
27923
28302
  };
@@ -28326,6 +28705,10 @@ export type MarketplacePublicOfferingsListData = {
28326
28705
  * User Has Consent
28327
28706
  */
28328
28707
  user_has_consent?: boolean;
28708
+ /**
28709
+ * User Has Offering User
28710
+ */
28711
+ user_has_offering_user?: boolean;
28329
28712
  /**
28330
28713
  * Comma-separated offering UUIDs
28331
28714
  */
@@ -28421,6 +28804,10 @@ export type MarketplacePublicOfferingsCountData = {
28421
28804
  * User Has Consent
28422
28805
  */
28423
28806
  user_has_consent?: boolean;
28807
+ /**
28808
+ * User Has Offering User
28809
+ */
28810
+ user_has_offering_user?: boolean;
28424
28811
  /**
28425
28812
  * Comma-separated offering UUIDs
28426
28813
  */
@@ -28728,6 +29115,10 @@ export type MarketplaceResourcesListData = {
28728
29115
  */
28729
29116
  backend_id?: string;
28730
29117
  category_uuid?: string;
29118
+ /**
29119
+ * Filter by exact number of components
29120
+ */
29121
+ component_count?: number;
28731
29122
  /**
28732
29123
  * Created after
28733
29124
  */
@@ -28735,7 +29126,7 @@ export type MarketplaceResourcesListData = {
28735
29126
  customer?: string;
28736
29127
  customer_uuid?: string;
28737
29128
  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'>;
29129
+ 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
29130
  /**
28740
29131
  * Has termination date
28741
29132
  */
@@ -28744,6 +29135,14 @@ export type MarketplaceResourcesListData = {
28744
29135
  * LEXIS links supported
28745
29136
  */
28746
29137
  lexis_links_supported?: boolean;
29138
+ /**
29139
+ * Filter by limit-based offerings
29140
+ */
29141
+ limit_based?: boolean;
29142
+ /**
29143
+ * Filter by exact number of limit-based components
29144
+ */
29145
+ limit_component_count?: number;
28747
29146
  /**
28748
29147
  * Modified after
28749
29148
  */
@@ -28771,6 +29170,14 @@ export type MarketplaceResourcesListData = {
28771
29170
  * Multiple values may be separated by commas.
28772
29171
  */
28773
29172
  offering_uuid?: Array<string>;
29173
+ /**
29174
+ * Filter out resources with only limit-based components
29175
+ */
29176
+ only_limit_based?: boolean;
29177
+ /**
29178
+ * Filter out resources with only usage-based components
29179
+ */
29180
+ only_usage_based?: boolean;
28774
29181
  /**
28775
29182
  * A page number within the paginated result set.
28776
29183
  */
@@ -28799,6 +29206,10 @@ export type MarketplaceResourcesListData = {
28799
29206
  */
28800
29207
  service_manager_uuid?: string;
28801
29208
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
29209
+ /**
29210
+ * Filter by usage-based offerings
29211
+ */
29212
+ usage_based?: boolean;
28802
29213
  /**
28803
29214
  * Visible to username
28804
29215
  */
@@ -28819,6 +29230,10 @@ export type MarketplaceResourcesCountData = {
28819
29230
  */
28820
29231
  backend_id?: string;
28821
29232
  category_uuid?: string;
29233
+ /**
29234
+ * Filter by exact number of components
29235
+ */
29236
+ component_count?: number;
28822
29237
  /**
28823
29238
  * Created after
28824
29239
  */
@@ -28834,6 +29249,14 @@ export type MarketplaceResourcesCountData = {
28834
29249
  * LEXIS links supported
28835
29250
  */
28836
29251
  lexis_links_supported?: boolean;
29252
+ /**
29253
+ * Filter by limit-based offerings
29254
+ */
29255
+ limit_based?: boolean;
29256
+ /**
29257
+ * Filter by exact number of limit-based components
29258
+ */
29259
+ limit_component_count?: number;
28837
29260
  /**
28838
29261
  * Modified after
28839
29262
  */
@@ -28861,6 +29284,14 @@ export type MarketplaceResourcesCountData = {
28861
29284
  * Multiple values may be separated by commas.
28862
29285
  */
28863
29286
  offering_uuid?: Array<string>;
29287
+ /**
29288
+ * Filter out resources with only limit-based components
29289
+ */
29290
+ only_limit_based?: boolean;
29291
+ /**
29292
+ * Filter out resources with only usage-based components
29293
+ */
29294
+ only_usage_based?: boolean;
28864
29295
  /**
28865
29296
  * A page number within the paginated result set.
28866
29297
  */
@@ -28889,6 +29320,10 @@ export type MarketplaceResourcesCountData = {
28889
29320
  */
28890
29321
  service_manager_uuid?: string;
28891
29322
  state?: Array<'Creating' | 'Erred' | 'OK' | 'Terminated' | 'Terminating' | 'Updating'>;
29323
+ /**
29324
+ * Filter by usage-based offerings
29325
+ */
29326
+ usage_based?: boolean;
28892
29327
  /**
28893
29328
  * Visible to username
28894
29329
  */
@@ -28908,7 +29343,7 @@ export type MarketplaceResourcesRetrieveData = {
28908
29343
  uuid: string;
28909
29344
  };
28910
29345
  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'>;
29346
+ 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
29347
  };
28913
29348
  url: '/api/marketplace-resources/{uuid}/';
28914
29349
  };
@@ -28946,7 +29381,7 @@ export type MarketplaceResourcesDetailsRetrieveData = {
28946
29381
  uuid: string;
28947
29382
  };
28948
29383
  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'>;
29384
+ 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
29385
  };
28951
29386
  url: '/api/marketplace-resources/{uuid}/details/';
28952
29387
  };
@@ -29958,6 +30393,7 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
29958
30393
  customer_native_name?: string;
29959
30394
  description?: string;
29960
30395
  field?: Array<'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid'>;
30396
+ is_removed?: boolean;
29961
30397
  /**
29962
30398
  * Modified after
29963
30399
  */
@@ -30165,6 +30601,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
30165
30601
  * User Has Consent
30166
30602
  */
30167
30603
  user_has_consent?: boolean;
30604
+ /**
30605
+ * User Has Offering User
30606
+ */
30607
+ user_has_offering_user?: boolean;
30168
30608
  /**
30169
30609
  * Comma-separated offering UUIDs
30170
30610
  */
@@ -30302,7 +30742,8 @@ export type MarketplaceServiceProvidersProjectsListData = {
30302
30742
  customer_name?: string;
30303
30743
  customer_native_name?: string;
30304
30744
  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'>;
30745
+ 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'>;
30746
+ is_removed?: boolean;
30306
30747
  /**
30307
30748
  * Modified after
30308
30749
  */
@@ -36866,7 +37307,12 @@ export type ProjectsListData = {
36866
37307
  customer_name?: string;
36867
37308
  customer_native_name?: string;
36868
37309
  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'>;
37310
+ 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'>;
37311
+ /**
37312
+ * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
37313
+ */
37314
+ include_terminated?: boolean;
37315
+ is_removed?: boolean;
36870
37316
  /**
36871
37317
  * Modified after
36872
37318
  */
@@ -36928,6 +37374,11 @@ export type ProjectsCountData = {
36928
37374
  customer_name?: string;
36929
37375
  customer_native_name?: string;
36930
37376
  description?: string;
37377
+ /**
37378
+ * Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
37379
+ */
37380
+ include_terminated?: boolean;
37381
+ is_removed?: boolean;
36931
37382
  /**
36932
37383
  * Modified after
36933
37384
  */
@@ -37051,7 +37502,7 @@ export type ProjectsRetrieveData = {
37051
37502
  uuid: string;
37052
37503
  };
37053
37504
  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'>;
37505
+ 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'>;
37055
37506
  };
37056
37507
  url: '/api/projects/{uuid}/';
37057
37508
  };
@@ -41354,6 +41805,20 @@ export type RemoteWaldurApiPullOrderResponses = {
41354
41805
  */
41355
41806
  200: unknown;
41356
41807
  };
41808
+ export type RemoteWaldurApiPullResourceRobotAccountsData = {
41809
+ body?: never;
41810
+ path: {
41811
+ uuid: string;
41812
+ };
41813
+ query?: never;
41814
+ url: '/api/remote-waldur-api/pull_resource_robot_accounts/{uuid}/';
41815
+ };
41816
+ export type RemoteWaldurApiPullResourceRobotAccountsResponses = {
41817
+ /**
41818
+ * No response body
41819
+ */
41820
+ 200: unknown;
41821
+ };
41357
41822
  export type RemoteWaldurApiPushProjectDataData = {
41358
41823
  body?: never;
41359
41824
  path: {