waldur-js-client 8.0.7-dev.3 → 8.0.7-dev.31

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.
@@ -1,3 +1,4 @@
1
+ export type AiassistantenabledrolesEnum = 'disabled' | 'staff' | 'staff_and_support' | 'all';
1
2
  export type AccessSubnet = {
2
3
  readonly uuid: string;
3
4
  inet: string;
@@ -1101,6 +1102,75 @@ export type ArrowVendorOfferingMappingRequest = {
1101
1102
  */
1102
1103
  is_active?: boolean;
1103
1104
  };
1105
+ export type ArticleCodeUpdateApplyRequest = {
1106
+ /**
1107
+ * Substring to search for in article codes.
1108
+ */
1109
+ search: string;
1110
+ /**
1111
+ * Replacement string.
1112
+ */
1113
+ replace?: string;
1114
+ /**
1115
+ * Filter by offering category UUID.
1116
+ */
1117
+ offering_category_uuid?: string;
1118
+ /**
1119
+ * Filter by service provider (customer) UUID.
1120
+ */
1121
+ offering_customer_uuid?: string;
1122
+ /**
1123
+ * Filter by offering state.
1124
+ */
1125
+ offering_state?: OfferingState;
1126
+ /**
1127
+ * Filter by offering name (case-insensitive substring match).
1128
+ */
1129
+ offering_name?: string;
1130
+ /**
1131
+ * UUIDs of components to update (from preview results).
1132
+ */
1133
+ component_uuids: Array<string>;
1134
+ };
1135
+ export type ArticleCodeUpdateApplyResponse = {
1136
+ updated_count: number;
1137
+ };
1138
+ export type ArticleCodeUpdatePreviewItem = {
1139
+ component_uuid: string;
1140
+ component_type: string;
1141
+ component_name: string;
1142
+ offering_uuid: string;
1143
+ offering_name: string;
1144
+ offering_customer_name: string;
1145
+ old_article_code: string;
1146
+ new_article_code: string;
1147
+ };
1148
+ export type ArticleCodeUpdatePreviewRequest = {
1149
+ /**
1150
+ * Substring to search for in article codes.
1151
+ */
1152
+ search: string;
1153
+ /**
1154
+ * Replacement string.
1155
+ */
1156
+ replace?: string;
1157
+ /**
1158
+ * Filter by offering category UUID.
1159
+ */
1160
+ offering_category_uuid?: string;
1161
+ /**
1162
+ * Filter by service provider (customer) UUID.
1163
+ */
1164
+ offering_customer_uuid?: string;
1165
+ /**
1166
+ * Filter by offering state.
1167
+ */
1168
+ offering_state?: OfferingState;
1169
+ /**
1170
+ * Filter by offering name (case-insensitive substring match).
1171
+ */
1172
+ offering_name?: string;
1173
+ };
1104
1174
  export type AssignmentBatch = {
1105
1175
  readonly url: string;
1106
1176
  readonly uuid: string;
@@ -1273,6 +1343,12 @@ export type AssignmentItem = {
1273
1343
  * Number of times this proposal has been reassigned.
1274
1344
  */
1275
1345
  readonly reassign_count: number;
1346
+ /**
1347
+ * Reason for manager override of COI block.
1348
+ */
1349
+ readonly override_reason: string;
1350
+ readonly overridden_by_name: string;
1351
+ readonly overridden_at: string | null;
1276
1352
  readonly created: string;
1277
1353
  };
1278
1354
  export type AssignmentItemDeclineRequest = {
@@ -1437,12 +1513,57 @@ export type AttachmentRequest = {
1437
1513
  issue: string;
1438
1514
  file: Blob | File;
1439
1515
  };
1516
+ export type Attribute = {
1517
+ readonly url: string;
1518
+ readonly uuid: string;
1519
+ key: string;
1520
+ readonly created: string;
1521
+ title: string;
1522
+ section: string;
1523
+ readonly section_title: string;
1524
+ type: AttributeTypeEnum;
1525
+ /**
1526
+ * A value must be provided for the attribute.
1527
+ */
1528
+ required?: boolean;
1529
+ default?: unknown;
1530
+ };
1531
+ export type AttributeOption = {
1532
+ readonly url: string;
1533
+ readonly uuid: string;
1534
+ readonly id: number;
1535
+ key: string;
1536
+ title: string;
1537
+ attribute: string;
1538
+ readonly attribute_title: string;
1539
+ /**
1540
+ * Return True if this option is the default for its attribute.
1541
+ */
1542
+ readonly is_default: boolean;
1543
+ };
1544
+ export type AttributeOptionRequest = {
1545
+ key: string;
1546
+ title: string;
1547
+ attribute: string;
1548
+ };
1549
+ export type AttributeRequest = {
1550
+ key: string;
1551
+ title: string;
1552
+ section: string;
1553
+ type: AttributeTypeEnum;
1554
+ /**
1555
+ * A value must be provided for the attribute.
1556
+ */
1557
+ required?: boolean;
1558
+ default?: unknown;
1559
+ };
1440
1560
  export type AttributeSourceDetail = {
1441
1561
  source: string;
1442
1562
  timestamp: string;
1443
1563
  age_days: number;
1444
1564
  is_stale: boolean;
1445
1565
  };
1566
+ export type AttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
1446
1567
  export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
1447
1568
  export type AuthResult = {
1448
1569
  readonly uuid: string;
@@ -2329,7 +2450,11 @@ export type BookingResource = {
2329
2450
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
2330
2451
  */
2331
2452
  readonly project_end_date?: string | null;
2332
- readonly project_end_date_requested_by?: string;
2453
+ /**
2454
+ * Effective project end date including grace period. After this date, resources will be terminated.
2455
+ */
2456
+ readonly project_effective_end_date?: string | null;
2457
+ readonly project_end_date_requested_by?: string | null;
2333
2458
  readonly customer_uuid?: string;
2334
2459
  readonly customer_name?: string;
2335
2460
  readonly offering_slug?: string;
@@ -2764,6 +2889,25 @@ export type CallManagingOrganisationStat = {
2764
2889
  readonly calls_closing_in_one_week: number;
2765
2890
  readonly offering_requests_pending: number;
2766
2891
  };
2892
+ export type CallPerformanceStat = {
2893
+ readonly call_uuid: string;
2894
+ readonly call_name: string;
2895
+ readonly managing_organization_name: string;
2896
+ readonly state: string;
2897
+ readonly total_proposals: number;
2898
+ readonly proposals_draft: number;
2899
+ readonly proposals_submitted: number;
2900
+ readonly proposals_in_review: number;
2901
+ readonly proposals_accepted: number;
2902
+ readonly proposals_rejected: number;
2903
+ readonly proposals_canceled: number;
2904
+ readonly acceptance_rate: number;
2905
+ readonly total_reviews: number;
2906
+ readonly reviews_completed: number;
2907
+ readonly average_score: number | null;
2908
+ readonly active_rounds: number;
2909
+ readonly last_submission_date: string | null;
2910
+ };
2767
2911
  export type CallResourceTemplate = {
2768
2912
  readonly uuid?: string;
2769
2913
  readonly url?: string;
@@ -2838,7 +2982,7 @@ export type CallReviewerPool = {
2838
2982
  */
2839
2983
  expertise_match_score?: number | null;
2840
2984
  readonly invited_by_name: string;
2841
- readonly invitation_token: string;
2985
+ readonly invitation_link: string | null;
2842
2986
  readonly invitation_expires_at: string | null;
2843
2987
  readonly created: string;
2844
2988
  /**
@@ -2867,6 +3011,12 @@ export type CallReviewerPool = {
2867
3011
  * Count reviews in 'submitted' state.
2868
3012
  */
2869
3013
  readonly reviews_completed: number;
3014
+ /**
3015
+ * Reason for manager override of invitation status.
3016
+ */
3017
+ readonly override_reason: string;
3018
+ readonly overridden_by_name: string;
3019
+ readonly overridden_at: string | null;
2870
3020
  };
2871
3021
  export type CallReviewerPoolUpdate = {
2872
3022
  /**
@@ -3488,6 +3638,10 @@ export type ChatResponse = {
3488
3638
  * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3489
3639
  */
3490
3640
  projects?: Array<unknown>;
3641
+ /**
3642
+ * Available offering options [{uuid, name}]. Present when status='offering_form'.
3643
+ */
3644
+ offerings?: Array<unknown>;
3491
3645
  };
3492
3646
  export type ChatSession = {
3493
3647
  readonly uuid?: string;
@@ -4122,6 +4276,8 @@ export type ConstanceSettings = {
4122
4276
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4123
4277
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4124
4278
  MARKETPLACE_LANDING_PAGE?: string;
4279
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4280
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4125
4281
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4126
4282
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4127
4283
  TELEMETRY_URL?: string;
@@ -4270,6 +4426,7 @@ export type ConstanceSettings = {
4270
4426
  OIDC_CACHE_TIMEOUT?: number;
4271
4427
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4272
4428
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4429
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
4273
4430
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4274
4431
  OIDC_DEFAULT_LOGOUT_URL?: string;
4275
4432
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -4298,17 +4455,20 @@ export type ConstanceSettings = {
4298
4455
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4299
4456
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4300
4457
  ONBOARDING_BREG_API_URL?: string;
4301
- LLM_CHAT_ENABLED?: boolean;
4302
- LLM_INFERENCES_BACKEND_TYPE?: string;
4303
- LLM_INFERENCES_API_URL?: string;
4304
- LLM_INFERENCES_API_TOKEN?: string;
4305
- LLM_INFERENCES_MODEL?: string;
4306
- LLM_TOKEN_LIMIT_DAILY?: number;
4307
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4308
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4309
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4310
- LLM_CHAT_HISTORY_LIMIT?: number;
4311
- LLM_INJECTION_ALLOWLIST?: string;
4458
+ AI_ASSISTANT_ENABLED?: boolean;
4459
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4460
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4461
+ AI_ASSISTANT_API_URL?: string;
4462
+ AI_ASSISTANT_API_TOKEN?: string;
4463
+ AI_ASSISTANT_MODEL?: string;
4464
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4465
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4466
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4467
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4468
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4469
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4470
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4471
+ AI_ASSISTANT_NAME?: string;
4312
4472
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4313
4473
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4314
4474
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4347,6 +4507,7 @@ export type ConstanceSettings = {
4347
4507
  ENABLE_PROJECT_DIGEST?: boolean;
4348
4508
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4349
4509
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4510
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4350
4511
  };
4351
4512
  export type ConstanceSettingsRequest = {
4352
4513
  SITE_NAME?: string;
@@ -4367,6 +4528,8 @@ export type ConstanceSettingsRequest = {
4367
4528
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4368
4529
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4369
4530
  MARKETPLACE_LANDING_PAGE?: string;
4531
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4532
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4370
4533
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4371
4534
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4372
4535
  TELEMETRY_URL?: string;
@@ -4515,6 +4678,7 @@ export type ConstanceSettingsRequest = {
4515
4678
  OIDC_CACHE_TIMEOUT?: number;
4516
4679
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4517
4680
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4681
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
4518
4682
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4519
4683
  OIDC_DEFAULT_LOGOUT_URL?: string;
4520
4684
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -4543,17 +4707,20 @@ export type ConstanceSettingsRequest = {
4543
4707
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4544
4708
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4545
4709
  ONBOARDING_BREG_API_URL?: string;
4546
- LLM_CHAT_ENABLED?: boolean;
4547
- LLM_INFERENCES_BACKEND_TYPE?: string;
4548
- LLM_INFERENCES_API_URL?: string;
4549
- LLM_INFERENCES_API_TOKEN?: string;
4550
- LLM_INFERENCES_MODEL?: string;
4551
- LLM_TOKEN_LIMIT_DAILY?: number;
4552
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4553
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4554
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4555
- LLM_CHAT_HISTORY_LIMIT?: number;
4556
- LLM_INJECTION_ALLOWLIST?: string;
4710
+ AI_ASSISTANT_ENABLED?: boolean;
4711
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4712
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4713
+ AI_ASSISTANT_API_URL?: string;
4714
+ AI_ASSISTANT_API_TOKEN?: string;
4715
+ AI_ASSISTANT_MODEL?: string;
4716
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4717
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4718
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4719
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4720
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4721
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4722
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4723
+ AI_ASSISTANT_NAME?: string;
4557
4724
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4558
4725
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4559
4726
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4592,6 +4759,7 @@ export type ConstanceSettingsRequest = {
4592
4759
  ENABLE_PROJECT_DIGEST?: boolean;
4593
4760
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4594
4761
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4762
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4595
4763
  };
4596
4764
  export type ConsumptionStatisticsResponse = {
4597
4765
  total_records: number;
@@ -5192,6 +5360,7 @@ export type CustomerComponentUsagePolicy = {
5192
5360
  * Fields for saving actions extra data. Keys are name of actions.
5193
5361
  */
5194
5362
  options?: unknown;
5363
+ readonly affected_resources_count: number;
5195
5364
  component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
5196
5365
  };
5197
5366
  export type CustomerComponentUsagePolicyRequest = {
@@ -5294,6 +5463,7 @@ export type CustomerEstimatedCostPolicy = {
5294
5463
  * Fields for saving actions extra data. Keys are name of actions.
5295
5464
  */
5296
5465
  options?: unknown;
5466
+ readonly affected_resources_count: number;
5297
5467
  limit_cost: number;
5298
5468
  period?: PolicyPeriodEnum;
5299
5469
  readonly period_name: string;
@@ -6240,6 +6410,7 @@ export type DryRunRequest = {
6240
6410
  };
6241
6411
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6242
6412
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
6413
+ export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
6243
6414
  export type EligibilityCheck = {
6244
6415
  is_eligible: boolean;
6245
6416
  restrictions: Array<string>;
@@ -6311,7 +6482,7 @@ export type EventMetadataResponse = {
6311
6482
  * Map of event group keys to lists of event type enums from EventType
6312
6483
  */
6313
6484
  event_groups: {
6314
- [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6485
+ [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6315
6486
  };
6316
6487
  };
6317
6488
  export type EventStats = {
@@ -6390,7 +6561,7 @@ export type EventSubscriptionRequest = {
6390
6561
  */
6391
6562
  observable_objects?: unknown;
6392
6563
  };
6393
- export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6564
+ export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6394
6565
  export type ExecuteActionErrorResponse = {
6395
6566
  error: string;
6396
6567
  };
@@ -6871,6 +7042,12 @@ export type FlavorResponse = {
6871
7042
  */
6872
7043
  disk: number;
6873
7044
  };
7045
+ export type ForceAcceptPoolRequest = {
7046
+ override_reason: string;
7047
+ };
7048
+ export type ForceUnblockRequest = {
7049
+ override_reason: string;
7050
+ };
6874
7051
  export type FreeipaProfile = {
6875
7052
  readonly uuid: string;
6876
7053
  /**
@@ -7237,6 +7414,9 @@ export type IsdUserCount = {
7237
7414
  stale_user_count: number;
7238
7415
  oldest_sync: string | null;
7239
7416
  };
7417
+ export type IdentityBridgeAllowedFields = {
7418
+ allowed_fields: Array<string>;
7419
+ };
7240
7420
  export type IdentityBridgeRemoveRequest = {
7241
7421
  /**
7242
7422
  * CUID / username of the user to remove from the ISD.
@@ -8424,6 +8604,8 @@ export type Logout = {
8424
8604
  */
8425
8605
  readonly logout_url: string;
8426
8606
  };
8607
+ export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
8608
+ export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
8427
8609
  export type MaintenanceActionResponse = {
8428
8610
  /**
8429
8611
  * Response message describing the action result
@@ -9857,7 +10039,9 @@ export type Message = {
9857
10039
  readonly uuid: string;
9858
10040
  readonly thread: string;
9859
10041
  role: MessageRoleEnum;
9860
- content: string;
10042
+ content?: string;
10043
+ readonly content_display: string;
10044
+ readonly tool_calls: unknown;
9861
10045
  readonly sequence_index: number;
9862
10046
  readonly replaces: string | null;
9863
10047
  readonly created: string;
@@ -10049,9 +10233,10 @@ export type NestedAgentServiceRequest = {
10049
10233
  statistics?: unknown;
10050
10234
  };
10051
10235
  export type NestedAttribute = {
10236
+ readonly uuid?: string;
10052
10237
  key?: string;
10053
10238
  title?: string;
10054
- type?: NestedAttributeTypeEnum;
10239
+ type?: AttributeTypeEnum;
10055
10240
  options?: Array<NestedAttributeOption>;
10056
10241
  /**
10057
10242
  * A value must be provided for the attribute.
@@ -10060,8 +10245,13 @@ export type NestedAttribute = {
10060
10245
  default?: unknown;
10061
10246
  };
10062
10247
  export type NestedAttributeOption = {
10248
+ readonly uuid?: string;
10063
10249
  key?: string;
10064
10250
  title?: string;
10251
+ /**
10252
+ * Return True if this option is the default for its attribute.
10253
+ */
10254
+ readonly is_default?: boolean;
10065
10255
  };
10066
10256
  export type NestedAttributeOptionRequest = {
10067
10257
  key: string;
@@ -10070,7 +10260,7 @@ export type NestedAttributeOptionRequest = {
10070
10260
  export type NestedAttributeRequest = {
10071
10261
  key: string;
10072
10262
  title: string;
10073
- type: NestedAttributeTypeEnum;
10263
+ type: AttributeTypeEnum;
10074
10264
  options: Array<NestedAttributeOptionRequest>;
10075
10265
  /**
10076
10266
  * A value must be provided for the attribute.
@@ -10078,7 +10268,6 @@ export type NestedAttributeRequest = {
10078
10268
  required?: boolean;
10079
10269
  default?: unknown;
10080
10270
  };
10081
- export type NestedAttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
10082
10271
  export type NestedCampaign = {
10083
10272
  readonly uuid?: string;
10084
10273
  name?: string;
@@ -10958,6 +11147,22 @@ export type OfferingComponent = {
10958
11147
  overage_component?: string | null;
10959
11148
  min_prepaid_duration?: number | null;
10960
11149
  max_prepaid_duration?: number | null;
11150
+ /**
11151
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11152
+ */
11153
+ prepaid_duration_step?: number | null;
11154
+ /**
11155
+ * Minimum number of months allowed for a renewal.
11156
+ */
11157
+ min_renewal_duration?: number | null;
11158
+ /**
11159
+ * Maximum number of months allowed for a renewal.
11160
+ */
11161
+ max_renewal_duration?: number | null;
11162
+ /**
11163
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11164
+ */
11165
+ renewal_duration_step?: number | null;
10961
11166
  };
10962
11167
  export type OfferingComponentLimitRequest = {
10963
11168
  /**
@@ -11004,6 +11209,22 @@ export type OfferingComponentRequest = {
11004
11209
  overage_component?: string | null;
11005
11210
  min_prepaid_duration?: number | null;
11006
11211
  max_prepaid_duration?: number | null;
11212
+ /**
11213
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11214
+ */
11215
+ prepaid_duration_step?: number | null;
11216
+ /**
11217
+ * Minimum number of months allowed for a renewal.
11218
+ */
11219
+ min_renewal_duration?: number | null;
11220
+ /**
11221
+ * Maximum number of months allowed for a renewal.
11222
+ */
11223
+ max_renewal_duration?: number | null;
11224
+ /**
11225
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11226
+ */
11227
+ renewal_duration_step?: number | null;
11007
11228
  };
11008
11229
  export type OfferingComponentStat = {
11009
11230
  readonly period: string;
@@ -11127,6 +11348,7 @@ export type OfferingEstimatedCostPolicy = {
11127
11348
  * Fields for saving actions extra data. Keys are name of actions.
11128
11349
  */
11129
11350
  options?: unknown;
11351
+ readonly affected_resources_count: number;
11130
11352
  limit_cost: number;
11131
11353
  period?: PolicyPeriodEnum;
11132
11354
  readonly period_name: string;
@@ -11876,6 +12098,7 @@ export type OfferingUsagePolicy = {
11876
12098
  * Fields for saving actions extra data. Keys are name of actions.
11877
12099
  */
11878
12100
  options?: unknown;
12101
+ readonly affected_resources_count: number;
11879
12102
  organization_groups?: Array<string>;
11880
12103
  /**
11881
12104
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -15012,6 +15235,22 @@ export type PatchedAssignmentItemRequest = {
15012
15235
  */
15013
15236
  decline_reason?: string;
15014
15237
  };
15238
+ export type PatchedAttributeOptionRequest = {
15239
+ key?: string;
15240
+ title?: string;
15241
+ attribute?: string;
15242
+ };
15243
+ export type PatchedAttributeRequest = {
15244
+ key?: string;
15245
+ title?: string;
15246
+ section?: string;
15247
+ type?: AttributeTypeEnum;
15248
+ /**
15249
+ * A value must be provided for the attribute.
15250
+ */
15251
+ required?: boolean;
15252
+ default?: unknown;
15253
+ };
15015
15254
  export type PatchedAwsInstanceRequest = {
15016
15255
  name?: string;
15017
15256
  description?: string;
@@ -17280,6 +17519,10 @@ export type Project = {
17280
17519
  */
17281
17520
  end_date?: string | null;
17282
17521
  readonly end_date_requested_by?: string | null;
17522
+ /**
17523
+ * Timestamp of the last end_date change.
17524
+ */
17525
+ readonly end_date_updated_at?: string | null;
17283
17526
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17284
17527
  /**
17285
17528
  * Human-readable label for the OECD FOS 2007 classification code
@@ -17312,6 +17555,14 @@ export type Project = {
17312
17555
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17313
17556
  */
17314
17557
  grace_period_days?: number | null;
17558
+ /**
17559
+ * Effective end date including grace period. After this date, project resources will be terminated.
17560
+ */
17561
+ readonly effective_end_date?: string | null;
17562
+ /**
17563
+ * True if the project is past its end date but still within the grace period.
17564
+ */
17565
+ readonly is_in_grace_period?: boolean;
17315
17566
  user_email_patterns?: unknown;
17316
17567
  user_affiliations?: unknown;
17317
17568
  /**
@@ -17372,6 +17623,16 @@ export type ProjectClassificationSummary = {
17372
17623
  */
17373
17624
  industry_projects: number;
17374
17625
  };
17626
+ export type ProjectCreationTrend = {
17627
+ /**
17628
+ * Month in YYYY-MM format
17629
+ */
17630
+ month: string;
17631
+ /**
17632
+ * Number of items created
17633
+ */
17634
+ count: number;
17635
+ };
17375
17636
  export type ProjectCredit = {
17376
17637
  readonly uuid: string;
17377
17638
  readonly url: string;
@@ -17462,6 +17723,61 @@ export type ProjectDigestPreviewResponse = {
17462
17723
  html_body: string;
17463
17724
  text_body: string;
17464
17725
  };
17726
+ export type ProjectEndDateChangeRequest = {
17727
+ readonly url: string;
17728
+ readonly uuid: string;
17729
+ readonly state: string;
17730
+ project: string;
17731
+ readonly project_uuid: string;
17732
+ readonly project_name: string;
17733
+ readonly customer_uuid: string;
17734
+ readonly customer_name: string;
17735
+ /**
17736
+ * The requested new end date for the project
17737
+ */
17738
+ requested_end_date: string;
17739
+ /**
17740
+ * Optional comment from the requester
17741
+ */
17742
+ comment?: string | null;
17743
+ readonly created: string;
17744
+ readonly created_by_uuid: string | null;
17745
+ readonly created_by_full_name: string | null;
17746
+ /**
17747
+ * Timestamp when the review was completed
17748
+ */
17749
+ readonly reviewed_at: string | null;
17750
+ readonly reviewed_by_uuid: string | null;
17751
+ readonly reviewed_by_full_name: string | null;
17752
+ /**
17753
+ * Optional comment provided during review
17754
+ */
17755
+ review_comment?: string | null;
17756
+ };
17757
+ export type ProjectEndDateChangeRequestCreate = {
17758
+ project: string;
17759
+ /**
17760
+ * The requested new end date for the project
17761
+ */
17762
+ requested_end_date: string;
17763
+ /**
17764
+ * Optional comment from the requester
17765
+ */
17766
+ comment?: string | null;
17767
+ readonly uuid: string;
17768
+ readonly state: string;
17769
+ };
17770
+ export type ProjectEndDateChangeRequestCreateRequest = {
17771
+ project: string;
17772
+ /**
17773
+ * The requested new end date for the project
17774
+ */
17775
+ requested_end_date: string;
17776
+ /**
17777
+ * Optional comment from the requester
17778
+ */
17779
+ comment?: string | null;
17780
+ };
17465
17781
  export type ProjectEstimatedCostPolicy = {
17466
17782
  readonly uuid: string;
17467
17783
  readonly url: string;
@@ -17478,6 +17794,7 @@ export type ProjectEstimatedCostPolicy = {
17478
17794
  * Fields for saving actions extra data. Keys are name of actions.
17479
17795
  */
17480
17796
  options?: unknown;
17797
+ readonly affected_resources_count: number;
17481
17798
  limit_cost: number;
17482
17799
  period?: PolicyPeriodEnum;
17483
17800
  readonly period_name: string;
@@ -20539,7 +20856,11 @@ export type Resource = {
20539
20856
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
20540
20857
  */
20541
20858
  readonly project_end_date?: string | null;
20542
- readonly project_end_date_requested_by?: string;
20859
+ /**
20860
+ * Effective project end date including grace period. After this date, resources will be terminated.
20861
+ */
20862
+ readonly project_effective_end_date?: string | null;
20863
+ readonly project_end_date_requested_by?: string | null;
20543
20864
  readonly customer_uuid?: string;
20544
20865
  readonly customer_name?: string;
20545
20866
  readonly offering_slug?: string;
@@ -20613,15 +20934,40 @@ export type ResourceBackendIdRequest = {
20613
20934
  export type ResourceBackendMetadataRequest = {
20614
20935
  backend_metadata: unknown;
20615
20936
  };
20937
+ export type ResourceDemandStat = {
20938
+ readonly offering_uuid: string;
20939
+ readonly offering_name: string;
20940
+ readonly offering_type: string;
20941
+ readonly provider_name: string;
20942
+ readonly proposal_count: number;
20943
+ readonly request_count: number;
20944
+ readonly approved_count: number;
20945
+ readonly pending_count: number;
20946
+ readonly total_requested_limits: {
20947
+ [key: string]: number;
20948
+ };
20949
+ readonly total_approved_limits: {
20950
+ [key: string]: number;
20951
+ };
20952
+ };
20616
20953
  export type ResourceDownscaledRequest = {
20617
20954
  downscaled?: boolean;
20618
20955
  };
20956
+ export type ResourceEffectiveIdRequest = {
20957
+ effective_id?: string;
20958
+ };
20619
20959
  export type ResourceEndDateByProviderRequest = {
20620
20960
  /**
20621
20961
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
20622
20962
  */
20623
20963
  end_date?: string | null;
20624
20964
  };
20965
+ export type ResourceEndDateRequest = {
20966
+ /**
20967
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
20968
+ */
20969
+ end_date?: string | null;
20970
+ };
20625
20971
  export type ResourceKeycloakScopesRequest = {
20626
20972
  /**
20627
20973
  * Pre-configured scope options for this resource.
@@ -21046,6 +21392,19 @@ export type ReviewCommentRequest = {
21046
21392
  */
21047
21393
  comment?: string;
21048
21394
  };
21395
+ export type ReviewProgressStat = {
21396
+ readonly reviewer_uuid: string;
21397
+ readonly reviewer_name: string;
21398
+ readonly reviewer_email: string;
21399
+ readonly total_assigned: number;
21400
+ readonly pending: number;
21401
+ readonly in_progress: number;
21402
+ readonly completed: number;
21403
+ readonly declined: number;
21404
+ readonly average_score: number | null;
21405
+ readonly average_review_time_days: number | null;
21406
+ readonly completion_rate: number;
21407
+ };
21049
21408
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
21050
21409
  export type ReviewSubmitRequest = {
21051
21410
  summary_score?: number;
@@ -22715,6 +23074,7 @@ export type SlurmPeriodicUsagePolicy = {
22715
23074
  * Fields for saving actions extra data. Keys are name of actions.
22716
23075
  */
22717
23076
  options?: unknown;
23077
+ readonly affected_resources_count: number;
22718
23078
  organization_groups?: Array<string>;
22719
23079
  /**
22720
23080
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -23759,6 +24119,24 @@ export type TopQueue = {
23759
24119
  */
23760
24120
  readonly consumers: number;
23761
24121
  };
24122
+ export type TopServiceProviderByResources = {
24123
+ /**
24124
+ * UUID of the service provider
24125
+ */
24126
+ customer_uuid: string;
24127
+ /**
24128
+ * Name of the service provider
24129
+ */
24130
+ customer_name: string;
24131
+ /**
24132
+ * Number of active resources
24133
+ */
24134
+ resources_count: number;
24135
+ /**
24136
+ * Number of distinct projects
24137
+ */
24138
+ projects_count: number;
24139
+ };
23762
24140
  export type TotalCustomerCost = {
23763
24141
  readonly total: number;
23764
24142
  readonly price: number;
@@ -23869,6 +24247,22 @@ export type UpdateOfferingComponentRequest = {
23869
24247
  overage_component?: string | null;
23870
24248
  min_prepaid_duration?: number | null;
23871
24249
  max_prepaid_duration?: number | null;
24250
+ /**
24251
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
24252
+ */
24253
+ prepaid_duration_step?: number | null;
24254
+ /**
24255
+ * Minimum number of months allowed for a renewal.
24256
+ */
24257
+ min_renewal_duration?: number | null;
24258
+ /**
24259
+ * Maximum number of months allowed for a renewal.
24260
+ */
24261
+ max_renewal_duration?: number | null;
24262
+ /**
24263
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
24264
+ */
24265
+ renewal_duration_step?: number | null;
23872
24266
  };
23873
24267
  export type UpdatePoolMember = {
23874
24268
  name?: string;
@@ -24234,6 +24628,16 @@ export type UserLanguageCount = {
24234
24628
  language: string;
24235
24629
  count: number;
24236
24630
  };
24631
+ export type UserNationalityStats = {
24632
+ /**
24633
+ * Nationality code
24634
+ */
24635
+ nationality: string;
24636
+ /**
24637
+ * Number of users
24638
+ */
24639
+ count: number;
24640
+ };
24237
24641
  export type UserOfferingConsent = {
24238
24642
  readonly uuid: string;
24239
24643
  readonly user_uuid: string;
@@ -24382,6 +24786,16 @@ export type UserRequest = {
24382
24786
  */
24383
24787
  managed_isds?: unknown;
24384
24788
  };
24789
+ export type UserResidenceCountryStats = {
24790
+ /**
24791
+ * Country of residence code
24792
+ */
24793
+ country_of_residence: string;
24794
+ /**
24795
+ * Number of users
24796
+ */
24797
+ count: number;
24798
+ };
24385
24799
  export type UserRoleCreateRequest = {
24386
24800
  role: string;
24387
24801
  user: string;
@@ -24977,6 +25391,10 @@ export type OpenStackCreateInstancePortRequest = {
24977
25391
  */
24978
25392
  subnet?: string | null;
24979
25393
  port?: string;
25394
+ /**
25395
+ * If True, security groups and rules will be applied to this port
25396
+ */
25397
+ port_security_enabled?: boolean;
24980
25398
  };
24981
25399
  export type OpenStackDataVolumeRequest = {
24982
25400
  size: number;
@@ -26016,6 +26434,8 @@ export type ConstanceSettingsRequestForm = {
26016
26434
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26017
26435
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26018
26436
  MARKETPLACE_LANDING_PAGE?: string;
26437
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26438
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26019
26439
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26020
26440
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26021
26441
  TELEMETRY_URL?: string;
@@ -26164,6 +26584,7 @@ export type ConstanceSettingsRequestForm = {
26164
26584
  OIDC_CACHE_TIMEOUT?: number;
26165
26585
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26166
26586
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26587
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
26167
26588
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26168
26589
  OIDC_DEFAULT_LOGOUT_URL?: string;
26169
26590
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -26192,17 +26613,20 @@ export type ConstanceSettingsRequestForm = {
26192
26613
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26193
26614
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26194
26615
  ONBOARDING_BREG_API_URL?: string;
26195
- LLM_CHAT_ENABLED?: boolean;
26196
- LLM_INFERENCES_BACKEND_TYPE?: string;
26197
- LLM_INFERENCES_API_URL?: string;
26198
- LLM_INFERENCES_API_TOKEN?: string;
26199
- LLM_INFERENCES_MODEL?: string;
26200
- LLM_TOKEN_LIMIT_DAILY?: number;
26201
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26202
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26203
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26204
- LLM_CHAT_HISTORY_LIMIT?: number;
26205
- LLM_INJECTION_ALLOWLIST?: string;
26616
+ AI_ASSISTANT_ENABLED?: boolean;
26617
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26618
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26619
+ AI_ASSISTANT_API_URL?: string;
26620
+ AI_ASSISTANT_API_TOKEN?: string;
26621
+ AI_ASSISTANT_MODEL?: string;
26622
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26623
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26624
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26625
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26626
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26627
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26628
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26629
+ AI_ASSISTANT_NAME?: string;
26206
26630
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26207
26631
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26208
26632
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26241,6 +26665,7 @@ export type ConstanceSettingsRequestForm = {
26241
26665
  ENABLE_PROJECT_DIGEST?: boolean;
26242
26666
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26243
26667
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26668
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26244
26669
  };
26245
26670
  export type ConstanceSettingsRequestMultipart = {
26246
26671
  SITE_NAME?: string;
@@ -26261,6 +26686,8 @@ export type ConstanceSettingsRequestMultipart = {
26261
26686
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26262
26687
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26263
26688
  MARKETPLACE_LANDING_PAGE?: string;
26689
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26690
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26264
26691
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26265
26692
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26266
26693
  TELEMETRY_URL?: string;
@@ -26409,6 +26836,7 @@ export type ConstanceSettingsRequestMultipart = {
26409
26836
  OIDC_CACHE_TIMEOUT?: number;
26410
26837
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26411
26838
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26839
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
26412
26840
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26413
26841
  OIDC_DEFAULT_LOGOUT_URL?: string;
26414
26842
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -26437,17 +26865,20 @@ export type ConstanceSettingsRequestMultipart = {
26437
26865
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26438
26866
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26439
26867
  ONBOARDING_BREG_API_URL?: string;
26440
- LLM_CHAT_ENABLED?: boolean;
26441
- LLM_INFERENCES_BACKEND_TYPE?: string;
26442
- LLM_INFERENCES_API_URL?: string;
26443
- LLM_INFERENCES_API_TOKEN?: string;
26444
- LLM_INFERENCES_MODEL?: string;
26445
- LLM_TOKEN_LIMIT_DAILY?: number;
26446
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26447
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26448
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26449
- LLM_CHAT_HISTORY_LIMIT?: number;
26450
- LLM_INJECTION_ALLOWLIST?: string;
26868
+ AI_ASSISTANT_ENABLED?: boolean;
26869
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26870
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26871
+ AI_ASSISTANT_API_URL?: string;
26872
+ AI_ASSISTANT_API_TOKEN?: string;
26873
+ AI_ASSISTANT_MODEL?: string;
26874
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26875
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26876
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26877
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26878
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26879
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26880
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26881
+ AI_ASSISTANT_NAME?: string;
26451
26882
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26452
26883
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26453
26884
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26486,6 +26917,7 @@ export type ConstanceSettingsRequestMultipart = {
26486
26917
  ENABLE_PROJECT_DIGEST?: boolean;
26487
26918
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26488
26919
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26920
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26489
26921
  };
26490
26922
  export type PaymentRequestForm = {
26491
26923
  profile: string;
@@ -26912,7 +27344,7 @@ export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' |
26912
27344
  export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
26913
27345
  export type BackendResourceReqOEnum = '-created' | 'created';
26914
27346
  export type OfferingFieldEnum = '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' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | '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';
26915
- export type BookingResourceFieldEnum = '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_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | '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_description' | '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';
27347
+ export type BookingResourceFieldEnum = '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_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | '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_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | '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';
26916
27348
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
26917
27349
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
26918
27350
  export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
@@ -26947,7 +27379,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
26947
27379
  export type SshKeyOEnum = '-name' | 'name';
26948
27380
  export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
26949
27381
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
26950
- export type ResourceFieldEnum = '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_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | '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_description' | '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';
27382
+ export type ResourceFieldEnum = '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_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | '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_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | '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';
26951
27383
  export type MarketplaceCategoryFieldEnum = 'articles' | 'available_offerings_count' | 'columns' | 'components' | 'default_tenant_category' | 'default_vm_category' | 'default_volume_category' | 'description' | 'group' | 'icon' | 'offering_count' | 'sections' | 'title' | 'url' | 'uuid';
26952
27384
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
26953
27385
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
@@ -26971,7 +27403,7 @@ export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'dra
26971
27403
  export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | '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' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | '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';
26972
27404
  export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
26973
27405
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
26974
- export type ProjectFieldEnum = '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' | 'grace_period_days' | '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' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27406
+ export type ProjectFieldEnum = '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' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'end_date_updated_at' | 'grace_period_days' | 'image' | 'is_in_grace_period' | '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' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
26975
27407
  export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
26976
27408
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26977
27409
  export type PublicOfferingDetailsFieldEnum = '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' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | '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';
@@ -26987,7 +27419,7 @@ export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-
26987
27419
  export type AgentServiceStateEnum = 1 | 2 | 3;
26988
27420
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
26989
27421
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
26990
- export type SoftwareTargetOEnum = '-cpu_family' | '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_family' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
27422
+ export type SoftwareTargetOEnum = '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
26991
27423
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
26992
27424
  export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
26993
27425
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
@@ -28777,6 +29209,18 @@ export type AssignmentItemsDeclineResponses = {
28777
29209
  200: AssignmentItemResponse;
28778
29210
  };
28779
29211
  export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
29212
+ export type AssignmentItemsForceUnblockData = {
29213
+ body: ForceUnblockRequest;
29214
+ path: {
29215
+ uuid: string;
29216
+ };
29217
+ query?: never;
29218
+ url: '/api/assignment-items/{uuid}/force-unblock/';
29219
+ };
29220
+ export type AssignmentItemsForceUnblockResponses = {
29221
+ 200: AssignmentItem;
29222
+ };
29223
+ export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
28780
29224
  export type AssignmentItemsReassignData = {
28781
29225
  body: ReassignItemRequest;
28782
29226
  path: {
@@ -31366,6 +31810,10 @@ export type BackendResourceRequestsListData = {
31366
31810
  * Created after
31367
31811
  */
31368
31812
  created?: string;
31813
+ /**
31814
+ * Created before
31815
+ */
31816
+ created_before?: string;
31369
31817
  /**
31370
31818
  * Modified after
31371
31819
  */
@@ -31374,6 +31822,10 @@ export type BackendResourceRequestsListData = {
31374
31822
  * Modified after
31375
31823
  */
31376
31824
  modified?: string;
31825
+ /**
31826
+ * Modified before
31827
+ */
31828
+ modified_before?: string;
31377
31829
  /**
31378
31830
  * Ordering
31379
31831
  *
@@ -31417,6 +31869,10 @@ export type BackendResourceRequestsCountData = {
31417
31869
  * Created after
31418
31870
  */
31419
31871
  created?: string;
31872
+ /**
31873
+ * Created before
31874
+ */
31875
+ created_before?: string;
31420
31876
  /**
31421
31877
  * Modified after
31422
31878
  */
@@ -31425,6 +31881,10 @@ export type BackendResourceRequestsCountData = {
31425
31881
  * Modified after
31426
31882
  */
31427
31883
  modified?: string;
31884
+ /**
31885
+ * Modified before
31886
+ */
31887
+ modified_before?: string;
31428
31888
  /**
31429
31889
  * Ordering
31430
31890
  *
@@ -31538,10 +31998,18 @@ export type BackendResourcesListData = {
31538
31998
  * Created after
31539
31999
  */
31540
32000
  created?: string;
32001
+ /**
32002
+ * Created before
32003
+ */
32004
+ created_before?: string;
31541
32005
  /**
31542
32006
  * Modified after
31543
32007
  */
31544
32008
  modified?: string;
32009
+ /**
32010
+ * Modified before
32011
+ */
32012
+ modified_before?: string;
31545
32013
  /**
31546
32014
  * Name
31547
32015
  */
@@ -31591,10 +32059,18 @@ export type BackendResourcesCountData = {
31591
32059
  * Created after
31592
32060
  */
31593
32061
  created?: string;
32062
+ /**
32063
+ * Created before
32064
+ */
32065
+ created_before?: string;
31594
32066
  /**
31595
32067
  * Modified after
31596
32068
  */
31597
32069
  modified?: string;
32070
+ /**
32071
+ * Modified before
32072
+ */
32073
+ modified_before?: string;
31598
32074
  /**
31599
32075
  * Name
31600
32076
  */
@@ -31817,6 +32293,10 @@ export type BookingResourcesListData = {
31817
32293
  * Created after
31818
32294
  */
31819
32295
  created?: string;
32296
+ /**
32297
+ * Created before
32298
+ */
32299
+ created_before?: string;
31820
32300
  /**
31821
32301
  * Customer URL
31822
32302
  */
@@ -31854,6 +32334,10 @@ export type BookingResourcesListData = {
31854
32334
  * Modified after
31855
32335
  */
31856
32336
  modified?: string;
32337
+ /**
32338
+ * Modified before
32339
+ */
32340
+ modified_before?: string;
31857
32341
  /**
31858
32342
  * Name
31859
32343
  */
@@ -31936,6 +32420,10 @@ export type BookingResourcesListData = {
31936
32420
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
31937
32421
  */
31938
32422
  query?: string;
32423
+ /**
32424
+ * Resource attributes (JSON)
32425
+ */
32426
+ resource_attributes?: string;
31939
32427
  /**
31940
32428
  * Restrict member access
31941
32429
  */
@@ -31994,6 +32482,10 @@ export type BookingResourcesCountData = {
31994
32482
  * Created after
31995
32483
  */
31996
32484
  created?: string;
32485
+ /**
32486
+ * Created before
32487
+ */
32488
+ created_before?: string;
31997
32489
  /**
31998
32490
  * Customer URL
31999
32491
  */
@@ -32030,6 +32522,10 @@ export type BookingResourcesCountData = {
32030
32522
  * Modified after
32031
32523
  */
32032
32524
  modified?: string;
32525
+ /**
32526
+ * Modified before
32527
+ */
32528
+ modified_before?: string;
32033
32529
  /**
32034
32530
  * Name
32035
32531
  */
@@ -32112,6 +32608,10 @@ export type BookingResourcesCountData = {
32112
32608
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
32113
32609
  */
32114
32610
  query?: string;
32611
+ /**
32612
+ * Resource attributes (JSON)
32613
+ */
32614
+ resource_attributes?: string;
32115
32615
  /**
32116
32616
  * Restrict member access
32117
32617
  */
@@ -32805,6 +33305,180 @@ export type CallManagingOrganisationsUpdateUserResponses = {
32805
33305
  200: UserRoleExpirationTime;
32806
33306
  };
32807
33307
  export type CallManagingOrganisationsUpdateUserResponse = CallManagingOrganisationsUpdateUserResponses[keyof CallManagingOrganisationsUpdateUserResponses];
33308
+ export type CallManagingOrganisationsGlobalStatsPerformanceListData = {
33309
+ body?: never;
33310
+ path?: never;
33311
+ query?: {
33312
+ customer?: string;
33313
+ customer_keyword?: string;
33314
+ customer_uuid?: string;
33315
+ /**
33316
+ * Ordering
33317
+ *
33318
+ *
33319
+ */
33320
+ o?: Array<CallManagingOrganisationOEnum>;
33321
+ /**
33322
+ * A page number within the paginated result set.
33323
+ */
33324
+ page?: number;
33325
+ /**
33326
+ * Number of results to return per page.
33327
+ */
33328
+ page_size?: number;
33329
+ };
33330
+ url: '/api/call-managing-organisations/global_stats_performance/';
33331
+ };
33332
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponses = {
33333
+ 200: Array<CallPerformanceStat>;
33334
+ };
33335
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponse = CallManagingOrganisationsGlobalStatsPerformanceListResponses[keyof CallManagingOrganisationsGlobalStatsPerformanceListResponses];
33336
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountData = {
33337
+ body?: never;
33338
+ path?: never;
33339
+ query?: {
33340
+ customer?: string;
33341
+ customer_keyword?: string;
33342
+ customer_uuid?: string;
33343
+ /**
33344
+ * Ordering
33345
+ *
33346
+ *
33347
+ */
33348
+ o?: Array<CallManagingOrganisationOEnum>;
33349
+ /**
33350
+ * A page number within the paginated result set.
33351
+ */
33352
+ page?: number;
33353
+ /**
33354
+ * Number of results to return per page.
33355
+ */
33356
+ page_size?: number;
33357
+ };
33358
+ url: '/api/call-managing-organisations/global_stats_performance/';
33359
+ };
33360
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountResponses = {
33361
+ /**
33362
+ * No response body
33363
+ */
33364
+ 200: unknown;
33365
+ };
33366
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListData = {
33367
+ body?: never;
33368
+ path?: never;
33369
+ query?: {
33370
+ customer?: string;
33371
+ customer_keyword?: string;
33372
+ customer_uuid?: string;
33373
+ /**
33374
+ * Ordering
33375
+ *
33376
+ *
33377
+ */
33378
+ o?: Array<CallManagingOrganisationOEnum>;
33379
+ /**
33380
+ * A page number within the paginated result set.
33381
+ */
33382
+ page?: number;
33383
+ /**
33384
+ * Number of results to return per page.
33385
+ */
33386
+ page_size?: number;
33387
+ };
33388
+ url: '/api/call-managing-organisations/global_stats_resource_demand/';
33389
+ };
33390
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponses = {
33391
+ 200: Array<ResourceDemandStat>;
33392
+ };
33393
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponse = CallManagingOrganisationsGlobalStatsResourceDemandListResponses[keyof CallManagingOrganisationsGlobalStatsResourceDemandListResponses];
33394
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountData = {
33395
+ body?: never;
33396
+ path?: never;
33397
+ query?: {
33398
+ customer?: string;
33399
+ customer_keyword?: string;
33400
+ customer_uuid?: string;
33401
+ /**
33402
+ * Ordering
33403
+ *
33404
+ *
33405
+ */
33406
+ o?: Array<CallManagingOrganisationOEnum>;
33407
+ /**
33408
+ * A page number within the paginated result set.
33409
+ */
33410
+ page?: number;
33411
+ /**
33412
+ * Number of results to return per page.
33413
+ */
33414
+ page_size?: number;
33415
+ };
33416
+ url: '/api/call-managing-organisations/global_stats_resource_demand/';
33417
+ };
33418
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountResponses = {
33419
+ /**
33420
+ * No response body
33421
+ */
33422
+ 200: unknown;
33423
+ };
33424
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListData = {
33425
+ body?: never;
33426
+ path?: never;
33427
+ query?: {
33428
+ customer?: string;
33429
+ customer_keyword?: string;
33430
+ customer_uuid?: string;
33431
+ /**
33432
+ * Ordering
33433
+ *
33434
+ *
33435
+ */
33436
+ o?: Array<CallManagingOrganisationOEnum>;
33437
+ /**
33438
+ * A page number within the paginated result set.
33439
+ */
33440
+ page?: number;
33441
+ /**
33442
+ * Number of results to return per page.
33443
+ */
33444
+ page_size?: number;
33445
+ };
33446
+ url: '/api/call-managing-organisations/global_stats_review_progress/';
33447
+ };
33448
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponses = {
33449
+ 200: Array<ReviewProgressStat>;
33450
+ };
33451
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponse = CallManagingOrganisationsGlobalStatsReviewProgressListResponses[keyof CallManagingOrganisationsGlobalStatsReviewProgressListResponses];
33452
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountData = {
33453
+ body?: never;
33454
+ path?: never;
33455
+ query?: {
33456
+ customer?: string;
33457
+ customer_keyword?: string;
33458
+ customer_uuid?: string;
33459
+ /**
33460
+ * Ordering
33461
+ *
33462
+ *
33463
+ */
33464
+ o?: Array<CallManagingOrganisationOEnum>;
33465
+ /**
33466
+ * A page number within the paginated result set.
33467
+ */
33468
+ page?: number;
33469
+ /**
33470
+ * Number of results to return per page.
33471
+ */
33472
+ page_size?: number;
33473
+ };
33474
+ url: '/api/call-managing-organisations/global_stats_review_progress/';
33475
+ };
33476
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountResponses = {
33477
+ /**
33478
+ * No response body
33479
+ */
33480
+ 200: unknown;
33481
+ };
32808
33482
  export type CallProposalProjectRoleMappingsListData = {
32809
33483
  body?: never;
32810
33484
  path?: never;
@@ -33020,6 +33694,18 @@ export type CallReviewerPoolsDeclineResponses = {
33020
33694
  200: InvitationDeclineResponse;
33021
33695
  };
33022
33696
  export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
33697
+ export type CallReviewerPoolsForceAcceptData = {
33698
+ body: ForceAcceptPoolRequest;
33699
+ path: {
33700
+ uuid: string;
33701
+ };
33702
+ query?: never;
33703
+ url: '/api/call-reviewer-pools/{uuid}/force-accept/';
33704
+ };
33705
+ export type CallReviewerPoolsForceAcceptResponses = {
33706
+ 200: CallReviewerPool;
33707
+ };
33708
+ export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
33023
33709
  export type CallRoundsListData = {
33024
33710
  body?: never;
33025
33711
  path?: never;
@@ -33250,6 +33936,20 @@ export type ChatThreadsArchiveResponses = {
33250
33936
  204: void;
33251
33937
  };
33252
33938
  export type ChatThreadsArchiveResponse = ChatThreadsArchiveResponses[keyof ChatThreadsArchiveResponses];
33939
+ export type ChatThreadsCancelData = {
33940
+ body?: ThreadSessionRequest;
33941
+ path: {
33942
+ uuid: string;
33943
+ };
33944
+ query?: never;
33945
+ url: '/api/chat-threads/{uuid}/cancel/';
33946
+ };
33947
+ export type ChatThreadsCancelResponses = {
33948
+ /**
33949
+ * No response body
33950
+ */
33951
+ 200: unknown;
33952
+ };
33253
33953
  export type ChatThreadsUnarchiveData = {
33254
33954
  body?: ThreadSessionRequest;
33255
33955
  path: {
@@ -37771,6 +38471,16 @@ export type IdentityBridgeResponses = {
37771
38471
  200: IdentityBridgeResult;
37772
38472
  };
37773
38473
  export type IdentityBridgeResponse = IdentityBridgeResponses[keyof IdentityBridgeResponses];
38474
+ export type IdentityBridgeAllowedFieldsRetrieveData = {
38475
+ body?: never;
38476
+ path?: never;
38477
+ query?: never;
38478
+ url: '/api/identity-bridge/allowed-fields/';
38479
+ };
38480
+ export type IdentityBridgeAllowedFieldsRetrieveResponses = {
38481
+ 200: IdentityBridgeAllowedFields;
38482
+ };
38483
+ export type IdentityBridgeAllowedFieldsRetrieveResponse = IdentityBridgeAllowedFieldsRetrieveResponses[keyof IdentityBridgeAllowedFieldsRetrieveResponses];
37774
38484
  export type IdentityBridgeRemoveData = {
37775
38485
  body: IdentityBridgeRemoveRequest;
37776
38486
  path?: never;
@@ -38796,6 +39506,10 @@ export type KeysListData = {
38796
39506
  * Created after
38797
39507
  */
38798
39508
  created?: string;
39509
+ /**
39510
+ * Created before
39511
+ */
39512
+ created_before?: string;
38799
39513
  field?: Array<SshKeyFieldEnum>;
38800
39514
  fingerprint_md5?: string;
38801
39515
  fingerprint_sha256?: string;
@@ -38805,6 +39519,10 @@ export type KeysListData = {
38805
39519
  * Modified after
38806
39520
  */
38807
39521
  modified?: string;
39522
+ /**
39523
+ * Modified before
39524
+ */
39525
+ modified_before?: string;
38808
39526
  /**
38809
39527
  * Name
38810
39528
  */
@@ -38850,6 +39568,10 @@ export type KeysCountData = {
38850
39568
  * Created after
38851
39569
  */
38852
39570
  created?: string;
39571
+ /**
39572
+ * Created before
39573
+ */
39574
+ created_before?: string;
38853
39575
  fingerprint_md5?: string;
38854
39576
  fingerprint_sha256?: string;
38855
39577
  fingerprint_sha512?: string;
@@ -38858,6 +39580,10 @@ export type KeysCountData = {
38858
39580
  * Modified after
38859
39581
  */
38860
39582
  modified?: string;
39583
+ /**
39584
+ * Modified before
39585
+ */
39586
+ modified_before?: string;
38861
39587
  /**
38862
39588
  * Name
38863
39589
  */
@@ -38962,6 +39688,10 @@ export type KeysHistoryListData = {
38962
39688
  * Modified after
38963
39689
  */
38964
39690
  modified?: string;
39691
+ /**
39692
+ * Modified before
39693
+ */
39694
+ modified_before?: string;
38965
39695
  /**
38966
39696
  * Name
38967
39697
  */
@@ -39867,6 +40597,253 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
39867
40597
  200: RancherNode;
39868
40598
  };
39869
40599
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
40600
+ export type MarketplaceArticleCodeUpdateApplyData = {
40601
+ body: ArticleCodeUpdateApplyRequest;
40602
+ path?: never;
40603
+ query?: never;
40604
+ url: '/api/marketplace-article-code-update/apply/';
40605
+ };
40606
+ export type MarketplaceArticleCodeUpdateApplyResponses = {
40607
+ 200: ArticleCodeUpdateApplyResponse;
40608
+ };
40609
+ export type MarketplaceArticleCodeUpdateApplyResponse = MarketplaceArticleCodeUpdateApplyResponses[keyof MarketplaceArticleCodeUpdateApplyResponses];
40610
+ export type MarketplaceArticleCodeUpdatePreviewData = {
40611
+ body: ArticleCodeUpdatePreviewRequest;
40612
+ path?: never;
40613
+ query?: {
40614
+ /**
40615
+ * A page number within the paginated result set.
40616
+ */
40617
+ page?: number;
40618
+ /**
40619
+ * Number of results to return per page.
40620
+ */
40621
+ page_size?: number;
40622
+ };
40623
+ url: '/api/marketplace-article-code-update/preview/';
40624
+ };
40625
+ export type MarketplaceArticleCodeUpdatePreviewResponses = {
40626
+ 200: Array<ArticleCodeUpdatePreviewItem>;
40627
+ };
40628
+ export type MarketplaceArticleCodeUpdatePreviewResponse = MarketplaceArticleCodeUpdatePreviewResponses[keyof MarketplaceArticleCodeUpdatePreviewResponses];
40629
+ export type MarketplaceAttributeOptionsListData = {
40630
+ body?: never;
40631
+ path?: never;
40632
+ query?: {
40633
+ /**
40634
+ * Attribute URL
40635
+ */
40636
+ attribute?: string;
40637
+ /**
40638
+ * A page number within the paginated result set.
40639
+ */
40640
+ page?: number;
40641
+ /**
40642
+ * Number of results to return per page.
40643
+ */
40644
+ page_size?: number;
40645
+ };
40646
+ url: '/api/marketplace-attribute-options/';
40647
+ };
40648
+ export type MarketplaceAttributeOptionsListResponses = {
40649
+ 200: Array<AttributeOption>;
40650
+ };
40651
+ export type MarketplaceAttributeOptionsListResponse = MarketplaceAttributeOptionsListResponses[keyof MarketplaceAttributeOptionsListResponses];
40652
+ export type MarketplaceAttributeOptionsCountData = {
40653
+ body?: never;
40654
+ path?: never;
40655
+ query?: {
40656
+ /**
40657
+ * Attribute URL
40658
+ */
40659
+ attribute?: string;
40660
+ /**
40661
+ * A page number within the paginated result set.
40662
+ */
40663
+ page?: number;
40664
+ /**
40665
+ * Number of results to return per page.
40666
+ */
40667
+ page_size?: number;
40668
+ };
40669
+ url: '/api/marketplace-attribute-options/';
40670
+ };
40671
+ export type MarketplaceAttributeOptionsCountResponses = {
40672
+ /**
40673
+ * No response body
40674
+ */
40675
+ 200: unknown;
40676
+ };
40677
+ export type MarketplaceAttributeOptionsCreateData = {
40678
+ body: AttributeOptionRequest;
40679
+ path?: never;
40680
+ query?: never;
40681
+ url: '/api/marketplace-attribute-options/';
40682
+ };
40683
+ export type MarketplaceAttributeOptionsCreateResponses = {
40684
+ 201: AttributeOption;
40685
+ };
40686
+ export type MarketplaceAttributeOptionsCreateResponse = MarketplaceAttributeOptionsCreateResponses[keyof MarketplaceAttributeOptionsCreateResponses];
40687
+ export type MarketplaceAttributeOptionsDestroyData = {
40688
+ body?: never;
40689
+ path: {
40690
+ uuid: string;
40691
+ };
40692
+ query?: never;
40693
+ url: '/api/marketplace-attribute-options/{uuid}/';
40694
+ };
40695
+ export type MarketplaceAttributeOptionsDestroyResponses = {
40696
+ /**
40697
+ * No response body
40698
+ */
40699
+ 204: void;
40700
+ };
40701
+ export type MarketplaceAttributeOptionsDestroyResponse = MarketplaceAttributeOptionsDestroyResponses[keyof MarketplaceAttributeOptionsDestroyResponses];
40702
+ export type MarketplaceAttributeOptionsRetrieveData = {
40703
+ body?: never;
40704
+ path: {
40705
+ uuid: string;
40706
+ };
40707
+ query?: never;
40708
+ url: '/api/marketplace-attribute-options/{uuid}/';
40709
+ };
40710
+ export type MarketplaceAttributeOptionsRetrieveResponses = {
40711
+ 200: AttributeOption;
40712
+ };
40713
+ export type MarketplaceAttributeOptionsRetrieveResponse = MarketplaceAttributeOptionsRetrieveResponses[keyof MarketplaceAttributeOptionsRetrieveResponses];
40714
+ export type MarketplaceAttributeOptionsPartialUpdateData = {
40715
+ body?: PatchedAttributeOptionRequest;
40716
+ path: {
40717
+ uuid: string;
40718
+ };
40719
+ query?: never;
40720
+ url: '/api/marketplace-attribute-options/{uuid}/';
40721
+ };
40722
+ export type MarketplaceAttributeOptionsPartialUpdateResponses = {
40723
+ 200: AttributeOption;
40724
+ };
40725
+ export type MarketplaceAttributeOptionsPartialUpdateResponse = MarketplaceAttributeOptionsPartialUpdateResponses[keyof MarketplaceAttributeOptionsPartialUpdateResponses];
40726
+ export type MarketplaceAttributeOptionsUpdateData = {
40727
+ body: AttributeOptionRequest;
40728
+ path: {
40729
+ uuid: string;
40730
+ };
40731
+ query?: never;
40732
+ url: '/api/marketplace-attribute-options/{uuid}/';
40733
+ };
40734
+ export type MarketplaceAttributeOptionsUpdateResponses = {
40735
+ 200: AttributeOption;
40736
+ };
40737
+ export type MarketplaceAttributeOptionsUpdateResponse = MarketplaceAttributeOptionsUpdateResponses[keyof MarketplaceAttributeOptionsUpdateResponses];
40738
+ export type MarketplaceAttributesListData = {
40739
+ body?: never;
40740
+ path?: never;
40741
+ query?: {
40742
+ /**
40743
+ * A page number within the paginated result set.
40744
+ */
40745
+ page?: number;
40746
+ /**
40747
+ * Number of results to return per page.
40748
+ */
40749
+ page_size?: number;
40750
+ /**
40751
+ * Section URL
40752
+ */
40753
+ section?: string;
40754
+ };
40755
+ url: '/api/marketplace-attributes/';
40756
+ };
40757
+ export type MarketplaceAttributesListResponses = {
40758
+ 200: Array<Attribute>;
40759
+ };
40760
+ export type MarketplaceAttributesListResponse = MarketplaceAttributesListResponses[keyof MarketplaceAttributesListResponses];
40761
+ export type MarketplaceAttributesCountData = {
40762
+ body?: never;
40763
+ path?: never;
40764
+ query?: {
40765
+ /**
40766
+ * A page number within the paginated result set.
40767
+ */
40768
+ page?: number;
40769
+ /**
40770
+ * Number of results to return per page.
40771
+ */
40772
+ page_size?: number;
40773
+ /**
40774
+ * Section URL
40775
+ */
40776
+ section?: string;
40777
+ };
40778
+ url: '/api/marketplace-attributes/';
40779
+ };
40780
+ export type MarketplaceAttributesCountResponses = {
40781
+ /**
40782
+ * No response body
40783
+ */
40784
+ 200: unknown;
40785
+ };
40786
+ export type MarketplaceAttributesCreateData = {
40787
+ body: AttributeRequest;
40788
+ path?: never;
40789
+ query?: never;
40790
+ url: '/api/marketplace-attributes/';
40791
+ };
40792
+ export type MarketplaceAttributesCreateResponses = {
40793
+ 201: Attribute;
40794
+ };
40795
+ export type MarketplaceAttributesCreateResponse = MarketplaceAttributesCreateResponses[keyof MarketplaceAttributesCreateResponses];
40796
+ export type MarketplaceAttributesDestroyData = {
40797
+ body?: never;
40798
+ path: {
40799
+ uuid: string;
40800
+ };
40801
+ query?: never;
40802
+ url: '/api/marketplace-attributes/{uuid}/';
40803
+ };
40804
+ export type MarketplaceAttributesDestroyResponses = {
40805
+ /**
40806
+ * No response body
40807
+ */
40808
+ 204: void;
40809
+ };
40810
+ export type MarketplaceAttributesDestroyResponse = MarketplaceAttributesDestroyResponses[keyof MarketplaceAttributesDestroyResponses];
40811
+ export type MarketplaceAttributesRetrieveData = {
40812
+ body?: never;
40813
+ path: {
40814
+ uuid: string;
40815
+ };
40816
+ query?: never;
40817
+ url: '/api/marketplace-attributes/{uuid}/';
40818
+ };
40819
+ export type MarketplaceAttributesRetrieveResponses = {
40820
+ 200: Attribute;
40821
+ };
40822
+ export type MarketplaceAttributesRetrieveResponse = MarketplaceAttributesRetrieveResponses[keyof MarketplaceAttributesRetrieveResponses];
40823
+ export type MarketplaceAttributesPartialUpdateData = {
40824
+ body?: PatchedAttributeRequest;
40825
+ path: {
40826
+ uuid: string;
40827
+ };
40828
+ query?: never;
40829
+ url: '/api/marketplace-attributes/{uuid}/';
40830
+ };
40831
+ export type MarketplaceAttributesPartialUpdateResponses = {
40832
+ 200: Attribute;
40833
+ };
40834
+ export type MarketplaceAttributesPartialUpdateResponse = MarketplaceAttributesPartialUpdateResponses[keyof MarketplaceAttributesPartialUpdateResponses];
40835
+ export type MarketplaceAttributesUpdateData = {
40836
+ body: AttributeRequest;
40837
+ path: {
40838
+ uuid: string;
40839
+ };
40840
+ query?: never;
40841
+ url: '/api/marketplace-attributes/{uuid}/';
40842
+ };
40843
+ export type MarketplaceAttributesUpdateResponses = {
40844
+ 200: Attribute;
40845
+ };
40846
+ export type MarketplaceAttributesUpdateResponse = MarketplaceAttributesUpdateResponses[keyof MarketplaceAttributesUpdateResponses];
39870
40847
  export type MarketplaceBookingsListData = {
39871
40848
  body?: never;
39872
40849
  path: {
@@ -41085,6 +42062,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
41085
42062
  200: CourseAccount;
41086
42063
  };
41087
42064
  export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
42065
+ export type MarketplaceCourseAccountsRetryData = {
42066
+ body?: never;
42067
+ path: {
42068
+ uuid: string;
42069
+ };
42070
+ query?: never;
42071
+ url: '/api/marketplace-course-accounts/{uuid}/retry/';
42072
+ };
42073
+ export type MarketplaceCourseAccountsRetryResponses = {
42074
+ 202: CourseAccount;
42075
+ };
42076
+ export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
41088
42077
  export type MarketplaceCourseAccountsCreateBulkData = {
41089
42078
  body: CourseAccountsBulkCreateRequest;
41090
42079
  path?: never;
@@ -42046,6 +43035,10 @@ export type MarketplaceOfferingPermissionsListData = {
42046
43035
  * Created after
42047
43036
  */
42048
43037
  created?: string;
43038
+ /**
43039
+ * Created before
43040
+ */
43041
+ created_before?: string;
42049
43042
  customer?: string;
42050
43043
  /**
42051
43044
  * User full name contains
@@ -42055,6 +43048,10 @@ export type MarketplaceOfferingPermissionsListData = {
42055
43048
  * Modified after
42056
43049
  */
42057
43050
  modified?: string;
43051
+ /**
43052
+ * Modified before
43053
+ */
43054
+ modified_before?: string;
42058
43055
  native_name?: string;
42059
43056
  /**
42060
43057
  * Ordering
@@ -42113,6 +43110,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42113
43110
  * Created after
42114
43111
  */
42115
43112
  created?: string;
43113
+ /**
43114
+ * Created before
43115
+ */
43116
+ created_before?: string;
42116
43117
  customer?: string;
42117
43118
  /**
42118
43119
  * User full name contains
@@ -42122,6 +43123,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42122
43123
  * Modified after
42123
43124
  */
42124
43125
  modified?: string;
43126
+ /**
43127
+ * Modified before
43128
+ */
43129
+ modified_before?: string;
42125
43130
  native_name?: string;
42126
43131
  /**
42127
43132
  * Ordering
@@ -42182,6 +43187,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42182
43187
  * Created after
42183
43188
  */
42184
43189
  created?: string;
43190
+ /**
43191
+ * Created before
43192
+ */
43193
+ created_before?: string;
42185
43194
  customer?: string;
42186
43195
  /**
42187
43196
  * User full name contains
@@ -42191,6 +43200,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42191
43200
  * Modified after
42192
43201
  */
42193
43202
  modified?: string;
43203
+ /**
43204
+ * Modified before
43205
+ */
43206
+ modified_before?: string;
42194
43207
  native_name?: string;
42195
43208
  /**
42196
43209
  * Ordering
@@ -42249,6 +43262,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42249
43262
  * Created after
42250
43263
  */
42251
43264
  created?: string;
43265
+ /**
43266
+ * Created before
43267
+ */
43268
+ created_before?: string;
42252
43269
  customer?: string;
42253
43270
  /**
42254
43271
  * User full name contains
@@ -42258,6 +43275,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42258
43275
  * Modified after
42259
43276
  */
42260
43277
  modified?: string;
43278
+ /**
43279
+ * Modified before
43280
+ */
43281
+ modified_before?: string;
42261
43282
  native_name?: string;
42262
43283
  /**
42263
43284
  * Ordering
@@ -42700,11 +43721,19 @@ export type MarketplaceOfferingUserChecklistCompletionsListData = {
42700
43721
  * Created after
42701
43722
  */
42702
43723
  created?: string;
43724
+ /**
43725
+ * Created before
43726
+ */
43727
+ created_before?: string;
42703
43728
  is_completed?: boolean;
42704
43729
  /**
42705
43730
  * Modified after
42706
43731
  */
42707
43732
  modified?: string;
43733
+ /**
43734
+ * Modified before
43735
+ */
43736
+ modified_before?: string;
42708
43737
  /**
42709
43738
  * Ordering
42710
43739
  *
@@ -42742,11 +43771,19 @@ export type MarketplaceOfferingUserChecklistCompletionsCountData = {
42742
43771
  * Created after
42743
43772
  */
42744
43773
  created?: string;
43774
+ /**
43775
+ * Created before
43776
+ */
43777
+ created_before?: string;
42745
43778
  is_completed?: boolean;
42746
43779
  /**
42747
43780
  * Modified after
42748
43781
  */
42749
43782
  modified?: string;
43783
+ /**
43784
+ * Modified before
43785
+ */
43786
+ modified_before?: string;
42750
43787
  /**
42751
43788
  * Ordering
42752
43789
  *
@@ -42922,6 +43959,10 @@ export type MarketplaceOfferingUsersListData = {
42922
43959
  * Created after
42923
43960
  */
42924
43961
  created?: string;
43962
+ /**
43963
+ * Created before
43964
+ */
43965
+ created_before?: string;
42925
43966
  field?: Array<OfferingUserFieldEnum>;
42926
43967
  /**
42927
43968
  * User has complete profile for the offering
@@ -42939,6 +43980,10 @@ export type MarketplaceOfferingUsersListData = {
42939
43980
  * Modified after
42940
43981
  */
42941
43982
  modified?: string;
43983
+ /**
43984
+ * Modified before
43985
+ */
43986
+ modified_before?: string;
42942
43987
  /**
42943
43988
  * Ordering
42944
43989
  *
@@ -43000,6 +44045,10 @@ export type MarketplaceOfferingUsersCountData = {
43000
44045
  * Created after
43001
44046
  */
43002
44047
  created?: string;
44048
+ /**
44049
+ * Created before
44050
+ */
44051
+ created_before?: string;
43003
44052
  /**
43004
44053
  * User has complete profile for the offering
43005
44054
  */
@@ -43016,6 +44065,10 @@ export type MarketplaceOfferingUsersCountData = {
43016
44065
  * Modified after
43017
44066
  */
43018
44067
  modified?: string;
44068
+ /**
44069
+ * Modified before
44070
+ */
44071
+ modified_before?: string;
43019
44072
  /**
43020
44073
  * Ordering
43021
44074
  *
@@ -43501,6 +44554,10 @@ export type MarketplaceOrdersListData = {
43501
44554
  * Created after
43502
44555
  */
43503
44556
  created?: string;
44557
+ /**
44558
+ * Created before
44559
+ */
44560
+ created_before?: string;
43504
44561
  /**
43505
44562
  * Customer UUID
43506
44563
  */
@@ -43510,6 +44567,10 @@ export type MarketplaceOrdersListData = {
43510
44567
  * Modified after
43511
44568
  */
43512
44569
  modified?: string;
44570
+ /**
44571
+ * Modified before
44572
+ */
44573
+ modified_before?: string;
43513
44574
  /**
43514
44575
  * Ordering
43515
44576
  *
@@ -43605,6 +44666,10 @@ export type MarketplaceOrdersCountData = {
43605
44666
  * Created after
43606
44667
  */
43607
44668
  created?: string;
44669
+ /**
44670
+ * Created before
44671
+ */
44672
+ created_before?: string;
43608
44673
  /**
43609
44674
  * Customer UUID
43610
44675
  */
@@ -43613,6 +44678,10 @@ export type MarketplaceOrdersCountData = {
43613
44678
  * Modified after
43614
44679
  */
43615
44680
  modified?: string;
44681
+ /**
44682
+ * Modified before
44683
+ */
44684
+ modified_before?: string;
43616
44685
  /**
43617
44686
  * Ordering
43618
44687
  *
@@ -43846,6 +44915,20 @@ export type MarketplaceOrdersRejectByProviderResponses = {
43846
44915
  */
43847
44916
  200: unknown;
43848
44917
  };
44918
+ export type MarketplaceOrdersRetryData = {
44919
+ body?: never;
44920
+ path: {
44921
+ uuid: string;
44922
+ };
44923
+ query?: never;
44924
+ url: '/api/marketplace-orders/{uuid}/retry/';
44925
+ };
44926
+ export type MarketplaceOrdersRetryResponses = {
44927
+ /**
44928
+ * No response body
44929
+ */
44930
+ 200: unknown;
44931
+ };
43849
44932
  export type MarketplaceOrdersSetBackendIdData = {
43850
44933
  body: OrderBackendIdRequest;
43851
44934
  path: {
@@ -44419,6 +45502,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListData = {
44419
45502
  page_size?: number;
44420
45503
  project?: string;
44421
45504
  project_uuid?: string;
45505
+ query?: string;
44422
45506
  scope?: string;
44423
45507
  scope_uuid?: string;
44424
45508
  };
@@ -44444,6 +45528,7 @@ export type MarketplaceProjectEstimatedCostPoliciesCountData = {
44444
45528
  page_size?: number;
44445
45529
  project?: string;
44446
45530
  project_uuid?: string;
45531
+ query?: string;
44447
45532
  scope?: string;
44448
45533
  scope_uuid?: string;
44449
45534
  };
@@ -44818,6 +45903,10 @@ export type MarketplaceProviderOfferingsListData = {
44818
45903
  * Created after
44819
45904
  */
44820
45905
  created?: string;
45906
+ /**
45907
+ * Created before
45908
+ */
45909
+ created_before?: string;
44821
45910
  /**
44822
45911
  * Customer URL
44823
45912
  */
@@ -44851,6 +45940,10 @@ export type MarketplaceProviderOfferingsListData = {
44851
45940
  * Modified after
44852
45941
  */
44853
45942
  modified?: string;
45943
+ /**
45944
+ * Modified before
45945
+ */
45946
+ modified_before?: string;
44854
45947
  /**
44855
45948
  * Name
44856
45949
  */
@@ -44987,6 +46080,10 @@ export type MarketplaceProviderOfferingsCountData = {
44987
46080
  * Created after
44988
46081
  */
44989
46082
  created?: string;
46083
+ /**
46084
+ * Created before
46085
+ */
46086
+ created_before?: string;
44990
46087
  /**
44991
46088
  * Customer URL
44992
46089
  */
@@ -45019,6 +46116,10 @@ export type MarketplaceProviderOfferingsCountData = {
45019
46116
  * Modified after
45020
46117
  */
45021
46118
  modified?: string;
46119
+ /**
46120
+ * Modified before
46121
+ */
46122
+ modified_before?: string;
45022
46123
  /**
45023
46124
  * Name
45024
46125
  */
@@ -45288,6 +46389,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45288
46389
  * Created after
45289
46390
  */
45290
46391
  created?: string;
46392
+ /**
46393
+ * Created before
46394
+ */
46395
+ created_before?: string;
45291
46396
  /**
45292
46397
  * Customer URL
45293
46398
  */
@@ -45324,6 +46429,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45324
46429
  * Modified after
45325
46430
  */
45326
46431
  modified?: string;
46432
+ /**
46433
+ * Modified before
46434
+ */
46435
+ modified_before?: string;
45327
46436
  /**
45328
46437
  * Name
45329
46438
  */
@@ -45467,6 +46576,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45467
46576
  * Created after
45468
46577
  */
45469
46578
  created?: string;
46579
+ /**
46580
+ * Created before
46581
+ */
46582
+ created_before?: string;
45470
46583
  /**
45471
46584
  * Customer URL
45472
46585
  */
@@ -45503,6 +46616,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45503
46616
  * Modified after
45504
46617
  */
45505
46618
  modified?: string;
46619
+ /**
46620
+ * Modified before
46621
+ */
46622
+ modified_before?: string;
45506
46623
  /**
45507
46624
  * Name
45508
46625
  */
@@ -45659,6 +46776,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45659
46776
  * Created after
45660
46777
  */
45661
46778
  created?: string;
46779
+ /**
46780
+ * Created before
46781
+ */
46782
+ created_before?: string;
45662
46783
  /**
45663
46784
  * Customer URL
45664
46785
  */
@@ -45692,6 +46813,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45692
46813
  * Modified after
45693
46814
  */
45694
46815
  modified?: string;
46816
+ /**
46817
+ * Modified before
46818
+ */
46819
+ modified_before?: string;
45695
46820
  /**
45696
46821
  * Name
45697
46822
  */
@@ -46010,6 +47135,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
46010
47135
  * Modified after
46011
47136
  */
46012
47137
  modified?: string;
47138
+ /**
47139
+ * Modified before
47140
+ */
47141
+ modified_before?: string;
46013
47142
  /**
46014
47143
  * Name
46015
47144
  */
@@ -46207,6 +47336,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46207
47336
  * Created after
46208
47337
  */
46209
47338
  created?: string;
47339
+ /**
47340
+ * Created before
47341
+ */
47342
+ created_before?: string;
46210
47343
  /**
46211
47344
  * Customer URL
46212
47345
  */
@@ -46239,6 +47372,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46239
47372
  * Modified after
46240
47373
  */
46241
47374
  modified?: string;
47375
+ /**
47376
+ * Modified before
47377
+ */
47378
+ modified_before?: string;
46242
47379
  /**
46243
47380
  * Name
46244
47381
  */
@@ -46399,6 +47536,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46399
47536
  * Created after
46400
47537
  */
46401
47538
  created?: string;
47539
+ /**
47540
+ * Created before
47541
+ */
47542
+ created_before?: string;
46402
47543
  /**
46403
47544
  * Customer URL
46404
47545
  */
@@ -46431,6 +47572,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46431
47572
  * Modified after
46432
47573
  */
46433
47574
  modified?: string;
47575
+ /**
47576
+ * Modified before
47577
+ */
47578
+ modified_before?: string;
46434
47579
  /**
46435
47580
  * Name
46436
47581
  */
@@ -46591,6 +47736,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46591
47736
  * Created after
46592
47737
  */
46593
47738
  created?: string;
47739
+ /**
47740
+ * Created before
47741
+ */
47742
+ created_before?: string;
46594
47743
  /**
46595
47744
  * Customer URL
46596
47745
  */
@@ -46623,6 +47772,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46623
47772
  * Modified after
46624
47773
  */
46625
47774
  modified?: string;
47775
+ /**
47776
+ * Modified before
47777
+ */
47778
+ modified_before?: string;
46626
47779
  /**
46627
47780
  * Name
46628
47781
  */
@@ -47326,6 +48479,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47326
48479
  * Created after
47327
48480
  */
47328
48481
  created?: string;
48482
+ /**
48483
+ * Created before
48484
+ */
48485
+ created_before?: string;
47329
48486
  /**
47330
48487
  * Customer URL
47331
48488
  */
@@ -47354,6 +48511,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47354
48511
  * Modified after
47355
48512
  */
47356
48513
  modified?: string;
48514
+ /**
48515
+ * Modified before
48516
+ */
48517
+ modified_before?: string;
47357
48518
  /**
47358
48519
  * Name
47359
48520
  */
@@ -47490,6 +48651,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47490
48651
  * Created after
47491
48652
  */
47492
48653
  created?: string;
48654
+ /**
48655
+ * Created before
48656
+ */
48657
+ created_before?: string;
47493
48658
  /**
47494
48659
  * Customer URL
47495
48660
  */
@@ -47518,6 +48683,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47518
48683
  * Modified after
47519
48684
  */
47520
48685
  modified?: string;
48686
+ /**
48687
+ * Modified before
48688
+ */
48689
+ modified_before?: string;
47521
48690
  /**
47522
48691
  * Name
47523
48692
  */
@@ -47653,6 +48822,10 @@ export type MarketplaceProviderResourcesListData = {
47653
48822
  * Created after
47654
48823
  */
47655
48824
  created?: string;
48825
+ /**
48826
+ * Created before
48827
+ */
48828
+ created_before?: string;
47656
48829
  /**
47657
48830
  * Customer URL
47658
48831
  */
@@ -47690,6 +48863,10 @@ export type MarketplaceProviderResourcesListData = {
47690
48863
  * Modified after
47691
48864
  */
47692
48865
  modified?: string;
48866
+ /**
48867
+ * Modified before
48868
+ */
48869
+ modified_before?: string;
47693
48870
  /**
47694
48871
  * Name
47695
48872
  */
@@ -47772,6 +48949,10 @@ export type MarketplaceProviderResourcesListData = {
47772
48949
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
47773
48950
  */
47774
48951
  query?: string;
48952
+ /**
48953
+ * Resource attributes (JSON)
48954
+ */
48955
+ resource_attributes?: string;
47775
48956
  /**
47776
48957
  * Restrict member access
47777
48958
  */
@@ -47833,6 +49014,10 @@ export type MarketplaceProviderResourcesCountData = {
47833
49014
  * Created after
47834
49015
  */
47835
49016
  created?: string;
49017
+ /**
49018
+ * Created before
49019
+ */
49020
+ created_before?: string;
47836
49021
  /**
47837
49022
  * Customer URL
47838
49023
  */
@@ -47869,6 +49054,10 @@ export type MarketplaceProviderResourcesCountData = {
47869
49054
  * Modified after
47870
49055
  */
47871
49056
  modified?: string;
49057
+ /**
49058
+ * Modified before
49059
+ */
49060
+ modified_before?: string;
47872
49061
  /**
47873
49062
  * Name
47874
49063
  */
@@ -47951,6 +49140,10 @@ export type MarketplaceProviderResourcesCountData = {
47951
49140
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
47952
49141
  */
47953
49142
  query?: string;
49143
+ /**
49144
+ * Resource attributes (JSON)
49145
+ */
49146
+ resource_attributes?: string;
47954
49147
  /**
47955
49148
  * Restrict member access
47956
49149
  */
@@ -48128,6 +49321,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48128
49321
  * Modified after
48129
49322
  */
48130
49323
  modified?: string;
49324
+ /**
49325
+ * Modified before
49326
+ */
49327
+ modified_before?: string;
48131
49328
  /**
48132
49329
  * Name
48133
49330
  */
@@ -48210,6 +49407,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48210
49407
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48211
49408
  */
48212
49409
  query?: string;
49410
+ /**
49411
+ * Resource attributes (JSON)
49412
+ */
49413
+ resource_attributes?: string;
48213
49414
  /**
48214
49415
  * Restrict member access
48215
49416
  */
@@ -48431,6 +49632,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
48431
49632
  };
48432
49633
  };
48433
49634
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
49635
+ export type MarketplaceProviderResourcesSetEffectiveIdData = {
49636
+ body?: ResourceEffectiveIdRequest;
49637
+ path: {
49638
+ uuid: string;
49639
+ };
49640
+ query?: never;
49641
+ url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
49642
+ };
49643
+ export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
49644
+ 200: ResourceResponseStatus;
49645
+ };
49646
+ export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
49647
+ export type MarketplaceProviderResourcesSetEndDateData = {
49648
+ body?: ResourceEndDateRequest;
49649
+ path: {
49650
+ uuid: string;
49651
+ };
49652
+ query?: never;
49653
+ url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
49654
+ };
49655
+ export type MarketplaceProviderResourcesSetEndDateResponses = {
49656
+ /**
49657
+ * No response body
49658
+ */
49659
+ 200: unknown;
49660
+ };
48434
49661
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
48435
49662
  body?: ResourceEndDateByProviderRequest;
48436
49663
  path: {
@@ -48682,6 +49909,10 @@ export type MarketplacePublicOfferingsListData = {
48682
49909
  * Created after
48683
49910
  */
48684
49911
  created?: string;
49912
+ /**
49913
+ * Created before
49914
+ */
49915
+ created_before?: string;
48685
49916
  /**
48686
49917
  * Customer URL
48687
49918
  */
@@ -48711,6 +49942,10 @@ export type MarketplacePublicOfferingsListData = {
48711
49942
  * Modified after
48712
49943
  */
48713
49944
  modified?: string;
49945
+ /**
49946
+ * Modified before
49947
+ */
49948
+ modified_before?: string;
48714
49949
  /**
48715
49950
  * Name
48716
49951
  */
@@ -48847,6 +50082,10 @@ export type MarketplacePublicOfferingsCountData = {
48847
50082
  * Created after
48848
50083
  */
48849
50084
  created?: string;
50085
+ /**
50086
+ * Created before
50087
+ */
50088
+ created_before?: string;
48850
50089
  /**
48851
50090
  * Customer URL
48852
50091
  */
@@ -48875,6 +50114,10 @@ export type MarketplacePublicOfferingsCountData = {
48875
50114
  * Modified after
48876
50115
  */
48877
50116
  modified?: string;
50117
+ /**
50118
+ * Modified before
50119
+ */
50120
+ modified_before?: string;
48878
50121
  /**
48879
50122
  * Name
48880
50123
  */
@@ -49327,6 +50570,10 @@ export type MarketplaceResourcesListData = {
49327
50570
  * Created after
49328
50571
  */
49329
50572
  created?: string;
50573
+ /**
50574
+ * Created before
50575
+ */
50576
+ created_before?: string;
49330
50577
  /**
49331
50578
  * Customer URL
49332
50579
  */
@@ -49364,6 +50611,10 @@ export type MarketplaceResourcesListData = {
49364
50611
  * Modified after
49365
50612
  */
49366
50613
  modified?: string;
50614
+ /**
50615
+ * Modified before
50616
+ */
50617
+ modified_before?: string;
49367
50618
  /**
49368
50619
  * Name
49369
50620
  */
@@ -49446,6 +50697,10 @@ export type MarketplaceResourcesListData = {
49446
50697
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
49447
50698
  */
49448
50699
  query?: string;
50700
+ /**
50701
+ * Resource attributes (JSON)
50702
+ */
50703
+ resource_attributes?: string;
49449
50704
  /**
49450
50705
  * Restrict member access
49451
50706
  */
@@ -49507,6 +50762,10 @@ export type MarketplaceResourcesCountData = {
49507
50762
  * Created after
49508
50763
  */
49509
50764
  created?: string;
50765
+ /**
50766
+ * Created before
50767
+ */
50768
+ created_before?: string;
49510
50769
  /**
49511
50770
  * Customer URL
49512
50771
  */
@@ -49543,6 +50802,10 @@ export type MarketplaceResourcesCountData = {
49543
50802
  * Modified after
49544
50803
  */
49545
50804
  modified?: string;
50805
+ /**
50806
+ * Modified before
50807
+ */
50808
+ modified_before?: string;
49546
50809
  /**
49547
50810
  * Name
49548
50811
  */
@@ -49625,6 +50888,10 @@ export type MarketplaceResourcesCountData = {
49625
50888
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
49626
50889
  */
49627
50890
  query?: string;
50891
+ /**
50892
+ * Resource attributes (JSON)
50893
+ */
50894
+ resource_attributes?: string;
49628
50895
  /**
49629
50896
  * Restrict member access
49630
50897
  */
@@ -49814,6 +51081,10 @@ export type MarketplaceResourcesHistoryListData = {
49814
51081
  * Modified after
49815
51082
  */
49816
51083
  modified?: string;
51084
+ /**
51085
+ * Modified before
51086
+ */
51087
+ modified_before?: string;
49817
51088
  /**
49818
51089
  * Name
49819
51090
  */
@@ -49896,6 +51167,10 @@ export type MarketplaceResourcesHistoryListData = {
49896
51167
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
49897
51168
  */
49898
51169
  query?: string;
51170
+ /**
51171
+ * Resource attributes (JSON)
51172
+ */
51173
+ resource_attributes?: string;
49899
51174
  /**
49900
51175
  * Restrict member access
49901
51176
  */
@@ -50075,6 +51350,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
50075
51350
  };
50076
51351
  };
50077
51352
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
51353
+ export type MarketplaceResourcesSetEndDateData = {
51354
+ body?: ResourceEndDateRequest;
51355
+ path: {
51356
+ uuid: string;
51357
+ };
51358
+ query?: never;
51359
+ url: '/api/marketplace-resources/{uuid}/set_end_date/';
51360
+ };
51361
+ export type MarketplaceResourcesSetEndDateResponses = {
51362
+ /**
51363
+ * No response body
51364
+ */
51365
+ 200: unknown;
51366
+ };
50078
51367
  export type MarketplaceResourcesSetEndDateByStaffData = {
50079
51368
  body?: ResourceEndDateByProviderRequest;
50080
51369
  path: {
@@ -50239,6 +51528,10 @@ export type MarketplaceRobotAccountsListData = {
50239
51528
  * Created after
50240
51529
  */
50241
51530
  created?: string;
51531
+ /**
51532
+ * Created before
51533
+ */
51534
+ created_before?: string;
50242
51535
  /**
50243
51536
  * Customer UUID
50244
51537
  */
@@ -50248,6 +51541,10 @@ export type MarketplaceRobotAccountsListData = {
50248
51541
  * Modified after
50249
51542
  */
50250
51543
  modified?: string;
51544
+ /**
51545
+ * Modified before
51546
+ */
51547
+ modified_before?: string;
50251
51548
  /**
50252
51549
  * A page number within the paginated result set.
50253
51550
  */
@@ -50306,6 +51603,10 @@ export type MarketplaceRobotAccountsCountData = {
50306
51603
  * Created after
50307
51604
  */
50308
51605
  created?: string;
51606
+ /**
51607
+ * Created before
51608
+ */
51609
+ created_before?: string;
50309
51610
  /**
50310
51611
  * Customer UUID
50311
51612
  */
@@ -50314,6 +51615,10 @@ export type MarketplaceRobotAccountsCountData = {
50314
51615
  * Modified after
50315
51616
  */
50316
51617
  modified?: string;
51618
+ /**
51619
+ * Modified before
51620
+ */
51621
+ modified_before?: string;
50317
51622
  /**
50318
51623
  * A page number within the paginated result set.
50319
51624
  */
@@ -51110,6 +52415,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51110
52415
  * Created after
51111
52416
  */
51112
52417
  created?: string;
52418
+ /**
52419
+ * Created before
52420
+ */
52421
+ created_before?: string;
51113
52422
  /**
51114
52423
  * Multiple values may be separated by commas.
51115
52424
  */
@@ -51139,6 +52448,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51139
52448
  * Modified after
51140
52449
  */
51141
52450
  modified?: string;
52451
+ /**
52452
+ * Modified before
52453
+ */
52454
+ modified_before?: string;
51142
52455
  /**
51143
52456
  * Name
51144
52457
  */
@@ -51260,6 +52573,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51260
52573
  * Created after
51261
52574
  */
51262
52575
  created?: string;
52576
+ /**
52577
+ * Created before
52578
+ */
52579
+ created_before?: string;
51263
52580
  field?: Array<SshKeyFieldEnum>;
51264
52581
  fingerprint_md5?: string;
51265
52582
  fingerprint_sha256?: string;
@@ -51269,6 +52586,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51269
52586
  * Modified after
51270
52587
  */
51271
52588
  modified?: string;
52589
+ /**
52590
+ * Modified before
52591
+ */
52592
+ modified_before?: string;
51272
52593
  /**
51273
52594
  * Name
51274
52595
  */
@@ -51341,6 +52662,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51341
52662
  * Created after
51342
52663
  */
51343
52664
  created?: string;
52665
+ /**
52666
+ * Created before
52667
+ */
52668
+ created_before?: string;
51344
52669
  /**
51345
52670
  * Customer URL
51346
52671
  */
@@ -51370,6 +52695,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51370
52695
  * Modified after
51371
52696
  */
51372
52697
  modified?: string;
52698
+ /**
52699
+ * Modified before
52700
+ */
52701
+ modified_before?: string;
51373
52702
  /**
51374
52703
  * Name
51375
52704
  */
@@ -51483,6 +52812,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51483
52812
  * Created after
51484
52813
  */
51485
52814
  created?: string;
52815
+ /**
52816
+ * Created before
52817
+ */
52818
+ created_before?: string;
51486
52819
  expiration_time?: string;
51487
52820
  field?: Array<ProjectPermissionLogFieldEnum>;
51488
52821
  /**
@@ -51493,6 +52826,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51493
52826
  * Modified after
51494
52827
  */
51495
52828
  modified?: string;
52829
+ /**
52830
+ * Modified before
52831
+ */
52832
+ modified_before?: string;
51496
52833
  native_name?: string;
51497
52834
  /**
51498
52835
  * Ordering
@@ -51608,6 +52945,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51608
52945
  * Created after
51609
52946
  */
51610
52947
  created?: string;
52948
+ /**
52949
+ * Created before
52950
+ */
52951
+ created_before?: string;
51611
52952
  /**
51612
52953
  * Multiple values may be separated by commas.
51613
52954
  */
@@ -51637,6 +52978,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51637
52978
  * Modified after
51638
52979
  */
51639
52980
  modified?: string;
52981
+ /**
52982
+ * Modified before
52983
+ */
52984
+ modified_before?: string;
51640
52985
  /**
51641
52986
  * Name
51642
52987
  */
@@ -53371,6 +54716,9 @@ export type MarketplaceSoftwareTargetsListData = {
53371
54716
  * Number of results to return per page.
53372
54717
  */
53373
54718
  page_size?: number;
54719
+ /**
54720
+ * Filter targets by location/path (case-insensitive partial match)
54721
+ */
53374
54722
  path?: string;
53375
54723
  /**
53376
54724
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -53423,6 +54771,9 @@ export type MarketplaceSoftwareTargetsCountData = {
53423
54771
  * Number of results to return per page.
53424
54772
  */
53425
54773
  page_size?: number;
54774
+ /**
54775
+ * Filter targets by location/path (case-insensitive partial match)
54776
+ */
53426
54777
  path?: string;
53427
54778
  /**
53428
54779
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -53874,6 +55225,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
53874
55225
  body?: never;
53875
55226
  path?: never;
53876
55227
  query?: {
55228
+ /**
55229
+ * Limit number of results (e.g. top N offerings). No limit by default.
55230
+ */
55231
+ limit?: number;
53877
55232
  /**
53878
55233
  * A page number within the paginated result set.
53879
55234
  */
@@ -53893,6 +55248,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
53893
55248
  body?: never;
53894
55249
  path?: never;
53895
55250
  query?: {
55251
+ /**
55252
+ * Limit number of results (e.g. top N offerings). No limit by default.
55253
+ */
55254
+ limit?: number;
53896
55255
  /**
53897
55256
  * A page number within the paginated result set.
53898
55257
  */
@@ -54824,6 +56183,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
54824
56183
  */
54825
56184
  200: unknown;
54826
56185
  };
56186
+ export type MarketplaceStatsProjectCreationTrendListData = {
56187
+ body?: never;
56188
+ path?: never;
56189
+ query?: {
56190
+ /**
56191
+ * A page number within the paginated result set.
56192
+ */
56193
+ page?: number;
56194
+ /**
56195
+ * Number of results to return per page.
56196
+ */
56197
+ page_size?: number;
56198
+ };
56199
+ url: '/api/marketplace-stats/project_creation_trend/';
56200
+ };
56201
+ export type MarketplaceStatsProjectCreationTrendListResponses = {
56202
+ 200: Array<ProjectCreationTrend>;
56203
+ };
56204
+ export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
56205
+ export type MarketplaceStatsProjectCreationTrendCountData = {
56206
+ body?: never;
56207
+ path?: never;
56208
+ query?: {
56209
+ /**
56210
+ * A page number within the paginated result set.
56211
+ */
56212
+ page?: number;
56213
+ /**
56214
+ * Number of results to return per page.
56215
+ */
56216
+ page_size?: number;
56217
+ };
56218
+ url: '/api/marketplace-stats/project_creation_trend/';
56219
+ };
56220
+ export type MarketplaceStatsProjectCreationTrendCountResponses = {
56221
+ /**
56222
+ * No response body
56223
+ */
56224
+ 200: unknown;
56225
+ };
54827
56226
  export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
54828
56227
  body?: never;
54829
56228
  path?: never;
@@ -55008,6 +56407,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
55008
56407
  */
55009
56408
  200: unknown;
55010
56409
  };
56410
+ export type MarketplaceStatsResourceCreationTrendListData = {
56411
+ body?: never;
56412
+ path?: never;
56413
+ query?: {
56414
+ /**
56415
+ * A page number within the paginated result set.
56416
+ */
56417
+ page?: number;
56418
+ /**
56419
+ * Number of results to return per page.
56420
+ */
56421
+ page_size?: number;
56422
+ };
56423
+ url: '/api/marketplace-stats/resource_creation_trend/';
56424
+ };
56425
+ export type MarketplaceStatsResourceCreationTrendListResponses = {
56426
+ 200: Array<ProjectCreationTrend>;
56427
+ };
56428
+ export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
56429
+ export type MarketplaceStatsResourceCreationTrendCountData = {
56430
+ body?: never;
56431
+ path?: never;
56432
+ query?: {
56433
+ /**
56434
+ * A page number within the paginated result set.
56435
+ */
56436
+ page?: number;
56437
+ /**
56438
+ * Number of results to return per page.
56439
+ */
56440
+ page_size?: number;
56441
+ };
56442
+ url: '/api/marketplace-stats/resource_creation_trend/';
56443
+ };
56444
+ export type MarketplaceStatsResourceCreationTrendCountResponses = {
56445
+ /**
56446
+ * No response body
56447
+ */
56448
+ 200: unknown;
56449
+ };
55011
56450
  export type MarketplaceStatsResourceProvisioningStatsListData = {
55012
56451
  body?: never;
55013
56452
  path?: never;
@@ -55294,6 +56733,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
55294
56733
  */
55295
56734
  200: unknown;
55296
56735
  };
56736
+ export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
56737
+ body?: never;
56738
+ path?: never;
56739
+ query?: {
56740
+ /**
56741
+ * Number of top providers to return. Default is 5.
56742
+ */
56743
+ limit?: number;
56744
+ /**
56745
+ * A page number within the paginated result set.
56746
+ */
56747
+ page?: number;
56748
+ /**
56749
+ * Number of results to return per page.
56750
+ */
56751
+ page_size?: number;
56752
+ };
56753
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56754
+ };
56755
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
56756
+ 200: Array<TopServiceProviderByResources>;
56757
+ };
56758
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
56759
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
56760
+ body?: never;
56761
+ path?: never;
56762
+ query?: {
56763
+ /**
56764
+ * Number of top providers to return. Default is 5.
56765
+ */
56766
+ limit?: number;
56767
+ /**
56768
+ * A page number within the paginated result set.
56769
+ */
56770
+ page?: number;
56771
+ /**
56772
+ * Number of results to return per page.
56773
+ */
56774
+ page_size?: number;
56775
+ };
56776
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56777
+ };
56778
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
56779
+ /**
56780
+ * No response body
56781
+ */
56782
+ 200: unknown;
56783
+ };
55297
56784
  export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
55298
56785
  body?: never;
55299
56786
  path?: never;
@@ -55494,6 +56981,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
55494
56981
  */
55495
56982
  200: unknown;
55496
56983
  };
56984
+ export type MarketplaceStatsUserNationalityListData = {
56985
+ body?: never;
56986
+ path?: never;
56987
+ query?: {
56988
+ /**
56989
+ * A page number within the paginated result set.
56990
+ */
56991
+ page?: number;
56992
+ /**
56993
+ * Number of results to return per page.
56994
+ */
56995
+ page_size?: number;
56996
+ };
56997
+ url: '/api/marketplace-stats/user_nationality/';
56998
+ };
56999
+ export type MarketplaceStatsUserNationalityListResponses = {
57000
+ 200: Array<UserNationalityStats>;
57001
+ };
57002
+ export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
57003
+ export type MarketplaceStatsUserNationalityCountData = {
57004
+ body?: never;
57005
+ path?: never;
57006
+ query?: {
57007
+ /**
57008
+ * A page number within the paginated result set.
57009
+ */
57010
+ page?: number;
57011
+ /**
57012
+ * Number of results to return per page.
57013
+ */
57014
+ page_size?: number;
57015
+ };
57016
+ url: '/api/marketplace-stats/user_nationality/';
57017
+ };
57018
+ export type MarketplaceStatsUserNationalityCountResponses = {
57019
+ /**
57020
+ * No response body
57021
+ */
57022
+ 200: unknown;
57023
+ };
55497
57024
  export type MarketplaceStatsUserOrganizationCountListData = {
55498
57025
  body?: never;
55499
57026
  path?: never;
@@ -55574,6 +57101,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
55574
57101
  */
55575
57102
  200: unknown;
55576
57103
  };
57104
+ export type MarketplaceStatsUserResidenceCountryListData = {
57105
+ body?: never;
57106
+ path?: never;
57107
+ query?: {
57108
+ /**
57109
+ * A page number within the paginated result set.
57110
+ */
57111
+ page?: number;
57112
+ /**
57113
+ * Number of results to return per page.
57114
+ */
57115
+ page_size?: number;
57116
+ };
57117
+ url: '/api/marketplace-stats/user_residence_country/';
57118
+ };
57119
+ export type MarketplaceStatsUserResidenceCountryListResponses = {
57120
+ 200: Array<UserResidenceCountryStats>;
57121
+ };
57122
+ export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
57123
+ export type MarketplaceStatsUserResidenceCountryCountData = {
57124
+ body?: never;
57125
+ path?: never;
57126
+ query?: {
57127
+ /**
57128
+ * A page number within the paginated result set.
57129
+ */
57130
+ page?: number;
57131
+ /**
57132
+ * Number of results to return per page.
57133
+ */
57134
+ page_size?: number;
57135
+ };
57136
+ url: '/api/marketplace-stats/user_residence_country/';
57137
+ };
57138
+ export type MarketplaceStatsUserResidenceCountryCountResponses = {
57139
+ /**
57140
+ * No response body
57141
+ */
57142
+ 200: unknown;
57143
+ };
55577
57144
  export type MarketplaceTagsListData = {
55578
57145
  body?: never;
55579
57146
  path?: never;
@@ -58636,6 +60203,10 @@ export type OpenportalUnmanagedProjectsListData = {
58636
60203
  * Created after
58637
60204
  */
58638
60205
  created?: string;
60206
+ /**
60207
+ * Created before
60208
+ */
60209
+ created_before?: string;
58639
60210
  /**
58640
60211
  * Multiple values may be separated by commas.
58641
60212
  */
@@ -58669,6 +60240,10 @@ export type OpenportalUnmanagedProjectsListData = {
58669
60240
  * Modified after
58670
60241
  */
58671
60242
  modified?: string;
60243
+ /**
60244
+ * Modified before
60245
+ */
60246
+ modified_before?: string;
58672
60247
  /**
58673
60248
  * Name
58674
60249
  */
@@ -58739,6 +60314,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58739
60314
  * Created after
58740
60315
  */
58741
60316
  created?: string;
60317
+ /**
60318
+ * Created before
60319
+ */
60320
+ created_before?: string;
58742
60321
  /**
58743
60322
  * Multiple values may be separated by commas.
58744
60323
  */
@@ -58771,6 +60350,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58771
60350
  * Modified after
58772
60351
  */
58773
60352
  modified?: string;
60353
+ /**
60354
+ * Modified before
60355
+ */
60356
+ modified_before?: string;
58774
60357
  /**
58775
60358
  * Name
58776
60359
  */
@@ -66643,6 +68226,136 @@ export type ProjectCreditsUpdateResponses = {
66643
68226
  200: ProjectCredit;
66644
68227
  };
66645
68228
  export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
68229
+ export type ProjectEndDateChangeRequestsListData = {
68230
+ body?: never;
68231
+ path?: never;
68232
+ query?: {
68233
+ /**
68234
+ * Created by UUID
68235
+ */
68236
+ created_by_uuid?: string;
68237
+ /**
68238
+ * Customer UUID
68239
+ */
68240
+ customer_uuid?: string;
68241
+ /**
68242
+ * A page number within the paginated result set.
68243
+ */
68244
+ page?: number;
68245
+ /**
68246
+ * Number of results to return per page.
68247
+ */
68248
+ page_size?: number;
68249
+ /**
68250
+ * Project UUID
68251
+ */
68252
+ project_uuid?: string;
68253
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68254
+ };
68255
+ url: '/api/project-end-date-change-requests/';
68256
+ };
68257
+ export type ProjectEndDateChangeRequestsListResponses = {
68258
+ 200: Array<ProjectEndDateChangeRequest>;
68259
+ };
68260
+ export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
68261
+ export type ProjectEndDateChangeRequestsCountData = {
68262
+ body?: never;
68263
+ path?: never;
68264
+ query?: {
68265
+ /**
68266
+ * Created by UUID
68267
+ */
68268
+ created_by_uuid?: string;
68269
+ /**
68270
+ * Customer UUID
68271
+ */
68272
+ customer_uuid?: string;
68273
+ /**
68274
+ * A page number within the paginated result set.
68275
+ */
68276
+ page?: number;
68277
+ /**
68278
+ * Number of results to return per page.
68279
+ */
68280
+ page_size?: number;
68281
+ /**
68282
+ * Project UUID
68283
+ */
68284
+ project_uuid?: string;
68285
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68286
+ };
68287
+ url: '/api/project-end-date-change-requests/';
68288
+ };
68289
+ export type ProjectEndDateChangeRequestsCountResponses = {
68290
+ /**
68291
+ * No response body
68292
+ */
68293
+ 200: unknown;
68294
+ };
68295
+ export type ProjectEndDateChangeRequestsCreateData = {
68296
+ body: ProjectEndDateChangeRequestCreateRequest;
68297
+ path?: never;
68298
+ query?: never;
68299
+ url: '/api/project-end-date-change-requests/';
68300
+ };
68301
+ export type ProjectEndDateChangeRequestsCreateResponses = {
68302
+ 201: ProjectEndDateChangeRequestCreate;
68303
+ };
68304
+ export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
68305
+ export type ProjectEndDateChangeRequestsRetrieveData = {
68306
+ body?: never;
68307
+ path: {
68308
+ uuid: string;
68309
+ };
68310
+ query?: never;
68311
+ url: '/api/project-end-date-change-requests/{uuid}/';
68312
+ };
68313
+ export type ProjectEndDateChangeRequestsRetrieveResponses = {
68314
+ 200: ProjectEndDateChangeRequest;
68315
+ };
68316
+ export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
68317
+ export type ProjectEndDateChangeRequestsApproveData = {
68318
+ body?: ReviewCommentRequest;
68319
+ path: {
68320
+ uuid: string;
68321
+ };
68322
+ query?: never;
68323
+ url: '/api/project-end-date-change-requests/{uuid}/approve/';
68324
+ };
68325
+ export type ProjectEndDateChangeRequestsApproveResponses = {
68326
+ /**
68327
+ * No response body
68328
+ */
68329
+ 200: unknown;
68330
+ };
68331
+ export type ProjectEndDateChangeRequestsCancelData = {
68332
+ body?: never;
68333
+ path: {
68334
+ uuid: string;
68335
+ };
68336
+ query?: never;
68337
+ url: '/api/project-end-date-change-requests/{uuid}/cancel/';
68338
+ };
68339
+ export type ProjectEndDateChangeRequestsCancelResponses = {
68340
+ /**
68341
+ * No response body
68342
+ */
68343
+ 200: unknown;
68344
+ };
68345
+ export type ProjectEndDateChangeRequestsRejectData = {
68346
+ body?: ReviewCommentRequest;
68347
+ path: {
68348
+ uuid: string;
68349
+ };
68350
+ query?: never;
68351
+ url: '/api/project-end-date-change-requests/{uuid}/reject/';
68352
+ };
68353
+ export type ProjectEndDateChangeRequestsRejectResponses = {
68354
+ /**
68355
+ * No response body
68356
+ */
68357
+ 200: unknown;
68358
+ };
66646
68359
  export type ProjectPermissionsReviewsListData = {
66647
68360
  body?: never;
66648
68361
  path?: never;
@@ -66888,6 +68601,10 @@ export type ProjectsListData = {
66888
68601
  * Created after
66889
68602
  */
66890
68603
  created?: string;
68604
+ /**
68605
+ * Created before
68606
+ */
68607
+ created_before?: string;
66891
68608
  /**
66892
68609
  * Multiple values may be separated by commas.
66893
68610
  */
@@ -66921,6 +68638,10 @@ export type ProjectsListData = {
66921
68638
  * Modified after
66922
68639
  */
66923
68640
  modified?: string;
68641
+ /**
68642
+ * Modified before
68643
+ */
68644
+ modified_before?: string;
66924
68645
  /**
66925
68646
  * Name
66926
68647
  */
@@ -66991,6 +68712,10 @@ export type ProjectsCountData = {
66991
68712
  * Created after
66992
68713
  */
66993
68714
  created?: string;
68715
+ /**
68716
+ * Created before
68717
+ */
68718
+ created_before?: string;
66994
68719
  /**
66995
68720
  * Multiple values may be separated by commas.
66996
68721
  */
@@ -67023,6 +68748,10 @@ export type ProjectsCountData = {
67023
68748
  * Modified after
67024
68749
  */
67025
68750
  modified?: string;
68751
+ /**
68752
+ * Modified before
68753
+ */
68754
+ modified_before?: string;
67026
68755
  /**
67027
68756
  * Name
67028
68757
  */
@@ -77482,6 +79211,10 @@ export type UserPermissionsListData = {
77482
79211
  * Created after
77483
79212
  */
77484
79213
  created?: string;
79214
+ /**
79215
+ * Created before
79216
+ */
79217
+ created_before?: string;
77485
79218
  expiration_time?: string;
77486
79219
  /**
77487
79220
  * User full name contains
@@ -77491,6 +79224,10 @@ export type UserPermissionsListData = {
77491
79224
  * Modified after
77492
79225
  */
77493
79226
  modified?: string;
79227
+ /**
79228
+ * Modified before
79229
+ */
79230
+ modified_before?: string;
77494
79231
  native_name?: string;
77495
79232
  /**
77496
79233
  * Ordering
@@ -77548,6 +79285,10 @@ export type UserPermissionsCountData = {
77548
79285
  * Created after
77549
79286
  */
77550
79287
  created?: string;
79288
+ /**
79289
+ * Created before
79290
+ */
79291
+ created_before?: string;
77551
79292
  expiration_time?: string;
77552
79293
  /**
77553
79294
  * User full name contains
@@ -77557,6 +79298,10 @@ export type UserPermissionsCountData = {
77557
79298
  * Modified after
77558
79299
  */
77559
79300
  modified?: string;
79301
+ /**
79302
+ * Modified before
79303
+ */
79304
+ modified_before?: string;
77560
79305
  native_name?: string;
77561
79306
  /**
77562
79307
  * Ordering