waldur-js-client 7.9.8 → 7.9.9-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4453,6 +4453,7 @@ export type DeadLetterQueue = {
4453
4453
  readonly note: string;
4454
4454
  };
4455
4455
  export type DecidingEntityEnum = 'by_call_manager' | 'automatic';
4456
+ export type DefaultPermissionEnum = '2770' | '2775' | '2777' | '770' | '775' | '777';
4456
4457
  export type DeleteAttachmentsRequest = {
4457
4458
  attachment_ids: Array<string>;
4458
4459
  };
@@ -8496,6 +8497,13 @@ export type NestedSoftwareVersionRequest = {
8496
8497
  version: string;
8497
8498
  release_date?: string | null;
8498
8499
  };
8500
+ export type NestedTag = {
8501
+ readonly uuid?: string;
8502
+ name?: string;
8503
+ };
8504
+ export type NestedTagRequest = {
8505
+ name: string;
8506
+ };
8499
8507
  export type NetworkRbacPolicy = {
8500
8508
  readonly url?: string;
8501
8509
  readonly uuid?: string;
@@ -8651,6 +8659,7 @@ export type Offering = {
8651
8659
  country?: CountryEnum | BlankEnum;
8652
8660
  backend_id?: string;
8653
8661
  readonly organization_groups?: Array<OrganizationGroup>;
8662
+ readonly tags?: Array<NestedTag>;
8654
8663
  image?: string | null;
8655
8664
  readonly total_customers?: number | null;
8656
8665
  readonly total_cost?: number | null;
@@ -11490,6 +11499,7 @@ export type OptionField = {
11490
11499
  max?: number;
11491
11500
  cascade_config?: CascadeConfig;
11492
11501
  component_multiplier_config?: ComponentMultiplierConfig;
11502
+ storage_folder_config?: StorageFolderConfig;
11493
11503
  default_configs?: K8sDefaultConfiguration;
11494
11504
  };
11495
11505
  export type OptionFieldRequest = {
@@ -11503,9 +11513,10 @@ export type OptionFieldRequest = {
11503
11513
  max?: number;
11504
11514
  cascade_config?: CascadeConfigRequest;
11505
11515
  component_multiplier_config?: ComponentMultiplierConfigRequest;
11516
+ storage_folder_config?: StorageFolderConfigRequest;
11506
11517
  default_configs?: K8sDefaultConfigurationRequest;
11507
11518
  };
11508
- export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config';
11519
+ export type OptionFieldTypeEnum = 'boolean' | 'integer' | 'money' | 'string' | 'text' | 'html_text' | 'select_string' | 'select_string_multi' | 'select_openstack_tenant' | 'select_multiple_openstack_tenants' | 'select_openstack_instance' | 'select_multiple_openstack_instances' | 'date' | 'time' | 'conditional_cascade' | 'component_multiplier' | 'single_datacenter_k8s_config' | 'multi_datacenter_k8s_config' | 'storage_folder_manager';
11509
11520
  export type OrcidCallbackRequest = {
11510
11521
  /**
11511
11522
  * Authorization code from ORCID OAuth callback
@@ -13315,6 +13326,10 @@ export type PatchedSoftwarePackageRequest = {
13315
13326
  */
13316
13327
  parent_software?: string | null;
13317
13328
  };
13329
+ export type PatchedTagRequest = {
13330
+ name?: string;
13331
+ description?: string;
13332
+ };
13318
13333
  export type PatchedTemplateRequest = {
13319
13334
  name?: string;
13320
13335
  description?: string;
@@ -14582,6 +14597,7 @@ export type ProviderOfferingDetails = {
14582
14597
  country?: CountryEnum | BlankEnum;
14583
14598
  backend_id?: string;
14584
14599
  readonly organization_groups?: Array<OrganizationGroup>;
14600
+ readonly tags?: Array<NestedTag>;
14585
14601
  image?: string | null;
14586
14602
  readonly total_customers?: number | null;
14587
14603
  readonly total_cost?: number | null;
@@ -14933,6 +14949,7 @@ export type PublicOfferingDetails = {
14933
14949
  country?: CountryEnum | BlankEnum;
14934
14950
  backend_id?: string;
14935
14951
  readonly organization_groups?: Array<OrganizationGroup>;
14952
+ readonly tags?: Array<NestedTag>;
14936
14953
  image?: string | null;
14937
14954
  readonly total_customers?: number | null;
14938
14955
  readonly total_cost?: number | null;
@@ -18774,6 +18791,36 @@ export type StateTransitionError = {
18774
18791
  */
18775
18792
  detail: string;
18776
18793
  };
18794
+ export type StorageDataType = {
18795
+ key: string;
18796
+ label: string;
18797
+ };
18798
+ export type StorageDataTypeRequest = {
18799
+ key: string;
18800
+ label: string;
18801
+ };
18802
+ export type StorageFolderConfig = {
18803
+ component_type: string;
18804
+ default_hard_quota_multiplier?: number;
18805
+ inode_soft_multiplier?: number;
18806
+ inode_hard_multiplier?: number;
18807
+ storage_data_types: Array<StorageDataType>;
18808
+ /**
18809
+ * Default permission to auto-select
18810
+ */
18811
+ default_permission?: DefaultPermissionEnum;
18812
+ };
18813
+ export type StorageFolderConfigRequest = {
18814
+ component_type: string;
18815
+ default_hard_quota_multiplier?: number;
18816
+ inode_soft_multiplier?: number;
18817
+ inode_hard_multiplier?: number;
18818
+ storage_data_types: Array<StorageDataTypeRequest>;
18819
+ /**
18820
+ * Default permission to auto-select
18821
+ */
18822
+ default_permission?: DefaultPermissionEnum;
18823
+ };
18777
18824
  export type StorageModeEnum = 'fixed' | 'dynamic';
18778
18825
  export type SubNetMapping = {
18779
18826
  src_cidr: string;
@@ -18878,6 +18925,31 @@ export type TableSize = {
18878
18925
  */
18879
18926
  readonly external_size: number;
18880
18927
  };
18928
+ export type Tag = {
18929
+ readonly url: string;
18930
+ readonly uuid: string;
18931
+ name: string;
18932
+ description?: string;
18933
+ /**
18934
+ * Return offering count filtered by user permissions.
18935
+ * Staff sees all offerings.
18936
+ * Service providers see their own + active/paused/archived public offerings.
18937
+ */
18938
+ readonly offering_count: number;
18939
+ readonly created: string;
18940
+ /**
18941
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
18942
+ */
18943
+ readonly created_by_username: string;
18944
+ readonly created_by_full_name: string;
18945
+ };
18946
+ export type TagRequest = {
18947
+ name: string;
18948
+ description?: string;
18949
+ };
18950
+ export type TagsRequest = {
18951
+ tags?: Array<string>;
18952
+ };
18881
18953
  export type Template = {
18882
18954
  readonly url: string;
18883
18955
  readonly uuid: string;
@@ -25138,7 +25210,7 @@ export type BookingOfferingsListData = {
25138
25210
  body?: never;
25139
25211
  path?: never;
25140
25212
  query?: {
25141
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
25213
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
25142
25214
  /**
25143
25215
  * A page number within the paginated result set.
25144
25216
  */
@@ -25181,7 +25253,7 @@ export type BookingOfferingsRetrieveData = {
25181
25253
  uuid: string;
25182
25254
  };
25183
25255
  query?: {
25184
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
25256
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
25185
25257
  };
25186
25258
  url: '/api/booking-offerings/{uuid}/';
25187
25259
  };
@@ -37011,7 +37083,7 @@ export type MarketplaceProviderOfferingsListData = {
37011
37083
  * Description contains
37012
37084
  */
37013
37085
  description?: string;
37014
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
37086
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
37015
37087
  /**
37016
37088
  * Has Active Terms of Service
37017
37089
  */
@@ -37092,6 +37164,22 @@ export type MarketplaceProviderOfferingsListData = {
37092
37164
  *
37093
37165
  */
37094
37166
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
37167
+ /**
37168
+ * Tag UUID (OR logic)
37169
+ */
37170
+ tag?: Array<string>;
37171
+ /**
37172
+ * Tag name (OR logic)
37173
+ */
37174
+ tag_name?: Array<string>;
37175
+ /**
37176
+ * Tag names with AND logic (comma-separated)
37177
+ */
37178
+ tag_names_and?: string;
37179
+ /**
37180
+ * Tag UUIDs with AND logic (comma-separated)
37181
+ */
37182
+ tags_and?: string;
37095
37183
  /**
37096
37184
  * Offering type
37097
37185
  */
@@ -37240,6 +37328,22 @@ export type MarketplaceProviderOfferingsCountData = {
37240
37328
  *
37241
37329
  */
37242
37330
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
37331
+ /**
37332
+ * Tag UUID (OR logic)
37333
+ */
37334
+ tag?: Array<string>;
37335
+ /**
37336
+ * Tag name (OR logic)
37337
+ */
37338
+ tag_name?: Array<string>;
37339
+ /**
37340
+ * Tag names with AND logic (comma-separated)
37341
+ */
37342
+ tag_names_and?: string;
37343
+ /**
37344
+ * Tag UUIDs with AND logic (comma-separated)
37345
+ */
37346
+ tags_and?: string;
37243
37347
  /**
37244
37348
  * Offering type
37245
37349
  */
@@ -37296,7 +37400,7 @@ export type MarketplaceProviderOfferingsRetrieveData = {
37296
37400
  uuid: string;
37297
37401
  };
37298
37402
  query?: {
37299
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
37403
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
37300
37404
  };
37301
37405
  url: '/api/marketplace-provider-offerings/{uuid}/';
37302
37406
  };
@@ -37529,6 +37633,22 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
37529
37633
  *
37530
37634
  */
37531
37635
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
37636
+ /**
37637
+ * Tag UUID (OR logic)
37638
+ */
37639
+ tag?: Array<string>;
37640
+ /**
37641
+ * Tag name (OR logic)
37642
+ */
37643
+ tag_name?: Array<string>;
37644
+ /**
37645
+ * Tag names with AND logic (comma-separated)
37646
+ */
37647
+ tag_names_and?: string;
37648
+ /**
37649
+ * Tag UUIDs with AND logic (comma-separated)
37650
+ */
37651
+ tags_and?: string;
37532
37652
  /**
37533
37653
  * Offering type
37534
37654
  */
@@ -37688,6 +37808,22 @@ export type MarketplaceProviderOfferingsCostsListData = {
37688
37808
  *
37689
37809
  */
37690
37810
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
37811
+ /**
37812
+ * Tag UUID (OR logic)
37813
+ */
37814
+ tag?: Array<string>;
37815
+ /**
37816
+ * Tag name (OR logic)
37817
+ */
37818
+ tag_name?: Array<string>;
37819
+ /**
37820
+ * Tag names with AND logic (comma-separated)
37821
+ */
37822
+ tag_names_and?: string;
37823
+ /**
37824
+ * Tag UUIDs with AND logic (comma-separated)
37825
+ */
37826
+ tags_and?: string;
37691
37827
  /**
37692
37828
  * Offering type
37693
37829
  */
@@ -37853,6 +37989,22 @@ export type MarketplaceProviderOfferingsCustomersListData = {
37853
37989
  *
37854
37990
  */
37855
37991
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
37992
+ /**
37993
+ * Tag UUID (OR logic)
37994
+ */
37995
+ tag?: Array<string>;
37996
+ /**
37997
+ * Tag name (OR logic)
37998
+ */
37999
+ tag_name?: Array<string>;
38000
+ /**
38001
+ * Tag names with AND logic (comma-separated)
38002
+ */
38003
+ tag_names_and?: string;
38004
+ /**
38005
+ * Tag UUIDs with AND logic (comma-separated)
38006
+ */
38007
+ tags_and?: string;
37856
38008
  /**
37857
38009
  * Offering type
37858
38010
  */
@@ -37921,6 +38073,21 @@ export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses = {
37921
38073
  204: void;
37922
38074
  };
37923
38075
  export type MarketplaceProviderOfferingsDeleteOrganizationGroupsResponse = MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses[keyof MarketplaceProviderOfferingsDeleteOrganizationGroupsResponses];
38076
+ export type MarketplaceProviderOfferingsDeleteTagsData = {
38077
+ body?: never;
38078
+ path: {
38079
+ uuid: string;
38080
+ };
38081
+ query?: never;
38082
+ url: '/api/marketplace-provider-offerings/{uuid}/delete_tags/';
38083
+ };
38084
+ export type MarketplaceProviderOfferingsDeleteTagsResponses = {
38085
+ /**
38086
+ * No response body
38087
+ */
38088
+ 204: void;
38089
+ };
38090
+ export type MarketplaceProviderOfferingsDeleteTagsResponse = MarketplaceProviderOfferingsDeleteTagsResponses[keyof MarketplaceProviderOfferingsDeleteTagsResponses];
37924
38091
  export type MarketplaceProviderOfferingsDeleteThumbnailData = {
37925
38092
  body?: never;
37926
38093
  path: {
@@ -38146,6 +38313,22 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
38146
38313
  *
38147
38314
  */
38148
38315
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
38316
+ /**
38317
+ * Tag UUID (OR logic)
38318
+ */
38319
+ tag?: Array<string>;
38320
+ /**
38321
+ * Tag name (OR logic)
38322
+ */
38323
+ tag_name?: Array<string>;
38324
+ /**
38325
+ * Tag names with AND logic (comma-separated)
38326
+ */
38327
+ tag_names_and?: string;
38328
+ /**
38329
+ * Tag UUIDs with AND logic (comma-separated)
38330
+ */
38331
+ tags_and?: string;
38149
38332
  /**
38150
38333
  * Offering type
38151
38334
  */
@@ -38318,6 +38501,22 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
38318
38501
  *
38319
38502
  */
38320
38503
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
38504
+ /**
38505
+ * Tag UUID (OR logic)
38506
+ */
38507
+ tag?: Array<string>;
38508
+ /**
38509
+ * Tag name (OR logic)
38510
+ */
38511
+ tag_name?: Array<string>;
38512
+ /**
38513
+ * Tag names with AND logic (comma-separated)
38514
+ */
38515
+ tag_names_and?: string;
38516
+ /**
38517
+ * Tag UUIDs with AND logic (comma-separated)
38518
+ */
38519
+ tags_and?: string;
38321
38520
  /**
38322
38521
  * Offering type
38323
38522
  */
@@ -38490,6 +38689,22 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
38490
38689
  *
38491
38690
  */
38492
38691
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
38692
+ /**
38693
+ * Tag UUID (OR logic)
38694
+ */
38695
+ tag?: Array<string>;
38696
+ /**
38697
+ * Tag name (OR logic)
38698
+ */
38699
+ tag_name?: Array<string>;
38700
+ /**
38701
+ * Tag names with AND logic (comma-separated)
38702
+ */
38703
+ tag_names_and?: string;
38704
+ /**
38705
+ * Tag UUIDs with AND logic (comma-separated)
38706
+ */
38707
+ tags_and?: string;
38493
38708
  /**
38494
38709
  * Offering type
38495
38710
  */
@@ -38960,6 +39175,20 @@ export type MarketplaceProviderOfferingsUpdateSoftwareCatalogPartialUpdateRespon
38960
39175
  200: OfferingSoftwareCatalog;
38961
39176
  };
38962
39177
  export type MarketplaceProviderOfferingsUpdateSoftwareCatalogPartialUpdateResponse = MarketplaceProviderOfferingsUpdateSoftwareCatalogPartialUpdateResponses[keyof MarketplaceProviderOfferingsUpdateSoftwareCatalogPartialUpdateResponses];
39178
+ export type MarketplaceProviderOfferingsUpdateTagsData = {
39179
+ body?: TagsRequest;
39180
+ path: {
39181
+ uuid: string;
39182
+ };
39183
+ query?: never;
39184
+ url: '/api/marketplace-provider-offerings/{uuid}/update_tags/';
39185
+ };
39186
+ export type MarketplaceProviderOfferingsUpdateTagsResponses = {
39187
+ /**
39188
+ * No response body
39189
+ */
39190
+ 200: unknown;
39191
+ };
38963
39192
  export type MarketplaceProviderOfferingsUpdateThumbnailData = {
38964
39193
  body: OfferingThumbnailRequest;
38965
39194
  path: {
@@ -38992,7 +39221,7 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveData = {
38992
39221
  uuid: string;
38993
39222
  };
38994
39223
  query: {
38995
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
39224
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details'>;
38996
39225
  /**
38997
39226
  * Username of the user to check.
38998
39227
  */
@@ -39129,6 +39358,22 @@ export type MarketplaceProviderOfferingsGroupsListData = {
39129
39358
  *
39130
39359
  */
39131
39360
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
39361
+ /**
39362
+ * Tag UUID (OR logic)
39363
+ */
39364
+ tag?: Array<string>;
39365
+ /**
39366
+ * Tag name (OR logic)
39367
+ */
39368
+ tag_name?: Array<string>;
39369
+ /**
39370
+ * Tag names with AND logic (comma-separated)
39371
+ */
39372
+ tag_names_and?: string;
39373
+ /**
39374
+ * Tag UUIDs with AND logic (comma-separated)
39375
+ */
39376
+ tags_and?: string;
39132
39377
  /**
39133
39378
  * Offering type
39134
39379
  */
@@ -39277,6 +39522,22 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
39277
39522
  *
39278
39523
  */
39279
39524
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
39525
+ /**
39526
+ * Tag UUID (OR logic)
39527
+ */
39528
+ tag?: Array<string>;
39529
+ /**
39530
+ * Tag name (OR logic)
39531
+ */
39532
+ tag_name?: Array<string>;
39533
+ /**
39534
+ * Tag names with AND logic (comma-separated)
39535
+ */
39536
+ tag_names_and?: string;
39537
+ /**
39538
+ * Tag UUIDs with AND logic (comma-separated)
39539
+ */
39540
+ tags_and?: string;
39280
39541
  /**
39281
39542
  * Offering type
39282
39543
  */
@@ -40120,7 +40381,7 @@ export type MarketplacePublicOfferingsListData = {
40120
40381
  * Description contains
40121
40382
  */
40122
40383
  description?: string;
40123
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
40384
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
40124
40385
  /**
40125
40386
  * Has Active Terms of Service
40126
40387
  */
@@ -40201,6 +40462,22 @@ export type MarketplacePublicOfferingsListData = {
40201
40462
  *
40202
40463
  */
40203
40464
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
40465
+ /**
40466
+ * Tag UUID (OR logic)
40467
+ */
40468
+ tag?: Array<string>;
40469
+ /**
40470
+ * Tag name (OR logic)
40471
+ */
40472
+ tag_name?: Array<string>;
40473
+ /**
40474
+ * Tag names with AND logic (comma-separated)
40475
+ */
40476
+ tag_names_and?: string;
40477
+ /**
40478
+ * Tag UUIDs with AND logic (comma-separated)
40479
+ */
40480
+ tags_and?: string;
40204
40481
  /**
40205
40482
  * Offering type
40206
40483
  */
@@ -40349,6 +40626,22 @@ export type MarketplacePublicOfferingsCountData = {
40349
40626
  *
40350
40627
  */
40351
40628
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
40629
+ /**
40630
+ * Tag UUID (OR logic)
40631
+ */
40632
+ tag?: Array<string>;
40633
+ /**
40634
+ * Tag name (OR logic)
40635
+ */
40636
+ tag_name?: Array<string>;
40637
+ /**
40638
+ * Tag names with AND logic (comma-separated)
40639
+ */
40640
+ tag_names_and?: string;
40641
+ /**
40642
+ * Tag UUIDs with AND logic (comma-separated)
40643
+ */
40644
+ tags_and?: string;
40352
40645
  /**
40353
40646
  * Offering type
40354
40647
  */
@@ -40380,7 +40673,7 @@ export type MarketplacePublicOfferingsRetrieveData = {
40380
40673
  uuid: string;
40381
40674
  };
40382
40675
  query?: {
40383
- field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
40676
+ field?: Array<'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details'>;
40384
40677
  };
40385
40678
  url: '/api/marketplace-public-offerings/{uuid}/';
40386
40679
  };
@@ -42555,6 +42848,22 @@ export type MarketplaceServiceProvidersOfferingsListData = {
42555
42848
  *
42556
42849
  */
42557
42850
  state?: Array<'Active' | 'Archived' | 'Draft' | 'Paused' | 'Unavailable'>;
42851
+ /**
42852
+ * Tag UUID (OR logic)
42853
+ */
42854
+ tag?: Array<string>;
42855
+ /**
42856
+ * Tag name (OR logic)
42857
+ */
42858
+ tag_name?: Array<string>;
42859
+ /**
42860
+ * Tag names with AND logic (comma-separated)
42861
+ */
42862
+ tag_names_and?: string;
42863
+ /**
42864
+ * Tag UUIDs with AND logic (comma-separated)
42865
+ */
42866
+ tags_and?: string;
42558
42867
  /**
42559
42868
  * Offering type
42560
42869
  */
@@ -45351,6 +45660,111 @@ export type MarketplaceStatsUserOrganizationCountCountResponses = {
45351
45660
  */
45352
45661
  200: unknown;
45353
45662
  };
45663
+ export type MarketplaceTagsListData = {
45664
+ body?: never;
45665
+ path?: never;
45666
+ query?: {
45667
+ created_by?: string;
45668
+ name?: string;
45669
+ /**
45670
+ * A page number within the paginated result set.
45671
+ */
45672
+ page?: number;
45673
+ /**
45674
+ * Number of results to return per page.
45675
+ */
45676
+ page_size?: number;
45677
+ };
45678
+ url: '/api/marketplace-tags/';
45679
+ };
45680
+ export type MarketplaceTagsListResponses = {
45681
+ 200: Array<Tag>;
45682
+ };
45683
+ export type MarketplaceTagsListResponse = MarketplaceTagsListResponses[keyof MarketplaceTagsListResponses];
45684
+ export type MarketplaceTagsCountData = {
45685
+ body?: never;
45686
+ path?: never;
45687
+ query?: {
45688
+ created_by?: string;
45689
+ name?: string;
45690
+ /**
45691
+ * A page number within the paginated result set.
45692
+ */
45693
+ page?: number;
45694
+ /**
45695
+ * Number of results to return per page.
45696
+ */
45697
+ page_size?: number;
45698
+ };
45699
+ url: '/api/marketplace-tags/';
45700
+ };
45701
+ export type MarketplaceTagsCountResponses = {
45702
+ /**
45703
+ * No response body
45704
+ */
45705
+ 200: unknown;
45706
+ };
45707
+ export type MarketplaceTagsCreateData = {
45708
+ body: TagRequest;
45709
+ path?: never;
45710
+ query?: never;
45711
+ url: '/api/marketplace-tags/';
45712
+ };
45713
+ export type MarketplaceTagsCreateResponses = {
45714
+ 201: Tag;
45715
+ };
45716
+ export type MarketplaceTagsCreateResponse = MarketplaceTagsCreateResponses[keyof MarketplaceTagsCreateResponses];
45717
+ export type MarketplaceTagsDestroyData = {
45718
+ body?: never;
45719
+ path: {
45720
+ uuid: string;
45721
+ };
45722
+ query?: never;
45723
+ url: '/api/marketplace-tags/{uuid}/';
45724
+ };
45725
+ export type MarketplaceTagsDestroyResponses = {
45726
+ /**
45727
+ * No response body
45728
+ */
45729
+ 204: void;
45730
+ };
45731
+ export type MarketplaceTagsDestroyResponse = MarketplaceTagsDestroyResponses[keyof MarketplaceTagsDestroyResponses];
45732
+ export type MarketplaceTagsRetrieveData = {
45733
+ body?: never;
45734
+ path: {
45735
+ uuid: string;
45736
+ };
45737
+ query?: never;
45738
+ url: '/api/marketplace-tags/{uuid}/';
45739
+ };
45740
+ export type MarketplaceTagsRetrieveResponses = {
45741
+ 200: Tag;
45742
+ };
45743
+ export type MarketplaceTagsRetrieveResponse = MarketplaceTagsRetrieveResponses[keyof MarketplaceTagsRetrieveResponses];
45744
+ export type MarketplaceTagsPartialUpdateData = {
45745
+ body?: PatchedTagRequest;
45746
+ path: {
45747
+ uuid: string;
45748
+ };
45749
+ query?: never;
45750
+ url: '/api/marketplace-tags/{uuid}/';
45751
+ };
45752
+ export type MarketplaceTagsPartialUpdateResponses = {
45753
+ 200: Tag;
45754
+ };
45755
+ export type MarketplaceTagsPartialUpdateResponse = MarketplaceTagsPartialUpdateResponses[keyof MarketplaceTagsPartialUpdateResponses];
45756
+ export type MarketplaceTagsUpdateData = {
45757
+ body: TagRequest;
45758
+ path: {
45759
+ uuid: string;
45760
+ };
45761
+ query?: never;
45762
+ url: '/api/marketplace-tags/{uuid}/';
45763
+ };
45764
+ export type MarketplaceTagsUpdateResponses = {
45765
+ 200: Tag;
45766
+ };
45767
+ export type MarketplaceTagsUpdateResponse = MarketplaceTagsUpdateResponses[keyof MarketplaceTagsUpdateResponses];
45354
45768
  export type MarketplaceUserOfferingConsentsListData = {
45355
45769
  body?: never;
45356
45770
  path?: never;