waldur-js-client 8.0.10-dev.1 → 8.0.10-dev.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -143,6 +143,25 @@ export type AdministrativeAccess = {
143
143
  support_count?: number;
144
144
  users?: Array<AdminUser>;
145
145
  };
146
+ export type AffiliateEarnings = {
147
+ total_earned: string;
148
+ withdrawable_balance: string;
149
+ per_month: Array<AffiliateEarningsMonth>;
150
+ };
151
+ export type AffiliateEarningsMonth = {
152
+ year: number;
153
+ month: number;
154
+ amount: string;
155
+ };
156
+ export type AffiliateFeeAccrual = {
157
+ readonly uuid: string;
158
+ amount: string;
159
+ readonly customer_name: string;
160
+ readonly affiliate_uuid: string;
161
+ readonly invoice_year: number;
162
+ readonly invoice_month: number;
163
+ readonly created: string;
164
+ };
146
165
  export type AffiliatedOrganization = {
147
166
  readonly uuid: string;
148
167
  readonly url: string;
@@ -2729,6 +2748,7 @@ export type BasicUser = {
2729
2748
  };
2730
2749
  export type BidEnum = 'eager' | 'willing' | 'not_willing' | 'conflict';
2731
2750
  export type BillingModeEnum = 'monthly' | 'prepaid' | 'usage';
2751
+ export type BillingSourceEnum = 'quota' | 'placement';
2732
2752
  export type BillingTypeEnum = 'fixed' | 'usage' | 'limit' | 'one' | 'few';
2733
2753
  export type BillingUnit = 'month' | 'quarter' | 'half_month' | 'day' | 'hour' | 'quantity';
2734
2754
  export type BlankEnum = '';
@@ -3095,6 +3115,7 @@ export type CallApplicantVisibilityConfig = {
3095
3115
  expose_organization_type?: boolean;
3096
3116
  expose_organization_registry_code?: boolean;
3097
3117
  expose_organization_vat_code?: boolean;
3118
+ expose_organization_address?: boolean;
3098
3119
  expose_affiliations?: boolean;
3099
3120
  expose_phone_number?: boolean;
3100
3121
  expose_job_title?: boolean;
@@ -3110,6 +3131,8 @@ export type CallApplicantVisibilityConfig = {
3110
3131
  expose_civil_number?: boolean;
3111
3132
  expose_birth_date?: boolean;
3112
3133
  expose_active_isds?: boolean;
3134
+ expose_uid_number?: boolean;
3135
+ expose_primary_gid?: boolean;
3113
3136
  readonly exposed_fields: Array<string>;
3114
3137
  /**
3115
3138
  * Return True if this is a default (unsaved) config.
@@ -3126,6 +3149,7 @@ export type CallApplicantVisibilityConfigRequest = {
3126
3149
  expose_organization_type?: boolean;
3127
3150
  expose_organization_registry_code?: boolean;
3128
3151
  expose_organization_vat_code?: boolean;
3152
+ expose_organization_address?: boolean;
3129
3153
  expose_affiliations?: boolean;
3130
3154
  expose_phone_number?: boolean;
3131
3155
  expose_job_title?: boolean;
@@ -3141,6 +3165,8 @@ export type CallApplicantVisibilityConfigRequest = {
3141
3165
  expose_civil_number?: boolean;
3142
3166
  expose_birth_date?: boolean;
3143
3167
  expose_active_isds?: boolean;
3168
+ expose_uid_number?: boolean;
3169
+ expose_primary_gid?: boolean;
3144
3170
  };
3145
3171
  export type CallAssignmentConfiguration = {
3146
3172
  readonly uuid: string;
@@ -5195,6 +5221,8 @@ export type ConstanceSettings = {
5195
5221
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5196
5222
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5197
5223
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5224
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
5225
+ AFFILIATES_ENABLED?: boolean;
5198
5226
  MATRIX_ENABLED?: boolean;
5199
5227
  MATRIX_HOMESERVER_URL?: string;
5200
5228
  MATRIX_HOMESERVER_PUBLIC_URL?: string;
@@ -5497,6 +5525,8 @@ export type ConstanceSettingsRequest = {
5497
5525
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5498
5526
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5499
5527
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5528
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
5529
+ AFFILIATES_ENABLED?: boolean;
5500
5530
  MATRIX_ENABLED?: boolean;
5501
5531
  MATRIX_HOMESERVER_URL?: string;
5502
5532
  MATRIX_HOMESERVER_PUBLIC_URL?: string;
@@ -5718,6 +5748,30 @@ export type CreateAttachmentsRequest = {
5718
5748
  */
5719
5749
  attachments: Array<Blob | File>;
5720
5750
  };
5751
+ export type CreateCustomerAffiliate = {
5752
+ readonly uuid: string;
5753
+ readonly url: string;
5754
+ customer: string;
5755
+ readonly customer_name: string;
5756
+ readonly customer_uuid: string;
5757
+ affiliate: string;
5758
+ readonly affiliate_name: string;
5759
+ readonly affiliate_uuid: string;
5760
+ fee_percent?: string;
5761
+ is_active?: boolean;
5762
+ start_date?: string | null;
5763
+ end_date?: string | null;
5764
+ readonly total_earned: number;
5765
+ readonly created: string;
5766
+ };
5767
+ export type CreateCustomerAffiliateRequest = {
5768
+ customer: string;
5769
+ affiliate: string;
5770
+ fee_percent?: string;
5771
+ is_active?: boolean;
5772
+ start_date?: string | null;
5773
+ end_date?: string | null;
5774
+ };
5721
5775
  export type CreateCustomerCredit = {
5722
5776
  readonly uuid: string;
5723
5777
  readonly url: string;
@@ -5735,6 +5789,13 @@ export type CreateCustomerCredit = {
5735
5789
  apply_as_minimal_consumption?: boolean;
5736
5790
  readonly allocated_to_projects: number;
5737
5791
  readonly consumption_last_month: number;
5792
+ /**
5793
+ * Part of the credit that may leave the platform via payouts or
5794
+ * transfers: earnings-typed ledger inflows minus outflows, capped by
5795
+ * the current credit value so that staff-granted (promotional) credit
5796
+ * is never withdrawable and credit expiry wipes earnings too.
5797
+ */
5798
+ readonly withdrawable_balance: number;
5738
5799
  };
5739
5800
  export type CreateCustomerCreditRequest = {
5740
5801
  value?: string;
@@ -5943,6 +6004,16 @@ export type CredentialsValidationResponse = {
5943
6004
  error?: string;
5944
6005
  server_info?: ServerInfo | null;
5945
6006
  };
6007
+ export type CreditTransaction = {
6008
+ readonly uuid: string;
6009
+ readonly created: string;
6010
+ amount: string;
6011
+ transaction_type: TransactionTypeEnum;
6012
+ readonly transaction_type_display: string;
6013
+ comment?: string;
6014
+ readonly customer_uuid: string;
6015
+ readonly customer_name: string;
6016
+ };
5946
6017
  export type CurrentQosStatusEnum = 'normal' | 'notification' | 'slowdown' | 'blocked';
5947
6018
  export type Customer = {
5948
6019
  readonly url: string;
@@ -6067,12 +6138,29 @@ export type Customer = {
6067
6138
  readonly payment_profiles: Array<PaymentProfile>;
6068
6139
  readonly customer_credit: number | null;
6069
6140
  readonly customer_unallocated_credit: number | null;
6141
+ readonly has_affiliate_links: boolean;
6070
6142
  readonly is_service_provider: boolean;
6071
6143
  readonly service_provider: string | null;
6072
6144
  readonly service_provider_uuid: string | null;
6073
6145
  readonly call_managing_organization_uuid: string | null;
6074
6146
  billing_price_estimate: NestedPriceEstimate;
6075
6147
  };
6148
+ export type CustomerAffiliate = {
6149
+ readonly uuid: string;
6150
+ readonly url: string;
6151
+ customer: string;
6152
+ readonly customer_name: string;
6153
+ readonly customer_uuid: string;
6154
+ affiliate: string;
6155
+ readonly affiliate_name: string;
6156
+ readonly affiliate_uuid: string;
6157
+ fee_percent?: string;
6158
+ is_active?: boolean;
6159
+ start_date?: string | null;
6160
+ end_date?: string | null;
6161
+ readonly total_earned: number;
6162
+ readonly created: string;
6163
+ };
6076
6164
  export type CustomerBillingSummaryBillingSync = {
6077
6165
  uuid: string;
6078
6166
  report_period: string;
@@ -6189,6 +6277,13 @@ export type CustomerCredit = {
6189
6277
  apply_as_minimal_consumption?: boolean;
6190
6278
  readonly allocated_to_projects: number;
6191
6279
  readonly consumption_last_month: number;
6280
+ /**
6281
+ * Part of the credit that may leave the platform via payouts or
6282
+ * transfers: earnings-typed ledger inflows minus outflows, capped by
6283
+ * the current credit value so that staff-granted (promotional) credit
6284
+ * is never withdrawable and credit expiry wipes earnings too.
6285
+ */
6286
+ readonly withdrawable_balance: number;
6192
6287
  };
6193
6288
  export type CustomerCreditConsumption = {
6194
6289
  readonly date: string;
@@ -6956,15 +7051,16 @@ export type DigitalOceanSize = {
6956
7051
  transfer: number;
6957
7052
  readonly regions: Array<DigitalOceanRegion>;
6958
7053
  };
7054
+ export type DiscountAggregationEnum = 'resource' | 'customer';
6959
7055
  export type DiscountConfigRequest = {
6960
7056
  /**
6961
- * Minimum quantity to be eligible for discount.
7057
+ * Volume discount formula evaluated with the billed quantity bound to `usage`; returns a discount percentage (0-100). Empty removes the discount. Example: '10 if usage >= 100 else 0'.
6962
7058
  */
6963
- discount_threshold?: number | null;
7059
+ discount_formula?: string | null;
6964
7060
  /**
6965
- * Discount rate in percentage (0-100).
7061
+ * Whether the discount is computed on a single resource's usage or aggregated across all of the customer's resources of the offering.
6966
7062
  */
6967
- discount_rate?: number | null;
7063
+ discount_aggregation?: DiscountAggregationEnum;
6968
7064
  };
6969
7065
  export type DiscountTypeEnum = 'discount' | 'special_price';
6970
7066
  export type DiscountsUpdateRequest = {
@@ -7296,6 +7392,26 @@ export type DuplicateCallRequestRequest = {
7296
7392
  copy_matching_configuration?: boolean;
7297
7393
  copy_assignment_configuration?: boolean;
7298
7394
  };
7395
+ export type DuplicateOfferingCandidate = {
7396
+ id: number;
7397
+ uuid: string;
7398
+ name: string;
7399
+ state: string;
7400
+ active_resources: number;
7401
+ total_resources: number;
7402
+ is_recommended_keeper: boolean;
7403
+ };
7404
+ export type DuplicateOfferingGroup = {
7405
+ tenant_id: number;
7406
+ tenant_uuid: string | null;
7407
+ tenant_name: string | null;
7408
+ customer_name: string | null;
7409
+ customer_uuid: string | null;
7410
+ offering_type: string;
7411
+ recommended_keeper_id: number;
7412
+ orphan_count: number;
7413
+ candidates: Array<DuplicateOfferingCandidate>;
7414
+ };
7299
7415
  export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'offering-usage' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
7300
7416
  export type EffectiveRoute = {
7301
7417
  destination: string;
@@ -7408,7 +7524,7 @@ export type EventMetadataResponse = {
7408
7524
  * Map of event group keys to lists of event type enums from EventType
7409
7525
  */
7410
7526
  event_groups: {
7411
- [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_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' | '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' | '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_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'>;
7527
+ [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_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' | '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'>;
7412
7528
  };
7413
7529
  };
7414
7530
  export type EventStats = {
@@ -7497,7 +7613,7 @@ export type EventSubscriptionRequest = {
7497
7613
  */
7498
7614
  observable_objects?: Array<EventSubscriptionObservableObjectRequest>;
7499
7615
  };
7500
- export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_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' | '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' | '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_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';
7616
+ export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_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' | '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';
7501
7617
  export type ExecuteActionErrorResponse = {
7502
7618
  error: string;
7503
7619
  };
@@ -9817,6 +9933,9 @@ export type MaintenanceAnnouncement = {
9817
9933
  * When the maintenance actually completed
9818
9934
  */
9819
9935
  readonly actual_end: string | null;
9936
+ readonly overrun_minutes: number | null;
9937
+ readonly start_delta_minutes: number | null;
9938
+ timing_bucket: TimingBucketEnum;
9820
9939
  /**
9821
9940
  * Service provider announcing the maintenance
9822
9941
  */
@@ -10040,6 +10159,18 @@ export type MaintenanceStatsSummary = {
10040
10159
  * Percentage of maintenances completed on time
10041
10160
  */
10042
10161
  on_time_completion_rate: number | null;
10162
+ /**
10163
+ * Fraction (0-1) of completed maintenances that finished within 15 minutes of their scheduled end
10164
+ */
10165
+ on_time_rate_15min: number | null;
10166
+ /**
10167
+ * Mean overrun in hours across completed maintenances that ran past their scheduled end
10168
+ */
10169
+ avg_overrun_hours: number | null;
10170
+ /**
10171
+ * Number of emergency-type maintenances in the window
10172
+ */
10173
+ emergency_count: number;
10043
10174
  };
10044
10175
  export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
10045
10176
  export type ManagedProject = {
@@ -10275,6 +10406,10 @@ export type MarketplaceServiceProviderUser = {
10275
10406
  * VAT code of the user's organization
10276
10407
  */
10277
10408
  organization_vat_code?: string;
10409
+ /**
10410
+ * Postal address of the user's organization
10411
+ */
10412
+ organization_address?: string;
10278
10413
  /**
10279
10414
  * REFEDS assurance profile URIs from identity provider
10280
10415
  */
@@ -10518,6 +10653,14 @@ export type MergedPluginOptions = {
10518
10653
  * Required user role in a project for provisioning of resources
10519
10654
  */
10520
10655
  required_team_role_for_provisioning?: string | null;
10656
+ /**
10657
+ * List of project or organization role names (e.g. 'PROJECT.MANAGER') allowed to view and order this offering. When set, the offering is hidden from the catalog for other users and they cannot create orders for it. Whether their orders skip consumer review still depends on the role having the order-approval permission.
10658
+ */
10659
+ restricted_to_roles?: Array<string>;
10660
+ /**
10661
+ * List of project or organization role names (e.g. 'PROJECT.MANAGER') whose orders skip consumer review for this offering. The creator must hold the role on the target project or its organization. Independent of restricted_to_roles (which governs visibility/ordering) and of the ORDER.APPROVE permission. Provider review and purchase-order requirements still apply. Only staff can change this option.
10662
+ */
10663
+ auto_approve_for_roles?: Array<string>;
10521
10664
  /**
10522
10665
  * If set to True, users will be able to upload purchase orders.
10523
10666
  */
@@ -10610,6 +10753,10 @@ export type MergedPluginOptions = {
10610
10753
  * Interval in minutes between usage polling for this offering (default: 60)
10611
10754
  */
10612
10755
  usage_poll_interval_minutes?: number;
10756
+ /**
10757
+ * Source for OpenStack instance compute ComponentUsage: 'quota' (flavor-derived Nova quota, default) or 'placement' (Placement allocations; also bills VGPU/PCI/custom resource classes).
10758
+ */
10759
+ billing_source?: BillingSourceEnum;
10613
10760
  /**
10614
10761
  * HEAppE cluster id
10615
10762
  */
@@ -10639,21 +10786,9 @@ export type MergedPluginOptions = {
10639
10786
  */
10640
10787
  project_permanent_directory?: string;
10641
10788
  /**
10642
- * GLAuth initial primary group number
10643
- */
10644
- initial_primarygroup_number?: number;
10645
- /**
10646
- * GLAuth initial uidnumber
10647
- */
10648
- initial_uidnumber?: number;
10649
- /**
10650
- * GLAuth initial usergroup number
10789
+ * Manage a POSIX/LDAP account (UID, GID, home directory, login shell and GLAuth exposure) for this offering's users. Disable for offerings that only need a username.
10651
10790
  */
10652
- initial_usergroup_number?: number;
10653
- /**
10654
- * GLAuth initial gid for role-aware groups (one per (resource|resource-project, role) tuple). Must leave at least 50000 gids of headroom above initial_usergroup_number to avoid collisions.
10655
- */
10656
- initial_rolegroup_number?: number;
10791
+ enable_posix_account?: boolean;
10657
10792
  /**
10658
10793
  * Mapping of Waldur role names (on Resource scope) to emitted role tokens used in group name rendering. Roles outside the map are skipped. Example: {"PI": "admin", "Member": "member"}.
10659
10794
  */
@@ -10682,6 +10817,26 @@ export type MergedPluginOptions = {
10682
10817
  * GLAuth username generation policy
10683
10818
  */
10684
10819
  username_generation_policy?: UsernameGenerationPolicyEnum;
10820
+ /**
10821
+ * Default login shell assigned to GLAuth/LDAP accounts.
10822
+ */
10823
+ login_shell?: string;
10824
+ /**
10825
+ * Where each offering user's UID comes from: allocated from the POSIX ID pool (default), or taken from the user's uid_number attribute (e.g. an OIDC claim). Pair 'user_attribute' with a GID-only pool to avoid UID collisions.
10826
+ */
10827
+ uid_source?: PosixIdSourceEnum;
10828
+ /**
10829
+ * Where each offering user's primary GID comes from: the POSIX ID pool (default), or the user's primary_gid attribute.
10830
+ */
10831
+ gid_source?: PosixIdSourceEnum;
10832
+ /**
10833
+ * Emit the user's full name as a GLAuth displayName custom attribute (rendered to LDAP displayName).
10834
+ */
10835
+ emit_display_name?: boolean;
10836
+ /**
10837
+ * Emit the Waldur username as a GLAuth waldurUsername custom attribute, alongside the generated POSIX login name.
10838
+ */
10839
+ emit_waldur_username?: boolean;
10685
10840
  /**
10686
10841
  * Enable issues for membership changes
10687
10842
  */
@@ -10860,6 +11015,14 @@ export type MergedPluginOptionsRequest = {
10860
11015
  * Required user role in a project for provisioning of resources
10861
11016
  */
10862
11017
  required_team_role_for_provisioning?: string | null;
11018
+ /**
11019
+ * List of project or organization role names (e.g. 'PROJECT.MANAGER') allowed to view and order this offering. When set, the offering is hidden from the catalog for other users and they cannot create orders for it. Whether their orders skip consumer review still depends on the role having the order-approval permission.
11020
+ */
11021
+ restricted_to_roles?: Array<string>;
11022
+ /**
11023
+ * List of project or organization role names (e.g. 'PROJECT.MANAGER') whose orders skip consumer review for this offering. The creator must hold the role on the target project or its organization. Independent of restricted_to_roles (which governs visibility/ordering) and of the ORDER.APPROVE permission. Provider review and purchase-order requirements still apply. Only staff can change this option.
11024
+ */
11025
+ auto_approve_for_roles?: Array<string>;
10863
11026
  /**
10864
11027
  * If set to True, users will be able to upload purchase orders.
10865
11028
  */
@@ -10952,6 +11115,10 @@ export type MergedPluginOptionsRequest = {
10952
11115
  * Interval in minutes between usage polling for this offering (default: 60)
10953
11116
  */
10954
11117
  usage_poll_interval_minutes?: number;
11118
+ /**
11119
+ * Source for OpenStack instance compute ComponentUsage: 'quota' (flavor-derived Nova quota, default) or 'placement' (Placement allocations; also bills VGPU/PCI/custom resource classes).
11120
+ */
11121
+ billing_source?: BillingSourceEnum;
10955
11122
  /**
10956
11123
  * HEAppE cluster id
10957
11124
  */
@@ -10981,21 +11148,9 @@ export type MergedPluginOptionsRequest = {
10981
11148
  */
10982
11149
  project_permanent_directory?: string;
10983
11150
  /**
10984
- * GLAuth initial primary group number
11151
+ * Manage a POSIX/LDAP account (UID, GID, home directory, login shell and GLAuth exposure) for this offering's users. Disable for offerings that only need a username.
10985
11152
  */
10986
- initial_primarygroup_number?: number;
10987
- /**
10988
- * GLAuth initial uidnumber
10989
- */
10990
- initial_uidnumber?: number;
10991
- /**
10992
- * GLAuth initial usergroup number
10993
- */
10994
- initial_usergroup_number?: number;
10995
- /**
10996
- * GLAuth initial gid for role-aware groups (one per (resource|resource-project, role) tuple). Must leave at least 50000 gids of headroom above initial_usergroup_number to avoid collisions.
10997
- */
10998
- initial_rolegroup_number?: number;
11153
+ enable_posix_account?: boolean;
10999
11154
  /**
11000
11155
  * Mapping of Waldur role names (on Resource scope) to emitted role tokens used in group name rendering. Roles outside the map are skipped. Example: {"PI": "admin", "Member": "member"}.
11001
11156
  */
@@ -11024,6 +11179,26 @@ export type MergedPluginOptionsRequest = {
11024
11179
  * GLAuth username generation policy
11025
11180
  */
11026
11181
  username_generation_policy?: UsernameGenerationPolicyEnum;
11182
+ /**
11183
+ * Default login shell assigned to GLAuth/LDAP accounts.
11184
+ */
11185
+ login_shell?: string;
11186
+ /**
11187
+ * Where each offering user's UID comes from: allocated from the POSIX ID pool (default), or taken from the user's uid_number attribute (e.g. an OIDC claim). Pair 'user_attribute' with a GID-only pool to avoid UID collisions.
11188
+ */
11189
+ uid_source?: PosixIdSourceEnum;
11190
+ /**
11191
+ * Where each offering user's primary GID comes from: the POSIX ID pool (default), or the user's primary_gid attribute.
11192
+ */
11193
+ gid_source?: PosixIdSourceEnum;
11194
+ /**
11195
+ * Emit the user's full name as a GLAuth displayName custom attribute (rendered to LDAP displayName).
11196
+ */
11197
+ emit_display_name?: boolean;
11198
+ /**
11199
+ * Emit the Waldur username as a GLAuth waldurUsername custom attribute, alongside the generated POSIX login name.
11200
+ */
11201
+ emit_waldur_username?: boolean;
11027
11202
  /**
11028
11203
  * Enable issues for membership changes
11029
11204
  */
@@ -12069,14 +12244,13 @@ export type NestedPlanComponent = {
12069
12244
  */
12070
12245
  future_price?: string | null;
12071
12246
  /**
12072
- * Minimum amount to be eligible for discount.
12247
+ * Volume discount formula evaluated with the billed quantity bound to `usage`; returns a discount percentage (clamped to 0-100). Empty means no discount. Example: '10 if usage >= 100 else 0'.
12073
12248
  */
12074
- discount_threshold?: number | null;
12249
+ discount_formula?: string;
12075
12250
  /**
12076
- * Discount rate in percentage.
12251
+ * Whether the volume discount is computed on a single resource's usage or aggregated across all of the customer's resources of this offering.
12077
12252
  */
12078
- discount_rate?: number | null;
12079
- readonly discounted_price: string | null;
12253
+ discount_aggregation?: DiscountAggregationEnum;
12080
12254
  readonly discount_description: string | null;
12081
12255
  };
12082
12256
  export type NestedPlanComponentRequest = {
@@ -12090,13 +12264,13 @@ export type NestedPlanComponentRequest = {
12090
12264
  */
12091
12265
  future_price?: string | null;
12092
12266
  /**
12093
- * Minimum amount to be eligible for discount.
12267
+ * Volume discount formula evaluated with the billed quantity bound to `usage`; returns a discount percentage (clamped to 0-100). Empty means no discount. Example: '10 if usage >= 100 else 0'.
12094
12268
  */
12095
- discount_threshold?: number | null;
12269
+ discount_formula?: string;
12096
12270
  /**
12097
- * Discount rate in percentage.
12271
+ * Whether the volume discount is computed on a single resource's usage or aggregated across all of the customer's resources of this offering.
12098
12272
  */
12099
- discount_rate?: number | null;
12273
+ discount_aggregation?: DiscountAggregationEnum;
12100
12274
  };
12101
12275
  export type NestedPriceEstimate = {
12102
12276
  readonly total: string;
@@ -13778,6 +13952,10 @@ export type OfferingUser = {
13778
13952
  * VAT code of the user's organization
13779
13953
  */
13780
13954
  readonly user_organization_vat_code: string;
13955
+ /**
13956
+ * Postal address of the user's organization
13957
+ */
13958
+ readonly user_organization_address: string;
13781
13959
  /**
13782
13960
  * REFEDS assurance profile URIs from identity provider
13783
13961
  */
@@ -13790,6 +13968,14 @@ export type OfferingUser = {
13790
13968
  * Indicates what identity provider was used.
13791
13969
  */
13792
13970
  readonly user_identity_source: string;
13971
+ /**
13972
+ * POSIX UID from the identity provider; used when an offering's uid_source is 'user_attribute'.
13973
+ */
13974
+ readonly user_uid_number: number | null;
13975
+ /**
13976
+ * POSIX primary GID from the identity provider; used when an offering's gid_source is 'user_attribute'.
13977
+ */
13978
+ readonly user_primary_gid: number | null;
13793
13979
  /**
13794
13980
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
13795
13981
  */
@@ -13833,6 +14019,10 @@ export type OfferingUser = {
13833
14019
  } | null;
13834
14020
  readonly is_profile_complete: boolean;
13835
14021
  readonly missing_profile_attributes: Array<string>;
14022
+ readonly uidnumber: number | null;
14023
+ readonly primarygroup: number | null;
14024
+ readonly login_shell: string | null;
14025
+ readonly home_directory: string | null;
13836
14026
  };
13837
14027
  export type OfferingUserAttributeConfig = {
13838
14028
  readonly uuid: string;
@@ -13847,6 +14037,7 @@ export type OfferingUserAttributeConfig = {
13847
14037
  expose_organization_type?: boolean;
13848
14038
  expose_organization_registry_code?: boolean;
13849
14039
  expose_organization_vat_code?: boolean;
14040
+ expose_organization_address?: boolean;
13850
14041
  expose_affiliations?: boolean;
13851
14042
  expose_phone_number?: boolean;
13852
14043
  expose_job_title?: boolean;
@@ -13862,6 +14053,8 @@ export type OfferingUserAttributeConfig = {
13862
14053
  expose_civil_number?: boolean;
13863
14054
  expose_birth_date?: boolean;
13864
14055
  expose_active_isds?: boolean;
14056
+ expose_uid_number?: boolean;
14057
+ expose_primary_gid?: boolean;
13865
14058
  readonly exposed_fields: Array<string>;
13866
14059
  /**
13867
14060
  * Return True if this is a default (unsaved) config.
@@ -13880,6 +14073,7 @@ export type OfferingUserAttributeConfigRequest = {
13880
14073
  expose_organization_type?: boolean;
13881
14074
  expose_organization_registry_code?: boolean;
13882
14075
  expose_organization_vat_code?: boolean;
14076
+ expose_organization_address?: boolean;
13883
14077
  expose_affiliations?: boolean;
13884
14078
  expose_phone_number?: boolean;
13885
14079
  expose_job_title?: boolean;
@@ -13895,8 +14089,50 @@ export type OfferingUserAttributeConfigRequest = {
13895
14089
  expose_civil_number?: boolean;
13896
14090
  expose_birth_date?: boolean;
13897
14091
  expose_active_isds?: boolean;
14092
+ expose_uid_number?: boolean;
14093
+ expose_primary_gid?: boolean;
13898
14094
  offering?: string;
13899
14095
  };
14096
+ export type OfferingUserPosixAllocation = {
14097
+ namespace: string;
14098
+ value: number;
14099
+ pool_uuid: string | null;
14100
+ scope: string | null;
14101
+ scope_name: string | null;
14102
+ };
14103
+ export type OfferingUserPosixAttributesRequest = {
14104
+ /**
14105
+ * Login shell for this account (LDAP loginShell).
14106
+ */
14107
+ login_shell?: string;
14108
+ /**
14109
+ * Home directory for this account (LDAP homeDirectory).
14110
+ */
14111
+ home_directory?: string;
14112
+ /**
14113
+ * Override the account's UID. The value must fall within the offering's POSIX ID pool and is rejected if already allocated.
14114
+ */
14115
+ uidnumber?: number | null;
14116
+ /**
14117
+ * Override the account's primary GID (see uidnumber).
14118
+ */
14119
+ primarygroup?: number | null;
14120
+ };
14121
+ export type OfferingUserPosixGroup = {
14122
+ gid: number;
14123
+ offering_name: string;
14124
+ project_name: string | null;
14125
+ project_uuid: string | null;
14126
+ customer_name: string | null;
14127
+ customer_uuid: string | null;
14128
+ project_accessible: boolean;
14129
+ pool_uuid: string | null;
14130
+ };
14131
+ export type OfferingUserPosixUpdateResponse = {
14132
+ uidnumber?: number | null;
14133
+ primarygroup?: number | null;
14134
+ warnings?: Array<string>;
14135
+ };
13900
14136
  export type OfferingUserRequest = {
13901
14137
  user?: string;
13902
14138
  offering?: string;
@@ -14217,6 +14453,7 @@ export type OpenPortalQuota = {
14217
14453
  usage?: string;
14218
14454
  };
14219
14455
  export type OpenStackAllowedAddressPair = {
14456
+ ip_address?: string;
14220
14457
  mac_address?: string;
14221
14458
  };
14222
14459
  export type OpenStackAllowedAddressPairRequest = {
@@ -16573,6 +16810,10 @@ export type OrderDetails = {
16573
16810
  * VAT code of the user's organization
16574
16811
  */
16575
16812
  readonly created_by_organization_vat_code: string | null;
16813
+ /**
16814
+ * Postal address of the user's organization
16815
+ */
16816
+ readonly created_by_organization_address: string | null;
16576
16817
  readonly customer_name: string;
16577
16818
  readonly customer_uuid: string;
16578
16819
  readonly customer_slug: string;
@@ -17167,6 +17408,14 @@ export type PatchedConflictOfInterestRequest = {
17167
17408
  */
17168
17409
  management_plan?: string;
17169
17410
  };
17411
+ export type PatchedCreateCustomerAffiliateRequest = {
17412
+ customer?: string;
17413
+ affiliate?: string;
17414
+ fee_percent?: string;
17415
+ is_active?: boolean;
17416
+ start_date?: string | null;
17417
+ end_date?: string | null;
17418
+ };
17170
17419
  export type PatchedCreateCustomerCreditRequest = {
17171
17420
  value?: string;
17172
17421
  customer?: string;
@@ -17782,6 +18031,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
17782
18031
  expose_organization_type?: boolean;
17783
18032
  expose_organization_registry_code?: boolean;
17784
18033
  expose_organization_vat_code?: boolean;
18034
+ expose_organization_address?: boolean;
17785
18035
  expose_affiliations?: boolean;
17786
18036
  expose_phone_number?: boolean;
17787
18037
  expose_job_title?: boolean;
@@ -17797,6 +18047,8 @@ export type PatchedOfferingUserAttributeConfigRequest = {
17797
18047
  expose_civil_number?: boolean;
17798
18048
  expose_birth_date?: boolean;
17799
18049
  expose_active_isds?: boolean;
18050
+ expose_uid_number?: boolean;
18051
+ expose_primary_gid?: boolean;
17800
18052
  offering?: string;
17801
18053
  };
17802
18054
  export type PatchedOfferingUserRequest = {
@@ -17960,6 +18212,13 @@ export type PatchedPaymentRequest = {
17960
18212
  sum?: string;
17961
18213
  proof?: Blob | File | null;
17962
18214
  };
18215
+ export type PatchedPosixIdPoolRequest = {
18216
+ description?: string;
18217
+ min_uid?: number | null;
18218
+ max_uid?: number | null;
18219
+ min_gid?: number | null;
18220
+ max_gid?: number | null;
18221
+ };
17963
18222
  export type PatchedProjectCreditRequest = {
17964
18223
  value?: string;
17965
18224
  project?: string;
@@ -18948,6 +19207,10 @@ export type PatchedUserRequest = {
18948
19207
  * VAT code of the user's organization
18949
19208
  */
18950
19209
  organization_vat_code?: string;
19210
+ /**
19211
+ * Postal address of the user's organization
19212
+ */
19213
+ organization_address?: string;
18951
19214
  eduperson_assurance?: Array<string>;
18952
19215
  /**
18953
19216
  * Designates whether the user is allowed to manage remote user identities.
@@ -19056,19 +19319,25 @@ export type PeriodBreakdown = {
19056
19319
  reconciled_count: number;
19057
19320
  };
19058
19321
  export type Permission = {
19322
+ readonly uuid: string;
19059
19323
  readonly user_uuid: string;
19060
19324
  readonly user_name: string;
19061
19325
  readonly user_slug: string;
19062
19326
  readonly created: string;
19063
19327
  expiration_time?: string | null;
19328
+ is_active?: boolean | null;
19064
19329
  readonly created_by_full_name: string;
19065
19330
  readonly created_by_username: string;
19331
+ readonly revoked_by_full_name: string | null;
19332
+ readonly revoked_by_username: string | null;
19333
+ revoke_reason?: string;
19066
19334
  readonly role_name: string;
19067
19335
  readonly role_description: string;
19068
19336
  readonly role_uuid: string;
19069
19337
  readonly scope_type: string | null;
19070
19338
  readonly scope_uuid: string;
19071
19339
  readonly scope_name: string;
19340
+ readonly scope_is_removed: boolean;
19072
19341
  readonly customer_uuid: string;
19073
19342
  readonly customer_name: string;
19074
19343
  readonly resource_uuid: string | null;
@@ -19105,13 +19374,13 @@ export type PermissionMetadataResponse = {
19105
19374
  * Map of permission keys to permission enum values from PermissionEnum
19106
19375
  */
19107
19376
  permissions: {
19108
- [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' | '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' | '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' | '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';
19377
+ [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' | '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' | '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';
19109
19378
  };
19110
19379
  /**
19111
19380
  * Map of resource types to create permission enums
19112
19381
  */
19113
19382
  permission_map: {
19114
- [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' | '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' | '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' | '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';
19383
+ [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' | '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' | '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';
19115
19384
  };
19116
19385
  /**
19117
19386
  * Grouped permission descriptions for UI
@@ -19227,13 +19496,13 @@ export type PlanComponent = {
19227
19496
  */
19228
19497
  future_price?: string | null;
19229
19498
  /**
19230
- * Minimum amount to be eligible for discount.
19499
+ * Volume discount formula evaluated with the billed quantity bound to `usage`; returns a discount percentage (clamped to 0-100). Empty means no discount. Example: '10 if usage >= 100 else 0'.
19231
19500
  */
19232
- discount_threshold?: number | null;
19501
+ discount_formula?: string;
19233
19502
  /**
19234
- * Discount rate in percentage.
19503
+ * Whether the volume discount is computed on a single resource's usage or aggregated across all of the customer's resources of this offering.
19235
19504
  */
19236
- discount_rate?: number | null;
19505
+ discount_aggregation?: DiscountAggregationEnum;
19237
19506
  };
19238
19507
  export type PlanUsageResponse = {
19239
19508
  /**
@@ -19287,6 +19556,63 @@ export type PluginOfferingType = {
19287
19556
  export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
19288
19557
  export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
19289
19558
  export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
19559
+ export type PosixIdPool = {
19560
+ readonly url: string;
19561
+ readonly uuid: string;
19562
+ readonly created: string;
19563
+ description?: string;
19564
+ service_provider?: string | null;
19565
+ offering?: string | null;
19566
+ min_uid?: number | null;
19567
+ max_uid?: number | null;
19568
+ readonly next_uid: number | null;
19569
+ min_gid?: number | null;
19570
+ max_gid?: number | null;
19571
+ readonly next_gid: number | null;
19572
+ readonly customer_uuid: string;
19573
+ readonly customer_name: string;
19574
+ readonly scope: string;
19575
+ readonly uid_used: number;
19576
+ readonly gid_used: number;
19577
+ readonly uid_utilization: number | null;
19578
+ readonly gid_utilization: number | null;
19579
+ };
19580
+ export type PosixIdPoolNamespaceStats = {
19581
+ min: number;
19582
+ max: number;
19583
+ next: number;
19584
+ capacity: number;
19585
+ used: number;
19586
+ utilization: number;
19587
+ };
19588
+ export type PosixIdPoolRequest = {
19589
+ description?: string;
19590
+ service_provider?: string | null;
19591
+ offering?: string | null;
19592
+ min_uid?: number | null;
19593
+ max_uid?: number | null;
19594
+ min_gid?: number | null;
19595
+ max_gid?: number | null;
19596
+ };
19597
+ export type PosixIdPoolStats = {
19598
+ uid: PosixIdPoolNamespaceStats | null;
19599
+ gid: PosixIdPoolNamespaceStats | null;
19600
+ utilization_threshold: number;
19601
+ };
19602
+ export type PosixIdSourceEnum = 'pool' | 'user_attribute';
19603
+ export type PosixIdentity = {
19604
+ readonly url: string;
19605
+ readonly uuid: string;
19606
+ readonly created: string;
19607
+ uid?: number | null;
19608
+ gid?: number | null;
19609
+ released_at?: string | null;
19610
+ readonly pool_uuid: string;
19611
+ readonly offering_uuid: string;
19612
+ readonly offering_name: string;
19613
+ readonly consumer_type: string | null;
19614
+ readonly consumer_name: string | null;
19615
+ };
19290
19616
  export type PresetEnum = 'cscs' | 'oecd_fos_2007';
19291
19617
  export type PreviewPeriod = {
19292
19618
  period: string;
@@ -19890,6 +20216,18 @@ export type ProjectPermissionReview = {
19890
20216
  readonly project_uuid: string;
19891
20217
  readonly project_name: string;
19892
20218
  };
20219
+ export type ProjectPosixGroup = {
20220
+ kind: ProjectPosixGroupKindEnum;
20221
+ gid: number;
20222
+ offering_uuid: string;
20223
+ offering_name: string;
20224
+ provider_name: string;
20225
+ role: string | null;
20226
+ scope_type: string | null;
20227
+ scope_name: string | null;
20228
+ scope_uuid: string | null;
20229
+ };
20230
+ export type ProjectPosixGroupKindEnum = 'project_group' | 'role_group';
19893
20231
  export type ProjectQuotas = {
19894
20232
  readonly project_name: string;
19895
20233
  readonly customer_name: string;
@@ -20250,6 +20588,10 @@ export type Proposal = {
20250
20588
  * VAT code of the user's organization
20251
20589
  */
20252
20590
  readonly applicant_organization_vat_code: string;
20591
+ /**
20592
+ * Postal address of the user's organization
20593
+ */
20594
+ readonly applicant_organization_address: string | null;
20253
20595
  readonly applicant_job_title: string;
20254
20596
  /**
20255
20597
  * Person's affiliation within organization such as student, faculty, staff.
@@ -20780,6 +21122,7 @@ export type ProviderOffering = {
20780
21122
  thumbnail?: string | null;
20781
21123
  readonly offering_group_uuid: string | null;
20782
21124
  readonly offering_group_title: string | null;
21125
+ readonly service_provider_can_create_offering_user: boolean;
20783
21126
  };
20784
21127
  export type ProviderOfferingCosts = {
20785
21128
  /**
@@ -26804,6 +27147,7 @@ export type TimeSeriesToSData = {
26804
27147
  */
26805
27148
  readonly count: number;
26806
27149
  };
27150
+ export type TimingBucketEnum = 'pending' | 'overrun' | 'late_start' | 'early' | 'on_time';
26807
27151
  export type ToSConsentDashboard = {
26808
27152
  /**
26809
27153
  * Number of active users
@@ -26984,6 +27328,7 @@ export type TransactionStats = {
26984
27328
  */
26985
27329
  readonly deadlocks: number;
26986
27330
  };
27331
+ export type TransactionTypeEnum = 'staff_grant' | 'compensation' | 'affiliate_fee' | 'transfer_in' | 'transfer_out' | 'payout' | 'expiry' | 'rollback' | 'adjustment' | 'withdrawable_adjustment';
26987
27332
  export type TransitionModeEnum = 'automatic_on_completion' | 'manual';
26988
27333
  export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
26989
27334
  export type TriggerCoiDetectionRequest = {
@@ -27244,7 +27589,19 @@ export type User = {
27244
27589
  * VAT code of the user's organization
27245
27590
  */
27246
27591
  organization_vat_code?: string;
27592
+ /**
27593
+ * Postal address of the user's organization
27594
+ */
27595
+ organization_address?: string;
27247
27596
  eduperson_assurance?: Array<string>;
27597
+ /**
27598
+ * POSIX UID from the identity provider; used when an offering's uid_source is 'user_attribute'.
27599
+ */
27600
+ readonly uid_number: number | null;
27601
+ /**
27602
+ * POSIX primary GID from the identity provider; used when an offering's gid_source is 'user_attribute'.
27603
+ */
27604
+ readonly primary_gid: number | null;
27248
27605
  /**
27249
27606
  * Designates whether the user is allowed to manage remote user identities.
27250
27607
  */
@@ -27393,7 +27750,7 @@ export type UserAgreementRequest = {
27393
27750
  */
27394
27751
  language: string;
27395
27752
  };
27396
- export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'organization_vat_code' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
27753
+ export type UserAttributeEnum = 'username' | 'registration_method' | 'first_name' | 'last_name' | 'full_name' | 'email' | 'phone_number' | 'organization' | 'job_title' | 'affiliations' | 'gender' | 'personal_title' | 'birth_date' | 'place_of_birth' | 'country_of_residence' | 'nationality' | 'nationalities' | 'organization_country' | 'organization_type' | 'organization_registry_code' | 'organization_vat_code' | 'organization_address' | 'eduperson_assurance' | 'civil_number' | 'identity_source';
27397
27754
  export type UserAuthMethodCount = {
27398
27755
  /**
27399
27756
  * Authentication method
@@ -27655,7 +28012,19 @@ export type UserMe = {
27655
28012
  * VAT code of the user's organization
27656
28013
  */
27657
28014
  organization_vat_code?: string;
28015
+ /**
28016
+ * Postal address of the user's organization
28017
+ */
28018
+ organization_address?: string;
27658
28019
  eduperson_assurance?: Array<string>;
28020
+ /**
28021
+ * POSIX UID from the identity provider; used when an offering's uid_source is 'user_attribute'.
28022
+ */
28023
+ readonly uid_number: number | null;
28024
+ /**
28025
+ * POSIX primary GID from the identity provider; used when an offering's gid_source is 'user_attribute'.
28026
+ */
28027
+ readonly primary_gid: number | null;
27659
28028
  /**
27660
28029
  * Designates whether the user is allowed to manage remote user identities.
27661
28030
  */
@@ -27749,6 +28118,14 @@ export type UserOrganizationTypeCount = {
27749
28118
  */
27750
28119
  count: number;
27751
28120
  };
28121
+ export type UserPosixIdentity = {
28122
+ offering_name: string;
28123
+ offering_uuid: string;
28124
+ namespace: string;
28125
+ value: number;
28126
+ context: string | null;
28127
+ pool_uuid: string | null;
28128
+ };
27752
28129
  export type UserRegistrationTrend = {
27753
28130
  month: string;
27754
28131
  count: number;
@@ -27833,6 +28210,10 @@ export type UserRequest = {
27833
28210
  * VAT code of the user's organization
27834
28211
  */
27835
28212
  organization_vat_code?: string;
28213
+ /**
28214
+ * Postal address of the user's organization
28215
+ */
28216
+ organization_address?: string;
27836
28217
  eduperson_assurance?: Array<string>;
27837
28218
  /**
27838
28219
  * Designates whether the user is allowed to manage remote user identities.
@@ -27892,6 +28273,9 @@ export type UserRoleDetails = {
27892
28273
  export type UserRoleExpirationTime = {
27893
28274
  expiration_time: string | null;
27894
28275
  };
28276
+ export type UserRolePermissionActionRequest = {
28277
+ reason?: string;
28278
+ };
27895
28279
  export type UserRoleUpdateRequest = {
27896
28280
  role: string;
27897
28281
  user: string;
@@ -27900,7 +28284,7 @@ export type UserRoleUpdateRequest = {
27900
28284
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
27901
28285
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
27902
28286
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg';
27903
- 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' | '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' | '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' | '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';
28287
+ 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' | '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' | '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';
27904
28288
  export type VendorNameChoice = {
27905
28289
  value: string;
27906
28290
  label: string;
@@ -28408,6 +28792,10 @@ export type WebHookRequest = {
28408
28792
  content_type?: WebHookContentTypeEnum;
28409
28793
  };
28410
28794
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
28795
+ export type WithdrawableAdjustmentRequest = {
28796
+ amount: string;
28797
+ comment: string;
28798
+ };
28411
28799
  export type WorkflowCriterion = {
28412
28800
  readonly uuid: string;
28413
28801
  name: string;
@@ -29943,6 +30331,8 @@ export type ConstanceSettingsRequestForm = {
29943
30331
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
29944
30332
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
29945
30333
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30334
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30335
+ AFFILIATES_ENABLED?: boolean;
29946
30336
  MATRIX_ENABLED?: boolean;
29947
30337
  MATRIX_HOMESERVER_URL?: string;
29948
30338
  MATRIX_HOMESERVER_PUBLIC_URL?: string;
@@ -30245,6 +30635,8 @@ export type ConstanceSettingsRequestMultipart = {
30245
30635
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
30246
30636
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
30247
30637
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30638
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30639
+ AFFILIATES_ENABLED?: boolean;
30248
30640
  MATRIX_ENABLED?: boolean;
30249
30641
  MATRIX_HOMESERVER_URL?: string;
30250
30642
  MATRIX_HOMESERVER_PUBLIC_URL?: string;
@@ -30412,6 +30804,10 @@ export type UserRequestForm = {
30412
30804
  * VAT code of the user's organization
30413
30805
  */
30414
30806
  organization_vat_code?: string;
30807
+ /**
30808
+ * Postal address of the user's organization
30809
+ */
30810
+ organization_address?: string;
30415
30811
  eduperson_assurance?: Array<string>;
30416
30812
  /**
30417
30813
  * Designates whether the user is allowed to manage remote user identities.
@@ -30508,101 +30904,10 @@ export type UserRequestMultipart = {
30508
30904
  * VAT code of the user's organization
30509
30905
  */
30510
30906
  organization_vat_code?: string;
30511
- eduperson_assurance?: Array<string>;
30512
- /**
30513
- * Designates whether the user is allowed to manage remote user identities.
30514
- */
30515
- is_identity_manager?: boolean;
30516
- /**
30517
- * Designates whether the user is allowed to create and use personal access tokens.
30518
- */
30519
- can_use_personal_access_tokens?: boolean;
30520
- managed_isds?: Array<string>;
30521
- active_isds?: Array<string>;
30522
- /**
30523
- * Reason why the user was deactivated. Visible to staff and support.
30524
- */
30525
- deactivation_reason?: string;
30526
- };
30527
- export type PatchedUserRequestForm = {
30528
- /**
30529
- * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
30530
- */
30531
- username?: string;
30532
- /**
30533
- * URL-friendly identifier. Only editable by staff users.
30534
- */
30535
- slug?: string;
30536
- native_name?: string;
30537
- job_title?: string;
30538
- phone_number?: string;
30539
- organization?: string;
30540
- description?: string;
30541
- /**
30542
- * Staff status
30543
- *
30544
- * Designates whether the user can log into this admin site.
30545
- */
30546
- is_staff?: boolean;
30547
- /**
30548
- * Active
30549
- *
30550
- * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
30551
- */
30552
- is_active?: boolean;
30553
- /**
30554
- * Support status
30555
- *
30556
- * Designates whether the user is a global support user.
30557
- */
30558
- is_support?: boolean;
30559
- /**
30560
- * Token lifetime in seconds.
30561
- */
30562
- token_lifetime?: number | null;
30563
- /**
30564
- * User must agree with the policy to register.
30565
- */
30566
- agree_with_policy?: boolean;
30567
- /**
30568
- * Designates whether the user is allowed to receive email notifications.
30569
- */
30570
- notifications_enabled?: boolean;
30571
- preferred_language?: string;
30572
- affiliations?: Array<string>;
30573
- first_name?: string;
30574
- last_name?: string;
30575
- birth_date?: string | null;
30576
- image?: Blob | File | null;
30577
- /**
30578
- * User's gender (male, female, or unknown)
30579
- */
30580
- gender?: GenderEnum | BlankEnum | NullEnum | null;
30581
- /**
30582
- * Honorific title (Mr, Ms, Dr, Prof, etc.)
30583
- */
30584
- personal_title?: string;
30585
- place_of_birth?: string;
30586
- address?: string;
30587
- country_of_residence?: string;
30588
30907
  /**
30589
- * Primary citizenship (ISO 3166-1 alpha-2 code)
30590
- */
30591
- nationality?: string;
30592
- nationalities?: Array<string>;
30593
- organization_country?: string;
30594
- /**
30595
- * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
30596
- */
30597
- organization_type?: string;
30598
- /**
30599
- * Company registration code of the user's organization, if known
30908
+ * Postal address of the user's organization
30600
30909
  */
30601
- organization_registry_code?: string;
30602
- /**
30603
- * VAT code of the user's organization
30604
- */
30605
- organization_vat_code?: string;
30910
+ organization_address?: string;
30606
30911
  eduperson_assurance?: Array<string>;
30607
30912
  /**
30608
30913
  * Designates whether the user is allowed to manage remote user identities.
@@ -30619,7 +30924,7 @@ export type PatchedUserRequestForm = {
30619
30924
  */
30620
30925
  deactivation_reason?: string;
30621
30926
  };
30622
- export type PatchedUserRequestMultipart = {
30927
+ export type PatchedUserRequestForm = {
30623
30928
  /**
30624
30929
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
30625
30930
  */
@@ -30698,6 +31003,109 @@ export type PatchedUserRequestMultipart = {
30698
31003
  * VAT code of the user's organization
30699
31004
  */
30700
31005
  organization_vat_code?: string;
31006
+ /**
31007
+ * Postal address of the user's organization
31008
+ */
31009
+ organization_address?: string;
31010
+ eduperson_assurance?: Array<string>;
31011
+ /**
31012
+ * Designates whether the user is allowed to manage remote user identities.
31013
+ */
31014
+ is_identity_manager?: boolean;
31015
+ /**
31016
+ * Designates whether the user is allowed to create and use personal access tokens.
31017
+ */
31018
+ can_use_personal_access_tokens?: boolean;
31019
+ managed_isds?: Array<string>;
31020
+ active_isds?: Array<string>;
31021
+ /**
31022
+ * Reason why the user was deactivated. Visible to staff and support.
31023
+ */
31024
+ deactivation_reason?: string;
31025
+ };
31026
+ export type PatchedUserRequestMultipart = {
31027
+ /**
31028
+ * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
31029
+ */
31030
+ username?: string;
31031
+ /**
31032
+ * URL-friendly identifier. Only editable by staff users.
31033
+ */
31034
+ slug?: string;
31035
+ native_name?: string;
31036
+ job_title?: string;
31037
+ phone_number?: string;
31038
+ organization?: string;
31039
+ description?: string;
31040
+ /**
31041
+ * Staff status
31042
+ *
31043
+ * Designates whether the user can log into this admin site.
31044
+ */
31045
+ is_staff?: boolean;
31046
+ /**
31047
+ * Active
31048
+ *
31049
+ * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
31050
+ */
31051
+ is_active?: boolean;
31052
+ /**
31053
+ * Support status
31054
+ *
31055
+ * Designates whether the user is a global support user.
31056
+ */
31057
+ is_support?: boolean;
31058
+ /**
31059
+ * Token lifetime in seconds.
31060
+ */
31061
+ token_lifetime?: number | null;
31062
+ /**
31063
+ * User must agree with the policy to register.
31064
+ */
31065
+ agree_with_policy?: boolean;
31066
+ /**
31067
+ * Designates whether the user is allowed to receive email notifications.
31068
+ */
31069
+ notifications_enabled?: boolean;
31070
+ preferred_language?: string;
31071
+ affiliations?: Array<string>;
31072
+ first_name?: string;
31073
+ last_name?: string;
31074
+ birth_date?: string | null;
31075
+ image?: Blob | File | null;
31076
+ /**
31077
+ * User's gender (male, female, or unknown)
31078
+ */
31079
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
31080
+ /**
31081
+ * Honorific title (Mr, Ms, Dr, Prof, etc.)
31082
+ */
31083
+ personal_title?: string;
31084
+ place_of_birth?: string;
31085
+ address?: string;
31086
+ country_of_residence?: string;
31087
+ /**
31088
+ * Primary citizenship (ISO 3166-1 alpha-2 code)
31089
+ */
31090
+ nationality?: string;
31091
+ nationalities?: Array<string>;
31092
+ organization_country?: string;
31093
+ /**
31094
+ * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
31095
+ */
31096
+ organization_type?: string;
31097
+ /**
31098
+ * Company registration code of the user's organization, if known
31099
+ */
31100
+ organization_registry_code?: string;
31101
+ /**
31102
+ * VAT code of the user's organization
31103
+ */
31104
+ organization_vat_code?: string;
31105
+ /**
31106
+ * Postal address of the user's organization
31107
+ */
31108
+ organization_address?: string;
30701
31109
  eduperson_assurance?: Array<string>;
30702
31110
  /**
30703
31111
  * Designates whether the user is allowed to manage remote user identities.
@@ -30745,10 +31153,11 @@ export type ThreadSessionScopeEnum = 'own';
30745
31153
  export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
30746
31154
  export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
30747
31155
  export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
31156
+ export type CustomerAffiliateOEnum = '-affiliate_name' | '-created' | '-customer_name' | 'affiliate_name' | 'created' | 'customer_name';
30748
31157
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
30749
31158
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
30750
31159
  export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
30751
- export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_affiliations' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
31160
+ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_affiliations' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'has_affiliate_links' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'project_slug_template' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
30752
31161
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
30753
31162
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
30754
31163
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -30764,7 +31173,7 @@ export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month'
30764
31173
  export type InvoiceItemOEnum = 'project_name' | '-project_name' | 'resource_name' | '-resource_name' | 'provider_name' | '-provider_name' | 'name' | '-name';
30765
31174
  export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'fingerprint_sha512' | 'is_shared' | 'name' | 'public_key' | 'type' | 'url' | 'user_uuid' | 'uuid';
30766
31175
  export type SshKeyOEnum = '-name' | 'name';
30767
- export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
31176
+ 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';
30768
31177
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
30769
31178
  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_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
30770
31179
  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';
@@ -30784,17 +31193,18 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
30784
31193
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
30785
31194
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
30786
31195
  export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
30787
- export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'runtime_state' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_organization_vat_code' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
31196
+ export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'home_directory' | 'is_profile_complete' | 'is_restricted' | 'login_shell' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_has_active_tos' | 'offering_name' | 'offering_uuid' | 'primarygroup' | 'requires_reconsent' | 'runtime_state' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'uidnumber' | 'url' | 'user' | 'user_active_isds' | 'user_address' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_address' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_organization_vat_code' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_primary_gid' | 'user_uid_number' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
30788
31197
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
30789
- 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_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';
31198
+ 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';
30790
31199
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
30791
31200
  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' | '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';
31201
+ 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';
30792
31202
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
30793
31203
  export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | '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';
30794
31204
  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';
30795
31205
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
30796
31206
  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';
30797
- 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_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
31207
+ 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';
30798
31208
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
30799
31209
  export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
30800
31210
  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';
@@ -30802,9 +31212,9 @@ export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer
30802
31212
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
30803
31213
  export type MarketplaceProviderCustomerProjectOEnum = '-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date';
30804
31214
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
30805
- export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
31215
+ export type ProviderOfferingFieldEnum = 'billing_price_estimate' | 'category_title' | 'components' | 'customer_uuid' | 'name' | 'offering_group_title' | 'offering_group_uuid' | 'options' | 'plans' | 'resource_options' | 'resources_count' | 'secret_options' | 'service_provider_can_create_offering_user' | 'slug' | 'state' | 'thumbnail' | 'type' | 'uuid';
30806
31216
  export type ProjectPermissionLogFieldEnum = 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_uuid' | 'expiration_time' | 'project' | 'project_created' | 'project_end_date' | 'project_name' | 'project_uuid' | 'role' | 'role_name' | 'user' | 'user_email' | 'user_full_name' | 'user_native_name' | 'user_username' | 'user_uuid';
30807
- export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
31217
+ export type MarketplaceServiceProviderUserFieldEnum = 'active_isds' | 'address' | 'affiliations' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'identity_source' | 'is_active' | 'job_title' | 'last_name' | 'nationalities' | 'nationality' | 'organization' | 'organization_address' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'projects_count' | 'registration_method' | 'username' | 'uuid';
30808
31218
  export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-full_name' | '-is_active' | '-is_staff' | '-is_support' | '-job_title' | '-native_name' | '-organization' | '-phone_number' | '-registration_method' | '-username' | 'description' | 'email' | 'full_name' | 'is_active' | 'is_staff' | 'is_support' | 'job_title' | 'native_name' | 'organization' | 'phone_number' | 'registration_method' | 'username';
30809
31219
  export type AgentServiceStateEnum = 1 | 2 | 3;
30810
31220
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
@@ -30881,7 +31291,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
30881
31291
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
30882
31292
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
30883
31293
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
30884
- export type UserMeFieldEnum = '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_country' | 'organization_registry_code' | 'organization_type' | 'organization_vat_code' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'profile_completeness' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
31294
+ export type UserMeFieldEnum = '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' | 'profile_completeness' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'uid_number' | 'url' | 'username' | 'uuid';
30885
31295
  export type VmwareDiskFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | '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' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
30886
31296
  export type VmwarePortFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | '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' | 'network' | 'network_name' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid' | 'vm' | 'vm_name' | 'vm_uuid';
30887
31297
  export type VmwareVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cluster' | 'cluster_name' | 'cores' | 'cores_per_socket' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'datastore' | 'datastore_name' | 'description' | 'disk' | 'disks' | 'error_message' | 'error_traceback' | 'folder' | 'folder_name' | 'guest_os' | 'guest_os_name' | 'guest_power_state' | 'is_limit_based' | 'is_usage_based' | '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' | 'networks' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'template' | 'template_name' | 'tools_installed' | 'tools_state' | 'url' | 'uuid';
@@ -39023,6 +39433,243 @@ export type ConflictsOfInterestWaiveResponses = {
39023
39433
  200: ConflictOfInterest;
39024
39434
  };
39025
39435
  export type ConflictsOfInterestWaiveResponse = ConflictsOfInterestWaiveResponses[keyof ConflictsOfInterestWaiveResponses];
39436
+ export type CreditTransactionsListData = {
39437
+ body?: never;
39438
+ path?: never;
39439
+ query?: {
39440
+ credit_uuid?: string;
39441
+ customer_uuid?: string;
39442
+ /**
39443
+ * Ordering
39444
+ *
39445
+ *
39446
+ */
39447
+ o?: Array<BackendResourceReqOEnum>;
39448
+ /**
39449
+ * A page number within the paginated result set.
39450
+ */
39451
+ page?: number;
39452
+ /**
39453
+ * Number of results to return per page.
39454
+ */
39455
+ page_size?: number;
39456
+ transaction_type?: string;
39457
+ };
39458
+ url: '/api/credit-transactions/';
39459
+ };
39460
+ export type CreditTransactionsListResponses = {
39461
+ 200: Array<CreditTransaction>;
39462
+ };
39463
+ export type CreditTransactionsListResponse = CreditTransactionsListResponses[keyof CreditTransactionsListResponses];
39464
+ export type CreditTransactionsCountData = {
39465
+ body?: never;
39466
+ path?: never;
39467
+ query?: {
39468
+ credit_uuid?: string;
39469
+ customer_uuid?: string;
39470
+ /**
39471
+ * Ordering
39472
+ *
39473
+ *
39474
+ */
39475
+ o?: Array<BackendResourceReqOEnum>;
39476
+ /**
39477
+ * A page number within the paginated result set.
39478
+ */
39479
+ page?: number;
39480
+ /**
39481
+ * Number of results to return per page.
39482
+ */
39483
+ page_size?: number;
39484
+ transaction_type?: string;
39485
+ };
39486
+ url: '/api/credit-transactions/';
39487
+ };
39488
+ export type CreditTransactionsCountResponses = {
39489
+ /**
39490
+ * No response body
39491
+ */
39492
+ 200: unknown;
39493
+ };
39494
+ export type CreditTransactionsRetrieveData = {
39495
+ body?: never;
39496
+ path: {
39497
+ uuid: string;
39498
+ };
39499
+ query?: never;
39500
+ url: '/api/credit-transactions/{uuid}/';
39501
+ };
39502
+ export type CreditTransactionsRetrieveResponses = {
39503
+ 200: CreditTransaction;
39504
+ };
39505
+ export type CreditTransactionsRetrieveResponse = CreditTransactionsRetrieveResponses[keyof CreditTransactionsRetrieveResponses];
39506
+ export type CustomerAffiliatesListData = {
39507
+ body?: never;
39508
+ path?: never;
39509
+ query?: {
39510
+ affiliate_name?: string;
39511
+ affiliate_uuid?: string;
39512
+ customer_name?: string;
39513
+ customer_uuid?: string;
39514
+ is_active?: boolean;
39515
+ /**
39516
+ * Ordering
39517
+ *
39518
+ *
39519
+ */
39520
+ o?: Array<CustomerAffiliateOEnum>;
39521
+ /**
39522
+ * A page number within the paginated result set.
39523
+ */
39524
+ page?: number;
39525
+ /**
39526
+ * Number of results to return per page.
39527
+ */
39528
+ page_size?: number;
39529
+ };
39530
+ url: '/api/customer-affiliates/';
39531
+ };
39532
+ export type CustomerAffiliatesListResponses = {
39533
+ 200: Array<CustomerAffiliate>;
39534
+ };
39535
+ export type CustomerAffiliatesListResponse = CustomerAffiliatesListResponses[keyof CustomerAffiliatesListResponses];
39536
+ export type CustomerAffiliatesCountData = {
39537
+ body?: never;
39538
+ path?: never;
39539
+ query?: {
39540
+ affiliate_name?: string;
39541
+ affiliate_uuid?: string;
39542
+ customer_name?: string;
39543
+ customer_uuid?: string;
39544
+ is_active?: boolean;
39545
+ /**
39546
+ * Ordering
39547
+ *
39548
+ *
39549
+ */
39550
+ o?: Array<CustomerAffiliateOEnum>;
39551
+ /**
39552
+ * A page number within the paginated result set.
39553
+ */
39554
+ page?: number;
39555
+ /**
39556
+ * Number of results to return per page.
39557
+ */
39558
+ page_size?: number;
39559
+ };
39560
+ url: '/api/customer-affiliates/';
39561
+ };
39562
+ export type CustomerAffiliatesCountResponses = {
39563
+ /**
39564
+ * No response body
39565
+ */
39566
+ 200: unknown;
39567
+ };
39568
+ export type CustomerAffiliatesCreateData = {
39569
+ body: CreateCustomerAffiliateRequest;
39570
+ path?: never;
39571
+ query?: never;
39572
+ url: '/api/customer-affiliates/';
39573
+ };
39574
+ export type CustomerAffiliatesCreateResponses = {
39575
+ 201: CreateCustomerAffiliate;
39576
+ };
39577
+ export type CustomerAffiliatesCreateResponse = CustomerAffiliatesCreateResponses[keyof CustomerAffiliatesCreateResponses];
39578
+ export type CustomerAffiliatesDestroyData = {
39579
+ body?: never;
39580
+ path: {
39581
+ uuid: string;
39582
+ };
39583
+ query?: never;
39584
+ url: '/api/customer-affiliates/{uuid}/';
39585
+ };
39586
+ export type CustomerAffiliatesDestroyResponses = {
39587
+ /**
39588
+ * No response body
39589
+ */
39590
+ 204: void;
39591
+ };
39592
+ export type CustomerAffiliatesDestroyResponse = CustomerAffiliatesDestroyResponses[keyof CustomerAffiliatesDestroyResponses];
39593
+ export type CustomerAffiliatesRetrieveData = {
39594
+ body?: never;
39595
+ path: {
39596
+ uuid: string;
39597
+ };
39598
+ query?: never;
39599
+ url: '/api/customer-affiliates/{uuid}/';
39600
+ };
39601
+ export type CustomerAffiliatesRetrieveResponses = {
39602
+ 200: CustomerAffiliate;
39603
+ };
39604
+ export type CustomerAffiliatesRetrieveResponse = CustomerAffiliatesRetrieveResponses[keyof CustomerAffiliatesRetrieveResponses];
39605
+ export type CustomerAffiliatesPartialUpdateData = {
39606
+ body?: PatchedCreateCustomerAffiliateRequest;
39607
+ path: {
39608
+ uuid: string;
39609
+ };
39610
+ query?: never;
39611
+ url: '/api/customer-affiliates/{uuid}/';
39612
+ };
39613
+ export type CustomerAffiliatesPartialUpdateResponses = {
39614
+ 200: CreateCustomerAffiliate;
39615
+ };
39616
+ export type CustomerAffiliatesPartialUpdateResponse = CustomerAffiliatesPartialUpdateResponses[keyof CustomerAffiliatesPartialUpdateResponses];
39617
+ export type CustomerAffiliatesUpdateData = {
39618
+ body: CreateCustomerAffiliateRequest;
39619
+ path: {
39620
+ uuid: string;
39621
+ };
39622
+ query?: never;
39623
+ url: '/api/customer-affiliates/{uuid}/';
39624
+ };
39625
+ export type CustomerAffiliatesUpdateResponses = {
39626
+ 200: CreateCustomerAffiliate;
39627
+ };
39628
+ export type CustomerAffiliatesUpdateResponse = CustomerAffiliatesUpdateResponses[keyof CustomerAffiliatesUpdateResponses];
39629
+ export type CustomerAffiliatesAccrualsListData = {
39630
+ body?: never;
39631
+ path: {
39632
+ uuid: string;
39633
+ };
39634
+ query?: {
39635
+ affiliate_name?: string;
39636
+ affiliate_uuid?: string;
39637
+ customer_name?: string;
39638
+ customer_uuid?: string;
39639
+ is_active?: boolean;
39640
+ /**
39641
+ * Ordering
39642
+ *
39643
+ *
39644
+ */
39645
+ o?: Array<CustomerAffiliateOEnum>;
39646
+ /**
39647
+ * A page number within the paginated result set.
39648
+ */
39649
+ page?: number;
39650
+ /**
39651
+ * Number of results to return per page.
39652
+ */
39653
+ page_size?: number;
39654
+ };
39655
+ url: '/api/customer-affiliates/{uuid}/accruals/';
39656
+ };
39657
+ export type CustomerAffiliatesAccrualsListResponses = {
39658
+ 200: Array<AffiliateFeeAccrual>;
39659
+ };
39660
+ export type CustomerAffiliatesAccrualsListResponse = CustomerAffiliatesAccrualsListResponses[keyof CustomerAffiliatesAccrualsListResponses];
39661
+ export type CustomerAffiliatesEarningsRetrieveData = {
39662
+ body?: never;
39663
+ path: {
39664
+ uuid: string;
39665
+ };
39666
+ query?: never;
39667
+ url: '/api/customer-affiliates/{uuid}/earnings/';
39668
+ };
39669
+ export type CustomerAffiliatesEarningsRetrieveResponses = {
39670
+ 200: AffiliateEarnings;
39671
+ };
39672
+ export type CustomerAffiliatesEarningsRetrieveResponse = CustomerAffiliatesEarningsRetrieveResponses[keyof CustomerAffiliatesEarningsRetrieveResponses];
39026
39673
  export type CustomerCreditsListData = {
39027
39674
  body?: never;
39028
39675
  path?: never;
@@ -39144,6 +39791,18 @@ export type CustomerCreditsUpdateResponses = {
39144
39791
  200: CreateCustomerCredit;
39145
39792
  };
39146
39793
  export type CustomerCreditsUpdateResponse = CustomerCreditsUpdateResponses[keyof CustomerCreditsUpdateResponses];
39794
+ export type CustomerCreditsAdjustWithdrawableData = {
39795
+ body: WithdrawableAdjustmentRequest;
39796
+ path: {
39797
+ uuid: string;
39798
+ };
39799
+ query?: never;
39800
+ url: '/api/customer-credits/{uuid}/adjust_withdrawable/';
39801
+ };
39802
+ export type CustomerCreditsAdjustWithdrawableResponses = {
39803
+ 200: CustomerCredit;
39804
+ };
39805
+ export type CustomerCreditsAdjustWithdrawableResponse = CustomerCreditsAdjustWithdrawableResponses[keyof CustomerCreditsAdjustWithdrawableResponses];
39147
39806
  export type CustomerCreditsApplyCompensationsData = {
39148
39807
  body?: never;
39149
39808
  path: {
@@ -39378,6 +40037,10 @@ export type CustomersListData = {
39378
40037
  * Return a list of customers where current user has project create permission.
39379
40038
  */
39380
40039
  current_user_has_project_create_permission?: boolean;
40040
+ /**
40041
+ * Multiple values may be separated by commas.
40042
+ */
40043
+ current_user_has_role?: Array<string>;
39381
40044
  field?: Array<CustomerFieldEnum>;
39382
40045
  /**
39383
40046
  * Filter by customers with resources.
@@ -39474,6 +40137,10 @@ export type CustomersCountData = {
39474
40137
  * Return a list of customers where current user has project create permission.
39475
40138
  */
39476
40139
  current_user_has_project_create_permission?: boolean;
40140
+ /**
40141
+ * Multiple values may be separated by commas.
40142
+ */
40143
+ current_user_has_role?: Array<string>;
39477
40144
  /**
39478
40145
  * Filter by customers with resources.
39479
40146
  */
@@ -39869,6 +40536,10 @@ export type CustomersHistoryListData = {
39869
40536
  * Return a list of customers where current user has project create permission.
39870
40537
  */
39871
40538
  current_user_has_project_create_permission?: boolean;
40539
+ /**
40540
+ * Multiple values may be separated by commas.
40541
+ */
40542
+ current_user_has_role?: Array<string>;
39872
40543
  /**
39873
40544
  * Filter by customers with resources.
39874
40545
  */
@@ -40170,6 +40841,10 @@ export type CustomersCountriesListData = {
40170
40841
  * Return a list of customers where current user has project create permission.
40171
40842
  */
40172
40843
  current_user_has_project_create_permission?: boolean;
40844
+ /**
40845
+ * Multiple values may be separated by commas.
40846
+ */
40847
+ current_user_has_role?: Array<string>;
40173
40848
  /**
40174
40849
  * Filter by customers with resources.
40175
40850
  */
@@ -40265,6 +40940,10 @@ export type CustomersCountriesCountData = {
40265
40940
  * Return a list of customers where current user has project create permission.
40266
40941
  */
40267
40942
  current_user_has_project_create_permission?: boolean;
40943
+ /**
40944
+ * Multiple values may be separated by commas.
40945
+ */
40946
+ current_user_has_role?: Array<string>;
40268
40947
  /**
40269
40948
  * Filter by customers with resources.
40270
40949
  */
@@ -41877,6 +42556,10 @@ export type FinancialReportsListData = {
41877
42556
  * Return a list of customers where current user has project create permission.
41878
42557
  */
41879
42558
  current_user_has_project_create_permission?: boolean;
42559
+ /**
42560
+ * Multiple values may be separated by commas.
42561
+ */
42562
+ current_user_has_role?: Array<string>;
41880
42563
  /**
41881
42564
  * Filter by customer UUID.
41882
42565
  */
@@ -41964,6 +42647,10 @@ export type FinancialReportsCountData = {
41964
42647
  * Return a list of customers where current user has project create permission.
41965
42648
  */
41966
42649
  current_user_has_project_create_permission?: boolean;
42650
+ /**
42651
+ * Multiple values may be separated by commas.
42652
+ */
42653
+ current_user_has_role?: Array<string>;
41967
42654
  /**
41968
42655
  * Filter by customer UUID.
41969
42656
  */
@@ -44312,6 +44999,10 @@ export type MaintenanceAnnouncementsListData = {
44312
44999
  *
44313
45000
  */
44314
45001
  state?: Array<MaintenanceAnnouncementStateEnum>;
45002
+ /**
45003
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
45004
+ */
45005
+ timing_bucket?: string;
44315
45006
  };
44316
45007
  url: '/api/maintenance-announcements/';
44317
45008
  };
@@ -44367,6 +45058,10 @@ export type MaintenanceAnnouncementsCountData = {
44367
45058
  *
44368
45059
  */
44369
45060
  state?: Array<MaintenanceAnnouncementStateEnum>;
45061
+ /**
45062
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
45063
+ */
45064
+ timing_bucket?: string;
44370
45065
  };
44371
45066
  url: '/api/maintenance-announcements/';
44372
45067
  };
@@ -47511,6 +48206,7 @@ export type MarketplaceOfferingPermissionsListData = {
47511
48206
  * User full name contains
47512
48207
  */
47513
48208
  full_name?: string;
48209
+ is_active?: boolean;
47514
48210
  /**
47515
48211
  * Modified after
47516
48212
  */
@@ -47586,6 +48282,7 @@ export type MarketplaceOfferingPermissionsCountData = {
47586
48282
  * User full name contains
47587
48283
  */
47588
48284
  full_name?: string;
48285
+ is_active?: boolean;
47589
48286
  /**
47590
48287
  * Modified after
47591
48288
  */
@@ -47663,6 +48360,7 @@ export type MarketplaceOfferingPermissionsLogListData = {
47663
48360
  * User full name contains
47664
48361
  */
47665
48362
  full_name?: string;
48363
+ is_active?: boolean;
47666
48364
  /**
47667
48365
  * Modified after
47668
48366
  */
@@ -47738,6 +48436,7 @@ export type MarketplaceOfferingPermissionsLogCountData = {
47738
48436
  * User full name contains
47739
48437
  */
47740
48438
  full_name?: string;
48439
+ is_active?: boolean;
47741
48440
  /**
47742
48441
  * Modified after
47743
48442
  */
@@ -48595,7 +49294,7 @@ export type MarketplaceOfferingUsersListData = {
48595
49294
  */
48596
49295
  provider_uuid?: string;
48597
49296
  /**
48598
- * Search by offering name, username or user name
49297
+ * Search by offering name, username, user name, UID or primary GID
48599
49298
  */
48600
49299
  query?: string;
48601
49300
  /**
@@ -48690,7 +49389,7 @@ export type MarketplaceOfferingUsersCountData = {
48690
49389
  */
48691
49390
  provider_uuid?: string;
48692
49391
  /**
48693
- * Search by offering name, username or user name
49392
+ * Search by offering name, username, user name, UID or primary GID
48694
49393
  */
48695
49394
  query?: string;
48696
49395
  /**
@@ -48892,6 +49591,200 @@ export type MarketplaceOfferingUsersCompletionStatusRetrieveResponses = {
48892
49591
  200: ChecklistCompletion;
48893
49592
  };
48894
49593
  export type MarketplaceOfferingUsersCompletionStatusRetrieveResponse = MarketplaceOfferingUsersCompletionStatusRetrieveResponses[keyof MarketplaceOfferingUsersCompletionStatusRetrieveResponses];
49594
+ export type MarketplaceOfferingUsersPosixAllocationsListData = {
49595
+ body?: never;
49596
+ path: {
49597
+ uuid: string;
49598
+ };
49599
+ query?: {
49600
+ /**
49601
+ * Created after
49602
+ */
49603
+ created?: string;
49604
+ /**
49605
+ * Created before
49606
+ */
49607
+ created_before?: string;
49608
+ /**
49609
+ * User has complete profile for the offering
49610
+ */
49611
+ has_complete_profile?: boolean;
49612
+ /**
49613
+ * User Has Consent
49614
+ */
49615
+ has_consent?: boolean;
49616
+ /**
49617
+ * Is restricted
49618
+ */
49619
+ is_restricted?: boolean;
49620
+ /**
49621
+ * Modified after
49622
+ */
49623
+ modified?: string;
49624
+ /**
49625
+ * Modified before
49626
+ */
49627
+ modified_before?: string;
49628
+ /**
49629
+ * Ordering
49630
+ *
49631
+ *
49632
+ */
49633
+ o?: Array<OfferingUserOEnum>;
49634
+ offering?: string;
49635
+ /**
49636
+ * Offering has active Terms of Service
49637
+ */
49638
+ offering_has_active_tos?: boolean;
49639
+ /**
49640
+ * Multiple values may be separated by commas.
49641
+ */
49642
+ offering_slug?: Array<string>;
49643
+ /**
49644
+ * Multiple values may be separated by commas.
49645
+ */
49646
+ offering_uuid?: Array<string>;
49647
+ /**
49648
+ * A page number within the paginated result set.
49649
+ */
49650
+ page?: number;
49651
+ /**
49652
+ * Number of results to return per page.
49653
+ */
49654
+ page_size?: number;
49655
+ parent_offering_uuid?: string;
49656
+ /**
49657
+ * Provider UUID
49658
+ */
49659
+ provider_uuid?: string;
49660
+ /**
49661
+ * Search by offering name, username, user name, UID or primary GID
49662
+ */
49663
+ query?: string;
49664
+ /**
49665
+ * Offering user runtime state
49666
+ *
49667
+ *
49668
+ */
49669
+ runtime_state?: Array<RuntimeStateEnum>;
49670
+ /**
49671
+ * Offering user state
49672
+ *
49673
+ *
49674
+ */
49675
+ state?: Array<OfferingUserState>;
49676
+ /**
49677
+ * User username
49678
+ */
49679
+ user_username?: string;
49680
+ /**
49681
+ * User UUID
49682
+ */
49683
+ user_uuid?: string;
49684
+ };
49685
+ url: '/api/marketplace-offering-users/{uuid}/posix_allocations/';
49686
+ };
49687
+ export type MarketplaceOfferingUsersPosixAllocationsListResponses = {
49688
+ 200: Array<OfferingUserPosixAllocation>;
49689
+ };
49690
+ export type MarketplaceOfferingUsersPosixAllocationsListResponse = MarketplaceOfferingUsersPosixAllocationsListResponses[keyof MarketplaceOfferingUsersPosixAllocationsListResponses];
49691
+ export type MarketplaceOfferingUsersPosixGroupsListData = {
49692
+ body?: never;
49693
+ path: {
49694
+ uuid: string;
49695
+ };
49696
+ query?: {
49697
+ /**
49698
+ * Created after
49699
+ */
49700
+ created?: string;
49701
+ /**
49702
+ * Created before
49703
+ */
49704
+ created_before?: string;
49705
+ /**
49706
+ * User has complete profile for the offering
49707
+ */
49708
+ has_complete_profile?: boolean;
49709
+ /**
49710
+ * User Has Consent
49711
+ */
49712
+ has_consent?: boolean;
49713
+ /**
49714
+ * Is restricted
49715
+ */
49716
+ is_restricted?: boolean;
49717
+ /**
49718
+ * Modified after
49719
+ */
49720
+ modified?: string;
49721
+ /**
49722
+ * Modified before
49723
+ */
49724
+ modified_before?: string;
49725
+ /**
49726
+ * Ordering
49727
+ *
49728
+ *
49729
+ */
49730
+ o?: Array<OfferingUserOEnum>;
49731
+ offering?: string;
49732
+ /**
49733
+ * Offering has active Terms of Service
49734
+ */
49735
+ offering_has_active_tos?: boolean;
49736
+ /**
49737
+ * Multiple values may be separated by commas.
49738
+ */
49739
+ offering_slug?: Array<string>;
49740
+ /**
49741
+ * Multiple values may be separated by commas.
49742
+ */
49743
+ offering_uuid?: Array<string>;
49744
+ /**
49745
+ * A page number within the paginated result set.
49746
+ */
49747
+ page?: number;
49748
+ /**
49749
+ * Number of results to return per page.
49750
+ */
49751
+ page_size?: number;
49752
+ parent_offering_uuid?: string;
49753
+ /**
49754
+ * Provider UUID
49755
+ */
49756
+ provider_uuid?: string;
49757
+ /**
49758
+ * Search by offering name, username, user name, UID or primary GID
49759
+ */
49760
+ query?: string;
49761
+ /**
49762
+ * Offering user runtime state
49763
+ *
49764
+ *
49765
+ */
49766
+ runtime_state?: Array<RuntimeStateEnum>;
49767
+ /**
49768
+ * Offering user state
49769
+ *
49770
+ *
49771
+ */
49772
+ state?: Array<OfferingUserState>;
49773
+ /**
49774
+ * User username
49775
+ */
49776
+ user_username?: string;
49777
+ /**
49778
+ * User UUID
49779
+ */
49780
+ user_uuid?: string;
49781
+ };
49782
+ url: '/api/marketplace-offering-users/{uuid}/posix_groups/';
49783
+ };
49784
+ export type MarketplaceOfferingUsersPosixGroupsListResponses = {
49785
+ 200: Array<OfferingUserPosixGroup>;
49786
+ };
49787
+ export type MarketplaceOfferingUsersPosixGroupsListResponse = MarketplaceOfferingUsersPosixGroupsListResponses[keyof MarketplaceOfferingUsersPosixGroupsListResponses];
48895
49788
  export type MarketplaceOfferingUsersRequestDeletionData = {
48896
49789
  body?: never;
48897
49790
  path: {
@@ -49004,6 +49897,18 @@ export type MarketplaceOfferingUsersSetPendingAdditionalValidationResponses = {
49004
49897
  */
49005
49898
  200: unknown;
49006
49899
  };
49900
+ export type MarketplaceOfferingUsersSetPosixAttributesData = {
49901
+ body?: OfferingUserPosixAttributesRequest;
49902
+ path: {
49903
+ uuid: string;
49904
+ };
49905
+ query?: never;
49906
+ url: '/api/marketplace-offering-users/{uuid}/set_posix_attributes/';
49907
+ };
49908
+ export type MarketplaceOfferingUsersSetPosixAttributesResponses = {
49909
+ 200: OfferingUserPosixUpdateResponse;
49910
+ };
49911
+ export type MarketplaceOfferingUsersSetPosixAttributesResponse = MarketplaceOfferingUsersSetPosixAttributesResponses[keyof MarketplaceOfferingUsersSetPosixAttributesResponses];
49007
49912
  export type MarketplaceOfferingUsersSetValidationCompleteData = {
49008
49913
  body?: never;
49009
49914
  path: {
@@ -49122,6 +50027,192 @@ export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
49122
50027
  */
49123
50028
  200: unknown;
49124
50029
  };
50030
+ export type MarketplaceOfferingUsersPosixIdentitiesListData = {
50031
+ body?: never;
50032
+ path?: never;
50033
+ query: {
50034
+ /**
50035
+ * Created after
50036
+ */
50037
+ created?: string;
50038
+ /**
50039
+ * Created before
50040
+ */
50041
+ created_before?: string;
50042
+ /**
50043
+ * User has complete profile for the offering
50044
+ */
50045
+ has_complete_profile?: boolean;
50046
+ /**
50047
+ * User Has Consent
50048
+ */
50049
+ has_consent?: boolean;
50050
+ /**
50051
+ * Is restricted
50052
+ */
50053
+ is_restricted?: boolean;
50054
+ /**
50055
+ * Modified after
50056
+ */
50057
+ modified?: string;
50058
+ /**
50059
+ * Modified before
50060
+ */
50061
+ modified_before?: string;
50062
+ /**
50063
+ * Ordering
50064
+ *
50065
+ *
50066
+ */
50067
+ o?: Array<OfferingUserOEnum>;
50068
+ offering?: string;
50069
+ /**
50070
+ * Offering has active Terms of Service
50071
+ */
50072
+ offering_has_active_tos?: boolean;
50073
+ /**
50074
+ * Multiple values may be separated by commas.
50075
+ */
50076
+ offering_slug?: Array<string>;
50077
+ /**
50078
+ * Multiple values may be separated by commas.
50079
+ */
50080
+ offering_uuid?: Array<string>;
50081
+ /**
50082
+ * A page number within the paginated result set.
50083
+ */
50084
+ page?: number;
50085
+ /**
50086
+ * Number of results to return per page.
50087
+ */
50088
+ page_size?: number;
50089
+ parent_offering_uuid?: string;
50090
+ /**
50091
+ * Provider UUID
50092
+ */
50093
+ provider_uuid?: string;
50094
+ /**
50095
+ * Search by offering name, username, user name, UID or primary GID
50096
+ */
50097
+ query?: string;
50098
+ /**
50099
+ * Offering user runtime state
50100
+ *
50101
+ *
50102
+ */
50103
+ runtime_state?: Array<RuntimeStateEnum>;
50104
+ /**
50105
+ * Offering user state
50106
+ *
50107
+ *
50108
+ */
50109
+ state?: Array<OfferingUserState>;
50110
+ /**
50111
+ * User username
50112
+ */
50113
+ user_username?: string;
50114
+ user_uuid: string;
50115
+ };
50116
+ url: '/api/marketplace-offering-users/posix_identities/';
50117
+ };
50118
+ export type MarketplaceOfferingUsersPosixIdentitiesListResponses = {
50119
+ 200: Array<UserPosixIdentity>;
50120
+ };
50121
+ export type MarketplaceOfferingUsersPosixIdentitiesListResponse = MarketplaceOfferingUsersPosixIdentitiesListResponses[keyof MarketplaceOfferingUsersPosixIdentitiesListResponses];
50122
+ export type MarketplaceOfferingUsersPosixIdentitiesCountData = {
50123
+ body?: never;
50124
+ path?: never;
50125
+ query: {
50126
+ /**
50127
+ * Created after
50128
+ */
50129
+ created?: string;
50130
+ /**
50131
+ * Created before
50132
+ */
50133
+ created_before?: string;
50134
+ /**
50135
+ * User has complete profile for the offering
50136
+ */
50137
+ has_complete_profile?: boolean;
50138
+ /**
50139
+ * User Has Consent
50140
+ */
50141
+ has_consent?: boolean;
50142
+ /**
50143
+ * Is restricted
50144
+ */
50145
+ is_restricted?: boolean;
50146
+ /**
50147
+ * Modified after
50148
+ */
50149
+ modified?: string;
50150
+ /**
50151
+ * Modified before
50152
+ */
50153
+ modified_before?: string;
50154
+ /**
50155
+ * Ordering
50156
+ *
50157
+ *
50158
+ */
50159
+ o?: Array<OfferingUserOEnum>;
50160
+ offering?: string;
50161
+ /**
50162
+ * Offering has active Terms of Service
50163
+ */
50164
+ offering_has_active_tos?: boolean;
50165
+ /**
50166
+ * Multiple values may be separated by commas.
50167
+ */
50168
+ offering_slug?: Array<string>;
50169
+ /**
50170
+ * Multiple values may be separated by commas.
50171
+ */
50172
+ offering_uuid?: Array<string>;
50173
+ /**
50174
+ * A page number within the paginated result set.
50175
+ */
50176
+ page?: number;
50177
+ /**
50178
+ * Number of results to return per page.
50179
+ */
50180
+ page_size?: number;
50181
+ parent_offering_uuid?: string;
50182
+ /**
50183
+ * Provider UUID
50184
+ */
50185
+ provider_uuid?: string;
50186
+ /**
50187
+ * Search by offering name, username, user name, UID or primary GID
50188
+ */
50189
+ query?: string;
50190
+ /**
50191
+ * Offering user runtime state
50192
+ *
50193
+ *
50194
+ */
50195
+ runtime_state?: Array<RuntimeStateEnum>;
50196
+ /**
50197
+ * Offering user state
50198
+ *
50199
+ *
50200
+ */
50201
+ state?: Array<OfferingUserState>;
50202
+ /**
50203
+ * User username
50204
+ */
50205
+ user_username?: string;
50206
+ user_uuid: string;
50207
+ };
50208
+ url: '/api/marketplace-offering-users/posix_identities/';
50209
+ };
50210
+ export type MarketplaceOfferingUsersPosixIdentitiesCountResponses = {
50211
+ /**
50212
+ * No response body
50213
+ */
50214
+ 200: unknown;
50215
+ };
49125
50216
  export type MarketplaceOfferingUsersProfileFieldWarningsRetrieveData = {
49126
50217
  body?: never;
49127
50218
  path?: never;
@@ -49146,6 +50237,46 @@ export type MarketplaceOfferingUsersProfileFieldWarningsCountResponses = {
49146
50237
  */
49147
50238
  200: unknown;
49148
50239
  };
50240
+ export type MarketplaceOpenstackDuplicateOfferingsListData = {
50241
+ body?: never;
50242
+ path?: never;
50243
+ query?: {
50244
+ /**
50245
+ * A page number within the paginated result set.
50246
+ */
50247
+ page?: number;
50248
+ /**
50249
+ * Number of results to return per page.
50250
+ */
50251
+ page_size?: number;
50252
+ };
50253
+ url: '/api/marketplace-openstack-duplicate-offerings/';
50254
+ };
50255
+ export type MarketplaceOpenstackDuplicateOfferingsListResponses = {
50256
+ 200: Array<DuplicateOfferingGroup>;
50257
+ };
50258
+ export type MarketplaceOpenstackDuplicateOfferingsListResponse = MarketplaceOpenstackDuplicateOfferingsListResponses[keyof MarketplaceOpenstackDuplicateOfferingsListResponses];
50259
+ export type MarketplaceOpenstackDuplicateOfferingsCountData = {
50260
+ body?: never;
50261
+ path?: never;
50262
+ query?: {
50263
+ /**
50264
+ * A page number within the paginated result set.
50265
+ */
50266
+ page?: number;
50267
+ /**
50268
+ * Number of results to return per page.
50269
+ */
50270
+ page_size?: number;
50271
+ };
50272
+ url: '/api/marketplace-openstack-duplicate-offerings/';
50273
+ };
50274
+ export type MarketplaceOpenstackDuplicateOfferingsCountResponses = {
50275
+ /**
50276
+ * No response body
50277
+ */
50278
+ 200: unknown;
50279
+ };
49149
50280
  export type MarketplaceOrdersListData = {
49150
50281
  body?: never;
49151
50282
  path?: never;
@@ -50128,6 +51259,216 @@ export type MarketplacePluginsListResponses = {
50128
51259
  200: Array<PluginOfferingType>;
50129
51260
  };
50130
51261
  export type MarketplacePluginsListResponse = MarketplacePluginsListResponses[keyof MarketplacePluginsListResponses];
51262
+ export type MarketplacePosixIdPoolsListData = {
51263
+ body?: never;
51264
+ path?: never;
51265
+ query?: {
51266
+ /**
51267
+ * Customer UUID
51268
+ */
51269
+ customer_uuid?: string;
51270
+ field?: Array<PosixIdPoolFieldEnum>;
51271
+ /**
51272
+ * Offering UUID
51273
+ */
51274
+ offering_uuid?: string;
51275
+ /**
51276
+ * A page number within the paginated result set.
51277
+ */
51278
+ page?: number;
51279
+ /**
51280
+ * Number of results to return per page.
51281
+ */
51282
+ page_size?: number;
51283
+ /**
51284
+ * Service provider UUID
51285
+ */
51286
+ service_provider_uuid?: string;
51287
+ };
51288
+ url: '/api/marketplace-posix-id-pools/';
51289
+ };
51290
+ export type MarketplacePosixIdPoolsListResponses = {
51291
+ 200: Array<PosixIdPool>;
51292
+ };
51293
+ export type MarketplacePosixIdPoolsListResponse = MarketplacePosixIdPoolsListResponses[keyof MarketplacePosixIdPoolsListResponses];
51294
+ export type MarketplacePosixIdPoolsCountData = {
51295
+ body?: never;
51296
+ path?: never;
51297
+ query?: {
51298
+ /**
51299
+ * Customer UUID
51300
+ */
51301
+ customer_uuid?: string;
51302
+ /**
51303
+ * Offering UUID
51304
+ */
51305
+ offering_uuid?: string;
51306
+ /**
51307
+ * A page number within the paginated result set.
51308
+ */
51309
+ page?: number;
51310
+ /**
51311
+ * Number of results to return per page.
51312
+ */
51313
+ page_size?: number;
51314
+ /**
51315
+ * Service provider UUID
51316
+ */
51317
+ service_provider_uuid?: string;
51318
+ };
51319
+ url: '/api/marketplace-posix-id-pools/';
51320
+ };
51321
+ export type MarketplacePosixIdPoolsCountResponses = {
51322
+ /**
51323
+ * No response body
51324
+ */
51325
+ 200: unknown;
51326
+ };
51327
+ export type MarketplacePosixIdPoolsCreateData = {
51328
+ body?: PosixIdPoolRequest;
51329
+ path?: never;
51330
+ query?: never;
51331
+ url: '/api/marketplace-posix-id-pools/';
51332
+ };
51333
+ export type MarketplacePosixIdPoolsCreateResponses = {
51334
+ 201: PosixIdPool;
51335
+ };
51336
+ export type MarketplacePosixIdPoolsCreateResponse = MarketplacePosixIdPoolsCreateResponses[keyof MarketplacePosixIdPoolsCreateResponses];
51337
+ export type MarketplacePosixIdPoolsDestroyData = {
51338
+ body?: never;
51339
+ path: {
51340
+ uuid: string;
51341
+ };
51342
+ query?: never;
51343
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51344
+ };
51345
+ export type MarketplacePosixIdPoolsDestroyResponses = {
51346
+ /**
51347
+ * No response body
51348
+ */
51349
+ 204: void;
51350
+ };
51351
+ export type MarketplacePosixIdPoolsDestroyResponse = MarketplacePosixIdPoolsDestroyResponses[keyof MarketplacePosixIdPoolsDestroyResponses];
51352
+ export type MarketplacePosixIdPoolsRetrieveData = {
51353
+ body?: never;
51354
+ path: {
51355
+ uuid: string;
51356
+ };
51357
+ query?: {
51358
+ field?: Array<PosixIdPoolFieldEnum>;
51359
+ };
51360
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51361
+ };
51362
+ export type MarketplacePosixIdPoolsRetrieveResponses = {
51363
+ 200: PosixIdPool;
51364
+ };
51365
+ export type MarketplacePosixIdPoolsRetrieveResponse = MarketplacePosixIdPoolsRetrieveResponses[keyof MarketplacePosixIdPoolsRetrieveResponses];
51366
+ export type MarketplacePosixIdPoolsPartialUpdateData = {
51367
+ body?: PatchedPosixIdPoolRequest;
51368
+ path: {
51369
+ uuid: string;
51370
+ };
51371
+ query?: never;
51372
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51373
+ };
51374
+ export type MarketplacePosixIdPoolsPartialUpdateResponses = {
51375
+ 200: PosixIdPool;
51376
+ };
51377
+ export type MarketplacePosixIdPoolsPartialUpdateResponse = MarketplacePosixIdPoolsPartialUpdateResponses[keyof MarketplacePosixIdPoolsPartialUpdateResponses];
51378
+ export type MarketplacePosixIdPoolsUpdateData = {
51379
+ body?: PosixIdPoolRequest;
51380
+ path: {
51381
+ uuid: string;
51382
+ };
51383
+ query?: never;
51384
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51385
+ };
51386
+ export type MarketplacePosixIdPoolsUpdateResponses = {
51387
+ 200: PosixIdPool;
51388
+ };
51389
+ export type MarketplacePosixIdPoolsUpdateResponse = MarketplacePosixIdPoolsUpdateResponses[keyof MarketplacePosixIdPoolsUpdateResponses];
51390
+ export type MarketplacePosixIdPoolsStatsRetrieveData = {
51391
+ body?: never;
51392
+ path: {
51393
+ uuid: string;
51394
+ };
51395
+ query?: never;
51396
+ url: '/api/marketplace-posix-id-pools/{uuid}/stats/';
51397
+ };
51398
+ export type MarketplacePosixIdPoolsStatsRetrieveResponses = {
51399
+ 200: PosixIdPoolStats;
51400
+ };
51401
+ export type MarketplacePosixIdPoolsStatsRetrieveResponse = MarketplacePosixIdPoolsStatsRetrieveResponses[keyof MarketplacePosixIdPoolsStatsRetrieveResponses];
51402
+ export type MarketplacePosixIdentitiesListData = {
51403
+ body?: never;
51404
+ path?: never;
51405
+ query?: {
51406
+ is_released?: boolean;
51407
+ /**
51408
+ * Offering UUID
51409
+ */
51410
+ offering_uuid?: string;
51411
+ /**
51412
+ * A page number within the paginated result set.
51413
+ */
51414
+ page?: number;
51415
+ /**
51416
+ * Number of results to return per page.
51417
+ */
51418
+ page_size?: number;
51419
+ /**
51420
+ * POSIX ID pool UUID
51421
+ */
51422
+ pool_uuid?: string;
51423
+ };
51424
+ url: '/api/marketplace-posix-identities/';
51425
+ };
51426
+ export type MarketplacePosixIdentitiesListResponses = {
51427
+ 200: Array<PosixIdentity>;
51428
+ };
51429
+ export type MarketplacePosixIdentitiesListResponse = MarketplacePosixIdentitiesListResponses[keyof MarketplacePosixIdentitiesListResponses];
51430
+ export type MarketplacePosixIdentitiesCountData = {
51431
+ body?: never;
51432
+ path?: never;
51433
+ query?: {
51434
+ is_released?: boolean;
51435
+ /**
51436
+ * Offering UUID
51437
+ */
51438
+ offering_uuid?: string;
51439
+ /**
51440
+ * A page number within the paginated result set.
51441
+ */
51442
+ page?: number;
51443
+ /**
51444
+ * Number of results to return per page.
51445
+ */
51446
+ page_size?: number;
51447
+ /**
51448
+ * POSIX ID pool UUID
51449
+ */
51450
+ pool_uuid?: string;
51451
+ };
51452
+ url: '/api/marketplace-posix-identities/';
51453
+ };
51454
+ export type MarketplacePosixIdentitiesCountResponses = {
51455
+ /**
51456
+ * No response body
51457
+ */
51458
+ 200: unknown;
51459
+ };
51460
+ export type MarketplacePosixIdentitiesRetrieveData = {
51461
+ body?: never;
51462
+ path: {
51463
+ uuid: string;
51464
+ };
51465
+ query?: never;
51466
+ url: '/api/marketplace-posix-identities/{uuid}/';
51467
+ };
51468
+ export type MarketplacePosixIdentitiesRetrieveResponses = {
51469
+ 200: PosixIdentity;
51470
+ };
51471
+ export type MarketplacePosixIdentitiesRetrieveResponse = MarketplacePosixIdentitiesRetrieveResponses[keyof MarketplacePosixIdentitiesRetrieveResponses];
50131
51472
  export type MarketplaceProjectEstimatedCostPoliciesListData = {
50132
51473
  body?: never;
50133
51474
  path?: never;
@@ -50384,6 +51725,32 @@ export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
50384
51725
  200: ProjectOrderAutoApproval;
50385
51726
  };
50386
51727
  export type MarketplaceProjectOrderAutoApprovalsUpdateResponse = MarketplaceProjectOrderAutoApprovalsUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsUpdateResponses];
51728
+ export type MarketplaceProjectPosixGroupsListData = {
51729
+ body?: never;
51730
+ path?: never;
51731
+ query: {
51732
+ project_uuid: string;
51733
+ };
51734
+ url: '/api/marketplace-project-posix-groups/';
51735
+ };
51736
+ export type MarketplaceProjectPosixGroupsListResponses = {
51737
+ 200: Array<ProjectPosixGroup>;
51738
+ };
51739
+ export type MarketplaceProjectPosixGroupsListResponse = MarketplaceProjectPosixGroupsListResponses[keyof MarketplaceProjectPosixGroupsListResponses];
51740
+ export type MarketplaceProjectPosixGroupsCountData = {
51741
+ body?: never;
51742
+ path?: never;
51743
+ query: {
51744
+ project_uuid: string;
51745
+ };
51746
+ url: '/api/marketplace-project-posix-groups/';
51747
+ };
51748
+ export type MarketplaceProjectPosixGroupsCountResponses = {
51749
+ /**
51750
+ * No response body
51751
+ */
51752
+ 200: unknown;
51753
+ };
50387
51754
  export type MarketplaceProjectServiceAccountsListData = {
50388
51755
  body?: never;
50389
51756
  path?: never;
@@ -51865,6 +53232,20 @@ export type MarketplaceProviderOfferingsDraftResponses = {
51865
53232
  200: DetailState;
51866
53233
  };
51867
53234
  export type MarketplaceProviderOfferingsDraftResponse = MarketplaceProviderOfferingsDraftResponses[keyof MarketplaceProviderOfferingsDraftResponses];
53235
+ export type MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveData = {
53236
+ body?: never;
53237
+ path: {
53238
+ uuid: string;
53239
+ };
53240
+ query?: {
53241
+ field?: Array<PosixIdPoolFieldEnum>;
53242
+ };
53243
+ url: '/api/marketplace-provider-offerings/{uuid}/effective_posix_id_pool/';
53244
+ };
53245
+ export type MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponses = {
53246
+ 200: PosixIdPool;
53247
+ };
53248
+ export type MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponse = MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponses[keyof MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponses];
51868
53249
  export type MarketplaceProviderOfferingsExportOfferingData = {
51869
53250
  body?: OfferingExportParametersRequest;
51870
53251
  path: {
@@ -58452,6 +59833,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
58452
59833
  * Created before
58453
59834
  */
58454
59835
  created_before?: string;
59836
+ /**
59837
+ * Multiple values may be separated by commas.
59838
+ */
59839
+ current_user_has_role?: Array<string>;
58455
59840
  /**
58456
59841
  * Multiple values may be separated by commas.
58457
59842
  */
@@ -58563,6 +59948,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
58563
59948
  * Return a list of customers where current user has project create permission.
58564
59949
  */
58565
59950
  current_user_has_project_create_permission?: boolean;
59951
+ /**
59952
+ * Multiple values may be separated by commas.
59953
+ */
59954
+ current_user_has_role?: Array<string>;
58566
59955
  field?: Array<MarketplaceProviderCustomerFieldEnum>;
58567
59956
  /**
58568
59957
  * Name
@@ -59057,6 +60446,7 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
59057
60446
  * User full name contains
59058
60447
  */
59059
60448
  full_name?: string;
60449
+ is_active?: boolean;
59060
60450
  /**
59061
60451
  * Modified after
59062
60452
  */
@@ -59192,6 +60582,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
59192
60582
  * Created before
59193
60583
  */
59194
60584
  created_before?: string;
60585
+ /**
60586
+ * Multiple values may be separated by commas.
60587
+ */
60588
+ current_user_has_role?: Array<string>;
59195
60589
  /**
59196
60590
  * Multiple values may be separated by commas.
59197
60591
  */
@@ -59299,6 +60693,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
59299
60693
  * Return a list of customers where current user has project create permission.
59300
60694
  */
59301
60695
  current_user_has_project_create_permission?: boolean;
60696
+ /**
60697
+ * Multiple values may be separated by commas.
60698
+ */
60699
+ current_user_has_role?: Array<string>;
59302
60700
  field?: Array<MarketplaceProviderCustomerFieldEnum>;
59303
60701
  /**
59304
60702
  * Name
@@ -66755,6 +68153,10 @@ export type OpenportalUnmanagedProjectsListData = {
66755
68153
  * Created before
66756
68154
  */
66757
68155
  created_before?: string;
68156
+ /**
68157
+ * Multiple values may be separated by commas.
68158
+ */
68159
+ current_user_has_role?: Array<string>;
66758
68160
  /**
66759
68161
  * Multiple values may be separated by commas.
66760
68162
  */
@@ -66886,6 +68288,10 @@ export type OpenportalUnmanagedProjectsCountData = {
66886
68288
  * Created before
66887
68289
  */
66888
68290
  created_before?: string;
68291
+ /**
68292
+ * Multiple values may be separated by commas.
68293
+ */
68294
+ current_user_has_role?: Array<string>;
66889
68295
  /**
66890
68296
  * Multiple values may be separated by commas.
66891
68297
  */
@@ -75817,6 +77223,10 @@ export type ProjectsListData = {
75817
77223
  * Created before
75818
77224
  */
75819
77225
  created_before?: string;
77226
+ /**
77227
+ * Multiple values may be separated by commas.
77228
+ */
77229
+ current_user_has_role?: Array<string>;
75820
77230
  /**
75821
77231
  * Multiple values may be separated by commas.
75822
77232
  */
@@ -75948,6 +77358,10 @@ export type ProjectsCountData = {
75948
77358
  * Created before
75949
77359
  */
75950
77360
  created_before?: string;
77361
+ /**
77362
+ * Multiple values may be separated by commas.
77363
+ */
77364
+ current_user_has_role?: Array<string>;
75951
77365
  /**
75952
77366
  * Multiple values may be separated by commas.
75953
77367
  */
@@ -79150,6 +80564,10 @@ export type PublicMaintenanceAnnouncementsListData = {
79150
80564
  *
79151
80565
  */
79152
80566
  state?: Array<MaintenanceAnnouncementStateEnum>;
80567
+ /**
80568
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80569
+ */
80570
+ timing_bucket?: string;
79153
80571
  };
79154
80572
  url: '/api/public-maintenance-announcements/';
79155
80573
  };
@@ -79205,6 +80623,10 @@ export type PublicMaintenanceAnnouncementsCountData = {
79205
80623
  *
79206
80624
  */
79207
80625
  state?: Array<MaintenanceAnnouncementStateEnum>;
80626
+ /**
80627
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80628
+ */
80629
+ timing_bucket?: string;
79208
80630
  };
79209
80631
  url: '/api/public-maintenance-announcements/';
79210
80632
  };
@@ -87100,6 +88522,7 @@ export type UserPermissionsListData = {
87100
88522
  * User full name contains
87101
88523
  */
87102
88524
  full_name?: string;
88525
+ is_active?: boolean;
87103
88526
  /**
87104
88527
  * Modified after
87105
88528
  */
@@ -87143,6 +88566,10 @@ export type UserPermissionsListData = {
87143
88566
  * Scope UUID
87144
88567
  */
87145
88568
  scope_uuid?: string;
88569
+ /**
88570
+ * Staff/support only. Include revoked (inactive) role grants in addition to active ones. Ignored for other users, who only ever see their own active roles.
88571
+ */
88572
+ show_inactive?: boolean;
87146
88573
  user?: string;
87147
88574
  /**
87148
88575
  * User slug contains
@@ -87174,6 +88601,7 @@ export type UserPermissionsCountData = {
87174
88601
  * User full name contains
87175
88602
  */
87176
88603
  full_name?: string;
88604
+ is_active?: boolean;
87177
88605
  /**
87178
88606
  * Modified after
87179
88607
  */
@@ -87217,6 +88645,10 @@ export type UserPermissionsCountData = {
87217
88645
  * Scope UUID
87218
88646
  */
87219
88647
  scope_uuid?: string;
88648
+ /**
88649
+ * Staff/support only. Include revoked (inactive) role grants in addition to active ones. Ignored for other users, who only ever see their own active roles.
88650
+ */
88651
+ show_inactive?: boolean;
87220
88652
  user?: string;
87221
88653
  /**
87222
88654
  * User slug contains
@@ -87245,6 +88677,34 @@ export type UserPermissionsRetrieveResponses = {
87245
88677
  200: Permission;
87246
88678
  };
87247
88679
  export type UserPermissionsRetrieveResponse = UserPermissionsRetrieveResponses[keyof UserPermissionsRetrieveResponses];
88680
+ export type UserPermissionsRestoreData = {
88681
+ body?: UserRolePermissionActionRequest;
88682
+ path: {
88683
+ uuid: string;
88684
+ };
88685
+ query?: never;
88686
+ url: '/api/user-permissions/{uuid}/restore/';
88687
+ };
88688
+ export type UserPermissionsRestoreResponses = {
88689
+ /**
88690
+ * Role restored successfully.
88691
+ */
88692
+ 200: unknown;
88693
+ };
88694
+ export type UserPermissionsRevokeData = {
88695
+ body?: UserRolePermissionActionRequest;
88696
+ path: {
88697
+ uuid: string;
88698
+ };
88699
+ query?: never;
88700
+ url: '/api/user-permissions/{uuid}/revoke/';
88701
+ };
88702
+ export type UserPermissionsRevokeResponses = {
88703
+ /**
88704
+ * Role revoked successfully.
88705
+ */
88706
+ 200: unknown;
88707
+ };
87248
88708
  export type UsersListData = {
87249
88709
  body?: never;
87250
88710
  path?: never;