waldur-js-client 8.0.7-dev.2 → 8.0.7-dev.21

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;
@@ -1273,6 +1274,12 @@ export type AssignmentItem = {
1273
1274
  * Number of times this proposal has been reassigned.
1274
1275
  */
1275
1276
  readonly reassign_count: number;
1277
+ /**
1278
+ * Reason for manager override of COI block.
1279
+ */
1280
+ readonly override_reason: string;
1281
+ readonly overridden_by_name: string;
1282
+ readonly overridden_at: string | null;
1276
1283
  readonly created: string;
1277
1284
  };
1278
1285
  export type AssignmentItemDeclineRequest = {
@@ -1437,12 +1444,57 @@ export type AttachmentRequest = {
1437
1444
  issue: string;
1438
1445
  file: Blob | File;
1439
1446
  };
1447
+ export type Attribute = {
1448
+ readonly url: string;
1449
+ readonly uuid: string;
1450
+ key: string;
1451
+ readonly created: string;
1452
+ title: string;
1453
+ section: string;
1454
+ readonly section_title: string;
1455
+ type: AttributeTypeEnum;
1456
+ /**
1457
+ * A value must be provided for the attribute.
1458
+ */
1459
+ required?: boolean;
1460
+ default?: unknown;
1461
+ };
1462
+ export type AttributeOption = {
1463
+ readonly url: string;
1464
+ readonly uuid: string;
1465
+ readonly id: number;
1466
+ key: string;
1467
+ title: string;
1468
+ attribute: string;
1469
+ readonly attribute_title: string;
1470
+ /**
1471
+ * Return True if this option is the default for its attribute.
1472
+ */
1473
+ readonly is_default: boolean;
1474
+ };
1475
+ export type AttributeOptionRequest = {
1476
+ key: string;
1477
+ title: string;
1478
+ attribute: string;
1479
+ };
1480
+ export type AttributeRequest = {
1481
+ key: string;
1482
+ title: string;
1483
+ section: string;
1484
+ type: AttributeTypeEnum;
1485
+ /**
1486
+ * A value must be provided for the attribute.
1487
+ */
1488
+ required?: boolean;
1489
+ default?: unknown;
1490
+ };
1440
1491
  export type AttributeSourceDetail = {
1441
1492
  source: string;
1442
1493
  timestamp: string;
1443
1494
  age_days: number;
1444
1495
  is_stale: boolean;
1445
1496
  };
1497
+ export type AttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
1446
1498
  export type AuthMethodEnum = 'api_token' | 'personal_access_token' | 'basic';
1447
1499
  export type AuthResult = {
1448
1500
  readonly uuid: string;
@@ -2329,7 +2381,11 @@ export type BookingResource = {
2329
2381
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
2330
2382
  */
2331
2383
  readonly project_end_date?: string | null;
2332
- readonly project_end_date_requested_by?: string;
2384
+ /**
2385
+ * Effective project end date including grace period. After this date, resources will be terminated.
2386
+ */
2387
+ readonly project_effective_end_date?: string | null;
2388
+ readonly project_end_date_requested_by?: string | null;
2333
2389
  readonly customer_uuid?: string;
2334
2390
  readonly customer_name?: string;
2335
2391
  readonly offering_slug?: string;
@@ -2838,7 +2894,7 @@ export type CallReviewerPool = {
2838
2894
  */
2839
2895
  expertise_match_score?: number | null;
2840
2896
  readonly invited_by_name: string;
2841
- readonly invitation_token: string;
2897
+ readonly invitation_link: string | null;
2842
2898
  readonly invitation_expires_at: string | null;
2843
2899
  readonly created: string;
2844
2900
  /**
@@ -2867,6 +2923,12 @@ export type CallReviewerPool = {
2867
2923
  * Count reviews in 'submitted' state.
2868
2924
  */
2869
2925
  readonly reviews_completed: number;
2926
+ /**
2927
+ * Reason for manager override of invitation status.
2928
+ */
2929
+ readonly override_reason: string;
2930
+ readonly overridden_by_name: string;
2931
+ readonly overridden_at: string | null;
2870
2932
  };
2871
2933
  export type CallReviewerPoolUpdate = {
2872
2934
  /**
@@ -3488,6 +3550,10 @@ export type ChatResponse = {
3488
3550
  * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3489
3551
  */
3490
3552
  projects?: Array<unknown>;
3553
+ /**
3554
+ * Available offering options [{uuid, name}]. Present when status='offering_form'.
3555
+ */
3556
+ offerings?: Array<unknown>;
3491
3557
  };
3492
3558
  export type ChatSession = {
3493
3559
  readonly uuid?: string;
@@ -4298,17 +4364,19 @@ export type ConstanceSettings = {
4298
4364
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4299
4365
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4300
4366
  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;
4367
+ AI_ASSISTANT_ENABLED?: boolean;
4368
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4369
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4370
+ AI_ASSISTANT_API_URL?: string;
4371
+ AI_ASSISTANT_API_TOKEN?: string;
4372
+ AI_ASSISTANT_MODEL?: string;
4373
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4374
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4375
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4376
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4377
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4378
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4379
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4312
4380
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4313
4381
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4314
4382
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4347,6 +4415,7 @@ export type ConstanceSettings = {
4347
4415
  ENABLE_PROJECT_DIGEST?: boolean;
4348
4416
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4349
4417
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4418
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4350
4419
  };
4351
4420
  export type ConstanceSettingsRequest = {
4352
4421
  SITE_NAME?: string;
@@ -4543,17 +4612,19 @@ export type ConstanceSettingsRequest = {
4543
4612
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4544
4613
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4545
4614
  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;
4615
+ AI_ASSISTANT_ENABLED?: boolean;
4616
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4617
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4618
+ AI_ASSISTANT_API_URL?: string;
4619
+ AI_ASSISTANT_API_TOKEN?: string;
4620
+ AI_ASSISTANT_MODEL?: string;
4621
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4622
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4623
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4624
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4625
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4626
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4627
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4557
4628
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4558
4629
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4559
4630
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4592,6 +4663,7 @@ export type ConstanceSettingsRequest = {
4592
4663
  ENABLE_PROJECT_DIGEST?: boolean;
4593
4664
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4594
4665
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4666
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4595
4667
  };
4596
4668
  export type ConsumptionStatisticsResponse = {
4597
4669
  total_records: number;
@@ -6240,6 +6312,7 @@ export type DryRunRequest = {
6240
6312
  };
6241
6313
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6242
6314
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
6315
+ 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
6316
  export type EligibilityCheck = {
6244
6317
  is_eligible: boolean;
6245
6318
  restrictions: Array<string>;
@@ -6311,7 +6384,7 @@ export type EventMetadataResponse = {
6311
6384
  * Map of event group keys to lists of event type enums from EventType
6312
6385
  */
6313
6386
  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'>;
6387
+ [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_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' | '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
6388
  };
6316
6389
  };
6317
6390
  export type EventStats = {
@@ -6390,7 +6463,7 @@ export type EventSubscriptionRequest = {
6390
6463
  */
6391
6464
  observable_objects?: unknown;
6392
6465
  };
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';
6466
+ 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_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' | '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
6467
  export type ExecuteActionErrorResponse = {
6395
6468
  error: string;
6396
6469
  };
@@ -6871,6 +6944,12 @@ export type FlavorResponse = {
6871
6944
  */
6872
6945
  disk: number;
6873
6946
  };
6947
+ export type ForceAcceptPoolRequest = {
6948
+ override_reason: string;
6949
+ };
6950
+ export type ForceUnblockRequest = {
6951
+ override_reason: string;
6952
+ };
6874
6953
  export type FreeipaProfile = {
6875
6954
  readonly uuid: string;
6876
6955
  /**
@@ -9858,6 +9937,8 @@ export type Message = {
9858
9937
  readonly thread: string;
9859
9938
  role: MessageRoleEnum;
9860
9939
  content: string;
9940
+ readonly content_display: string;
9941
+ readonly tool_calls: unknown;
9861
9942
  readonly sequence_index: number;
9862
9943
  readonly replaces: string | null;
9863
9944
  readonly created: string;
@@ -10049,9 +10130,10 @@ export type NestedAgentServiceRequest = {
10049
10130
  statistics?: unknown;
10050
10131
  };
10051
10132
  export type NestedAttribute = {
10133
+ readonly uuid?: string;
10052
10134
  key?: string;
10053
10135
  title?: string;
10054
- type?: NestedAttributeTypeEnum;
10136
+ type?: AttributeTypeEnum;
10055
10137
  options?: Array<NestedAttributeOption>;
10056
10138
  /**
10057
10139
  * A value must be provided for the attribute.
@@ -10060,8 +10142,13 @@ export type NestedAttribute = {
10060
10142
  default?: unknown;
10061
10143
  };
10062
10144
  export type NestedAttributeOption = {
10145
+ readonly uuid?: string;
10063
10146
  key?: string;
10064
10147
  title?: string;
10148
+ /**
10149
+ * Return True if this option is the default for its attribute.
10150
+ */
10151
+ readonly is_default?: boolean;
10065
10152
  };
10066
10153
  export type NestedAttributeOptionRequest = {
10067
10154
  key: string;
@@ -10070,7 +10157,7 @@ export type NestedAttributeOptionRequest = {
10070
10157
  export type NestedAttributeRequest = {
10071
10158
  key: string;
10072
10159
  title: string;
10073
- type: NestedAttributeTypeEnum;
10160
+ type: AttributeTypeEnum;
10074
10161
  options: Array<NestedAttributeOptionRequest>;
10075
10162
  /**
10076
10163
  * A value must be provided for the attribute.
@@ -10078,7 +10165,6 @@ export type NestedAttributeRequest = {
10078
10165
  required?: boolean;
10079
10166
  default?: unknown;
10080
10167
  };
10081
- export type NestedAttributeTypeEnum = 'boolean' | 'string' | 'text' | 'integer' | 'choice' | 'list';
10082
10168
  export type NestedCampaign = {
10083
10169
  readonly uuid?: string;
10084
10170
  name?: string;
@@ -10828,6 +10914,8 @@ export type Offering = {
10828
10914
  description?: string;
10829
10915
  full_description?: string;
10830
10916
  privacy_policy_link?: string;
10917
+ helpdesk_url?: string;
10918
+ documentation_url?: string;
10831
10919
  /**
10832
10920
  * Publicly accessible offering access URL
10833
10921
  */
@@ -10956,6 +11044,22 @@ export type OfferingComponent = {
10956
11044
  overage_component?: string | null;
10957
11045
  min_prepaid_duration?: number | null;
10958
11046
  max_prepaid_duration?: number | null;
11047
+ /**
11048
+ * 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).
11049
+ */
11050
+ prepaid_duration_step?: number | null;
11051
+ /**
11052
+ * Minimum number of months allowed for a renewal.
11053
+ */
11054
+ min_renewal_duration?: number | null;
11055
+ /**
11056
+ * Maximum number of months allowed for a renewal.
11057
+ */
11058
+ max_renewal_duration?: number | null;
11059
+ /**
11060
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11061
+ */
11062
+ renewal_duration_step?: number | null;
10959
11063
  };
10960
11064
  export type OfferingComponentLimitRequest = {
10961
11065
  /**
@@ -11002,6 +11106,22 @@ export type OfferingComponentRequest = {
11002
11106
  overage_component?: string | null;
11003
11107
  min_prepaid_duration?: number | null;
11004
11108
  max_prepaid_duration?: number | null;
11109
+ /**
11110
+ * 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).
11111
+ */
11112
+ prepaid_duration_step?: number | null;
11113
+ /**
11114
+ * Minimum number of months allowed for a renewal.
11115
+ */
11116
+ min_renewal_duration?: number | null;
11117
+ /**
11118
+ * Maximum number of months allowed for a renewal.
11119
+ */
11120
+ max_renewal_duration?: number | null;
11121
+ /**
11122
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11123
+ */
11124
+ renewal_duration_step?: number | null;
11005
11125
  };
11006
11126
  export type OfferingComponentStat = {
11007
11127
  readonly period: string;
@@ -11060,6 +11180,8 @@ export type OfferingCreateRequest = {
11060
11180
  description?: string;
11061
11181
  full_description?: string;
11062
11182
  privacy_policy_link?: string;
11183
+ helpdesk_url?: string;
11184
+ documentation_url?: string;
11063
11185
  /**
11064
11186
  * Publicly accessible offering access URL
11065
11187
  */
@@ -11458,6 +11580,8 @@ export type OfferingOverviewUpdateRequest = {
11458
11580
  description?: string;
11459
11581
  full_description?: string;
11460
11582
  privacy_policy_link?: string;
11583
+ helpdesk_url?: string;
11584
+ documentation_url?: string;
11461
11585
  /**
11462
11586
  * Publicly accessible offering access URL
11463
11587
  */
@@ -15006,6 +15130,22 @@ export type PatchedAssignmentItemRequest = {
15006
15130
  */
15007
15131
  decline_reason?: string;
15008
15132
  };
15133
+ export type PatchedAttributeOptionRequest = {
15134
+ key?: string;
15135
+ title?: string;
15136
+ attribute?: string;
15137
+ };
15138
+ export type PatchedAttributeRequest = {
15139
+ key?: string;
15140
+ title?: string;
15141
+ section?: string;
15142
+ type?: AttributeTypeEnum;
15143
+ /**
15144
+ * A value must be provided for the attribute.
15145
+ */
15146
+ required?: boolean;
15147
+ default?: unknown;
15148
+ };
15009
15149
  export type PatchedAwsInstanceRequest = {
15010
15150
  name?: string;
15011
15151
  description?: string;
@@ -17274,6 +17414,10 @@ export type Project = {
17274
17414
  */
17275
17415
  end_date?: string | null;
17276
17416
  readonly end_date_requested_by?: string | null;
17417
+ /**
17418
+ * Timestamp of the last end_date change.
17419
+ */
17420
+ readonly end_date_updated_at?: string | null;
17277
17421
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17278
17422
  /**
17279
17423
  * Human-readable label for the OECD FOS 2007 classification code
@@ -17306,6 +17450,14 @@ export type Project = {
17306
17450
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17307
17451
  */
17308
17452
  grace_period_days?: number | null;
17453
+ /**
17454
+ * Effective end date including grace period. After this date, project resources will be terminated.
17455
+ */
17456
+ readonly effective_end_date?: string | null;
17457
+ /**
17458
+ * True if the project is past its end date but still within the grace period.
17459
+ */
17460
+ readonly is_in_grace_period?: boolean;
17309
17461
  user_email_patterns?: unknown;
17310
17462
  user_affiliations?: unknown;
17311
17463
  /**
@@ -17366,6 +17518,16 @@ export type ProjectClassificationSummary = {
17366
17518
  */
17367
17519
  industry_projects: number;
17368
17520
  };
17521
+ export type ProjectCreationTrend = {
17522
+ /**
17523
+ * Month in YYYY-MM format
17524
+ */
17525
+ month: string;
17526
+ /**
17527
+ * Number of items created
17528
+ */
17529
+ count: number;
17530
+ };
17369
17531
  export type ProjectCredit = {
17370
17532
  readonly uuid: string;
17371
17533
  readonly url: string;
@@ -17456,6 +17618,61 @@ export type ProjectDigestPreviewResponse = {
17456
17618
  html_body: string;
17457
17619
  text_body: string;
17458
17620
  };
17621
+ export type ProjectEndDateChangeRequest = {
17622
+ readonly url: string;
17623
+ readonly uuid: string;
17624
+ readonly state: string;
17625
+ project: string;
17626
+ readonly project_uuid: string;
17627
+ readonly project_name: string;
17628
+ readonly customer_uuid: string;
17629
+ readonly customer_name: string;
17630
+ /**
17631
+ * The requested new end date for the project
17632
+ */
17633
+ requested_end_date: string;
17634
+ /**
17635
+ * Optional comment from the requester
17636
+ */
17637
+ comment?: string | null;
17638
+ readonly created: string;
17639
+ readonly created_by_uuid: string | null;
17640
+ readonly created_by_full_name: string | null;
17641
+ /**
17642
+ * Timestamp when the review was completed
17643
+ */
17644
+ readonly reviewed_at: string | null;
17645
+ readonly reviewed_by_uuid: string | null;
17646
+ readonly reviewed_by_full_name: string | null;
17647
+ /**
17648
+ * Optional comment provided during review
17649
+ */
17650
+ review_comment?: string | null;
17651
+ };
17652
+ export type ProjectEndDateChangeRequestCreate = {
17653
+ project: string;
17654
+ /**
17655
+ * The requested new end date for the project
17656
+ */
17657
+ requested_end_date: string;
17658
+ /**
17659
+ * Optional comment from the requester
17660
+ */
17661
+ comment?: string | null;
17662
+ readonly uuid: string;
17663
+ readonly state: string;
17664
+ };
17665
+ export type ProjectEndDateChangeRequestCreateRequest = {
17666
+ project: string;
17667
+ /**
17668
+ * The requested new end date for the project
17669
+ */
17670
+ requested_end_date: string;
17671
+ /**
17672
+ * Optional comment from the requester
17673
+ */
17674
+ comment?: string | null;
17675
+ };
17459
17676
  export type ProjectEstimatedCostPolicy = {
17460
17677
  readonly uuid: string;
17461
17678
  readonly url: string;
@@ -18245,6 +18462,8 @@ export type ProviderOfferingDetails = {
18245
18462
  description?: string;
18246
18463
  full_description?: string;
18247
18464
  privacy_policy_link?: string;
18465
+ helpdesk_url?: string;
18466
+ documentation_url?: string;
18248
18467
  /**
18249
18468
  * Publicly accessible offering access URL
18250
18469
  */
@@ -18347,6 +18566,8 @@ export type ProviderOfferingDetailsRequest = {
18347
18566
  description?: string;
18348
18567
  full_description?: string;
18349
18568
  privacy_policy_link?: string;
18569
+ helpdesk_url?: string;
18570
+ documentation_url?: string;
18350
18571
  /**
18351
18572
  * Publicly accessible offering access URL
18352
18573
  */
@@ -18651,6 +18872,8 @@ export type PublicOfferingDetails = {
18651
18872
  description?: string;
18652
18873
  full_description?: string;
18653
18874
  privacy_policy_link?: string;
18875
+ helpdesk_url?: string;
18876
+ documentation_url?: string;
18654
18877
  /**
18655
18878
  * Publicly accessible offering access URL
18656
18879
  */
@@ -20527,7 +20750,11 @@ export type Resource = {
20527
20750
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
20528
20751
  */
20529
20752
  readonly project_end_date?: string | null;
20530
- readonly project_end_date_requested_by?: string;
20753
+ /**
20754
+ * Effective project end date including grace period. After this date, resources will be terminated.
20755
+ */
20756
+ readonly project_effective_end_date?: string | null;
20757
+ readonly project_end_date_requested_by?: string | null;
20531
20758
  readonly customer_uuid?: string;
20532
20759
  readonly customer_name?: string;
20533
20760
  readonly offering_slug?: string;
@@ -20604,12 +20831,21 @@ export type ResourceBackendMetadataRequest = {
20604
20831
  export type ResourceDownscaledRequest = {
20605
20832
  downscaled?: boolean;
20606
20833
  };
20834
+ export type ResourceEffectiveIdRequest = {
20835
+ effective_id?: string;
20836
+ };
20607
20837
  export type ResourceEndDateByProviderRequest = {
20608
20838
  /**
20609
20839
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
20610
20840
  */
20611
20841
  end_date?: string | null;
20612
20842
  };
20843
+ export type ResourceEndDateRequest = {
20844
+ /**
20845
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
20846
+ */
20847
+ end_date?: string | null;
20848
+ };
20613
20849
  export type ResourceKeycloakScopesRequest = {
20614
20850
  /**
20615
20851
  * Pre-configured scope options for this resource.
@@ -23747,6 +23983,24 @@ export type TopQueue = {
23747
23983
  */
23748
23984
  readonly consumers: number;
23749
23985
  };
23986
+ export type TopServiceProviderByResources = {
23987
+ /**
23988
+ * UUID of the service provider
23989
+ */
23990
+ customer_uuid: string;
23991
+ /**
23992
+ * Name of the service provider
23993
+ */
23994
+ customer_name: string;
23995
+ /**
23996
+ * Number of active resources
23997
+ */
23998
+ resources_count: number;
23999
+ /**
24000
+ * Number of distinct projects
24001
+ */
24002
+ projects_count: number;
24003
+ };
23750
24004
  export type TotalCustomerCost = {
23751
24005
  readonly total: number;
23752
24006
  readonly price: number;
@@ -23857,6 +24111,22 @@ export type UpdateOfferingComponentRequest = {
23857
24111
  overage_component?: string | null;
23858
24112
  min_prepaid_duration?: number | null;
23859
24113
  max_prepaid_duration?: number | null;
24114
+ /**
24115
+ * 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).
24116
+ */
24117
+ prepaid_duration_step?: number | null;
24118
+ /**
24119
+ * Minimum number of months allowed for a renewal.
24120
+ */
24121
+ min_renewal_duration?: number | null;
24122
+ /**
24123
+ * Maximum number of months allowed for a renewal.
24124
+ */
24125
+ max_renewal_duration?: number | null;
24126
+ /**
24127
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
24128
+ */
24129
+ renewal_duration_step?: number | null;
23860
24130
  };
23861
24131
  export type UpdatePoolMember = {
23862
24132
  name?: string;
@@ -24222,6 +24492,16 @@ export type UserLanguageCount = {
24222
24492
  language: string;
24223
24493
  count: number;
24224
24494
  };
24495
+ export type UserNationalityStats = {
24496
+ /**
24497
+ * Nationality code
24498
+ */
24499
+ nationality: string;
24500
+ /**
24501
+ * Number of users
24502
+ */
24503
+ count: number;
24504
+ };
24225
24505
  export type UserOfferingConsent = {
24226
24506
  readonly uuid: string;
24227
24507
  readonly user_uuid: string;
@@ -24370,6 +24650,16 @@ export type UserRequest = {
24370
24650
  */
24371
24651
  managed_isds?: unknown;
24372
24652
  };
24653
+ export type UserResidenceCountryStats = {
24654
+ /**
24655
+ * Country of residence code
24656
+ */
24657
+ country_of_residence: string;
24658
+ /**
24659
+ * Number of users
24660
+ */
24661
+ count: number;
24662
+ };
24373
24663
  export type UserRoleCreateRequest = {
24374
24664
  role: string;
24375
24665
  user: string;
@@ -24965,6 +25255,10 @@ export type OpenStackCreateInstancePortRequest = {
24965
25255
  */
24966
25256
  subnet?: string | null;
24967
25257
  port?: string;
25258
+ /**
25259
+ * If True, security groups and rules will be applied to this port
25260
+ */
25261
+ port_security_enabled?: boolean;
24968
25262
  };
24969
25263
  export type OpenStackDataVolumeRequest = {
24970
25264
  size: number;
@@ -25574,6 +25868,8 @@ export type OfferingCreateRequestForm = {
25574
25868
  description?: string;
25575
25869
  full_description?: string;
25576
25870
  privacy_policy_link?: string;
25871
+ helpdesk_url?: string;
25872
+ documentation_url?: string;
25577
25873
  /**
25578
25874
  * Publicly accessible offering access URL
25579
25875
  */
@@ -25627,6 +25923,8 @@ export type OfferingCreateRequestMultipart = {
25627
25923
  description?: string;
25628
25924
  full_description?: string;
25629
25925
  privacy_policy_link?: string;
25926
+ helpdesk_url?: string;
25927
+ documentation_url?: string;
25630
25928
  /**
25631
25929
  * Publicly accessible offering access URL
25632
25930
  */
@@ -26176,17 +26474,19 @@ export type ConstanceSettingsRequestForm = {
26176
26474
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26177
26475
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26178
26476
  ONBOARDING_BREG_API_URL?: string;
26179
- LLM_CHAT_ENABLED?: boolean;
26180
- LLM_INFERENCES_BACKEND_TYPE?: string;
26181
- LLM_INFERENCES_API_URL?: string;
26182
- LLM_INFERENCES_API_TOKEN?: string;
26183
- LLM_INFERENCES_MODEL?: string;
26184
- LLM_TOKEN_LIMIT_DAILY?: number;
26185
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26186
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26187
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26188
- LLM_CHAT_HISTORY_LIMIT?: number;
26189
- LLM_INJECTION_ALLOWLIST?: string;
26477
+ AI_ASSISTANT_ENABLED?: boolean;
26478
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26479
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26480
+ AI_ASSISTANT_API_URL?: string;
26481
+ AI_ASSISTANT_API_TOKEN?: string;
26482
+ AI_ASSISTANT_MODEL?: string;
26483
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26484
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26485
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26486
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26487
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26488
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26489
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26190
26490
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26191
26491
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26192
26492
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26225,6 +26525,7 @@ export type ConstanceSettingsRequestForm = {
26225
26525
  ENABLE_PROJECT_DIGEST?: boolean;
26226
26526
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26227
26527
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26528
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26228
26529
  };
26229
26530
  export type ConstanceSettingsRequestMultipart = {
26230
26531
  SITE_NAME?: string;
@@ -26421,17 +26722,19 @@ export type ConstanceSettingsRequestMultipart = {
26421
26722
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26422
26723
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26423
26724
  ONBOARDING_BREG_API_URL?: string;
26424
- LLM_CHAT_ENABLED?: boolean;
26425
- LLM_INFERENCES_BACKEND_TYPE?: string;
26426
- LLM_INFERENCES_API_URL?: string;
26427
- LLM_INFERENCES_API_TOKEN?: string;
26428
- LLM_INFERENCES_MODEL?: string;
26429
- LLM_TOKEN_LIMIT_DAILY?: number;
26430
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26431
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26432
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26433
- LLM_CHAT_HISTORY_LIMIT?: number;
26434
- LLM_INJECTION_ALLOWLIST?: string;
26725
+ AI_ASSISTANT_ENABLED?: boolean;
26726
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26727
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26728
+ AI_ASSISTANT_API_URL?: string;
26729
+ AI_ASSISTANT_API_TOKEN?: string;
26730
+ AI_ASSISTANT_MODEL?: string;
26731
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26732
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26733
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26734
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26735
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26736
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26737
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26435
26738
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26436
26739
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26437
26740
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26470,6 +26773,7 @@ export type ConstanceSettingsRequestMultipart = {
26470
26773
  ENABLE_PROJECT_DIGEST?: boolean;
26471
26774
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26472
26775
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26776
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26473
26777
  };
26474
26778
  export type PaymentRequestForm = {
26475
26779
  profile: string;
@@ -26895,8 +27199,8 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
26895
27199
  export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | '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' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
26896
27200
  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';
26897
27201
  export type BackendResourceReqOEnum = '-created' | 'created';
26898
- 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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | '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';
26899
- 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';
27202
+ 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';
27203
+ 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';
26900
27204
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
26901
27205
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
26902
27206
  export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
@@ -26931,7 +27235,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
26931
27235
  export type SshKeyOEnum = '-name' | 'name';
26932
27236
  export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
26933
27237
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
26934
- 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';
27238
+ 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';
26935
27239
  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';
26936
27240
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
26937
27241
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
@@ -26952,13 +27256,13 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
26952
27256
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
26953
27257
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
26954
27258
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
26955
- 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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
27259
+ 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';
26956
27260
  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';
26957
27261
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
26958
- 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';
27262
+ 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';
26959
27263
  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';
26960
27264
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
26961
- 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' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | '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';
27265
+ 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';
26962
27266
  export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
26963
27267
  export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
26964
27268
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -28761,6 +29065,18 @@ export type AssignmentItemsDeclineResponses = {
28761
29065
  200: AssignmentItemResponse;
28762
29066
  };
28763
29067
  export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
29068
+ export type AssignmentItemsForceUnblockData = {
29069
+ body: ForceUnblockRequest;
29070
+ path: {
29071
+ uuid: string;
29072
+ };
29073
+ query?: never;
29074
+ url: '/api/assignment-items/{uuid}/force-unblock/';
29075
+ };
29076
+ export type AssignmentItemsForceUnblockResponses = {
29077
+ 200: AssignmentItem;
29078
+ };
29079
+ export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
28764
29080
  export type AssignmentItemsReassignData = {
28765
29081
  body: ReassignItemRequest;
28766
29082
  path: {
@@ -31350,6 +31666,10 @@ export type BackendResourceRequestsListData = {
31350
31666
  * Created after
31351
31667
  */
31352
31668
  created?: string;
31669
+ /**
31670
+ * Created before
31671
+ */
31672
+ created_before?: string;
31353
31673
  /**
31354
31674
  * Modified after
31355
31675
  */
@@ -31358,6 +31678,10 @@ export type BackendResourceRequestsListData = {
31358
31678
  * Modified after
31359
31679
  */
31360
31680
  modified?: string;
31681
+ /**
31682
+ * Modified before
31683
+ */
31684
+ modified_before?: string;
31361
31685
  /**
31362
31686
  * Ordering
31363
31687
  *
@@ -31401,6 +31725,10 @@ export type BackendResourceRequestsCountData = {
31401
31725
  * Created after
31402
31726
  */
31403
31727
  created?: string;
31728
+ /**
31729
+ * Created before
31730
+ */
31731
+ created_before?: string;
31404
31732
  /**
31405
31733
  * Modified after
31406
31734
  */
@@ -31409,6 +31737,10 @@ export type BackendResourceRequestsCountData = {
31409
31737
  * Modified after
31410
31738
  */
31411
31739
  modified?: string;
31740
+ /**
31741
+ * Modified before
31742
+ */
31743
+ modified_before?: string;
31412
31744
  /**
31413
31745
  * Ordering
31414
31746
  *
@@ -31522,10 +31854,18 @@ export type BackendResourcesListData = {
31522
31854
  * Created after
31523
31855
  */
31524
31856
  created?: string;
31857
+ /**
31858
+ * Created before
31859
+ */
31860
+ created_before?: string;
31525
31861
  /**
31526
31862
  * Modified after
31527
31863
  */
31528
31864
  modified?: string;
31865
+ /**
31866
+ * Modified before
31867
+ */
31868
+ modified_before?: string;
31529
31869
  /**
31530
31870
  * Name
31531
31871
  */
@@ -31575,10 +31915,18 @@ export type BackendResourcesCountData = {
31575
31915
  * Created after
31576
31916
  */
31577
31917
  created?: string;
31918
+ /**
31919
+ * Created before
31920
+ */
31921
+ created_before?: string;
31578
31922
  /**
31579
31923
  * Modified after
31580
31924
  */
31581
31925
  modified?: string;
31926
+ /**
31927
+ * Modified before
31928
+ */
31929
+ modified_before?: string;
31582
31930
  /**
31583
31931
  * Name
31584
31932
  */
@@ -31801,6 +32149,10 @@ export type BookingResourcesListData = {
31801
32149
  * Created after
31802
32150
  */
31803
32151
  created?: string;
32152
+ /**
32153
+ * Created before
32154
+ */
32155
+ created_before?: string;
31804
32156
  /**
31805
32157
  * Customer URL
31806
32158
  */
@@ -31838,6 +32190,10 @@ export type BookingResourcesListData = {
31838
32190
  * Modified after
31839
32191
  */
31840
32192
  modified?: string;
32193
+ /**
32194
+ * Modified before
32195
+ */
32196
+ modified_before?: string;
31841
32197
  /**
31842
32198
  * Name
31843
32199
  */
@@ -31978,6 +32334,10 @@ export type BookingResourcesCountData = {
31978
32334
  * Created after
31979
32335
  */
31980
32336
  created?: string;
32337
+ /**
32338
+ * Created before
32339
+ */
32340
+ created_before?: string;
31981
32341
  /**
31982
32342
  * Customer URL
31983
32343
  */
@@ -32014,6 +32374,10 @@ export type BookingResourcesCountData = {
32014
32374
  * Modified after
32015
32375
  */
32016
32376
  modified?: string;
32377
+ /**
32378
+ * Modified before
32379
+ */
32380
+ modified_before?: string;
32017
32381
  /**
32018
32382
  * Name
32019
32383
  */
@@ -33004,6 +33368,18 @@ export type CallReviewerPoolsDeclineResponses = {
33004
33368
  200: InvitationDeclineResponse;
33005
33369
  };
33006
33370
  export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
33371
+ export type CallReviewerPoolsForceAcceptData = {
33372
+ body: ForceAcceptPoolRequest;
33373
+ path: {
33374
+ uuid: string;
33375
+ };
33376
+ query?: never;
33377
+ url: '/api/call-reviewer-pools/{uuid}/force-accept/';
33378
+ };
33379
+ export type CallReviewerPoolsForceAcceptResponses = {
33380
+ 200: CallReviewerPool;
33381
+ };
33382
+ export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
33007
33383
  export type CallRoundsListData = {
33008
33384
  body?: never;
33009
33385
  path?: never;
@@ -38780,6 +39156,10 @@ export type KeysListData = {
38780
39156
  * Created after
38781
39157
  */
38782
39158
  created?: string;
39159
+ /**
39160
+ * Created before
39161
+ */
39162
+ created_before?: string;
38783
39163
  field?: Array<SshKeyFieldEnum>;
38784
39164
  fingerprint_md5?: string;
38785
39165
  fingerprint_sha256?: string;
@@ -38789,6 +39169,10 @@ export type KeysListData = {
38789
39169
  * Modified after
38790
39170
  */
38791
39171
  modified?: string;
39172
+ /**
39173
+ * Modified before
39174
+ */
39175
+ modified_before?: string;
38792
39176
  /**
38793
39177
  * Name
38794
39178
  */
@@ -38834,6 +39218,10 @@ export type KeysCountData = {
38834
39218
  * Created after
38835
39219
  */
38836
39220
  created?: string;
39221
+ /**
39222
+ * Created before
39223
+ */
39224
+ created_before?: string;
38837
39225
  fingerprint_md5?: string;
38838
39226
  fingerprint_sha256?: string;
38839
39227
  fingerprint_sha512?: string;
@@ -38842,6 +39230,10 @@ export type KeysCountData = {
38842
39230
  * Modified after
38843
39231
  */
38844
39232
  modified?: string;
39233
+ /**
39234
+ * Modified before
39235
+ */
39236
+ modified_before?: string;
38845
39237
  /**
38846
39238
  * Name
38847
39239
  */
@@ -38946,6 +39338,10 @@ export type KeysHistoryListData = {
38946
39338
  * Modified after
38947
39339
  */
38948
39340
  modified?: string;
39341
+ /**
39342
+ * Modified before
39343
+ */
39344
+ modified_before?: string;
38949
39345
  /**
38950
39346
  * Name
38951
39347
  */
@@ -39851,6 +40247,224 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
39851
40247
  200: RancherNode;
39852
40248
  };
39853
40249
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
40250
+ export type MarketplaceAttributeOptionsListData = {
40251
+ body?: never;
40252
+ path?: never;
40253
+ query?: {
40254
+ /**
40255
+ * Attribute URL
40256
+ */
40257
+ attribute?: string;
40258
+ /**
40259
+ * A page number within the paginated result set.
40260
+ */
40261
+ page?: number;
40262
+ /**
40263
+ * Number of results to return per page.
40264
+ */
40265
+ page_size?: number;
40266
+ };
40267
+ url: '/api/marketplace-attribute-options/';
40268
+ };
40269
+ export type MarketplaceAttributeOptionsListResponses = {
40270
+ 200: Array<AttributeOption>;
40271
+ };
40272
+ export type MarketplaceAttributeOptionsListResponse = MarketplaceAttributeOptionsListResponses[keyof MarketplaceAttributeOptionsListResponses];
40273
+ export type MarketplaceAttributeOptionsCountData = {
40274
+ body?: never;
40275
+ path?: never;
40276
+ query?: {
40277
+ /**
40278
+ * Attribute URL
40279
+ */
40280
+ attribute?: string;
40281
+ /**
40282
+ * A page number within the paginated result set.
40283
+ */
40284
+ page?: number;
40285
+ /**
40286
+ * Number of results to return per page.
40287
+ */
40288
+ page_size?: number;
40289
+ };
40290
+ url: '/api/marketplace-attribute-options/';
40291
+ };
40292
+ export type MarketplaceAttributeOptionsCountResponses = {
40293
+ /**
40294
+ * No response body
40295
+ */
40296
+ 200: unknown;
40297
+ };
40298
+ export type MarketplaceAttributeOptionsCreateData = {
40299
+ body: AttributeOptionRequest;
40300
+ path?: never;
40301
+ query?: never;
40302
+ url: '/api/marketplace-attribute-options/';
40303
+ };
40304
+ export type MarketplaceAttributeOptionsCreateResponses = {
40305
+ 201: AttributeOption;
40306
+ };
40307
+ export type MarketplaceAttributeOptionsCreateResponse = MarketplaceAttributeOptionsCreateResponses[keyof MarketplaceAttributeOptionsCreateResponses];
40308
+ export type MarketplaceAttributeOptionsDestroyData = {
40309
+ body?: never;
40310
+ path: {
40311
+ uuid: string;
40312
+ };
40313
+ query?: never;
40314
+ url: '/api/marketplace-attribute-options/{uuid}/';
40315
+ };
40316
+ export type MarketplaceAttributeOptionsDestroyResponses = {
40317
+ /**
40318
+ * No response body
40319
+ */
40320
+ 204: void;
40321
+ };
40322
+ export type MarketplaceAttributeOptionsDestroyResponse = MarketplaceAttributeOptionsDestroyResponses[keyof MarketplaceAttributeOptionsDestroyResponses];
40323
+ export type MarketplaceAttributeOptionsRetrieveData = {
40324
+ body?: never;
40325
+ path: {
40326
+ uuid: string;
40327
+ };
40328
+ query?: never;
40329
+ url: '/api/marketplace-attribute-options/{uuid}/';
40330
+ };
40331
+ export type MarketplaceAttributeOptionsRetrieveResponses = {
40332
+ 200: AttributeOption;
40333
+ };
40334
+ export type MarketplaceAttributeOptionsRetrieveResponse = MarketplaceAttributeOptionsRetrieveResponses[keyof MarketplaceAttributeOptionsRetrieveResponses];
40335
+ export type MarketplaceAttributeOptionsPartialUpdateData = {
40336
+ body?: PatchedAttributeOptionRequest;
40337
+ path: {
40338
+ uuid: string;
40339
+ };
40340
+ query?: never;
40341
+ url: '/api/marketplace-attribute-options/{uuid}/';
40342
+ };
40343
+ export type MarketplaceAttributeOptionsPartialUpdateResponses = {
40344
+ 200: AttributeOption;
40345
+ };
40346
+ export type MarketplaceAttributeOptionsPartialUpdateResponse = MarketplaceAttributeOptionsPartialUpdateResponses[keyof MarketplaceAttributeOptionsPartialUpdateResponses];
40347
+ export type MarketplaceAttributeOptionsUpdateData = {
40348
+ body: AttributeOptionRequest;
40349
+ path: {
40350
+ uuid: string;
40351
+ };
40352
+ query?: never;
40353
+ url: '/api/marketplace-attribute-options/{uuid}/';
40354
+ };
40355
+ export type MarketplaceAttributeOptionsUpdateResponses = {
40356
+ 200: AttributeOption;
40357
+ };
40358
+ export type MarketplaceAttributeOptionsUpdateResponse = MarketplaceAttributeOptionsUpdateResponses[keyof MarketplaceAttributeOptionsUpdateResponses];
40359
+ export type MarketplaceAttributesListData = {
40360
+ body?: never;
40361
+ path?: never;
40362
+ query?: {
40363
+ /**
40364
+ * A page number within the paginated result set.
40365
+ */
40366
+ page?: number;
40367
+ /**
40368
+ * Number of results to return per page.
40369
+ */
40370
+ page_size?: number;
40371
+ /**
40372
+ * Section URL
40373
+ */
40374
+ section?: string;
40375
+ };
40376
+ url: '/api/marketplace-attributes/';
40377
+ };
40378
+ export type MarketplaceAttributesListResponses = {
40379
+ 200: Array<Attribute>;
40380
+ };
40381
+ export type MarketplaceAttributesListResponse = MarketplaceAttributesListResponses[keyof MarketplaceAttributesListResponses];
40382
+ export type MarketplaceAttributesCountData = {
40383
+ body?: never;
40384
+ path?: never;
40385
+ query?: {
40386
+ /**
40387
+ * A page number within the paginated result set.
40388
+ */
40389
+ page?: number;
40390
+ /**
40391
+ * Number of results to return per page.
40392
+ */
40393
+ page_size?: number;
40394
+ /**
40395
+ * Section URL
40396
+ */
40397
+ section?: string;
40398
+ };
40399
+ url: '/api/marketplace-attributes/';
40400
+ };
40401
+ export type MarketplaceAttributesCountResponses = {
40402
+ /**
40403
+ * No response body
40404
+ */
40405
+ 200: unknown;
40406
+ };
40407
+ export type MarketplaceAttributesCreateData = {
40408
+ body: AttributeRequest;
40409
+ path?: never;
40410
+ query?: never;
40411
+ url: '/api/marketplace-attributes/';
40412
+ };
40413
+ export type MarketplaceAttributesCreateResponses = {
40414
+ 201: Attribute;
40415
+ };
40416
+ export type MarketplaceAttributesCreateResponse = MarketplaceAttributesCreateResponses[keyof MarketplaceAttributesCreateResponses];
40417
+ export type MarketplaceAttributesDestroyData = {
40418
+ body?: never;
40419
+ path: {
40420
+ uuid: string;
40421
+ };
40422
+ query?: never;
40423
+ url: '/api/marketplace-attributes/{uuid}/';
40424
+ };
40425
+ export type MarketplaceAttributesDestroyResponses = {
40426
+ /**
40427
+ * No response body
40428
+ */
40429
+ 204: void;
40430
+ };
40431
+ export type MarketplaceAttributesDestroyResponse = MarketplaceAttributesDestroyResponses[keyof MarketplaceAttributesDestroyResponses];
40432
+ export type MarketplaceAttributesRetrieveData = {
40433
+ body?: never;
40434
+ path: {
40435
+ uuid: string;
40436
+ };
40437
+ query?: never;
40438
+ url: '/api/marketplace-attributes/{uuid}/';
40439
+ };
40440
+ export type MarketplaceAttributesRetrieveResponses = {
40441
+ 200: Attribute;
40442
+ };
40443
+ export type MarketplaceAttributesRetrieveResponse = MarketplaceAttributesRetrieveResponses[keyof MarketplaceAttributesRetrieveResponses];
40444
+ export type MarketplaceAttributesPartialUpdateData = {
40445
+ body?: PatchedAttributeRequest;
40446
+ path: {
40447
+ uuid: string;
40448
+ };
40449
+ query?: never;
40450
+ url: '/api/marketplace-attributes/{uuid}/';
40451
+ };
40452
+ export type MarketplaceAttributesPartialUpdateResponses = {
40453
+ 200: Attribute;
40454
+ };
40455
+ export type MarketplaceAttributesPartialUpdateResponse = MarketplaceAttributesPartialUpdateResponses[keyof MarketplaceAttributesPartialUpdateResponses];
40456
+ export type MarketplaceAttributesUpdateData = {
40457
+ body: AttributeRequest;
40458
+ path: {
40459
+ uuid: string;
40460
+ };
40461
+ query?: never;
40462
+ url: '/api/marketplace-attributes/{uuid}/';
40463
+ };
40464
+ export type MarketplaceAttributesUpdateResponses = {
40465
+ 200: Attribute;
40466
+ };
40467
+ export type MarketplaceAttributesUpdateResponse = MarketplaceAttributesUpdateResponses[keyof MarketplaceAttributesUpdateResponses];
39854
40468
  export type MarketplaceBookingsListData = {
39855
40469
  body?: never;
39856
40470
  path: {
@@ -41069,6 +41683,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
41069
41683
  200: CourseAccount;
41070
41684
  };
41071
41685
  export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
41686
+ export type MarketplaceCourseAccountsRetryData = {
41687
+ body?: never;
41688
+ path: {
41689
+ uuid: string;
41690
+ };
41691
+ query?: never;
41692
+ url: '/api/marketplace-course-accounts/{uuid}/retry/';
41693
+ };
41694
+ export type MarketplaceCourseAccountsRetryResponses = {
41695
+ 202: CourseAccount;
41696
+ };
41697
+ export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
41072
41698
  export type MarketplaceCourseAccountsCreateBulkData = {
41073
41699
  body: CourseAccountsBulkCreateRequest;
41074
41700
  path?: never;
@@ -42030,6 +42656,10 @@ export type MarketplaceOfferingPermissionsListData = {
42030
42656
  * Created after
42031
42657
  */
42032
42658
  created?: string;
42659
+ /**
42660
+ * Created before
42661
+ */
42662
+ created_before?: string;
42033
42663
  customer?: string;
42034
42664
  /**
42035
42665
  * User full name contains
@@ -42039,6 +42669,10 @@ export type MarketplaceOfferingPermissionsListData = {
42039
42669
  * Modified after
42040
42670
  */
42041
42671
  modified?: string;
42672
+ /**
42673
+ * Modified before
42674
+ */
42675
+ modified_before?: string;
42042
42676
  native_name?: string;
42043
42677
  /**
42044
42678
  * Ordering
@@ -42097,6 +42731,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42097
42731
  * Created after
42098
42732
  */
42099
42733
  created?: string;
42734
+ /**
42735
+ * Created before
42736
+ */
42737
+ created_before?: string;
42100
42738
  customer?: string;
42101
42739
  /**
42102
42740
  * User full name contains
@@ -42106,6 +42744,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42106
42744
  * Modified after
42107
42745
  */
42108
42746
  modified?: string;
42747
+ /**
42748
+ * Modified before
42749
+ */
42750
+ modified_before?: string;
42109
42751
  native_name?: string;
42110
42752
  /**
42111
42753
  * Ordering
@@ -42166,6 +42808,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42166
42808
  * Created after
42167
42809
  */
42168
42810
  created?: string;
42811
+ /**
42812
+ * Created before
42813
+ */
42814
+ created_before?: string;
42169
42815
  customer?: string;
42170
42816
  /**
42171
42817
  * User full name contains
@@ -42175,6 +42821,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42175
42821
  * Modified after
42176
42822
  */
42177
42823
  modified?: string;
42824
+ /**
42825
+ * Modified before
42826
+ */
42827
+ modified_before?: string;
42178
42828
  native_name?: string;
42179
42829
  /**
42180
42830
  * Ordering
@@ -42233,6 +42883,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42233
42883
  * Created after
42234
42884
  */
42235
42885
  created?: string;
42886
+ /**
42887
+ * Created before
42888
+ */
42889
+ created_before?: string;
42236
42890
  customer?: string;
42237
42891
  /**
42238
42892
  * User full name contains
@@ -42242,6 +42896,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42242
42896
  * Modified after
42243
42897
  */
42244
42898
  modified?: string;
42899
+ /**
42900
+ * Modified before
42901
+ */
42902
+ modified_before?: string;
42245
42903
  native_name?: string;
42246
42904
  /**
42247
42905
  * Ordering
@@ -42684,11 +43342,19 @@ export type MarketplaceOfferingUserChecklistCompletionsListData = {
42684
43342
  * Created after
42685
43343
  */
42686
43344
  created?: string;
43345
+ /**
43346
+ * Created before
43347
+ */
43348
+ created_before?: string;
42687
43349
  is_completed?: boolean;
42688
43350
  /**
42689
43351
  * Modified after
42690
43352
  */
42691
43353
  modified?: string;
43354
+ /**
43355
+ * Modified before
43356
+ */
43357
+ modified_before?: string;
42692
43358
  /**
42693
43359
  * Ordering
42694
43360
  *
@@ -42726,11 +43392,19 @@ export type MarketplaceOfferingUserChecklistCompletionsCountData = {
42726
43392
  * Created after
42727
43393
  */
42728
43394
  created?: string;
43395
+ /**
43396
+ * Created before
43397
+ */
43398
+ created_before?: string;
42729
43399
  is_completed?: boolean;
42730
43400
  /**
42731
43401
  * Modified after
42732
43402
  */
42733
43403
  modified?: string;
43404
+ /**
43405
+ * Modified before
43406
+ */
43407
+ modified_before?: string;
42734
43408
  /**
42735
43409
  * Ordering
42736
43410
  *
@@ -42906,6 +43580,10 @@ export type MarketplaceOfferingUsersListData = {
42906
43580
  * Created after
42907
43581
  */
42908
43582
  created?: string;
43583
+ /**
43584
+ * Created before
43585
+ */
43586
+ created_before?: string;
42909
43587
  field?: Array<OfferingUserFieldEnum>;
42910
43588
  /**
42911
43589
  * User has complete profile for the offering
@@ -42923,6 +43601,10 @@ export type MarketplaceOfferingUsersListData = {
42923
43601
  * Modified after
42924
43602
  */
42925
43603
  modified?: string;
43604
+ /**
43605
+ * Modified before
43606
+ */
43607
+ modified_before?: string;
42926
43608
  /**
42927
43609
  * Ordering
42928
43610
  *
@@ -42984,6 +43666,10 @@ export type MarketplaceOfferingUsersCountData = {
42984
43666
  * Created after
42985
43667
  */
42986
43668
  created?: string;
43669
+ /**
43670
+ * Created before
43671
+ */
43672
+ created_before?: string;
42987
43673
  /**
42988
43674
  * User has complete profile for the offering
42989
43675
  */
@@ -43000,6 +43686,10 @@ export type MarketplaceOfferingUsersCountData = {
43000
43686
  * Modified after
43001
43687
  */
43002
43688
  modified?: string;
43689
+ /**
43690
+ * Modified before
43691
+ */
43692
+ modified_before?: string;
43003
43693
  /**
43004
43694
  * Ordering
43005
43695
  *
@@ -43485,6 +44175,10 @@ export type MarketplaceOrdersListData = {
43485
44175
  * Created after
43486
44176
  */
43487
44177
  created?: string;
44178
+ /**
44179
+ * Created before
44180
+ */
44181
+ created_before?: string;
43488
44182
  /**
43489
44183
  * Customer UUID
43490
44184
  */
@@ -43494,6 +44188,10 @@ export type MarketplaceOrdersListData = {
43494
44188
  * Modified after
43495
44189
  */
43496
44190
  modified?: string;
44191
+ /**
44192
+ * Modified before
44193
+ */
44194
+ modified_before?: string;
43497
44195
  /**
43498
44196
  * Ordering
43499
44197
  *
@@ -43589,6 +44287,10 @@ export type MarketplaceOrdersCountData = {
43589
44287
  * Created after
43590
44288
  */
43591
44289
  created?: string;
44290
+ /**
44291
+ * Created before
44292
+ */
44293
+ created_before?: string;
43592
44294
  /**
43593
44295
  * Customer UUID
43594
44296
  */
@@ -43597,6 +44299,10 @@ export type MarketplaceOrdersCountData = {
43597
44299
  * Modified after
43598
44300
  */
43599
44301
  modified?: string;
44302
+ /**
44303
+ * Modified before
44304
+ */
44305
+ modified_before?: string;
43600
44306
  /**
43601
44307
  * Ordering
43602
44308
  *
@@ -43830,6 +44536,20 @@ export type MarketplaceOrdersRejectByProviderResponses = {
43830
44536
  */
43831
44537
  200: unknown;
43832
44538
  };
44539
+ export type MarketplaceOrdersRetryData = {
44540
+ body?: never;
44541
+ path: {
44542
+ uuid: string;
44543
+ };
44544
+ query?: never;
44545
+ url: '/api/marketplace-orders/{uuid}/retry/';
44546
+ };
44547
+ export type MarketplaceOrdersRetryResponses = {
44548
+ /**
44549
+ * No response body
44550
+ */
44551
+ 200: unknown;
44552
+ };
43833
44553
  export type MarketplaceOrdersSetBackendIdData = {
43834
44554
  body: OrderBackendIdRequest;
43835
44555
  path: {
@@ -44802,6 +45522,10 @@ export type MarketplaceProviderOfferingsListData = {
44802
45522
  * Created after
44803
45523
  */
44804
45524
  created?: string;
45525
+ /**
45526
+ * Created before
45527
+ */
45528
+ created_before?: string;
44805
45529
  /**
44806
45530
  * Customer URL
44807
45531
  */
@@ -44835,6 +45559,10 @@ export type MarketplaceProviderOfferingsListData = {
44835
45559
  * Modified after
44836
45560
  */
44837
45561
  modified?: string;
45562
+ /**
45563
+ * Modified before
45564
+ */
45565
+ modified_before?: string;
44838
45566
  /**
44839
45567
  * Name
44840
45568
  */
@@ -44971,6 +45699,10 @@ export type MarketplaceProviderOfferingsCountData = {
44971
45699
  * Created after
44972
45700
  */
44973
45701
  created?: string;
45702
+ /**
45703
+ * Created before
45704
+ */
45705
+ created_before?: string;
44974
45706
  /**
44975
45707
  * Customer URL
44976
45708
  */
@@ -45003,6 +45735,10 @@ export type MarketplaceProviderOfferingsCountData = {
45003
45735
  * Modified after
45004
45736
  */
45005
45737
  modified?: string;
45738
+ /**
45739
+ * Modified before
45740
+ */
45741
+ modified_before?: string;
45006
45742
  /**
45007
45743
  * Name
45008
45744
  */
@@ -45272,6 +46008,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45272
46008
  * Created after
45273
46009
  */
45274
46010
  created?: string;
46011
+ /**
46012
+ * Created before
46013
+ */
46014
+ created_before?: string;
45275
46015
  /**
45276
46016
  * Customer URL
45277
46017
  */
@@ -45308,6 +46048,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45308
46048
  * Modified after
45309
46049
  */
45310
46050
  modified?: string;
46051
+ /**
46052
+ * Modified before
46053
+ */
46054
+ modified_before?: string;
45311
46055
  /**
45312
46056
  * Name
45313
46057
  */
@@ -45451,6 +46195,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45451
46195
  * Created after
45452
46196
  */
45453
46197
  created?: string;
46198
+ /**
46199
+ * Created before
46200
+ */
46201
+ created_before?: string;
45454
46202
  /**
45455
46203
  * Customer URL
45456
46204
  */
@@ -45487,6 +46235,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45487
46235
  * Modified after
45488
46236
  */
45489
46237
  modified?: string;
46238
+ /**
46239
+ * Modified before
46240
+ */
46241
+ modified_before?: string;
45490
46242
  /**
45491
46243
  * Name
45492
46244
  */
@@ -45643,6 +46395,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45643
46395
  * Created after
45644
46396
  */
45645
46397
  created?: string;
46398
+ /**
46399
+ * Created before
46400
+ */
46401
+ created_before?: string;
45646
46402
  /**
45647
46403
  * Customer URL
45648
46404
  */
@@ -45676,6 +46432,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45676
46432
  * Modified after
45677
46433
  */
45678
46434
  modified?: string;
46435
+ /**
46436
+ * Modified before
46437
+ */
46438
+ modified_before?: string;
45679
46439
  /**
45680
46440
  * Name
45681
46441
  */
@@ -45994,6 +46754,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
45994
46754
  * Modified after
45995
46755
  */
45996
46756
  modified?: string;
46757
+ /**
46758
+ * Modified before
46759
+ */
46760
+ modified_before?: string;
45997
46761
  /**
45998
46762
  * Name
45999
46763
  */
@@ -46191,6 +46955,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46191
46955
  * Created after
46192
46956
  */
46193
46957
  created?: string;
46958
+ /**
46959
+ * Created before
46960
+ */
46961
+ created_before?: string;
46194
46962
  /**
46195
46963
  * Customer URL
46196
46964
  */
@@ -46223,6 +46991,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46223
46991
  * Modified after
46224
46992
  */
46225
46993
  modified?: string;
46994
+ /**
46995
+ * Modified before
46996
+ */
46997
+ modified_before?: string;
46226
46998
  /**
46227
46999
  * Name
46228
47000
  */
@@ -46383,6 +47155,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46383
47155
  * Created after
46384
47156
  */
46385
47157
  created?: string;
47158
+ /**
47159
+ * Created before
47160
+ */
47161
+ created_before?: string;
46386
47162
  /**
46387
47163
  * Customer URL
46388
47164
  */
@@ -46415,6 +47191,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46415
47191
  * Modified after
46416
47192
  */
46417
47193
  modified?: string;
47194
+ /**
47195
+ * Modified before
47196
+ */
47197
+ modified_before?: string;
46418
47198
  /**
46419
47199
  * Name
46420
47200
  */
@@ -46575,6 +47355,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46575
47355
  * Created after
46576
47356
  */
46577
47357
  created?: string;
47358
+ /**
47359
+ * Created before
47360
+ */
47361
+ created_before?: string;
46578
47362
  /**
46579
47363
  * Customer URL
46580
47364
  */
@@ -46607,6 +47391,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46607
47391
  * Modified after
46608
47392
  */
46609
47393
  modified?: string;
47394
+ /**
47395
+ * Modified before
47396
+ */
47397
+ modified_before?: string;
46610
47398
  /**
46611
47399
  * Name
46612
47400
  */
@@ -47310,6 +48098,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47310
48098
  * Created after
47311
48099
  */
47312
48100
  created?: string;
48101
+ /**
48102
+ * Created before
48103
+ */
48104
+ created_before?: string;
47313
48105
  /**
47314
48106
  * Customer URL
47315
48107
  */
@@ -47338,6 +48130,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47338
48130
  * Modified after
47339
48131
  */
47340
48132
  modified?: string;
48133
+ /**
48134
+ * Modified before
48135
+ */
48136
+ modified_before?: string;
47341
48137
  /**
47342
48138
  * Name
47343
48139
  */
@@ -47474,6 +48270,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47474
48270
  * Created after
47475
48271
  */
47476
48272
  created?: string;
48273
+ /**
48274
+ * Created before
48275
+ */
48276
+ created_before?: string;
47477
48277
  /**
47478
48278
  * Customer URL
47479
48279
  */
@@ -47502,6 +48302,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47502
48302
  * Modified after
47503
48303
  */
47504
48304
  modified?: string;
48305
+ /**
48306
+ * Modified before
48307
+ */
48308
+ modified_before?: string;
47505
48309
  /**
47506
48310
  * Name
47507
48311
  */
@@ -47637,6 +48441,10 @@ export type MarketplaceProviderResourcesListData = {
47637
48441
  * Created after
47638
48442
  */
47639
48443
  created?: string;
48444
+ /**
48445
+ * Created before
48446
+ */
48447
+ created_before?: string;
47640
48448
  /**
47641
48449
  * Customer URL
47642
48450
  */
@@ -47674,6 +48482,10 @@ export type MarketplaceProviderResourcesListData = {
47674
48482
  * Modified after
47675
48483
  */
47676
48484
  modified?: string;
48485
+ /**
48486
+ * Modified before
48487
+ */
48488
+ modified_before?: string;
47677
48489
  /**
47678
48490
  * Name
47679
48491
  */
@@ -47817,6 +48629,10 @@ export type MarketplaceProviderResourcesCountData = {
47817
48629
  * Created after
47818
48630
  */
47819
48631
  created?: string;
48632
+ /**
48633
+ * Created before
48634
+ */
48635
+ created_before?: string;
47820
48636
  /**
47821
48637
  * Customer URL
47822
48638
  */
@@ -47853,6 +48669,10 @@ export type MarketplaceProviderResourcesCountData = {
47853
48669
  * Modified after
47854
48670
  */
47855
48671
  modified?: string;
48672
+ /**
48673
+ * Modified before
48674
+ */
48675
+ modified_before?: string;
47856
48676
  /**
47857
48677
  * Name
47858
48678
  */
@@ -48112,6 +48932,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48112
48932
  * Modified after
48113
48933
  */
48114
48934
  modified?: string;
48935
+ /**
48936
+ * Modified before
48937
+ */
48938
+ modified_before?: string;
48115
48939
  /**
48116
48940
  * Name
48117
48941
  */
@@ -48415,6 +49239,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
48415
49239
  };
48416
49240
  };
48417
49241
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
49242
+ export type MarketplaceProviderResourcesSetEffectiveIdData = {
49243
+ body?: ResourceEffectiveIdRequest;
49244
+ path: {
49245
+ uuid: string;
49246
+ };
49247
+ query?: never;
49248
+ url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
49249
+ };
49250
+ export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
49251
+ 200: ResourceResponseStatus;
49252
+ };
49253
+ export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
49254
+ export type MarketplaceProviderResourcesSetEndDateData = {
49255
+ body?: ResourceEndDateRequest;
49256
+ path: {
49257
+ uuid: string;
49258
+ };
49259
+ query?: never;
49260
+ url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
49261
+ };
49262
+ export type MarketplaceProviderResourcesSetEndDateResponses = {
49263
+ /**
49264
+ * No response body
49265
+ */
49266
+ 200: unknown;
49267
+ };
48418
49268
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
48419
49269
  body?: ResourceEndDateByProviderRequest;
48420
49270
  path: {
@@ -48666,6 +49516,10 @@ export type MarketplacePublicOfferingsListData = {
48666
49516
  * Created after
48667
49517
  */
48668
49518
  created?: string;
49519
+ /**
49520
+ * Created before
49521
+ */
49522
+ created_before?: string;
48669
49523
  /**
48670
49524
  * Customer URL
48671
49525
  */
@@ -48695,6 +49549,10 @@ export type MarketplacePublicOfferingsListData = {
48695
49549
  * Modified after
48696
49550
  */
48697
49551
  modified?: string;
49552
+ /**
49553
+ * Modified before
49554
+ */
49555
+ modified_before?: string;
48698
49556
  /**
48699
49557
  * Name
48700
49558
  */
@@ -48831,6 +49689,10 @@ export type MarketplacePublicOfferingsCountData = {
48831
49689
  * Created after
48832
49690
  */
48833
49691
  created?: string;
49692
+ /**
49693
+ * Created before
49694
+ */
49695
+ created_before?: string;
48834
49696
  /**
48835
49697
  * Customer URL
48836
49698
  */
@@ -48859,6 +49721,10 @@ export type MarketplacePublicOfferingsCountData = {
48859
49721
  * Modified after
48860
49722
  */
48861
49723
  modified?: string;
49724
+ /**
49725
+ * Modified before
49726
+ */
49727
+ modified_before?: string;
48862
49728
  /**
48863
49729
  * Name
48864
49730
  */
@@ -49311,6 +50177,10 @@ export type MarketplaceResourcesListData = {
49311
50177
  * Created after
49312
50178
  */
49313
50179
  created?: string;
50180
+ /**
50181
+ * Created before
50182
+ */
50183
+ created_before?: string;
49314
50184
  /**
49315
50185
  * Customer URL
49316
50186
  */
@@ -49348,6 +50218,10 @@ export type MarketplaceResourcesListData = {
49348
50218
  * Modified after
49349
50219
  */
49350
50220
  modified?: string;
50221
+ /**
50222
+ * Modified before
50223
+ */
50224
+ modified_before?: string;
49351
50225
  /**
49352
50226
  * Name
49353
50227
  */
@@ -49491,6 +50365,10 @@ export type MarketplaceResourcesCountData = {
49491
50365
  * Created after
49492
50366
  */
49493
50367
  created?: string;
50368
+ /**
50369
+ * Created before
50370
+ */
50371
+ created_before?: string;
49494
50372
  /**
49495
50373
  * Customer URL
49496
50374
  */
@@ -49527,6 +50405,10 @@ export type MarketplaceResourcesCountData = {
49527
50405
  * Modified after
49528
50406
  */
49529
50407
  modified?: string;
50408
+ /**
50409
+ * Modified before
50410
+ */
50411
+ modified_before?: string;
49530
50412
  /**
49531
50413
  * Name
49532
50414
  */
@@ -49798,6 +50680,10 @@ export type MarketplaceResourcesHistoryListData = {
49798
50680
  * Modified after
49799
50681
  */
49800
50682
  modified?: string;
50683
+ /**
50684
+ * Modified before
50685
+ */
50686
+ modified_before?: string;
49801
50687
  /**
49802
50688
  * Name
49803
50689
  */
@@ -50059,6 +50945,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
50059
50945
  };
50060
50946
  };
50061
50947
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
50948
+ export type MarketplaceResourcesSetEndDateData = {
50949
+ body?: ResourceEndDateRequest;
50950
+ path: {
50951
+ uuid: string;
50952
+ };
50953
+ query?: never;
50954
+ url: '/api/marketplace-resources/{uuid}/set_end_date/';
50955
+ };
50956
+ export type MarketplaceResourcesSetEndDateResponses = {
50957
+ /**
50958
+ * No response body
50959
+ */
50960
+ 200: unknown;
50961
+ };
50062
50962
  export type MarketplaceResourcesSetEndDateByStaffData = {
50063
50963
  body?: ResourceEndDateByProviderRequest;
50064
50964
  path: {
@@ -50223,6 +51123,10 @@ export type MarketplaceRobotAccountsListData = {
50223
51123
  * Created after
50224
51124
  */
50225
51125
  created?: string;
51126
+ /**
51127
+ * Created before
51128
+ */
51129
+ created_before?: string;
50226
51130
  /**
50227
51131
  * Customer UUID
50228
51132
  */
@@ -50232,6 +51136,10 @@ export type MarketplaceRobotAccountsListData = {
50232
51136
  * Modified after
50233
51137
  */
50234
51138
  modified?: string;
51139
+ /**
51140
+ * Modified before
51141
+ */
51142
+ modified_before?: string;
50235
51143
  /**
50236
51144
  * A page number within the paginated result set.
50237
51145
  */
@@ -50256,6 +51164,10 @@ export type MarketplaceRobotAccountsListData = {
50256
51164
  * Resource UUID
50257
51165
  */
50258
51166
  resource_uuid?: string;
51167
+ /**
51168
+ * Responsible user UUID
51169
+ */
51170
+ responsible_user_uuid?: string;
50259
51171
  /**
50260
51172
  * Robot account state
50261
51173
  *
@@ -50263,6 +51175,14 @@ export type MarketplaceRobotAccountsListData = {
50263
51175
  */
50264
51176
  state?: RemoteResourceSyncStatusRemoteStateEnum;
50265
51177
  type?: string;
51178
+ /**
51179
+ * Connected user email contains
51180
+ */
51181
+ user_email?: string;
51182
+ /**
51183
+ * Username contains
51184
+ */
51185
+ username?: string;
50266
51186
  };
50267
51187
  url: '/api/marketplace-robot-accounts/';
50268
51188
  };
@@ -50278,6 +51198,10 @@ export type MarketplaceRobotAccountsCountData = {
50278
51198
  * Created after
50279
51199
  */
50280
51200
  created?: string;
51201
+ /**
51202
+ * Created before
51203
+ */
51204
+ created_before?: string;
50281
51205
  /**
50282
51206
  * Customer UUID
50283
51207
  */
@@ -50286,6 +51210,10 @@ export type MarketplaceRobotAccountsCountData = {
50286
51210
  * Modified after
50287
51211
  */
50288
51212
  modified?: string;
51213
+ /**
51214
+ * Modified before
51215
+ */
51216
+ modified_before?: string;
50289
51217
  /**
50290
51218
  * A page number within the paginated result set.
50291
51219
  */
@@ -50310,6 +51238,10 @@ export type MarketplaceRobotAccountsCountData = {
50310
51238
  * Resource UUID
50311
51239
  */
50312
51240
  resource_uuid?: string;
51241
+ /**
51242
+ * Responsible user UUID
51243
+ */
51244
+ responsible_user_uuid?: string;
50313
51245
  /**
50314
51246
  * Robot account state
50315
51247
  *
@@ -50317,6 +51249,14 @@ export type MarketplaceRobotAccountsCountData = {
50317
51249
  */
50318
51250
  state?: RemoteResourceSyncStatusRemoteStateEnum;
50319
51251
  type?: string;
51252
+ /**
51253
+ * Connected user email contains
51254
+ */
51255
+ user_email?: string;
51256
+ /**
51257
+ * Username contains
51258
+ */
51259
+ username?: string;
50320
51260
  };
50321
51261
  url: '/api/marketplace-robot-accounts/';
50322
51262
  };
@@ -51070,6 +52010,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51070
52010
  * Created after
51071
52011
  */
51072
52012
  created?: string;
52013
+ /**
52014
+ * Created before
52015
+ */
52016
+ created_before?: string;
51073
52017
  /**
51074
52018
  * Multiple values may be separated by commas.
51075
52019
  */
@@ -51099,6 +52043,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51099
52043
  * Modified after
51100
52044
  */
51101
52045
  modified?: string;
52046
+ /**
52047
+ * Modified before
52048
+ */
52049
+ modified_before?: string;
51102
52050
  /**
51103
52051
  * Name
51104
52052
  */
@@ -51220,6 +52168,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51220
52168
  * Created after
51221
52169
  */
51222
52170
  created?: string;
52171
+ /**
52172
+ * Created before
52173
+ */
52174
+ created_before?: string;
51223
52175
  field?: Array<SshKeyFieldEnum>;
51224
52176
  fingerprint_md5?: string;
51225
52177
  fingerprint_sha256?: string;
@@ -51229,6 +52181,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51229
52181
  * Modified after
51230
52182
  */
51231
52183
  modified?: string;
52184
+ /**
52185
+ * Modified before
52186
+ */
52187
+ modified_before?: string;
51232
52188
  /**
51233
52189
  * Name
51234
52190
  */
@@ -51301,6 +52257,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51301
52257
  * Created after
51302
52258
  */
51303
52259
  created?: string;
52260
+ /**
52261
+ * Created before
52262
+ */
52263
+ created_before?: string;
51304
52264
  /**
51305
52265
  * Customer URL
51306
52266
  */
@@ -51330,6 +52290,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51330
52290
  * Modified after
51331
52291
  */
51332
52292
  modified?: string;
52293
+ /**
52294
+ * Modified before
52295
+ */
52296
+ modified_before?: string;
51333
52297
  /**
51334
52298
  * Name
51335
52299
  */
@@ -51443,6 +52407,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51443
52407
  * Created after
51444
52408
  */
51445
52409
  created?: string;
52410
+ /**
52411
+ * Created before
52412
+ */
52413
+ created_before?: string;
51446
52414
  expiration_time?: string;
51447
52415
  field?: Array<ProjectPermissionLogFieldEnum>;
51448
52416
  /**
@@ -51453,6 +52421,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51453
52421
  * Modified after
51454
52422
  */
51455
52423
  modified?: string;
52424
+ /**
52425
+ * Modified before
52426
+ */
52427
+ modified_before?: string;
51456
52428
  native_name?: string;
51457
52429
  /**
51458
52430
  * Ordering
@@ -51568,6 +52540,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51568
52540
  * Created after
51569
52541
  */
51570
52542
  created?: string;
52543
+ /**
52544
+ * Created before
52545
+ */
52546
+ created_before?: string;
51571
52547
  /**
51572
52548
  * Multiple values may be separated by commas.
51573
52549
  */
@@ -51597,6 +52573,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51597
52573
  * Modified after
51598
52574
  */
51599
52575
  modified?: string;
52576
+ /**
52577
+ * Modified before
52578
+ */
52579
+ modified_before?: string;
51600
52580
  /**
51601
52581
  * Name
51602
52582
  */
@@ -53834,6 +54814,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
53834
54814
  body?: never;
53835
54815
  path?: never;
53836
54816
  query?: {
54817
+ /**
54818
+ * Limit number of results (e.g. top N offerings). No limit by default.
54819
+ */
54820
+ limit?: number;
53837
54821
  /**
53838
54822
  * A page number within the paginated result set.
53839
54823
  */
@@ -53853,6 +54837,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
53853
54837
  body?: never;
53854
54838
  path?: never;
53855
54839
  query?: {
54840
+ /**
54841
+ * Limit number of results (e.g. top N offerings). No limit by default.
54842
+ */
54843
+ limit?: number;
53856
54844
  /**
53857
54845
  * A page number within the paginated result set.
53858
54846
  */
@@ -54784,6 +55772,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
54784
55772
  */
54785
55773
  200: unknown;
54786
55774
  };
55775
+ export type MarketplaceStatsProjectCreationTrendListData = {
55776
+ body?: never;
55777
+ path?: never;
55778
+ query?: {
55779
+ /**
55780
+ * A page number within the paginated result set.
55781
+ */
55782
+ page?: number;
55783
+ /**
55784
+ * Number of results to return per page.
55785
+ */
55786
+ page_size?: number;
55787
+ };
55788
+ url: '/api/marketplace-stats/project_creation_trend/';
55789
+ };
55790
+ export type MarketplaceStatsProjectCreationTrendListResponses = {
55791
+ 200: Array<ProjectCreationTrend>;
55792
+ };
55793
+ export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
55794
+ export type MarketplaceStatsProjectCreationTrendCountData = {
55795
+ body?: never;
55796
+ path?: never;
55797
+ query?: {
55798
+ /**
55799
+ * A page number within the paginated result set.
55800
+ */
55801
+ page?: number;
55802
+ /**
55803
+ * Number of results to return per page.
55804
+ */
55805
+ page_size?: number;
55806
+ };
55807
+ url: '/api/marketplace-stats/project_creation_trend/';
55808
+ };
55809
+ export type MarketplaceStatsProjectCreationTrendCountResponses = {
55810
+ /**
55811
+ * No response body
55812
+ */
55813
+ 200: unknown;
55814
+ };
54787
55815
  export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
54788
55816
  body?: never;
54789
55817
  path?: never;
@@ -54968,6 +55996,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
54968
55996
  */
54969
55997
  200: unknown;
54970
55998
  };
55999
+ export type MarketplaceStatsResourceCreationTrendListData = {
56000
+ body?: never;
56001
+ path?: never;
56002
+ query?: {
56003
+ /**
56004
+ * A page number within the paginated result set.
56005
+ */
56006
+ page?: number;
56007
+ /**
56008
+ * Number of results to return per page.
56009
+ */
56010
+ page_size?: number;
56011
+ };
56012
+ url: '/api/marketplace-stats/resource_creation_trend/';
56013
+ };
56014
+ export type MarketplaceStatsResourceCreationTrendListResponses = {
56015
+ 200: Array<ProjectCreationTrend>;
56016
+ };
56017
+ export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
56018
+ export type MarketplaceStatsResourceCreationTrendCountData = {
56019
+ body?: never;
56020
+ path?: never;
56021
+ query?: {
56022
+ /**
56023
+ * A page number within the paginated result set.
56024
+ */
56025
+ page?: number;
56026
+ /**
56027
+ * Number of results to return per page.
56028
+ */
56029
+ page_size?: number;
56030
+ };
56031
+ url: '/api/marketplace-stats/resource_creation_trend/';
56032
+ };
56033
+ export type MarketplaceStatsResourceCreationTrendCountResponses = {
56034
+ /**
56035
+ * No response body
56036
+ */
56037
+ 200: unknown;
56038
+ };
54971
56039
  export type MarketplaceStatsResourceProvisioningStatsListData = {
54972
56040
  body?: never;
54973
56041
  path?: never;
@@ -55254,6 +56322,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
55254
56322
  */
55255
56323
  200: unknown;
55256
56324
  };
56325
+ export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
56326
+ body?: never;
56327
+ path?: never;
56328
+ query?: {
56329
+ /**
56330
+ * Number of top providers to return. Default is 5.
56331
+ */
56332
+ limit?: number;
56333
+ /**
56334
+ * A page number within the paginated result set.
56335
+ */
56336
+ page?: number;
56337
+ /**
56338
+ * Number of results to return per page.
56339
+ */
56340
+ page_size?: number;
56341
+ };
56342
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56343
+ };
56344
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
56345
+ 200: Array<TopServiceProviderByResources>;
56346
+ };
56347
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
56348
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
56349
+ body?: never;
56350
+ path?: never;
56351
+ query?: {
56352
+ /**
56353
+ * Number of top providers to return. Default is 5.
56354
+ */
56355
+ limit?: number;
56356
+ /**
56357
+ * A page number within the paginated result set.
56358
+ */
56359
+ page?: number;
56360
+ /**
56361
+ * Number of results to return per page.
56362
+ */
56363
+ page_size?: number;
56364
+ };
56365
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
56366
+ };
56367
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
56368
+ /**
56369
+ * No response body
56370
+ */
56371
+ 200: unknown;
56372
+ };
55257
56373
  export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
55258
56374
  body?: never;
55259
56375
  path?: never;
@@ -55454,6 +56570,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
55454
56570
  */
55455
56571
  200: unknown;
55456
56572
  };
56573
+ export type MarketplaceStatsUserNationalityListData = {
56574
+ body?: never;
56575
+ path?: never;
56576
+ query?: {
56577
+ /**
56578
+ * A page number within the paginated result set.
56579
+ */
56580
+ page?: number;
56581
+ /**
56582
+ * Number of results to return per page.
56583
+ */
56584
+ page_size?: number;
56585
+ };
56586
+ url: '/api/marketplace-stats/user_nationality/';
56587
+ };
56588
+ export type MarketplaceStatsUserNationalityListResponses = {
56589
+ 200: Array<UserNationalityStats>;
56590
+ };
56591
+ export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
56592
+ export type MarketplaceStatsUserNationalityCountData = {
56593
+ body?: never;
56594
+ path?: never;
56595
+ query?: {
56596
+ /**
56597
+ * A page number within the paginated result set.
56598
+ */
56599
+ page?: number;
56600
+ /**
56601
+ * Number of results to return per page.
56602
+ */
56603
+ page_size?: number;
56604
+ };
56605
+ url: '/api/marketplace-stats/user_nationality/';
56606
+ };
56607
+ export type MarketplaceStatsUserNationalityCountResponses = {
56608
+ /**
56609
+ * No response body
56610
+ */
56611
+ 200: unknown;
56612
+ };
55457
56613
  export type MarketplaceStatsUserOrganizationCountListData = {
55458
56614
  body?: never;
55459
56615
  path?: never;
@@ -55534,6 +56690,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
55534
56690
  */
55535
56691
  200: unknown;
55536
56692
  };
56693
+ export type MarketplaceStatsUserResidenceCountryListData = {
56694
+ body?: never;
56695
+ path?: never;
56696
+ query?: {
56697
+ /**
56698
+ * A page number within the paginated result set.
56699
+ */
56700
+ page?: number;
56701
+ /**
56702
+ * Number of results to return per page.
56703
+ */
56704
+ page_size?: number;
56705
+ };
56706
+ url: '/api/marketplace-stats/user_residence_country/';
56707
+ };
56708
+ export type MarketplaceStatsUserResidenceCountryListResponses = {
56709
+ 200: Array<UserResidenceCountryStats>;
56710
+ };
56711
+ export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
56712
+ export type MarketplaceStatsUserResidenceCountryCountData = {
56713
+ body?: never;
56714
+ path?: never;
56715
+ query?: {
56716
+ /**
56717
+ * A page number within the paginated result set.
56718
+ */
56719
+ page?: number;
56720
+ /**
56721
+ * Number of results to return per page.
56722
+ */
56723
+ page_size?: number;
56724
+ };
56725
+ url: '/api/marketplace-stats/user_residence_country/';
56726
+ };
56727
+ export type MarketplaceStatsUserResidenceCountryCountResponses = {
56728
+ /**
56729
+ * No response body
56730
+ */
56731
+ 200: unknown;
56732
+ };
55537
56733
  export type MarketplaceTagsListData = {
55538
56734
  body?: never;
55539
56735
  path?: never;
@@ -58596,6 +59792,10 @@ export type OpenportalUnmanagedProjectsListData = {
58596
59792
  * Created after
58597
59793
  */
58598
59794
  created?: string;
59795
+ /**
59796
+ * Created before
59797
+ */
59798
+ created_before?: string;
58599
59799
  /**
58600
59800
  * Multiple values may be separated by commas.
58601
59801
  */
@@ -58629,6 +59829,10 @@ export type OpenportalUnmanagedProjectsListData = {
58629
59829
  * Modified after
58630
59830
  */
58631
59831
  modified?: string;
59832
+ /**
59833
+ * Modified before
59834
+ */
59835
+ modified_before?: string;
58632
59836
  /**
58633
59837
  * Name
58634
59838
  */
@@ -58699,6 +59903,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58699
59903
  * Created after
58700
59904
  */
58701
59905
  created?: string;
59906
+ /**
59907
+ * Created before
59908
+ */
59909
+ created_before?: string;
58702
59910
  /**
58703
59911
  * Multiple values may be separated by commas.
58704
59912
  */
@@ -58731,6 +59939,10 @@ export type OpenportalUnmanagedProjectsCountData = {
58731
59939
  * Modified after
58732
59940
  */
58733
59941
  modified?: string;
59942
+ /**
59943
+ * Modified before
59944
+ */
59945
+ modified_before?: string;
58734
59946
  /**
58735
59947
  * Name
58736
59948
  */
@@ -66603,6 +67815,136 @@ export type ProjectCreditsUpdateResponses = {
66603
67815
  200: ProjectCredit;
66604
67816
  };
66605
67817
  export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
67818
+ export type ProjectEndDateChangeRequestsListData = {
67819
+ body?: never;
67820
+ path?: never;
67821
+ query?: {
67822
+ /**
67823
+ * Created by UUID
67824
+ */
67825
+ created_by_uuid?: string;
67826
+ /**
67827
+ * Customer UUID
67828
+ */
67829
+ customer_uuid?: string;
67830
+ /**
67831
+ * A page number within the paginated result set.
67832
+ */
67833
+ page?: number;
67834
+ /**
67835
+ * Number of results to return per page.
67836
+ */
67837
+ page_size?: number;
67838
+ /**
67839
+ * Project UUID
67840
+ */
67841
+ project_uuid?: string;
67842
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
67843
+ };
67844
+ url: '/api/project-end-date-change-requests/';
67845
+ };
67846
+ export type ProjectEndDateChangeRequestsListResponses = {
67847
+ 200: Array<ProjectEndDateChangeRequest>;
67848
+ };
67849
+ export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
67850
+ export type ProjectEndDateChangeRequestsCountData = {
67851
+ body?: never;
67852
+ path?: never;
67853
+ query?: {
67854
+ /**
67855
+ * Created by UUID
67856
+ */
67857
+ created_by_uuid?: string;
67858
+ /**
67859
+ * Customer UUID
67860
+ */
67861
+ customer_uuid?: string;
67862
+ /**
67863
+ * A page number within the paginated result set.
67864
+ */
67865
+ page?: number;
67866
+ /**
67867
+ * Number of results to return per page.
67868
+ */
67869
+ page_size?: number;
67870
+ /**
67871
+ * Project UUID
67872
+ */
67873
+ project_uuid?: string;
67874
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
67875
+ };
67876
+ url: '/api/project-end-date-change-requests/';
67877
+ };
67878
+ export type ProjectEndDateChangeRequestsCountResponses = {
67879
+ /**
67880
+ * No response body
67881
+ */
67882
+ 200: unknown;
67883
+ };
67884
+ export type ProjectEndDateChangeRequestsCreateData = {
67885
+ body: ProjectEndDateChangeRequestCreateRequest;
67886
+ path?: never;
67887
+ query?: never;
67888
+ url: '/api/project-end-date-change-requests/';
67889
+ };
67890
+ export type ProjectEndDateChangeRequestsCreateResponses = {
67891
+ 201: ProjectEndDateChangeRequestCreate;
67892
+ };
67893
+ export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
67894
+ export type ProjectEndDateChangeRequestsRetrieveData = {
67895
+ body?: never;
67896
+ path: {
67897
+ uuid: string;
67898
+ };
67899
+ query?: never;
67900
+ url: '/api/project-end-date-change-requests/{uuid}/';
67901
+ };
67902
+ export type ProjectEndDateChangeRequestsRetrieveResponses = {
67903
+ 200: ProjectEndDateChangeRequest;
67904
+ };
67905
+ export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
67906
+ export type ProjectEndDateChangeRequestsApproveData = {
67907
+ body?: ReviewCommentRequest;
67908
+ path: {
67909
+ uuid: string;
67910
+ };
67911
+ query?: never;
67912
+ url: '/api/project-end-date-change-requests/{uuid}/approve/';
67913
+ };
67914
+ export type ProjectEndDateChangeRequestsApproveResponses = {
67915
+ /**
67916
+ * No response body
67917
+ */
67918
+ 200: unknown;
67919
+ };
67920
+ export type ProjectEndDateChangeRequestsCancelData = {
67921
+ body?: never;
67922
+ path: {
67923
+ uuid: string;
67924
+ };
67925
+ query?: never;
67926
+ url: '/api/project-end-date-change-requests/{uuid}/cancel/';
67927
+ };
67928
+ export type ProjectEndDateChangeRequestsCancelResponses = {
67929
+ /**
67930
+ * No response body
67931
+ */
67932
+ 200: unknown;
67933
+ };
67934
+ export type ProjectEndDateChangeRequestsRejectData = {
67935
+ body?: ReviewCommentRequest;
67936
+ path: {
67937
+ uuid: string;
67938
+ };
67939
+ query?: never;
67940
+ url: '/api/project-end-date-change-requests/{uuid}/reject/';
67941
+ };
67942
+ export type ProjectEndDateChangeRequestsRejectResponses = {
67943
+ /**
67944
+ * No response body
67945
+ */
67946
+ 200: unknown;
67947
+ };
66606
67948
  export type ProjectPermissionsReviewsListData = {
66607
67949
  body?: never;
66608
67950
  path?: never;
@@ -66848,6 +68190,10 @@ export type ProjectsListData = {
66848
68190
  * Created after
66849
68191
  */
66850
68192
  created?: string;
68193
+ /**
68194
+ * Created before
68195
+ */
68196
+ created_before?: string;
66851
68197
  /**
66852
68198
  * Multiple values may be separated by commas.
66853
68199
  */
@@ -66881,6 +68227,10 @@ export type ProjectsListData = {
66881
68227
  * Modified after
66882
68228
  */
66883
68229
  modified?: string;
68230
+ /**
68231
+ * Modified before
68232
+ */
68233
+ modified_before?: string;
66884
68234
  /**
66885
68235
  * Name
66886
68236
  */
@@ -66951,6 +68301,10 @@ export type ProjectsCountData = {
66951
68301
  * Created after
66952
68302
  */
66953
68303
  created?: string;
68304
+ /**
68305
+ * Created before
68306
+ */
68307
+ created_before?: string;
66954
68308
  /**
66955
68309
  * Multiple values may be separated by commas.
66956
68310
  */
@@ -66983,6 +68337,10 @@ export type ProjectsCountData = {
66983
68337
  * Modified after
66984
68338
  */
66985
68339
  modified?: string;
68340
+ /**
68341
+ * Modified before
68342
+ */
68343
+ modified_before?: string;
66986
68344
  /**
66987
68345
  * Name
66988
68346
  */
@@ -77442,6 +78800,10 @@ export type UserPermissionsListData = {
77442
78800
  * Created after
77443
78801
  */
77444
78802
  created?: string;
78803
+ /**
78804
+ * Created before
78805
+ */
78806
+ created_before?: string;
77445
78807
  expiration_time?: string;
77446
78808
  /**
77447
78809
  * User full name contains
@@ -77451,6 +78813,10 @@ export type UserPermissionsListData = {
77451
78813
  * Modified after
77452
78814
  */
77453
78815
  modified?: string;
78816
+ /**
78817
+ * Modified before
78818
+ */
78819
+ modified_before?: string;
77454
78820
  native_name?: string;
77455
78821
  /**
77456
78822
  * Ordering
@@ -77508,6 +78874,10 @@ export type UserPermissionsCountData = {
77508
78874
  * Created after
77509
78875
  */
77510
78876
  created?: string;
78877
+ /**
78878
+ * Created before
78879
+ */
78880
+ created_before?: string;
77511
78881
  expiration_time?: string;
77512
78882
  /**
77513
78883
  * User full name contains
@@ -77517,6 +78887,10 @@ export type UserPermissionsCountData = {
77517
78887
  * Modified after
77518
78888
  */
77519
78889
  modified?: string;
78890
+ /**
78891
+ * Modified before
78892
+ */
78893
+ modified_before?: string;
77520
78894
  native_name?: string;
77521
78895
  /**
77522
78896
  * Ordering