waldur-js-client 8.1.0-rc.19.dev.74 → 8.1.0-rc.20.dev.86

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.
@@ -575,6 +575,12 @@ export type AgentTaskStatsResponse = {
575
575
  error?: string;
576
576
  };
577
577
  export type AgentTypeEnum = 'Order processing' | 'Usage reporting' | 'Glauth sync' | 'Resource sync' | 'Event processing' | 'unknown';
578
+ export type AggregatedAccessSubnets = {
579
+ expanded: Array<OfferingAccessSubnetExpanded>;
580
+ packed: Array<string>;
581
+ defaults: Array<OfferingDefaultAccessSubnetRow>;
582
+ organization_subnets: Array<OrganizationAccessSubnetRow>;
583
+ };
578
584
  export type AggregatedUsageTrend = {
579
585
  /**
580
586
  * Period in YYYY-MM format
@@ -712,6 +718,21 @@ export type AnonymousChatClickRequestRequest = {
712
718
  */
713
719
  offering_uuid: string;
714
720
  };
721
+ export type AnonymousChatConversation = {
722
+ session_id: string;
723
+ user_slug: string;
724
+ message_count: number;
725
+ is_flagged: boolean;
726
+ max_severity: string;
727
+ has_feedback: boolean;
728
+ offerings_shown: number;
729
+ /**
730
+ * Click-throughs on recommended offerings; repeat clicks count separately.
731
+ */
732
+ offerings_clicked: number;
733
+ started: string | null;
734
+ last_active: string | null;
735
+ };
715
736
  export type AnonymousChatFeedback = {
716
737
  readonly interaction_uuid: string;
717
738
  readonly score: number | null;
@@ -762,6 +783,12 @@ export type AnonymousChatInteraction = {
762
783
  readonly assistant_blocks: {
763
784
  [key: string]: unknown;
764
785
  };
786
+ /**
787
+ * Offering click-throughs on this interaction. Populated by the by-session transcript, which annotates it; 0 elsewhere.
788
+ */
789
+ readonly click_count: number;
790
+ readonly input_tokens: number | null;
791
+ readonly output_tokens: number | null;
765
792
  readonly offering_uuids: {
766
793
  [key: string]: unknown;
767
794
  };
@@ -804,6 +831,26 @@ export type AnonymousChatKpiResponse = {
804
831
  * clicks / interactions; null when no interactions.
805
832
  */
806
833
  click_through_rate: number;
834
+ /**
835
+ * Prompt tokens summed over the filtered turns. Turns recorded before per-interaction token capture contribute nothing, so this understates spend on historical data.
836
+ */
837
+ input_tokens_total: number;
838
+ /**
839
+ * Completion tokens summed over the filtered turns.
840
+ */
841
+ output_tokens_total: number;
842
+ /**
843
+ * Threads carrying a judge verdict. Always present, unlike the review rates below — zero here is the signal that the nightly pass is off or stalled, so consumers can keep showing the row.
844
+ */
845
+ reviewed_total: number;
846
+ /**
847
+ * Prompt tokens spent by the LLM judge. Tracked apart from ``input_tokens_total`` because review runs on its own budget.
848
+ */
849
+ review_input_tokens_total: number;
850
+ /**
851
+ * Completion tokens spent by the LLM judge.
852
+ */
853
+ review_output_tokens_total: number;
807
854
  /**
808
855
  * Mean of llm_resolution_score across reviewed sessions (1-5).
809
856
  */
@@ -2940,6 +2987,10 @@ export type BookingResource = {
2940
2987
  } | null;
2941
2988
  offering_state: OfferingState;
2942
2989
  readonly offering_components: Array<OfferingComponent>;
2990
+ /**
2991
+ * Whether the resource owns any API keys, so the portal can offer key management without knowing which backend serves the resource.
2992
+ */
2993
+ readonly has_api_keys: boolean;
2943
2994
  readonly created_by: string;
2944
2995
  /**
2945
2996
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
@@ -3286,15 +3337,15 @@ export type CallCoiConfiguration = {
3286
3337
  /**
3287
3338
  * COI types requiring automatic recusal
3288
3339
  */
3289
- recusal_required_types?: Array<string>;
3340
+ recusal_required_types?: Array<CoiTypeEnum>;
3290
3341
  /**
3291
3342
  * COI types allowing management plan
3292
3343
  */
3293
- management_allowed_types?: Array<string>;
3344
+ management_allowed_types?: Array<CoiTypeEnum>;
3294
3345
  /**
3295
3346
  * COI types requiring disclosure only
3296
3347
  */
3297
- disclosure_only_types?: Array<string>;
3348
+ disclosure_only_types?: Array<CoiTypeEnum>;
3298
3349
  /**
3299
3350
  * Enable automated co-authorship detection
3300
3351
  */
@@ -3779,6 +3830,9 @@ export type CannedResponseRenderRequest = {
3779
3830
  [key: string]: unknown;
3780
3831
  };
3781
3832
  };
3833
+ export type CannedResponseRenderResponse = {
3834
+ rendered_text: string;
3835
+ };
3782
3836
  export type CannedResponseRequest = {
3783
3837
  name: string;
3784
3838
  /**
@@ -4350,6 +4404,28 @@ export type ChatSession = {
4350
4404
  readonly created: string;
4351
4405
  readonly modified: string;
4352
4406
  };
4407
+ export type ChatThreadStatsResponse = {
4408
+ threads_total: number;
4409
+ sessions_total: number;
4410
+ /**
4411
+ * Distinct owners of the threads in the filtered window.
4412
+ */
4413
+ users_total: number;
4414
+ messages_total: number;
4415
+ input_tokens_total: number;
4416
+ output_tokens_total: number;
4417
+ total_tokens: number;
4418
+ /**
4419
+ * Threads carrying at least one flagged message.
4420
+ */
4421
+ flagged_total: number;
4422
+ feedback_positive: number;
4423
+ feedback_negative: number;
4424
+ /**
4425
+ * positive / (positive + negative); null when no human feedback.
4426
+ */
4427
+ satisfaction_rate: number | null;
4428
+ };
4353
4429
  export type CheckUniqueBackendIdRequest = {
4354
4430
  /**
4355
4431
  * Backend identifier to check
@@ -5353,6 +5429,8 @@ export type ConstanceSettings = {
5353
5429
  PAT_ENABLED?: boolean;
5354
5430
  PAT_MAX_LIFETIME_DAYS?: number;
5355
5431
  PAT_MAX_TOKENS_PER_USER?: number;
5432
+ PAT_MAX_ACL_ENTRIES?: number;
5433
+ PAT_MAX_AUDIT_EVENTS_PER_HOUR?: number;
5356
5434
  };
5357
5435
  export type ConstanceSettingsRequest = {
5358
5436
  SITE_NAME?: string;
@@ -5674,6 +5752,8 @@ export type ConstanceSettingsRequest = {
5674
5752
  PAT_ENABLED?: boolean;
5675
5753
  PAT_MAX_LIFETIME_DAYS?: number;
5676
5754
  PAT_MAX_TOKENS_PER_USER?: number;
5755
+ PAT_MAX_ACL_ENTRIES?: number;
5756
+ PAT_MAX_AUDIT_EVENTS_PER_HOUR?: number;
5677
5757
  };
5678
5758
  export type ConsumptionStatisticsResponse = {
5679
5759
  total_records: number;
@@ -7016,6 +7096,9 @@ export type DeprecatedNetworkRbacPolicyRequest = {
7016
7096
  export type Detail = {
7017
7097
  detail: string;
7018
7098
  };
7099
+ export type DetailResponse = {
7100
+ readonly detail: string;
7101
+ };
7019
7102
  export type DetailState = {
7020
7103
  readonly detail: string;
7021
7104
  readonly state: string;
@@ -7739,7 +7822,7 @@ export type EventMetadataResponse = {
7739
7822
  * Map of event group keys to lists of event type enums from EventType
7740
7823
  */
7741
7824
  event_groups: {
7742
- [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'resource_access_subnet_creation_succeeded' | 'resource_access_subnet_deletion_succeeded' | 'resource_access_subnet_update_succeeded' | 'offering_access_subnet_creation_succeeded' | 'offering_access_subnet_deletion_succeeded' | 'offering_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_affiliate_by_staff' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_options_updated' | 'marketplace_offering_resource_options_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_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'maintenance_announcement_cancelled' | 'maintenance_announcement_completed' | 'maintenance_announcement_created' | 'maintenance_announcement_deleted' | 'maintenance_announcement_scheduled' | 'maintenance_announcement_started' | 'maintenance_announcement_unscheduled' | 'maintenance_announcement_updated' | '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_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_rbac_policy_created' | 'openstack_rbac_policy_deleted' | 'openstack_router_interface_added' | 'openstack_router_interface_removed' | 'openstack_router_updated' | 'openstack_subnet_host_routes_changed' | '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_rules_changed' | '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' | 'proposal_workflow_advanced' | 'query_executed' | 'increase_of_customer_credit_due_to_affiliate_fee' | '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_rescue_failed' | 'resource_rescue_scheduled' | 'resource_rescue_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_unrescue_failed' | 'resource_unrescue_scheduled' | 'resource_unrescue_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_affiliate_by_staff' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
7825
+ [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'resource_access_subnet_creation_succeeded' | 'resource_access_subnet_deletion_succeeded' | 'resource_access_subnet_update_succeeded' | 'offering_access_subnet_creation_succeeded' | 'offering_access_subnet_deletion_succeeded' | 'offering_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_affiliate_by_staff' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_options_updated' | 'marketplace_offering_resource_options_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_api_key_rotated' | 'marketplace_resource_api_key_revealed' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_project_created' | 'marketplace_resource_project_recovered' | 'marketplace_resource_project_removed' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'maintenance_announcement_cancelled' | 'maintenance_announcement_completed' | 'maintenance_announcement_created' | 'maintenance_announcement_deleted' | 'maintenance_announcement_scheduled' | 'maintenance_announcement_started' | 'maintenance_announcement_unscheduled' | 'maintenance_announcement_updated' | '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_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_rbac_policy_created' | 'openstack_rbac_policy_deleted' | 'openstack_router_interface_added' | 'openstack_router_interface_removed' | 'openstack_router_updated' | 'openstack_subnet_host_routes_changed' | '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_rules_changed' | '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' | 'proposal_workflow_advanced' | 'query_executed' | 'increase_of_customer_credit_due_to_affiliate_fee' | '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_rescue_failed' | 'resource_rescue_scheduled' | 'resource_rescue_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_unrescue_failed' | 'resource_unrescue_scheduled' | 'resource_unrescue_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_affiliate_by_staff' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip' | 'pat_access_denied_from_ip' | 'pat_network_acl_updated' | 'pat_authentication_rejected'>;
7743
7826
  };
7744
7827
  };
7745
7828
  export type EventStats = {
@@ -7828,7 +7911,7 @@ export type EventSubscriptionRequest = {
7828
7911
  */
7829
7912
  observable_objects?: Array<EventSubscriptionObservableObjectRequest>;
7830
7913
  };
7831
- export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'resource_access_subnet_creation_succeeded' | 'resource_access_subnet_deletion_succeeded' | 'resource_access_subnet_update_succeeded' | 'offering_access_subnet_creation_succeeded' | 'offering_access_subnet_deletion_succeeded' | 'offering_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_affiliate_by_staff' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_options_updated' | 'marketplace_offering_resource_options_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_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'maintenance_announcement_cancelled' | 'maintenance_announcement_completed' | 'maintenance_announcement_created' | 'maintenance_announcement_deleted' | 'maintenance_announcement_scheduled' | 'maintenance_announcement_started' | 'maintenance_announcement_unscheduled' | 'maintenance_announcement_updated' | '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_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_rbac_policy_created' | 'openstack_rbac_policy_deleted' | 'openstack_router_interface_added' | 'openstack_router_interface_removed' | 'openstack_router_updated' | 'openstack_subnet_host_routes_changed' | '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_rules_changed' | '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' | 'proposal_workflow_advanced' | 'query_executed' | 'increase_of_customer_credit_due_to_affiliate_fee' | '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_rescue_failed' | 'resource_rescue_scheduled' | 'resource_rescue_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_unrescue_failed' | 'resource_unrescue_scheduled' | 'resource_unrescue_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_affiliate_by_staff' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
7914
+ export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'resource_access_subnet_creation_succeeded' | 'resource_access_subnet_deletion_succeeded' | 'resource_access_subnet_update_succeeded' | 'offering_access_subnet_creation_succeeded' | 'offering_access_subnet_deletion_succeeded' | 'offering_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_affiliate_by_staff' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_updated' | 'marketplace_offering_options_updated' | 'marketplace_offering_resource_options_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_api_key_rotated' | 'marketplace_resource_api_key_revealed' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_project_created' | 'marketplace_resource_project_recovered' | 'marketplace_resource_project_removed' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_limit_change_request_created' | 'marketplace_resource_limit_change_request_approved' | 'marketplace_resource_limit_change_request_rejected' | 'maintenance_announcement_cancelled' | 'maintenance_announcement_completed' | 'maintenance_announcement_created' | 'maintenance_announcement_deleted' | 'maintenance_announcement_scheduled' | 'maintenance_announcement_started' | 'maintenance_announcement_unscheduled' | 'maintenance_announcement_updated' | '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_instance_security_groups_changed' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_load_balancer_created' | 'openstack_load_balancer_updated' | 'openstack_load_balancer_deleted' | 'openstack_load_balancer_security_groups_changed' | 'openstack_listener_created' | 'openstack_listener_updated' | 'openstack_listener_deleted' | 'openstack_pool_created' | 'openstack_pool_updated' | 'openstack_pool_deleted' | 'openstack_pool_member_created' | 'openstack_pool_member_updated' | 'openstack_pool_member_deleted' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_port_security_enabled' | 'openstack_port_security_disabled' | 'openstack_port_allowed_address_pairs_changed' | 'openstack_port_security_groups_changed' | 'openstack_rbac_policy_created' | 'openstack_rbac_policy_deleted' | 'openstack_router_interface_added' | 'openstack_router_interface_removed' | 'openstack_router_updated' | 'openstack_subnet_host_routes_changed' | '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_rules_changed' | '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' | 'proposal_workflow_advanced' | 'query_executed' | 'increase_of_customer_credit_due_to_affiliate_fee' | '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_rescue_failed' | 'resource_rescue_scheduled' | 'resource_rescue_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_unrescue_failed' | 'resource_unrescue_scheduled' | 'resource_unrescue_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_affiliate_by_staff' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'chat_feedback_submitted' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip' | 'pat_access_denied_from_ip' | 'pat_network_acl_updated' | 'pat_authentication_rejected';
7832
7915
  export type ExecuteActionErrorResponse = {
7833
7916
  error: string;
7834
7917
  };
@@ -9352,15 +9435,15 @@ export type InvitationCoiConfiguration = {
9352
9435
  /**
9353
9436
  * COI types requiring automatic recusal
9354
9437
  */
9355
- recusal_required_types: Array<string>;
9438
+ recusal_required_types: Array<CoiTypeEnum>;
9356
9439
  /**
9357
9440
  * COI types where a management plan can be submitted
9358
9441
  */
9359
- management_allowed_types: Array<string>;
9442
+ management_allowed_types: Array<CoiTypeEnum>;
9360
9443
  /**
9361
9444
  * COI types that only need disclosure
9362
9445
  */
9363
- disclosure_only_types: Array<string>;
9446
+ disclosure_only_types: Array<CoiTypeEnum>;
9364
9447
  /**
9365
9448
  * How much proposal info is disclosed to reviewers
9366
9449
  */
@@ -10895,6 +10978,24 @@ export type MePermission = {
10895
10978
  readonly resource_uuid: string | null;
10896
10979
  expiration_time?: string | null;
10897
10980
  };
10981
+ export type MemberSyncStatusEntryRequest = {
10982
+ username?: string;
10983
+ user_uuid?: string;
10984
+ scope_type: MemberSyncStatusEntryScopeTypeEnum;
10985
+ resource_project_uuid?: string;
10986
+ role_name: string;
10987
+ state: MemberSyncStatusEntryStateEnum;
10988
+ message?: string;
10989
+ };
10990
+ export type MemberSyncStatusEntryScopeTypeEnum = 'resource' | 'resource_project';
10991
+ export type MemberSyncStatusEntryStateEnum = 'synced' | 'pending' | 'missing_in_idp' | 'error';
10992
+ export type MemberSyncStatusReportRequest = {
10993
+ statuses: Array<MemberSyncStatusEntryRequest>;
10994
+ };
10995
+ export type MemberSyncStatusReportResult = {
10996
+ stored: number;
10997
+ skipped: Array<string>;
10998
+ };
10898
10999
  export type MembershipStateEnum = 'invited' | 'joined' | 'left' | 'banned';
10899
11000
  export type MergedPluginOptions = {
10900
11001
  /**
@@ -10997,6 +11098,10 @@ export type MergedPluginOptions = {
10997
11098
  * Enable sub-project management within resources.
10998
11099
  */
10999
11100
  enable_resource_projects?: boolean;
11101
+ /**
11102
+ * Enable per-member sync status reporting by the site agent: team views show whether each role grant has propagated to the provider backend, and providers can trigger a resync.
11103
+ */
11104
+ enable_membership_sync_status?: boolean;
11000
11105
  /**
11001
11106
  * If set to True, an Access subnets tab is shown on resource detail pages, letting consumers curate the IPs allowed to reach the backend entity. The list is advisory data for external firewalls.
11002
11107
  */
@@ -11253,6 +11358,10 @@ export type MergedPluginOptions = {
11253
11358
  * Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
11254
11359
  */
11255
11360
  slurm_periodic_policy_enabled?: boolean;
11361
+ /**
11362
+ * When enabled, the site agent enforces the offering's QoS selection by granting the chosen QoS on the SLURM association (QosLevel/DefaultQOS). When disabled (default), QoS is informational only — profiles are shown and the selection is recorded on the resource, but the agent does not touch SLURM QoS. The agent config may override this per deployment.
11363
+ */
11364
+ enforce_qos?: boolean;
11256
11365
  /**
11257
11366
  * If set to False, all orders require manual provider approval, including for service provider owners and staff
11258
11367
  */
@@ -11379,6 +11488,10 @@ export type MergedPluginOptionsRequest = {
11379
11488
  * Enable sub-project management within resources.
11380
11489
  */
11381
11490
  enable_resource_projects?: boolean;
11491
+ /**
11492
+ * Enable per-member sync status reporting by the site agent: team views show whether each role grant has propagated to the provider backend, and providers can trigger a resync.
11493
+ */
11494
+ enable_membership_sync_status?: boolean;
11382
11495
  /**
11383
11496
  * If set to True, an Access subnets tab is shown on resource detail pages, letting consumers curate the IPs allowed to reach the backend entity. The list is advisory data for external firewalls.
11384
11497
  */
@@ -11635,6 +11748,10 @@ export type MergedPluginOptionsRequest = {
11635
11748
  * Enable SLURM periodic usage policy configuration. When enabled, allows configuring QoS-based threshold enforcement, carryover logic, and fairshare decay for site-agent managed SLURM offerings.
11636
11749
  */
11637
11750
  slurm_periodic_policy_enabled?: boolean;
11751
+ /**
11752
+ * When enabled, the site agent enforces the offering's QoS selection by granting the chosen QoS on the SLURM association (QosLevel/DefaultQOS). When disabled (default), QoS is informational only — profiles are shown and the selection is recorded on the resource, but the agent does not touch SLURM QoS. The agent config may override this per deployment.
11753
+ */
11754
+ enforce_qos?: boolean;
11638
11755
  /**
11639
11756
  * If set to False, all orders require manual provider approval, including for service provider owners and staff
11640
11757
  */
@@ -12483,11 +12600,27 @@ export type NestedPartition = {
12483
12600
  * Quality of Service (QOS) name
12484
12601
  */
12485
12602
  qos?: string;
12603
+ readonly qos_options: Array<NestedPartitionQoS>;
12486
12604
  /**
12487
12605
  * Require reservation for job allocation
12488
12606
  */
12489
12607
  req_resv?: boolean;
12490
12608
  };
12609
+ export type NestedPartitionQoS = {
12610
+ readonly uuid: string;
12611
+ readonly qos: string;
12612
+ readonly qos_name: string;
12613
+ /**
12614
+ * Default QOS for this partition (seeds SLURM DefaultQOS).
12615
+ */
12616
+ is_default?: boolean;
12617
+ };
12618
+ export type NestedPartitionQoSRequest = {
12619
+ /**
12620
+ * Default QOS for this partition (seeds SLURM DefaultQOS).
12621
+ */
12622
+ is_default?: boolean;
12623
+ };
12491
12624
  export type NestedPartitionRequest = {
12492
12625
  /**
12493
12626
  * Name of the SLURM partition
@@ -12662,6 +12795,117 @@ export type NestedPublicOfferingRequest = {
12662
12795
  type: string;
12663
12796
  name: string;
12664
12797
  };
12798
+ export type NestedQoS = {
12799
+ readonly uuid: string;
12800
+ /**
12801
+ * Name of the SLURM QOS.
12802
+ */
12803
+ name: string;
12804
+ description?: string;
12805
+ /**
12806
+ * Maximum nodes per job
12807
+ */
12808
+ max_nodes?: number | null;
12809
+ /**
12810
+ * Minimum nodes per job
12811
+ */
12812
+ min_nodes?: number | null;
12813
+ /**
12814
+ * Default time limit in minutes
12815
+ */
12816
+ default_time?: number | null;
12817
+ /**
12818
+ * Maximum wall time in minutes
12819
+ */
12820
+ max_time?: number | null;
12821
+ /**
12822
+ * Preemption grace time in seconds
12823
+ */
12824
+ grace_time?: number | null;
12825
+ /**
12826
+ * Scheduling priority
12827
+ */
12828
+ priority?: number | null;
12829
+ /**
12830
+ * Aggregate TRES the QOS may allocate at once (GrpTRES)
12831
+ */
12832
+ grp_tres?: string;
12833
+ /**
12834
+ * Max TRES per job (MaxTRESPerJob)
12835
+ */
12836
+ max_tres_per_job?: string;
12837
+ /**
12838
+ * Max TRES per node (MaxTRESPerNode)
12839
+ */
12840
+ max_tres_per_node?: string;
12841
+ /**
12842
+ * Max TRES per user (MaxTRESPerUser)
12843
+ */
12844
+ max_tres_per_user?: string;
12845
+ /**
12846
+ * Min TRES per job (MinTRESPerJob)
12847
+ */
12848
+ min_tres_per_job?: string;
12849
+ /**
12850
+ * Comma-separated QOS flags (e.g. DenyOnLimit, OverPartQOS)
12851
+ */
12852
+ flags?: string;
12853
+ };
12854
+ export type NestedQoSRequest = {
12855
+ /**
12856
+ * Name of the SLURM QOS.
12857
+ */
12858
+ name: string;
12859
+ description?: string;
12860
+ /**
12861
+ * Maximum nodes per job
12862
+ */
12863
+ max_nodes?: number | null;
12864
+ /**
12865
+ * Minimum nodes per job
12866
+ */
12867
+ min_nodes?: number | null;
12868
+ /**
12869
+ * Default time limit in minutes
12870
+ */
12871
+ default_time?: number | null;
12872
+ /**
12873
+ * Maximum wall time in minutes
12874
+ */
12875
+ max_time?: number | null;
12876
+ /**
12877
+ * Preemption grace time in seconds
12878
+ */
12879
+ grace_time?: number | null;
12880
+ /**
12881
+ * Scheduling priority
12882
+ */
12883
+ priority?: number | null;
12884
+ /**
12885
+ * Aggregate TRES the QOS may allocate at once (GrpTRES)
12886
+ */
12887
+ grp_tres?: string;
12888
+ /**
12889
+ * Max TRES per job (MaxTRESPerJob)
12890
+ */
12891
+ max_tres_per_job?: string;
12892
+ /**
12893
+ * Max TRES per node (MaxTRESPerNode)
12894
+ */
12895
+ max_tres_per_node?: string;
12896
+ /**
12897
+ * Max TRES per user (MaxTRESPerUser)
12898
+ */
12899
+ max_tres_per_user?: string;
12900
+ /**
12901
+ * Min TRES per job (MinTRESPerJob)
12902
+ */
12903
+ min_tres_per_job?: string;
12904
+ /**
12905
+ * Comma-separated QOS flags (e.g. DenyOnLimit, OverPartQOS)
12906
+ */
12907
+ flags?: string;
12908
+ };
12665
12909
  export type NestedRemoteLocalCategory = {
12666
12910
  local_category: string;
12667
12911
  remote_category: string;
@@ -12707,6 +12951,17 @@ export type NestedResourceProjectPermission = {
12707
12951
  readonly role_name: string;
12708
12952
  readonly role_uuid: string;
12709
12953
  expiration_time?: string | null;
12954
+ readonly sync_state: string | null;
12955
+ readonly sync_message: string | null;
12956
+ readonly sync_reported_at: string | null;
12957
+ };
12958
+ export type NestedResourceRolePermission = {
12959
+ readonly role_name: string;
12960
+ readonly role_uuid: string;
12961
+ expiration_time?: string | null;
12962
+ readonly sync_state: string | null;
12963
+ readonly sync_message: string | null;
12964
+ readonly sync_reported_at: string | null;
12710
12965
  };
12711
12966
  export type NestedRound = {
12712
12967
  readonly uuid: string;
@@ -13023,7 +13278,7 @@ export type NotificationTemplateUpdateSerializersRequest = {
13023
13278
  };
13024
13279
  export type NotifySystemEnum = 'AdminAnnouncement' | 'BroadcastMessage';
13025
13280
  export type NullEnum = never;
13026
- export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits' | 'offering_resources_sync' | 'user_profile' | 'user_ssh_key' | 'user_lifecycle';
13281
+ export type ObservableObjectTypeEnum = 'order' | 'user_role' | 'resource' | 'offering_user' | 'importable_resources' | 'service_account' | 'course_account' | 'resource_periodic_limits' | 'offering_resources_sync' | 'resource_api_key_rotation' | 'user_profile' | 'user_ssh_key' | 'user_lifecycle';
13027
13282
  export type ObtainAuthTokenRequest = {
13028
13283
  /**
13029
13284
  * Username for authentication
@@ -13057,6 +13312,7 @@ export type Offering = {
13057
13312
  readonly default_access_subnets: Array<NestedOfferingAccessSubnet>;
13058
13313
  readonly software_catalogs: Array<NestedSoftwareCatalog>;
13059
13314
  readonly partitions: Array<NestedPartition>;
13315
+ readonly qos_profiles: Array<NestedQoS>;
13060
13316
  customer?: string | null;
13061
13317
  readonly customer_uuid: string | null;
13062
13318
  readonly customer_name: string | null;
@@ -13156,6 +13412,8 @@ export type OfferingAccessSubnetExpanded = {
13156
13412
  project_name: string;
13157
13413
  customer_uuid: string;
13158
13414
  customer_name: string;
13415
+ offering_uuid: string;
13416
+ offering_name: string;
13159
13417
  };
13160
13418
  export type OfferingAccessSubnetRequest = {
13161
13419
  inet: string;
@@ -13407,6 +13665,12 @@ export type OfferingCreateRequest = {
13407
13665
  [key: string]: OfferingComponentLimitRequest;
13408
13666
  };
13409
13667
  };
13668
+ export type OfferingDefaultAccessSubnetRow = {
13669
+ inet: string;
13670
+ description: string;
13671
+ offering_uuid: string;
13672
+ offering_name: string;
13673
+ };
13410
13674
  export type OfferingDescriptionUpdateRequest = {
13411
13675
  category: string;
13412
13676
  };
@@ -13834,6 +14098,7 @@ export type OfferingPartition = {
13834
14098
  * Quality of Service (QOS) name
13835
14099
  */
13836
14100
  qos?: string;
14101
+ readonly qos_options: Array<NestedPartitionQoS>;
13837
14102
  /**
13838
14103
  * Require reservation for job allocation
13839
14104
  */
@@ -13986,6 +14251,122 @@ export type OfferingProfileRoleAssignRequest = {
13986
14251
  */
13987
14252
  role: string;
13988
14253
  };
14254
+ export type OfferingQoS = {
14255
+ readonly uuid: string;
14256
+ readonly created: string;
14257
+ readonly modified: string;
14258
+ offering: string;
14259
+ readonly offering_name: string;
14260
+ /**
14261
+ * Name of the SLURM QOS.
14262
+ */
14263
+ name: string;
14264
+ description?: string;
14265
+ /**
14266
+ * Maximum nodes per job
14267
+ */
14268
+ max_nodes?: number | null;
14269
+ /**
14270
+ * Minimum nodes per job
14271
+ */
14272
+ min_nodes?: number | null;
14273
+ /**
14274
+ * Default time limit in minutes
14275
+ */
14276
+ default_time?: number | null;
14277
+ /**
14278
+ * Maximum wall time in minutes
14279
+ */
14280
+ max_time?: number | null;
14281
+ /**
14282
+ * Preemption grace time in seconds
14283
+ */
14284
+ grace_time?: number | null;
14285
+ /**
14286
+ * Scheduling priority
14287
+ */
14288
+ priority?: number | null;
14289
+ /**
14290
+ * Aggregate TRES the QOS may allocate at once (GrpTRES)
14291
+ */
14292
+ grp_tres?: string;
14293
+ /**
14294
+ * Max TRES per job (MaxTRESPerJob)
14295
+ */
14296
+ max_tres_per_job?: string;
14297
+ /**
14298
+ * Max TRES per node (MaxTRESPerNode)
14299
+ */
14300
+ max_tres_per_node?: string;
14301
+ /**
14302
+ * Max TRES per user (MaxTRESPerUser)
14303
+ */
14304
+ max_tres_per_user?: string;
14305
+ /**
14306
+ * Min TRES per job (MinTRESPerJob)
14307
+ */
14308
+ min_tres_per_job?: string;
14309
+ /**
14310
+ * Comma-separated QOS flags (e.g. DenyOnLimit, OverPartQOS)
14311
+ */
14312
+ flags?: string;
14313
+ };
14314
+ export type OfferingQoSRequest = {
14315
+ offering: string;
14316
+ /**
14317
+ * Name of the SLURM QOS.
14318
+ */
14319
+ name: string;
14320
+ description?: string;
14321
+ /**
14322
+ * Maximum nodes per job
14323
+ */
14324
+ max_nodes?: number | null;
14325
+ /**
14326
+ * Minimum nodes per job
14327
+ */
14328
+ min_nodes?: number | null;
14329
+ /**
14330
+ * Default time limit in minutes
14331
+ */
14332
+ default_time?: number | null;
14333
+ /**
14334
+ * Maximum wall time in minutes
14335
+ */
14336
+ max_time?: number | null;
14337
+ /**
14338
+ * Preemption grace time in seconds
14339
+ */
14340
+ grace_time?: number | null;
14341
+ /**
14342
+ * Scheduling priority
14343
+ */
14344
+ priority?: number | null;
14345
+ /**
14346
+ * Aggregate TRES the QOS may allocate at once (GrpTRES)
14347
+ */
14348
+ grp_tres?: string;
14349
+ /**
14350
+ * Max TRES per job (MaxTRESPerJob)
14351
+ */
14352
+ max_tres_per_job?: string;
14353
+ /**
14354
+ * Max TRES per node (MaxTRESPerNode)
14355
+ */
14356
+ max_tres_per_node?: string;
14357
+ /**
14358
+ * Max TRES per user (MaxTRESPerUser)
14359
+ */
14360
+ max_tres_per_user?: string;
14361
+ /**
14362
+ * Min TRES per job (MinTRESPerJob)
14363
+ */
14364
+ min_tres_per_job?: string;
14365
+ /**
14366
+ * Comma-separated QOS flags (e.g. DenyOnLimit, OverPartQOS)
14367
+ */
14368
+ flags?: string;
14369
+ };
13989
14370
  export type OfferingReference = {
13990
14371
  /**
13991
14372
  * Name of the offering
@@ -17328,6 +17709,12 @@ export type OrderUpdateRequest = {
17328
17709
  */
17329
17710
  start_date?: string | null;
17330
17711
  };
17712
+ export type OrganizationAccessSubnetRow = {
17713
+ inet: string;
17714
+ description: string;
17715
+ customer_uuid: string;
17716
+ customer_name: string;
17717
+ };
17331
17718
  export type OrganizationGroup = {
17332
17719
  readonly uuid: string;
17333
17720
  readonly url: string;
@@ -17370,6 +17757,10 @@ export type PaidRequest = {
17370
17757
  date: string;
17371
17758
  proof?: Blob | File;
17372
17759
  };
17760
+ export type PartitionQoSItemRequest = {
17761
+ qos_uuid: string;
17762
+ is_default?: boolean;
17763
+ };
17373
17764
  export type PartitionSummary = {
17374
17765
  readonly uuid: string;
17375
17766
  /**
@@ -17611,15 +18002,15 @@ export type PatchedCallCoiConfigurationRequest = {
17611
18002
  /**
17612
18003
  * COI types requiring automatic recusal
17613
18004
  */
17614
- recusal_required_types?: Array<string>;
18005
+ recusal_required_types?: Array<CoiTypeEnum>;
17615
18006
  /**
17616
18007
  * COI types allowing management plan
17617
18008
  */
17618
- management_allowed_types?: Array<string>;
18009
+ management_allowed_types?: Array<CoiTypeEnum>;
17619
18010
  /**
17620
18011
  * COI types requiring disclosure only
17621
18012
  */
17622
- disclosure_only_types?: Array<string>;
18013
+ disclosure_only_types?: Array<CoiTypeEnum>;
17623
18014
  /**
17624
18015
  * Enable automated co-authorship detection
17625
18016
  */
@@ -18366,6 +18757,62 @@ export type PatchedOfferingProfileRequest = {
18366
18757
  name?: string;
18367
18758
  description?: string;
18368
18759
  };
18760
+ export type PatchedOfferingQoSUpdateRequest = {
18761
+ qos_uuid?: string;
18762
+ /**
18763
+ * Name of the SLURM QOS.
18764
+ */
18765
+ name?: string;
18766
+ description?: string;
18767
+ /**
18768
+ * Maximum nodes per job
18769
+ */
18770
+ max_nodes?: number | null;
18771
+ /**
18772
+ * Minimum nodes per job
18773
+ */
18774
+ min_nodes?: number | null;
18775
+ /**
18776
+ * Default time limit in minutes
18777
+ */
18778
+ default_time?: number | null;
18779
+ /**
18780
+ * Maximum wall time in minutes
18781
+ */
18782
+ max_time?: number | null;
18783
+ /**
18784
+ * Preemption grace time in seconds
18785
+ */
18786
+ grace_time?: number | null;
18787
+ /**
18788
+ * Scheduling priority
18789
+ */
18790
+ priority?: number | null;
18791
+ /**
18792
+ * Aggregate TRES the QOS may allocate at once (GrpTRES)
18793
+ */
18794
+ grp_tres?: string;
18795
+ /**
18796
+ * Max TRES per job (MaxTRESPerJob)
18797
+ */
18798
+ max_tres_per_job?: string;
18799
+ /**
18800
+ * Max TRES per node (MaxTRESPerNode)
18801
+ */
18802
+ max_tres_per_node?: string;
18803
+ /**
18804
+ * Max TRES per user (MaxTRESPerUser)
18805
+ */
18806
+ max_tres_per_user?: string;
18807
+ /**
18808
+ * Min TRES per job (MinTRESPerJob)
18809
+ */
18810
+ min_tres_per_job?: string;
18811
+ /**
18812
+ * Comma-separated QOS flags (e.g. DenyOnLimit, OverPartQOS)
18813
+ */
18814
+ flags?: string;
18815
+ };
18369
18816
  export type PatchedOfferingRoleRequest = {
18370
18817
  name?: string;
18371
18818
  description?: string;
@@ -19837,13 +20284,13 @@ export type PermissionMetadataResponse = {
19837
20284
  * Map of permission keys to permission enum values from PermissionEnum
19838
20285
  */
19839
20286
  permissions: {
19840
- [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'POSIX_ID_POOL.MANAGE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'SERVICE_PROVIDER.MANAGE_MAINTENANCE_ANNOUNCEMENT' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'RESOURCE_ACCESS_SUBNET.CREATE' | 'RESOURCE_ACCESS_SUBNET.UPDATE' | 'RESOURCE_ACCESS_SUBNET.DELETE' | 'OFFERING_ACCESS_SUBNET.CREATE' | 'OFFERING_ACCESS_SUBNET.UPDATE' | 'OFFERING_ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
20287
+ [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'POSIX_ID_POOL.MANAGE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.MANAGE_API_KEY' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'SERVICE_PROVIDER.MANAGE_MAINTENANCE_ANNOUNCEMENT' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'RESOURCE_ACCESS_SUBNET.CREATE' | 'RESOURCE_ACCESS_SUBNET.UPDATE' | 'RESOURCE_ACCESS_SUBNET.DELETE' | 'OFFERING_ACCESS_SUBNET.CREATE' | 'OFFERING_ACCESS_SUBNET.UPDATE' | 'OFFERING_ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
19841
20288
  };
19842
20289
  /**
19843
20290
  * Map of resource types to create permission enums
19844
20291
  */
19845
20292
  permission_map: {
19846
- [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'POSIX_ID_POOL.MANAGE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'SERVICE_PROVIDER.MANAGE_MAINTENANCE_ANNOUNCEMENT' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'RESOURCE_ACCESS_SUBNET.CREATE' | 'RESOURCE_ACCESS_SUBNET.UPDATE' | 'RESOURCE_ACCESS_SUBNET.DELETE' | 'OFFERING_ACCESS_SUBNET.CREATE' | 'OFFERING_ACCESS_SUBNET.UPDATE' | 'OFFERING_ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
20293
+ [key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'POSIX_ID_POOL.MANAGE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.MANAGE_API_KEY' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'SERVICE_PROVIDER.MANAGE_MAINTENANCE_ANNOUNCEMENT' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'RESOURCE_ACCESS_SUBNET.CREATE' | 'RESOURCE_ACCESS_SUBNET.UPDATE' | 'RESOURCE_ACCESS_SUBNET.DELETE' | 'OFFERING_ACCESS_SUBNET.CREATE' | 'OFFERING_ACCESS_SUBNET.UPDATE' | 'OFFERING_ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
19847
20294
  };
19848
20295
  /**
19849
20296
  * Grouped permission descriptions for UI
@@ -19903,6 +20350,7 @@ export type PersonalAccessToken = {
19903
20350
  token_prefix: string;
19904
20351
  scopes: Array<string>;
19905
20352
  readonly allowed_scopes: Array<AllowedScopeOutput>;
20353
+ allowed_networks: Array<string>;
19906
20354
  expires_at: string;
19907
20355
  is_active: boolean;
19908
20356
  last_used_at: string;
@@ -19920,6 +20368,10 @@ export type PersonalAccessTokenCreateRequest = {
19920
20368
  * Optional list of entity bindings restricting where this token can act. Empty list = no entity restriction.
19921
20369
  */
19922
20370
  allowed_scopes?: Array<AllowedScopeInputRequest>;
20371
+ /**
20372
+ * Optional list of CIDR networks the token may be used from. Bare addresses are widened to /32 or /128. Empty list = no network restriction.
20373
+ */
20374
+ allowed_networks?: Array<string>;
19923
20375
  expires_at: string;
19924
20376
  };
19925
20377
  export type PersonalAccessTokenCreated = {
@@ -19931,9 +20383,13 @@ export type PersonalAccessTokenCreated = {
19931
20383
  token: string;
19932
20384
  scopes: Array<string>;
19933
20385
  allowed_scopes: Array<AllowedScopeOutput>;
20386
+ allowed_networks: Array<string>;
19934
20387
  expires_at: string;
19935
20388
  created: string;
19936
20389
  };
20390
+ export type PersonalAccessTokenNetworkAclRequest = {
20391
+ allowed_networks: Array<string>;
20392
+ };
19937
20393
  export type PlanComponent = {
19938
20394
  readonly offering_uuid: string;
19939
20395
  readonly offering_name: string;
@@ -21655,6 +22111,7 @@ export type ProviderOfferingDetails = {
21655
22111
  readonly default_access_subnets: Array<NestedOfferingAccessSubnet>;
21656
22112
  readonly software_catalogs: Array<NestedSoftwareCatalog>;
21657
22113
  readonly partitions: Array<NestedPartition>;
22114
+ readonly qos_profiles: Array<NestedQoS>;
21658
22115
  customer?: string | null;
21659
22116
  readonly customer_uuid: string | null;
21660
22117
  readonly customer_name: string | null;
@@ -22172,6 +22629,7 @@ export type PublicOfferingDetails = {
22172
22629
  readonly default_access_subnets: Array<NestedOfferingAccessSubnet>;
22173
22630
  readonly software_catalogs: Array<NestedSoftwareCatalog>;
22174
22631
  readonly partitions: Array<NestedPartition>;
22632
+ readonly qos_profiles: Array<NestedQoS>;
22175
22633
  customer?: string | null;
22176
22634
  readonly customer_uuid: string | null;
22177
22635
  readonly customer_name: string | null;
@@ -23974,6 +24432,9 @@ export type RemoveOfferingComponentRequest = {
23974
24432
  export type RemovePartitionRequest = {
23975
24433
  partition_uuid: string;
23976
24434
  };
24435
+ export type RemoveQoSRequest = {
24436
+ qos_uuid: string;
24437
+ };
23977
24438
  export type RemoveSoftwareCatalogRequest = {
23978
24439
  /**
23979
24440
  * UUID of the offering catalog to remove
@@ -24308,6 +24769,10 @@ export type Resource = {
24308
24769
  } | null;
24309
24770
  offering_state: OfferingState;
24310
24771
  readonly offering_components: Array<OfferingComponent>;
24772
+ /**
24773
+ * Whether the resource owns any API keys, so the portal can offer key management without knowing which backend serves the resource.
24774
+ */
24775
+ readonly has_api_keys: boolean;
24311
24776
  };
24312
24777
  export type ResourceAccessSubnet = {
24313
24778
  readonly uuid: string;
@@ -24322,6 +24787,38 @@ export type ResourceAccessSubnetRequest = {
24322
24787
  description?: string;
24323
24788
  resource: string;
24324
24789
  };
24790
+ export type ResourceApiKey = {
24791
+ readonly uuid: string;
24792
+ readonly resource_uuid: string;
24793
+ client_id?: string;
24794
+ fingerprint?: string;
24795
+ state?: ResourceApiKeyState;
24796
+ readonly modified: string;
24797
+ error_message?: string;
24798
+ readonly api_key: string;
24799
+ };
24800
+ export type ResourceApiKeyReportCreatedRequest = {
24801
+ resource: string;
24802
+ client_id: string;
24803
+ api_key: string;
24804
+ };
24805
+ export type ResourceApiKeySetErredRequest = {
24806
+ error_message: string;
24807
+ };
24808
+ export type ResourceApiKeySetKeyRequest = {
24809
+ api_key: string;
24810
+ client_id?: string;
24811
+ };
24812
+ export type ResourceApiKeyState = 'Creating' | 'OK' | 'Updating' | 'Terminating' | 'Erred';
24813
+ export type ResourceApiKeyStatus = {
24814
+ readonly uuid: string;
24815
+ readonly resource_uuid: string;
24816
+ client_id?: string;
24817
+ fingerprint?: string;
24818
+ state?: ResourceApiKeyState;
24819
+ readonly modified: string;
24820
+ error_message?: string;
24821
+ };
24325
24822
  export type ResourceBackendIdRequest = {
24326
24823
  backend_id?: string;
24327
24824
  };
@@ -24540,6 +25037,7 @@ export type ResourceProject = {
24540
25037
  readonly removed_date: string | null;
24541
25038
  readonly removed_by: number | null;
24542
25039
  readonly removed_by_username: string | null;
25040
+ readonly created_by_username: string | null;
24543
25041
  readonly termination_metadata: {
24544
25042
  [key: string]: unknown;
24545
25043
  } | null;
@@ -24726,6 +25224,7 @@ export type ResourceTeamMember = {
24726
25224
  image?: string | null;
24727
25225
  readonly role_name: string | null;
24728
25226
  readonly role_uuid: string | null;
25227
+ readonly roles: Array<NestedResourceRolePermission>;
24729
25228
  readonly expiration_time: string | null;
24730
25229
  readonly resource_projects: Array<NestedResourceProjectPermission>;
24731
25230
  };
@@ -26575,6 +27074,10 @@ export type SetOfferingsUsernameRequest = {
26575
27074
  */
26576
27075
  username: string;
26577
27076
  };
27077
+ export type SetPartitionQoSRequest = {
27078
+ partition_uuid: string;
27079
+ qos_options: Array<PartitionQoSItemRequest>;
27080
+ };
26578
27081
  export type SetTokenQuotaRequest = {
26579
27082
  /**
26580
27083
  * UUID of the user to set quota for.
@@ -29049,7 +29552,7 @@ export type UserRoleUpdateRequest = {
29049
29552
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
29050
29553
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
29051
29554
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg' | 'dnb_se' | 'dnb_no' | 'dnb_dk' | 'dnb_fi';
29052
- export type ValueEnum = 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'POSIX_ID_POOL.MANAGE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'SERVICE_PROVIDER.MANAGE_MAINTENANCE_ANNOUNCEMENT' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'RESOURCE_ACCESS_SUBNET.CREATE' | 'RESOURCE_ACCESS_SUBNET.UPDATE' | 'RESOURCE_ACCESS_SUBNET.DELETE' | 'OFFERING_ACCESS_SUBNET.CREATE' | 'OFFERING_ACCESS_SUBNET.UPDATE' | 'OFFERING_ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
29555
+ export type ValueEnum = 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'POSIX_ID_POOL.MANAGE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'ORDER.SET_CONSUMER_INFO' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.MANAGE_API_KEY' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CREATE_PERMISSION' | 'RESOURCE.UPDATE_PERMISSION' | 'RESOURCE.DELETE_PERMISSION' | 'RESOURCE_PROJECT.CREATE_PERMISSION' | 'RESOURCE_PROJECT.UPDATE_PERMISSION' | 'RESOURCE_PROJECT.DELETE_PERMISSION' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'SERVICE_PROVIDER.MANAGE_MAINTENANCE_ANNOUNCEMENT' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'RESOURCE_ACCESS_SUBNET.CREATE' | 'RESOURCE_ACCESS_SUBNET.UPDATE' | 'RESOURCE_ACCESS_SUBNET.DELETE' | 'OFFERING_ACCESS_SUBNET.CREATE' | 'OFFERING_ACCESS_SUBNET.UPDATE' | 'OFFERING_ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'OPENSTACK_ROUTER.MANAGE_GATEWAY' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
29053
29556
  export type VendorNameChoice = {
29054
29557
  value: string;
29055
29558
  label: string;
@@ -29061,7 +29564,7 @@ export type Version = {
29061
29564
  */
29062
29565
  version: string;
29063
29566
  /**
29064
- * Latest available version from GitHub, if available.
29567
+ * Latest available version from GitHub. Only included for staff or support users when update checks are enabled.
29065
29568
  */
29066
29569
  latest_version?: string;
29067
29570
  };
@@ -31075,6 +31578,8 @@ export type ConstanceSettingsRequestForm = {
31075
31578
  PAT_ENABLED?: boolean;
31076
31579
  PAT_MAX_LIFETIME_DAYS?: number;
31077
31580
  PAT_MAX_TOKENS_PER_USER?: number;
31581
+ PAT_MAX_ACL_ENTRIES?: number;
31582
+ PAT_MAX_AUDIT_EVENTS_PER_HOUR?: number;
31078
31583
  };
31079
31584
  export type ConstanceSettingsRequestMultipart = {
31080
31585
  SITE_NAME?: string;
@@ -31396,6 +31901,8 @@ export type ConstanceSettingsRequestMultipart = {
31396
31901
  PAT_ENABLED?: boolean;
31397
31902
  PAT_MAX_LIFETIME_DAYS?: number;
31398
31903
  PAT_MAX_TOKENS_PER_USER?: number;
31904
+ PAT_MAX_ACL_ENTRIES?: number;
31905
+ PAT_MAX_AUDIT_EVENTS_PER_HOUR?: number;
31399
31906
  };
31400
31907
  export type PaymentRequestForm = {
31401
31908
  profile: string;
@@ -31876,8 +32383,8 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
31876
32383
  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';
31877
32384
  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';
31878
32385
  export type BackendResourceReqOEnum = '-created' | 'created';
31879
- 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' | 'default_access_subnets' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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';
31880
- 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' | 'end_date_updated_at' | '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_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_effective_end_date' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'usage_limit_restriction' | 'user_requires_reconsent' | 'username' | 'uuid';
32386
+ 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' | 'default_access_subnets' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'qos_profiles' | 'quotas' | 'resource_options' | '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';
32387
+ 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' | 'end_date_updated_at' | 'endpoints' | 'error_message' | 'error_traceback' | 'has_api_keys' | '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_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_effective_end_date' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'usage_limit_restriction' | 'user_requires_reconsent' | 'username' | 'uuid';
31881
32388
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
31882
32389
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
31883
32390
  export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
@@ -31914,7 +32421,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
31914
32421
  export type SshKeyOEnum = '-name' | 'name';
31915
32422
  export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-overrun_minutes' | '-scheduled_end' | '-scheduled_start' | '-start_delta_minutes' | 'created' | 'name' | 'overrun_minutes' | 'scheduled_end' | 'scheduled_start' | 'start_delta_minutes';
31916
32423
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
31917
- 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' | 'end_date_updated_at' | '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_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_effective_end_date' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'usage_limit_restriction' | 'user_requires_reconsent' | 'username' | 'uuid';
32424
+ 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' | 'end_date_updated_at' | 'endpoints' | 'error_message' | 'error_traceback' | 'has_api_keys' | '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_is_in_grace_period' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_effective_end_date' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'usage_limit_restriction' | 'user_requires_reconsent' | 'username' | 'uuid';
31918
32425
  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';
31919
32426
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
31920
32427
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
@@ -31936,16 +32443,16 @@ export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name'
31936
32443
  export type OfferingUserOEnum = '-created' | '-modified' | '-user_first_name' | '-user_last_name' | '-username' | 'created' | 'modified' | 'user_first_name' | 'user_last_name' | 'username';
31937
32444
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'auto_approved' | 'auto_approved_by_rule_uuid' | 'auto_approved_cost_limit_snapshot' | '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_address' | 'created_by_organization_country' | 'created_by_organization_registry_code' | 'created_by_organization_vat_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'error_updated_at' | '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' | 'output_updated_at' | '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';
31938
32445
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
31939
- export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'config_drive_default' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'default_access_subnets' | 'description' | 'documentation_url' | 'effective_available_limits' | '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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | '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';
32446
+ export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'config_drive_default' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'default_access_subnets' | 'description' | 'documentation_url' | 'effective_available_limits' | '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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'qos_profiles' | 'quotas' | 'resource_options' | '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';
31940
32447
  export type PosixIdPoolFieldEnum = 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'gid_used' | 'gid_utilization' | 'max_gid' | 'max_uid' | 'min_gid' | 'min_uid' | 'next_gid' | 'next_uid' | 'offering' | 'scope' | 'service_provider' | 'uid_used' | 'uid_utilization' | 'url' | 'uuid';
31941
32448
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
31942
- 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' | 'default_access_subnets' | 'description' | 'documentation_url' | 'effective_available_limits' | '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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | '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';
32449
+ 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' | 'default_access_subnets' | 'description' | 'documentation_url' | 'effective_available_limits' | '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' | 'offering_group' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'profile_name' | 'profile_uuid' | 'project' | 'project_name' | 'project_uuid' | 'qos_profiles' | 'quotas' | 'resource_options' | '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';
31943
32450
  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';
31944
32451
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
31945
32452
  export type ProjectFieldEnum = 'affiliation' | 'affiliation_code' | 'affiliation_name' | 'affiliation_uuid' | 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_grace_period_days' | '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' | 'project_metadata' | 'resources_count' | 'science_domain_code' | 'science_domain_name' | 'science_domain_uuid' | 'science_sub_domain' | 'science_sub_domain_code' | 'science_sub_domain_name' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
31946
32453
  export type UserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'can_use_personal_access_tokens' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | '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_admin_deactivated' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_address' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'primary_gid' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'uid_number' | 'url' | 'username' | 'uuid';
31947
32454
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
31948
- export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
32455
+ export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'roles' | 'url' | 'username' | 'uuid';
31949
32456
  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';
31950
32457
  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';
31951
32458
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -33891,39 +34398,72 @@ export type AnonymousChatInteractionsListData = {
33891
34398
  severity?: InjectionSeverityEnum;
33892
34399
  user_slug?: string;
33893
34400
  };
33894
- url: '/api/anonymous-chat-interactions/';
34401
+ url: '/api/anonymous-chat-interactions/';
34402
+ };
34403
+ export type AnonymousChatInteractionsListResponses = {
34404
+ 200: Array<AnonymousChatInteraction>;
34405
+ };
34406
+ export type AnonymousChatInteractionsListResponse = AnonymousChatInteractionsListResponses[keyof AnonymousChatInteractionsListResponses];
34407
+ export type AnonymousChatInteractionsRetrieveData = {
34408
+ body?: never;
34409
+ path: {
34410
+ uuid: string;
34411
+ };
34412
+ query?: never;
34413
+ url: '/api/anonymous-chat-interactions/{uuid}/';
34414
+ };
34415
+ export type AnonymousChatInteractionsRetrieveResponses = {
34416
+ 200: AnonymousChatInteraction;
34417
+ };
34418
+ export type AnonymousChatInteractionsRetrieveResponse = AnonymousChatInteractionsRetrieveResponses[keyof AnonymousChatInteractionsRetrieveResponses];
34419
+ export type AnonymousChatInteractionsBudgetRetrieveData = {
34420
+ body?: never;
34421
+ path?: never;
34422
+ query?: never;
34423
+ url: '/api/anonymous-chat-interactions/budget/';
34424
+ };
34425
+ export type AnonymousChatInteractionsBudgetRetrieveResponses = {
34426
+ 200: AnonymousChatBudgetSnapshot;
34427
+ };
34428
+ export type AnonymousChatInteractionsBudgetRetrieveResponse = AnonymousChatInteractionsBudgetRetrieveResponses[keyof AnonymousChatInteractionsBudgetRetrieveResponses];
34429
+ export type AnonymousChatInteractionsBySessionListData = {
34430
+ body?: never;
34431
+ path: {
34432
+ session_id: string;
34433
+ };
34434
+ query?: {
34435
+ created_from?: string;
34436
+ created_to?: string;
34437
+ has_negative_feedback?: boolean;
34438
+ is_flagged?: boolean;
34439
+ /**
34440
+ * Ordering
34441
+ *
34442
+ *
34443
+ */
34444
+ o?: Array<AnonymousChatInteractionOEnum>;
34445
+ /**
34446
+ * A page number within the paginated result set.
34447
+ */
34448
+ page?: number;
34449
+ /**
34450
+ * Number of results to return per page.
34451
+ */
34452
+ page_size?: number;
34453
+ query?: string;
34454
+ session_id?: string;
34455
+ severity?: InjectionSeverityEnum;
34456
+ user_slug?: string;
34457
+ };
34458
+ url: '/api/anonymous-chat-interactions/by-session/{session_id}/';
33895
34459
  };
33896
- export type AnonymousChatInteractionsListResponses = {
34460
+ export type AnonymousChatInteractionsBySessionListResponses = {
33897
34461
  200: Array<AnonymousChatInteraction>;
33898
34462
  };
33899
- export type AnonymousChatInteractionsListResponse = AnonymousChatInteractionsListResponses[keyof AnonymousChatInteractionsListResponses];
33900
- export type AnonymousChatInteractionsRetrieveData = {
33901
- body?: never;
33902
- path: {
33903
- uuid: string;
33904
- };
33905
- query?: never;
33906
- url: '/api/anonymous-chat-interactions/{uuid}/';
33907
- };
33908
- export type AnonymousChatInteractionsRetrieveResponses = {
33909
- 200: AnonymousChatInteraction;
33910
- };
33911
- export type AnonymousChatInteractionsRetrieveResponse = AnonymousChatInteractionsRetrieveResponses[keyof AnonymousChatInteractionsRetrieveResponses];
33912
- export type AnonymousChatInteractionsBudgetRetrieveData = {
34463
+ export type AnonymousChatInteractionsBySessionListResponse = AnonymousChatInteractionsBySessionListResponses[keyof AnonymousChatInteractionsBySessionListResponses];
34464
+ export type AnonymousChatInteractionsByUserAggregateData = {
33913
34465
  body?: never;
33914
34466
  path?: never;
33915
- query?: never;
33916
- url: '/api/anonymous-chat-interactions/budget/';
33917
- };
33918
- export type AnonymousChatInteractionsBudgetRetrieveResponses = {
33919
- 200: AnonymousChatBudgetSnapshot;
33920
- };
33921
- export type AnonymousChatInteractionsBudgetRetrieveResponse = AnonymousChatInteractionsBudgetRetrieveResponses[keyof AnonymousChatInteractionsBudgetRetrieveResponses];
33922
- export type AnonymousChatInteractionsBySessionListData = {
33923
- body?: never;
33924
- path: {
33925
- session_id: string;
33926
- };
33927
34467
  query?: {
33928
34468
  created_from?: string;
33929
34469
  created_to?: string;
@@ -33948,15 +34488,17 @@ export type AnonymousChatInteractionsBySessionListData = {
33948
34488
  severity?: InjectionSeverityEnum;
33949
34489
  user_slug?: string;
33950
34490
  };
33951
- url: '/api/anonymous-chat-interactions/by-session/{session_id}/';
34491
+ url: '/api/anonymous-chat-interactions/by-user/';
33952
34492
  };
33953
- export type AnonymousChatInteractionsBySessionListResponses = {
33954
- 200: Array<AnonymousChatInteraction>;
34493
+ export type AnonymousChatInteractionsByUserAggregateResponses = {
34494
+ 200: Array<AnonymousChatUserAggregate>;
33955
34495
  };
33956
- export type AnonymousChatInteractionsBySessionListResponse = AnonymousChatInteractionsBySessionListResponses[keyof AnonymousChatInteractionsBySessionListResponses];
33957
- export type AnonymousChatInteractionsByUserAggregateData = {
34496
+ export type AnonymousChatInteractionsByUserAggregateResponse = AnonymousChatInteractionsByUserAggregateResponses[keyof AnonymousChatInteractionsByUserAggregateResponses];
34497
+ export type AnonymousChatInteractionsByUserListData = {
33958
34498
  body?: never;
33959
- path?: never;
34499
+ path: {
34500
+ user_slug: string;
34501
+ };
33960
34502
  query?: {
33961
34503
  created_from?: string;
33962
34504
  created_to?: string;
@@ -33981,17 +34523,15 @@ export type AnonymousChatInteractionsByUserAggregateData = {
33981
34523
  severity?: InjectionSeverityEnum;
33982
34524
  user_slug?: string;
33983
34525
  };
33984
- url: '/api/anonymous-chat-interactions/by-user/';
34526
+ url: '/api/anonymous-chat-interactions/by-user/{user_slug}/';
33985
34527
  };
33986
- export type AnonymousChatInteractionsByUserAggregateResponses = {
33987
- 200: Array<AnonymousChatUserAggregate>;
34528
+ export type AnonymousChatInteractionsByUserListResponses = {
34529
+ 200: Array<AnonymousChatInteraction>;
33988
34530
  };
33989
- export type AnonymousChatInteractionsByUserAggregateResponse = AnonymousChatInteractionsByUserAggregateResponses[keyof AnonymousChatInteractionsByUserAggregateResponses];
33990
- export type AnonymousChatInteractionsByUserListData = {
34531
+ export type AnonymousChatInteractionsByUserListResponse = AnonymousChatInteractionsByUserListResponses[keyof AnonymousChatInteractionsByUserListResponses];
34532
+ export type AnonymousChatInteractionsConversationsListData = {
33991
34533
  body?: never;
33992
- path: {
33993
- user_slug: string;
33994
- };
34534
+ path?: never;
33995
34535
  query?: {
33996
34536
  created_from?: string;
33997
34537
  created_to?: string;
@@ -34016,12 +34556,12 @@ export type AnonymousChatInteractionsByUserListData = {
34016
34556
  severity?: InjectionSeverityEnum;
34017
34557
  user_slug?: string;
34018
34558
  };
34019
- url: '/api/anonymous-chat-interactions/by-user/{user_slug}/';
34559
+ url: '/api/anonymous-chat-interactions/conversations/';
34020
34560
  };
34021
- export type AnonymousChatInteractionsByUserListResponses = {
34022
- 200: Array<AnonymousChatInteraction>;
34561
+ export type AnonymousChatInteractionsConversationsListResponses = {
34562
+ 200: Array<AnonymousChatConversation>;
34023
34563
  };
34024
- export type AnonymousChatInteractionsByUserListResponse = AnonymousChatInteractionsByUserListResponses[keyof AnonymousChatInteractionsByUserListResponses];
34564
+ export type AnonymousChatInteractionsConversationsListResponse = AnonymousChatInteractionsConversationsListResponses[keyof AnonymousChatInteractionsConversationsListResponses];
34025
34565
  export type AnonymousChatInteractionsKpiRetrieveData = {
34026
34566
  body?: never;
34027
34567
  path?: never;
@@ -39285,6 +39825,16 @@ export type ChatThreadsUnarchiveResponses = {
39285
39825
  204: void;
39286
39826
  };
39287
39827
  export type ChatThreadsUnarchiveResponse = ChatThreadsUnarchiveResponses[keyof ChatThreadsUnarchiveResponses];
39828
+ export type ChatThreadsStatsRetrieveData = {
39829
+ body?: never;
39830
+ path?: never;
39831
+ query?: never;
39832
+ url: '/api/chat-threads/stats/';
39833
+ };
39834
+ export type ChatThreadsStatsRetrieveResponses = {
39835
+ 200: ChatThreadStatsResponse;
39836
+ };
39837
+ export type ChatThreadsStatsRetrieveResponse = ChatThreadsStatsRetrieveResponses[keyof ChatThreadsStatsRetrieveResponses];
39288
39838
  export type ChatToolsExecuteData = {
39289
39839
  body: ToolExecuteRequest;
39290
39840
  path?: never;
@@ -43302,6 +43852,10 @@ export type EventsListData = {
43302
43852
  body?: never;
43303
43853
  path?: never;
43304
43854
  query?: {
43855
+ /**
43856
+ * Authentication method
43857
+ */
43858
+ auth_method?: string;
43305
43859
  created_from?: number;
43306
43860
  created_to?: number;
43307
43861
  /**
@@ -43332,6 +43886,10 @@ export type EventsListData = {
43332
43886
  * Number of results to return per page.
43333
43887
  */
43334
43888
  page_size?: number;
43889
+ /**
43890
+ * Personal access token UUID
43891
+ */
43892
+ pat_uuid?: string;
43335
43893
  /**
43336
43894
  * Project UUID
43337
43895
  */
@@ -43359,6 +43917,10 @@ export type EventsCountData = {
43359
43917
  body?: never;
43360
43918
  path?: never;
43361
43919
  query?: {
43920
+ /**
43921
+ * Authentication method
43922
+ */
43923
+ auth_method?: string;
43362
43924
  created_from?: number;
43363
43925
  created_to?: number;
43364
43926
  /**
@@ -43388,6 +43950,10 @@ export type EventsCountData = {
43388
43950
  * Number of results to return per page.
43389
43951
  */
43390
43952
  page_size?: number;
43953
+ /**
43954
+ * Personal access token UUID
43955
+ */
43956
+ pat_uuid?: string;
43391
43957
  /**
43392
43958
  * Project UUID
43393
43959
  */
@@ -53925,6 +54491,18 @@ export type MarketplaceProviderOfferingsAddPartitionResponses = {
53925
54491
  201: OfferingPartition;
53926
54492
  };
53927
54493
  export type MarketplaceProviderOfferingsAddPartitionResponse = MarketplaceProviderOfferingsAddPartitionResponses[keyof MarketplaceProviderOfferingsAddPartitionResponses];
54494
+ export type MarketplaceProviderOfferingsAddQosData = {
54495
+ body: OfferingQoSRequest;
54496
+ path: {
54497
+ uuid: string;
54498
+ };
54499
+ query?: never;
54500
+ url: '/api/marketplace-provider-offerings/{uuid}/add_qos/';
54501
+ };
54502
+ export type MarketplaceProviderOfferingsAddQosResponses = {
54503
+ 201: OfferingQoS;
54504
+ };
54505
+ export type MarketplaceProviderOfferingsAddQosResponse = MarketplaceProviderOfferingsAddQosResponses[keyof MarketplaceProviderOfferingsAddQosResponses];
53928
54506
  export type MarketplaceProviderOfferingsAddSoftwareCatalogData = {
53929
54507
  body: OfferingSoftwareCatalogRequest;
53930
54508
  path: {
@@ -55864,6 +56442,21 @@ export type MarketplaceProviderOfferingsRemovePartitionResponses = {
55864
56442
  204: void;
55865
56443
  };
55866
56444
  export type MarketplaceProviderOfferingsRemovePartitionResponse = MarketplaceProviderOfferingsRemovePartitionResponses[keyof MarketplaceProviderOfferingsRemovePartitionResponses];
56445
+ export type MarketplaceProviderOfferingsRemoveQosData = {
56446
+ body: RemoveQoSRequest;
56447
+ path: {
56448
+ uuid: string;
56449
+ };
56450
+ query?: never;
56451
+ url: '/api/marketplace-provider-offerings/{uuid}/remove_qos/';
56452
+ };
56453
+ export type MarketplaceProviderOfferingsRemoveQosResponses = {
56454
+ /**
56455
+ * No response body
56456
+ */
56457
+ 204: void;
56458
+ };
56459
+ export type MarketplaceProviderOfferingsRemoveQosResponse = MarketplaceProviderOfferingsRemoveQosResponses[keyof MarketplaceProviderOfferingsRemoveQosResponses];
55867
56460
  export type MarketplaceProviderOfferingsRemoveSoftwareCatalogData = {
55868
56461
  body: RemoveSoftwareCatalogRequest;
55869
56462
  path: {
@@ -55907,6 +56500,18 @@ export type MarketplaceProviderOfferingsSetOfferingGroupResponses = {
55907
56500
  */
55908
56501
  200: unknown;
55909
56502
  };
56503
+ export type MarketplaceProviderOfferingsSetPartitionQosData = {
56504
+ body: SetPartitionQoSRequest;
56505
+ path: {
56506
+ uuid: string;
56507
+ };
56508
+ query?: never;
56509
+ url: '/api/marketplace-provider-offerings/{uuid}/set_partition_qos/';
56510
+ };
56511
+ export type MarketplaceProviderOfferingsSetPartitionQosResponses = {
56512
+ 200: OfferingPartition;
56513
+ };
56514
+ export type MarketplaceProviderOfferingsSetPartitionQosResponse = MarketplaceProviderOfferingsSetPartitionQosResponses[keyof MarketplaceProviderOfferingsSetPartitionQosResponses];
55910
56515
  export type MarketplaceProviderOfferingsSetProfileData = {
55911
56516
  body?: OfferingProfileBindRequest;
55912
56517
  path: {
@@ -56216,6 +56821,18 @@ export type MarketplaceProviderOfferingsUpdatePartitionPartialUpdateResponses =
56216
56821
  200: OfferingPartition;
56217
56822
  };
56218
56823
  export type MarketplaceProviderOfferingsUpdatePartitionPartialUpdateResponse = MarketplaceProviderOfferingsUpdatePartitionPartialUpdateResponses[keyof MarketplaceProviderOfferingsUpdatePartitionPartialUpdateResponses];
56824
+ export type MarketplaceProviderOfferingsUpdateQosPartialUpdateData = {
56825
+ body?: PatchedOfferingQoSUpdateRequest;
56826
+ path: {
56827
+ uuid: string;
56828
+ };
56829
+ query?: never;
56830
+ url: '/api/marketplace-provider-offerings/{uuid}/update_qos/';
56831
+ };
56832
+ export type MarketplaceProviderOfferingsUpdateQosPartialUpdateResponses = {
56833
+ 200: OfferingQoS;
56834
+ };
56835
+ export type MarketplaceProviderOfferingsUpdateQosPartialUpdateResponse = MarketplaceProviderOfferingsUpdateQosPartialUpdateResponses[keyof MarketplaceProviderOfferingsUpdateQosPartialUpdateResponses];
56219
56836
  export type MarketplaceProviderOfferingsUpdateResourceOptionsData = {
56220
56837
  body: OfferingResourceOptionsUpdateRequest;
56221
56838
  path: {
@@ -56337,6 +56954,46 @@ export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses =
56337
56954
  200: UserHasResourceAccess;
56338
56955
  };
56339
56956
  export type MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponse = MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses[keyof MarketplaceProviderOfferingsUserHasResourceAccessRetrieveResponses];
56957
+ export type MarketplaceProviderOfferingsAggregatedAccessSubnetsRetrieveData = {
56958
+ body?: never;
56959
+ path?: never;
56960
+ query: {
56961
+ /**
56962
+ * Also merge in the organization-level access subnets of customers owning non-terminated resources of the offerings.
56963
+ */
56964
+ include_organization_subnets?: boolean;
56965
+ /**
56966
+ * UUID of an offering to include. May be repeated.
56967
+ */
56968
+ offering_uuid: Array<string>;
56969
+ };
56970
+ url: '/api/marketplace-provider-offerings/aggregated_access_subnets/';
56971
+ };
56972
+ export type MarketplaceProviderOfferingsAggregatedAccessSubnetsRetrieveResponses = {
56973
+ 200: AggregatedAccessSubnets;
56974
+ };
56975
+ export type MarketplaceProviderOfferingsAggregatedAccessSubnetsRetrieveResponse = MarketplaceProviderOfferingsAggregatedAccessSubnetsRetrieveResponses[keyof MarketplaceProviderOfferingsAggregatedAccessSubnetsRetrieveResponses];
56976
+ export type MarketplaceProviderOfferingsAggregatedAccessSubnetsCountData = {
56977
+ body?: never;
56978
+ path?: never;
56979
+ query: {
56980
+ /**
56981
+ * Also merge in the organization-level access subnets of customers owning non-terminated resources of the offerings.
56982
+ */
56983
+ include_organization_subnets?: boolean;
56984
+ /**
56985
+ * UUID of an offering to include. May be repeated.
56986
+ */
56987
+ offering_uuid: Array<string>;
56988
+ };
56989
+ url: '/api/marketplace-provider-offerings/aggregated_access_subnets/';
56990
+ };
56991
+ export type MarketplaceProviderOfferingsAggregatedAccessSubnetsCountResponses = {
56992
+ /**
56993
+ * No response body
56994
+ */
56995
+ 200: unknown;
56996
+ };
56340
56997
  export type MarketplaceProviderOfferingsGroupsListData = {
56341
56998
  body?: never;
56342
56999
  path?: never;
@@ -58139,6 +58796,22 @@ export type MarketplaceProviderResourcesSetLimitsResponses = {
58139
58796
  200: Status;
58140
58797
  };
58141
58798
  export type MarketplaceProviderResourcesSetLimitsResponse = MarketplaceProviderResourcesSetLimitsResponses[keyof MarketplaceProviderResourcesSetLimitsResponses];
58799
+ export type MarketplaceProviderResourcesSetMembershipSyncStatusesData = {
58800
+ body: MemberSyncStatusReportRequest;
58801
+ path: {
58802
+ uuid: string;
58803
+ };
58804
+ query?: never;
58805
+ url: '/api/marketplace-provider-resources/{uuid}/set_membership_sync_statuses/';
58806
+ };
58807
+ export type MarketplaceProviderResourcesSetMembershipSyncStatusesErrors = {
58808
+ 409: DetailResponse;
58809
+ };
58810
+ export type MarketplaceProviderResourcesSetMembershipSyncStatusesError = MarketplaceProviderResourcesSetMembershipSyncStatusesErrors[keyof MarketplaceProviderResourcesSetMembershipSyncStatusesErrors];
58811
+ export type MarketplaceProviderResourcesSetMembershipSyncStatusesResponses = {
58812
+ 200: MemberSyncStatusReportResult;
58813
+ };
58814
+ export type MarketplaceProviderResourcesSetMembershipSyncStatusesResponse = MarketplaceProviderResourcesSetMembershipSyncStatusesResponses[keyof MarketplaceProviderResourcesSetMembershipSyncStatusesResponses];
58142
58815
  export type MarketplaceProviderResourcesSetPausedData = {
58143
58816
  body?: ResourcePausedRequest;
58144
58817
  path: {
@@ -58199,6 +58872,25 @@ export type MarketplaceProviderResourcesSubmitReportResponses = {
58199
58872
  200: Status;
58200
58873
  };
58201
58874
  export type MarketplaceProviderResourcesSubmitReportResponse = MarketplaceProviderResourcesSubmitReportResponses[keyof MarketplaceProviderResourcesSubmitReportResponses];
58875
+ export type MarketplaceProviderResourcesSyncUserRolesData = {
58876
+ body?: never;
58877
+ path: {
58878
+ uuid: string;
58879
+ };
58880
+ query?: never;
58881
+ url: '/api/marketplace-provider-resources/{uuid}/sync_user_roles/';
58882
+ };
58883
+ export type MarketplaceProviderResourcesSyncUserRolesErrors = {
58884
+ 409: DetailResponse;
58885
+ 429: DetailResponse;
58886
+ };
58887
+ export type MarketplaceProviderResourcesSyncUserRolesError = MarketplaceProviderResourcesSyncUserRolesErrors[keyof MarketplaceProviderResourcesSyncUserRolesErrors];
58888
+ export type MarketplaceProviderResourcesSyncUserRolesResponses = {
58889
+ /**
58890
+ * No response body
58891
+ */
58892
+ 200: unknown;
58893
+ };
58202
58894
  export type MarketplaceProviderResourcesTeamListData = {
58203
58895
  body?: never;
58204
58896
  path: {
@@ -59009,6 +59701,151 @@ export type MarketplaceResourceAccessSubnetsUpdateResponses = {
59009
59701
  200: ResourceAccessSubnet;
59010
59702
  };
59011
59703
  export type MarketplaceResourceAccessSubnetsUpdateResponse = MarketplaceResourceAccessSubnetsUpdateResponses[keyof MarketplaceResourceAccessSubnetsUpdateResponses];
59704
+ export type MarketplaceResourceApiKeysListData = {
59705
+ body?: never;
59706
+ path?: never;
59707
+ query?: {
59708
+ /**
59709
+ * A page number within the paginated result set.
59710
+ */
59711
+ page?: number;
59712
+ /**
59713
+ * Number of results to return per page.
59714
+ */
59715
+ page_size?: number;
59716
+ /**
59717
+ * Resource UUID
59718
+ */
59719
+ resource_uuid?: string;
59720
+ };
59721
+ url: '/api/marketplace-resource-api-keys/';
59722
+ };
59723
+ export type MarketplaceResourceApiKeysListResponses = {
59724
+ 200: Array<ResourceApiKeyStatus>;
59725
+ };
59726
+ export type MarketplaceResourceApiKeysListResponse = MarketplaceResourceApiKeysListResponses[keyof MarketplaceResourceApiKeysListResponses];
59727
+ export type MarketplaceResourceApiKeysCountData = {
59728
+ body?: never;
59729
+ path?: never;
59730
+ query?: {
59731
+ /**
59732
+ * A page number within the paginated result set.
59733
+ */
59734
+ page?: number;
59735
+ /**
59736
+ * Number of results to return per page.
59737
+ */
59738
+ page_size?: number;
59739
+ /**
59740
+ * Resource UUID
59741
+ */
59742
+ resource_uuid?: string;
59743
+ };
59744
+ url: '/api/marketplace-resource-api-keys/';
59745
+ };
59746
+ export type MarketplaceResourceApiKeysCountResponses = {
59747
+ /**
59748
+ * No response body
59749
+ */
59750
+ 200: unknown;
59751
+ };
59752
+ export type MarketplaceResourceApiKeysDestroyData = {
59753
+ body?: never;
59754
+ path: {
59755
+ uuid: string;
59756
+ };
59757
+ query?: never;
59758
+ url: '/api/marketplace-resource-api-keys/{uuid}/';
59759
+ };
59760
+ export type MarketplaceResourceApiKeysDestroyResponses = {
59761
+ /**
59762
+ * No response body
59763
+ */
59764
+ 204: void;
59765
+ };
59766
+ export type MarketplaceResourceApiKeysDestroyResponse = MarketplaceResourceApiKeysDestroyResponses[keyof MarketplaceResourceApiKeysDestroyResponses];
59767
+ export type MarketplaceResourceApiKeysRetrieveData = {
59768
+ body?: never;
59769
+ path: {
59770
+ uuid: string;
59771
+ };
59772
+ query?: never;
59773
+ url: '/api/marketplace-resource-api-keys/{uuid}/';
59774
+ };
59775
+ export type MarketplaceResourceApiKeysRetrieveResponses = {
59776
+ 200: ResourceApiKeyStatus;
59777
+ };
59778
+ export type MarketplaceResourceApiKeysRetrieveResponse = MarketplaceResourceApiKeysRetrieveResponses[keyof MarketplaceResourceApiKeysRetrieveResponses];
59779
+ export type MarketplaceResourceApiKeysRevealRetrieveData = {
59780
+ body?: never;
59781
+ path: {
59782
+ uuid: string;
59783
+ };
59784
+ query?: never;
59785
+ url: '/api/marketplace-resource-api-keys/{uuid}/reveal/';
59786
+ };
59787
+ export type MarketplaceResourceApiKeysRevealRetrieveResponses = {
59788
+ 200: ResourceApiKey;
59789
+ };
59790
+ export type MarketplaceResourceApiKeysRevealRetrieveResponse = MarketplaceResourceApiKeysRevealRetrieveResponses[keyof MarketplaceResourceApiKeysRevealRetrieveResponses];
59791
+ export type MarketplaceResourceApiKeysRevokeData = {
59792
+ body?: never;
59793
+ path: {
59794
+ uuid: string;
59795
+ };
59796
+ query?: never;
59797
+ url: '/api/marketplace-resource-api-keys/{uuid}/revoke/';
59798
+ };
59799
+ export type MarketplaceResourceApiKeysRevokeResponses = {
59800
+ 202: Status;
59801
+ };
59802
+ export type MarketplaceResourceApiKeysRevokeResponse = MarketplaceResourceApiKeysRevokeResponses[keyof MarketplaceResourceApiKeysRevokeResponses];
59803
+ export type MarketplaceResourceApiKeysRotateData = {
59804
+ body?: never;
59805
+ path: {
59806
+ uuid: string;
59807
+ };
59808
+ query?: never;
59809
+ url: '/api/marketplace-resource-api-keys/{uuid}/rotate/';
59810
+ };
59811
+ export type MarketplaceResourceApiKeysRotateResponses = {
59812
+ 202: Status;
59813
+ };
59814
+ export type MarketplaceResourceApiKeysRotateResponse = MarketplaceResourceApiKeysRotateResponses[keyof MarketplaceResourceApiKeysRotateResponses];
59815
+ export type MarketplaceResourceApiKeysSetErredData = {
59816
+ body: ResourceApiKeySetErredRequest;
59817
+ path: {
59818
+ uuid: string;
59819
+ };
59820
+ query?: never;
59821
+ url: '/api/marketplace-resource-api-keys/{uuid}/set_erred/';
59822
+ };
59823
+ export type MarketplaceResourceApiKeysSetErredResponses = {
59824
+ 200: ResourceApiKeyStatus;
59825
+ };
59826
+ export type MarketplaceResourceApiKeysSetErredResponse = MarketplaceResourceApiKeysSetErredResponses[keyof MarketplaceResourceApiKeysSetErredResponses];
59827
+ export type MarketplaceResourceApiKeysSetKeyData = {
59828
+ body: ResourceApiKeySetKeyRequest;
59829
+ path: {
59830
+ uuid: string;
59831
+ };
59832
+ query?: never;
59833
+ url: '/api/marketplace-resource-api-keys/{uuid}/set_key/';
59834
+ };
59835
+ export type MarketplaceResourceApiKeysSetKeyResponses = {
59836
+ 200: ResourceApiKeyStatus;
59837
+ };
59838
+ export type MarketplaceResourceApiKeysSetKeyResponse = MarketplaceResourceApiKeysSetKeyResponses[keyof MarketplaceResourceApiKeysSetKeyResponses];
59839
+ export type MarketplaceResourceApiKeysReportCreatedData = {
59840
+ body: ResourceApiKeyReportCreatedRequest;
59841
+ path?: never;
59842
+ query?: never;
59843
+ url: '/api/marketplace-resource-api-keys/report_created/';
59844
+ };
59845
+ export type MarketplaceResourceApiKeysReportCreatedResponses = {
59846
+ 201: ResourceApiKeyStatus;
59847
+ };
59848
+ export type MarketplaceResourceApiKeysReportCreatedResponse = MarketplaceResourceApiKeysReportCreatedResponses[keyof MarketplaceResourceApiKeysReportCreatedResponses];
59012
59849
  export type MarketplaceResourceLimitChangeRequestsListData = {
59013
59850
  body?: never;
59014
59851
  path?: never;
@@ -79924,6 +80761,18 @@ export type PersonalAccessTokensRotateResponses = {
79924
80761
  201: PersonalAccessTokenCreated;
79925
80762
  };
79926
80763
  export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
80764
+ export type PersonalAccessTokensSetNetworkAclData = {
80765
+ body: PersonalAccessTokenNetworkAclRequest;
80766
+ path: {
80767
+ uuid: string;
80768
+ };
80769
+ query?: never;
80770
+ url: '/api/personal-access-tokens/{uuid}/set_network_acl/';
80771
+ };
80772
+ export type PersonalAccessTokensSetNetworkAclResponses = {
80773
+ 200: PersonalAccessToken;
80774
+ };
80775
+ export type PersonalAccessTokensSetNetworkAclResponse = PersonalAccessTokensSetNetworkAclResponses[keyof PersonalAccessTokensSetNetworkAclResponses];
79927
80776
  export type PersonalAccessTokensAvailableBindingTargetsListData = {
79928
80777
  body?: never;
79929
80778
  path?: never;
@@ -84224,7 +85073,7 @@ export type ProviderCannedResponsesUpdateResponses = {
84224
85073
  };
84225
85074
  export type ProviderCannedResponsesUpdateResponse = ProviderCannedResponsesUpdateResponses[keyof ProviderCannedResponsesUpdateResponses];
84226
85075
  export type ProviderCannedResponsesRenderData = {
84227
- body: ProviderCannedResponseRequest;
85076
+ body?: CannedResponseRenderRequest;
84228
85077
  path: {
84229
85078
  uuid: string;
84230
85079
  };
@@ -84232,11 +85081,9 @@ export type ProviderCannedResponsesRenderData = {
84232
85081
  url: '/api/provider-canned-responses/{uuid}/render/';
84233
85082
  };
84234
85083
  export type ProviderCannedResponsesRenderResponses = {
84235
- /**
84236
- * No response body
84237
- */
84238
- 200: unknown;
85084
+ 200: CannedResponseRenderResponse;
84239
85085
  };
85086
+ export type ProviderCannedResponsesRenderResponse = ProviderCannedResponsesRenderResponses[keyof ProviderCannedResponsesRenderResponses];
84240
85087
  export type ProviderHelpdesksListData = {
84241
85088
  body?: never;
84242
85089
  path?: never;
@@ -90593,11 +91440,9 @@ export type SupportCannedResponsesRenderData = {
90593
91440
  url: '/api/support-canned-responses/{uuid}/render/';
90594
91441
  };
90595
91442
  export type SupportCannedResponsesRenderResponses = {
90596
- /**
90597
- * No response body
90598
- */
90599
- 200: unknown;
91443
+ 200: CannedResponseRenderResponse;
90600
91444
  };
91445
+ export type SupportCannedResponsesRenderResponse = SupportCannedResponsesRenderResponses[keyof SupportCannedResponsesRenderResponses];
90601
91446
  export type SupportCommentsListData = {
90602
91447
  body?: never;
90603
91448
  path?: never;