waldur-js-client 8.0.10-dev.0 → 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 = {
@@ -10271,6 +10402,14 @@ export type MarketplaceServiceProviderUser = {
10271
10402
  * Company registration code of the user's organization, if known
10272
10403
  */
10273
10404
  organization_registry_code?: string;
10405
+ /**
10406
+ * VAT code of the user's organization
10407
+ */
10408
+ organization_vat_code?: string;
10409
+ /**
10410
+ * Postal address of the user's organization
10411
+ */
10412
+ organization_address?: string;
10274
10413
  /**
10275
10414
  * REFEDS assurance profile URIs from identity provider
10276
10415
  */
@@ -10514,6 +10653,14 @@ export type MergedPluginOptions = {
10514
10653
  * Required user role in a project for provisioning of resources
10515
10654
  */
10516
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>;
10517
10664
  /**
10518
10665
  * If set to True, users will be able to upload purchase orders.
10519
10666
  */
@@ -10606,6 +10753,10 @@ export type MergedPluginOptions = {
10606
10753
  * Interval in minutes between usage polling for this offering (default: 60)
10607
10754
  */
10608
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;
10609
10760
  /**
10610
10761
  * HEAppE cluster id
10611
10762
  */
@@ -10635,21 +10786,9 @@ export type MergedPluginOptions = {
10635
10786
  */
10636
10787
  project_permanent_directory?: string;
10637
10788
  /**
10638
- * GLAuth initial primary group number
10639
- */
10640
- initial_primarygroup_number?: number;
10641
- /**
10642
- * GLAuth initial uidnumber
10643
- */
10644
- initial_uidnumber?: number;
10645
- /**
10646
- * GLAuth initial usergroup number
10647
- */
10648
- initial_usergroup_number?: number;
10649
- /**
10650
- * 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.
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_rolegroup_number?: number;
10791
+ enable_posix_account?: boolean;
10653
10792
  /**
10654
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"}.
10655
10794
  */
@@ -10678,6 +10817,26 @@ export type MergedPluginOptions = {
10678
10817
  * GLAuth username generation policy
10679
10818
  */
10680
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;
10681
10840
  /**
10682
10841
  * Enable issues for membership changes
10683
10842
  */
@@ -10856,6 +11015,14 @@ export type MergedPluginOptionsRequest = {
10856
11015
  * Required user role in a project for provisioning of resources
10857
11016
  */
10858
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>;
10859
11026
  /**
10860
11027
  * If set to True, users will be able to upload purchase orders.
10861
11028
  */
@@ -10948,6 +11115,10 @@ export type MergedPluginOptionsRequest = {
10948
11115
  * Interval in minutes between usage polling for this offering (default: 60)
10949
11116
  */
10950
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;
10951
11122
  /**
10952
11123
  * HEAppE cluster id
10953
11124
  */
@@ -10977,21 +11148,9 @@ export type MergedPluginOptionsRequest = {
10977
11148
  */
10978
11149
  project_permanent_directory?: string;
10979
11150
  /**
10980
- * 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.
10981
11152
  */
10982
- initial_primarygroup_number?: number;
10983
- /**
10984
- * GLAuth initial uidnumber
10985
- */
10986
- initial_uidnumber?: number;
10987
- /**
10988
- * GLAuth initial usergroup number
10989
- */
10990
- initial_usergroup_number?: number;
10991
- /**
10992
- * 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.
10993
- */
10994
- initial_rolegroup_number?: number;
11153
+ enable_posix_account?: boolean;
10995
11154
  /**
10996
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"}.
10997
11156
  */
@@ -11020,6 +11179,26 @@ export type MergedPluginOptionsRequest = {
11020
11179
  * GLAuth username generation policy
11021
11180
  */
11022
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;
11023
11202
  /**
11024
11203
  * Enable issues for membership changes
11025
11204
  */
@@ -12065,14 +12244,13 @@ export type NestedPlanComponent = {
12065
12244
  */
12066
12245
  future_price?: string | null;
12067
12246
  /**
12068
- * 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'.
12069
12248
  */
12070
- discount_threshold?: number | null;
12249
+ discount_formula?: string;
12071
12250
  /**
12072
- * 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.
12073
12252
  */
12074
- discount_rate?: number | null;
12075
- readonly discounted_price: string | null;
12253
+ discount_aggregation?: DiscountAggregationEnum;
12076
12254
  readonly discount_description: string | null;
12077
12255
  };
12078
12256
  export type NestedPlanComponentRequest = {
@@ -12086,13 +12264,13 @@ export type NestedPlanComponentRequest = {
12086
12264
  */
12087
12265
  future_price?: string | null;
12088
12266
  /**
12089
- * 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'.
12090
12268
  */
12091
- discount_threshold?: number | null;
12269
+ discount_formula?: string;
12092
12270
  /**
12093
- * 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.
12094
12272
  */
12095
- discount_rate?: number | null;
12273
+ discount_aggregation?: DiscountAggregationEnum;
12096
12274
  };
12097
12275
  export type NestedPriceEstimate = {
12098
12276
  readonly total: string;
@@ -13774,6 +13952,10 @@ export type OfferingUser = {
13774
13952
  * VAT code of the user's organization
13775
13953
  */
13776
13954
  readonly user_organization_vat_code: string;
13955
+ /**
13956
+ * Postal address of the user's organization
13957
+ */
13958
+ readonly user_organization_address: string;
13777
13959
  /**
13778
13960
  * REFEDS assurance profile URIs from identity provider
13779
13961
  */
@@ -13786,6 +13968,14 @@ export type OfferingUser = {
13786
13968
  * Indicates what identity provider was used.
13787
13969
  */
13788
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;
13789
13979
  /**
13790
13980
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
13791
13981
  */
@@ -13829,6 +14019,10 @@ export type OfferingUser = {
13829
14019
  } | null;
13830
14020
  readonly is_profile_complete: boolean;
13831
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;
13832
14026
  };
13833
14027
  export type OfferingUserAttributeConfig = {
13834
14028
  readonly uuid: string;
@@ -13843,6 +14037,7 @@ export type OfferingUserAttributeConfig = {
13843
14037
  expose_organization_type?: boolean;
13844
14038
  expose_organization_registry_code?: boolean;
13845
14039
  expose_organization_vat_code?: boolean;
14040
+ expose_organization_address?: boolean;
13846
14041
  expose_affiliations?: boolean;
13847
14042
  expose_phone_number?: boolean;
13848
14043
  expose_job_title?: boolean;
@@ -13858,6 +14053,8 @@ export type OfferingUserAttributeConfig = {
13858
14053
  expose_civil_number?: boolean;
13859
14054
  expose_birth_date?: boolean;
13860
14055
  expose_active_isds?: boolean;
14056
+ expose_uid_number?: boolean;
14057
+ expose_primary_gid?: boolean;
13861
14058
  readonly exposed_fields: Array<string>;
13862
14059
  /**
13863
14060
  * Return True if this is a default (unsaved) config.
@@ -13876,6 +14073,7 @@ export type OfferingUserAttributeConfigRequest = {
13876
14073
  expose_organization_type?: boolean;
13877
14074
  expose_organization_registry_code?: boolean;
13878
14075
  expose_organization_vat_code?: boolean;
14076
+ expose_organization_address?: boolean;
13879
14077
  expose_affiliations?: boolean;
13880
14078
  expose_phone_number?: boolean;
13881
14079
  expose_job_title?: boolean;
@@ -13891,8 +14089,50 @@ export type OfferingUserAttributeConfigRequest = {
13891
14089
  expose_civil_number?: boolean;
13892
14090
  expose_birth_date?: boolean;
13893
14091
  expose_active_isds?: boolean;
14092
+ expose_uid_number?: boolean;
14093
+ expose_primary_gid?: boolean;
13894
14094
  offering?: string;
13895
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
+ };
13896
14136
  export type OfferingUserRequest = {
13897
14137
  user?: string;
13898
14138
  offering?: string;
@@ -14213,6 +14453,7 @@ export type OpenPortalQuota = {
14213
14453
  usage?: string;
14214
14454
  };
14215
14455
  export type OpenStackAllowedAddressPair = {
14456
+ ip_address?: string;
14216
14457
  mac_address?: string;
14217
14458
  };
14218
14459
  export type OpenStackAllowedAddressPairRequest = {
@@ -16569,6 +16810,10 @@ export type OrderDetails = {
16569
16810
  * VAT code of the user's organization
16570
16811
  */
16571
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;
16572
16817
  readonly customer_name: string;
16573
16818
  readonly customer_uuid: string;
16574
16819
  readonly customer_slug: string;
@@ -17163,6 +17408,14 @@ export type PatchedConflictOfInterestRequest = {
17163
17408
  */
17164
17409
  management_plan?: string;
17165
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
+ };
17166
17419
  export type PatchedCreateCustomerCreditRequest = {
17167
17420
  value?: string;
17168
17421
  customer?: string;
@@ -17778,6 +18031,7 @@ export type PatchedOfferingUserAttributeConfigRequest = {
17778
18031
  expose_organization_type?: boolean;
17779
18032
  expose_organization_registry_code?: boolean;
17780
18033
  expose_organization_vat_code?: boolean;
18034
+ expose_organization_address?: boolean;
17781
18035
  expose_affiliations?: boolean;
17782
18036
  expose_phone_number?: boolean;
17783
18037
  expose_job_title?: boolean;
@@ -17793,6 +18047,8 @@ export type PatchedOfferingUserAttributeConfigRequest = {
17793
18047
  expose_civil_number?: boolean;
17794
18048
  expose_birth_date?: boolean;
17795
18049
  expose_active_isds?: boolean;
18050
+ expose_uid_number?: boolean;
18051
+ expose_primary_gid?: boolean;
17796
18052
  offering?: string;
17797
18053
  };
17798
18054
  export type PatchedOfferingUserRequest = {
@@ -17956,6 +18212,13 @@ export type PatchedPaymentRequest = {
17956
18212
  sum?: string;
17957
18213
  proof?: Blob | File | null;
17958
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
+ };
17959
18222
  export type PatchedProjectCreditRequest = {
17960
18223
  value?: string;
17961
18224
  project?: string;
@@ -18944,6 +19207,10 @@ export type PatchedUserRequest = {
18944
19207
  * VAT code of the user's organization
18945
19208
  */
18946
19209
  organization_vat_code?: string;
19210
+ /**
19211
+ * Postal address of the user's organization
19212
+ */
19213
+ organization_address?: string;
18947
19214
  eduperson_assurance?: Array<string>;
18948
19215
  /**
18949
19216
  * Designates whether the user is allowed to manage remote user identities.
@@ -19052,19 +19319,25 @@ export type PeriodBreakdown = {
19052
19319
  reconciled_count: number;
19053
19320
  };
19054
19321
  export type Permission = {
19322
+ readonly uuid: string;
19055
19323
  readonly user_uuid: string;
19056
19324
  readonly user_name: string;
19057
19325
  readonly user_slug: string;
19058
19326
  readonly created: string;
19059
19327
  expiration_time?: string | null;
19328
+ is_active?: boolean | null;
19060
19329
  readonly created_by_full_name: string;
19061
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;
19062
19334
  readonly role_name: string;
19063
19335
  readonly role_description: string;
19064
19336
  readonly role_uuid: string;
19065
19337
  readonly scope_type: string | null;
19066
19338
  readonly scope_uuid: string;
19067
19339
  readonly scope_name: string;
19340
+ readonly scope_is_removed: boolean;
19068
19341
  readonly customer_uuid: string;
19069
19342
  readonly customer_name: string;
19070
19343
  readonly resource_uuid: string | null;
@@ -19101,13 +19374,13 @@ export type PermissionMetadataResponse = {
19101
19374
  * Map of permission keys to permission enum values from PermissionEnum
19102
19375
  */
19103
19376
  permissions: {
19104
- [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';
19105
19378
  };
19106
19379
  /**
19107
19380
  * Map of resource types to create permission enums
19108
19381
  */
19109
19382
  permission_map: {
19110
- [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';
19111
19384
  };
19112
19385
  /**
19113
19386
  * Grouped permission descriptions for UI
@@ -19223,13 +19496,13 @@ export type PlanComponent = {
19223
19496
  */
19224
19497
  future_price?: string | null;
19225
19498
  /**
19226
- * 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'.
19227
19500
  */
19228
- discount_threshold?: number | null;
19501
+ discount_formula?: string;
19229
19502
  /**
19230
- * 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.
19231
19504
  */
19232
- discount_rate?: number | null;
19505
+ discount_aggregation?: DiscountAggregationEnum;
19233
19506
  };
19234
19507
  export type PlanUsageResponse = {
19235
19508
  /**
@@ -19283,6 +19556,63 @@ export type PluginOfferingType = {
19283
19556
  export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
19284
19557
  export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
19285
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
+ };
19286
19616
  export type PresetEnum = 'cscs' | 'oecd_fos_2007';
19287
19617
  export type PreviewPeriod = {
19288
19618
  period: string;
@@ -19886,6 +20216,18 @@ export type ProjectPermissionReview = {
19886
20216
  readonly project_uuid: string;
19887
20217
  readonly project_name: string;
19888
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';
19889
20231
  export type ProjectQuotas = {
19890
20232
  readonly project_name: string;
19891
20233
  readonly customer_name: string;
@@ -20246,6 +20588,10 @@ export type Proposal = {
20246
20588
  * VAT code of the user's organization
20247
20589
  */
20248
20590
  readonly applicant_organization_vat_code: string;
20591
+ /**
20592
+ * Postal address of the user's organization
20593
+ */
20594
+ readonly applicant_organization_address: string | null;
20249
20595
  readonly applicant_job_title: string;
20250
20596
  /**
20251
20597
  * Person's affiliation within organization such as student, faculty, staff.
@@ -20776,6 +21122,7 @@ export type ProviderOffering = {
20776
21122
  thumbnail?: string | null;
20777
21123
  readonly offering_group_uuid: string | null;
20778
21124
  readonly offering_group_title: string | null;
21125
+ readonly service_provider_can_create_offering_user: boolean;
20779
21126
  };
20780
21127
  export type ProviderOfferingCosts = {
20781
21128
  /**
@@ -26800,6 +27147,7 @@ export type TimeSeriesToSData = {
26800
27147
  */
26801
27148
  readonly count: number;
26802
27149
  };
27150
+ export type TimingBucketEnum = 'pending' | 'overrun' | 'late_start' | 'early' | 'on_time';
26803
27151
  export type ToSConsentDashboard = {
26804
27152
  /**
26805
27153
  * Number of active users
@@ -26980,6 +27328,7 @@ export type TransactionStats = {
26980
27328
  */
26981
27329
  readonly deadlocks: number;
26982
27330
  };
27331
+ export type TransactionTypeEnum = 'staff_grant' | 'compensation' | 'affiliate_fee' | 'transfer_in' | 'transfer_out' | 'payout' | 'expiry' | 'rollback' | 'adjustment' | 'withdrawable_adjustment';
26983
27332
  export type TransitionModeEnum = 'automatic_on_completion' | 'manual';
26984
27333
  export type TriggerCoiDetectionJobTypeEnum = 'full_call' | 'incremental';
26985
27334
  export type TriggerCoiDetectionRequest = {
@@ -27240,7 +27589,19 @@ export type User = {
27240
27589
  * VAT code of the user's organization
27241
27590
  */
27242
27591
  organization_vat_code?: string;
27592
+ /**
27593
+ * Postal address of the user's organization
27594
+ */
27595
+ organization_address?: string;
27243
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;
27244
27605
  /**
27245
27606
  * Designates whether the user is allowed to manage remote user identities.
27246
27607
  */
@@ -27389,7 +27750,7 @@ export type UserAgreementRequest = {
27389
27750
  */
27390
27751
  language: string;
27391
27752
  };
27392
- 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';
27393
27754
  export type UserAuthMethodCount = {
27394
27755
  /**
27395
27756
  * Authentication method
@@ -27651,7 +28012,19 @@ export type UserMe = {
27651
28012
  * VAT code of the user's organization
27652
28013
  */
27653
28014
  organization_vat_code?: string;
28015
+ /**
28016
+ * Postal address of the user's organization
28017
+ */
28018
+ organization_address?: string;
27654
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;
27655
28028
  /**
27656
28029
  * Designates whether the user is allowed to manage remote user identities.
27657
28030
  */
@@ -27745,6 +28118,14 @@ export type UserOrganizationTypeCount = {
27745
28118
  */
27746
28119
  count: number;
27747
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
+ };
27748
28129
  export type UserRegistrationTrend = {
27749
28130
  month: string;
27750
28131
  count: number;
@@ -27829,6 +28210,10 @@ export type UserRequest = {
27829
28210
  * VAT code of the user's organization
27830
28211
  */
27831
28212
  organization_vat_code?: string;
28213
+ /**
28214
+ * Postal address of the user's organization
28215
+ */
28216
+ organization_address?: string;
27832
28217
  eduperson_assurance?: Array<string>;
27833
28218
  /**
27834
28219
  * Designates whether the user is allowed to manage remote user identities.
@@ -27888,6 +28273,9 @@ export type UserRoleDetails = {
27888
28273
  export type UserRoleExpirationTime = {
27889
28274
  expiration_time: string | null;
27890
28275
  };
28276
+ export type UserRolePermissionActionRequest = {
28277
+ reason?: string;
28278
+ };
27891
28279
  export type UserRoleUpdateRequest = {
27892
28280
  role: string;
27893
28281
  user: string;
@@ -27896,7 +28284,7 @@ export type UserRoleUpdateRequest = {
27896
28284
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
27897
28285
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
27898
28286
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg';
27899
- 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';
27900
28288
  export type VendorNameChoice = {
27901
28289
  value: string;
27902
28290
  label: string;
@@ -28404,6 +28792,10 @@ export type WebHookRequest = {
28404
28792
  content_type?: WebHookContentTypeEnum;
28405
28793
  };
28406
28794
  export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
28795
+ export type WithdrawableAdjustmentRequest = {
28796
+ amount: string;
28797
+ comment: string;
28798
+ };
28407
28799
  export type WorkflowCriterion = {
28408
28800
  readonly uuid: string;
28409
28801
  name: string;
@@ -29939,6 +30331,8 @@ export type ConstanceSettingsRequestForm = {
29939
30331
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
29940
30332
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
29941
30333
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30334
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30335
+ AFFILIATES_ENABLED?: boolean;
29942
30336
  MATRIX_ENABLED?: boolean;
29943
30337
  MATRIX_HOMESERVER_URL?: string;
29944
30338
  MATRIX_HOMESERVER_PUBLIC_URL?: string;
@@ -30241,6 +30635,8 @@ export type ConstanceSettingsRequestMultipart = {
30241
30635
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
30242
30636
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
30243
30637
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30638
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30639
+ AFFILIATES_ENABLED?: boolean;
30244
30640
  MATRIX_ENABLED?: boolean;
30245
30641
  MATRIX_HOMESERVER_URL?: string;
30246
30642
  MATRIX_HOMESERVER_PUBLIC_URL?: string;
@@ -30408,6 +30804,10 @@ export type UserRequestForm = {
30408
30804
  * VAT code of the user's organization
30409
30805
  */
30410
30806
  organization_vat_code?: string;
30807
+ /**
30808
+ * Postal address of the user's organization
30809
+ */
30810
+ organization_address?: string;
30411
30811
  eduperson_assurance?: Array<string>;
30412
30812
  /**
30413
30813
  * Designates whether the user is allowed to manage remote user identities.
@@ -30504,101 +30904,10 @@ export type UserRequestMultipart = {
30504
30904
  * VAT code of the user's organization
30505
30905
  */
30506
30906
  organization_vat_code?: string;
30507
- eduperson_assurance?: Array<string>;
30508
- /**
30509
- * Designates whether the user is allowed to manage remote user identities.
30510
- */
30511
- is_identity_manager?: boolean;
30512
- /**
30513
- * Designates whether the user is allowed to create and use personal access tokens.
30514
- */
30515
- can_use_personal_access_tokens?: boolean;
30516
- managed_isds?: Array<string>;
30517
- active_isds?: Array<string>;
30518
- /**
30519
- * Reason why the user was deactivated. Visible to staff and support.
30520
- */
30521
- deactivation_reason?: string;
30522
- };
30523
- export type PatchedUserRequestForm = {
30524
- /**
30525
- * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
30526
- */
30527
- username?: string;
30528
- /**
30529
- * URL-friendly identifier. Only editable by staff users.
30530
- */
30531
- slug?: string;
30532
- native_name?: string;
30533
- job_title?: string;
30534
- phone_number?: string;
30535
- organization?: string;
30536
- description?: string;
30537
30907
  /**
30538
- * Staff status
30539
- *
30540
- * Designates whether the user can log into this admin site.
30908
+ * Postal address of the user's organization
30541
30909
  */
30542
- is_staff?: boolean;
30543
- /**
30544
- * Active
30545
- *
30546
- * Designates whether this user should be treated as active. Unselect this instead of deleting accounts.
30547
- */
30548
- is_active?: boolean;
30549
- /**
30550
- * Support status
30551
- *
30552
- * Designates whether the user is a global support user.
30553
- */
30554
- is_support?: boolean;
30555
- /**
30556
- * Token lifetime in seconds.
30557
- */
30558
- token_lifetime?: number | null;
30559
- /**
30560
- * User must agree with the policy to register.
30561
- */
30562
- agree_with_policy?: boolean;
30563
- /**
30564
- * Designates whether the user is allowed to receive email notifications.
30565
- */
30566
- notifications_enabled?: boolean;
30567
- preferred_language?: string;
30568
- affiliations?: Array<string>;
30569
- first_name?: string;
30570
- last_name?: string;
30571
- birth_date?: string | null;
30572
- image?: Blob | File | null;
30573
- /**
30574
- * User's gender (male, female, or unknown)
30575
- */
30576
- gender?: GenderEnum | BlankEnum | NullEnum | null;
30577
- /**
30578
- * Honorific title (Mr, Ms, Dr, Prof, etc.)
30579
- */
30580
- personal_title?: string;
30581
- place_of_birth?: string;
30582
- address?: string;
30583
- country_of_residence?: string;
30584
- /**
30585
- * Primary citizenship (ISO 3166-1 alpha-2 code)
30586
- */
30587
- nationality?: string;
30588
- nationalities?: Array<string>;
30589
- organization_country?: string;
30590
- /**
30591
- * SCHAC URN (e.g., urn:schac:homeOrganizationType:int:university)
30592
- */
30593
- organization_type?: string;
30594
- /**
30595
- * Company registration code of the user's organization, if known
30596
- */
30597
- organization_registry_code?: string;
30598
- /**
30599
- * VAT code of the user's organization
30600
- */
30601
- organization_vat_code?: string;
30910
+ organization_address?: string;
30602
30911
  eduperson_assurance?: Array<string>;
30603
30912
  /**
30604
30913
  * Designates whether the user is allowed to manage remote user identities.
@@ -30615,7 +30924,7 @@ export type PatchedUserRequestForm = {
30615
30924
  */
30616
30925
  deactivation_reason?: string;
30617
30926
  };
30618
- export type PatchedUserRequestMultipart = {
30927
+ export type PatchedUserRequestForm = {
30619
30928
  /**
30620
30929
  * Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
30621
30930
  */
@@ -30694,6 +31003,109 @@ export type PatchedUserRequestMultipart = {
30694
31003
  * VAT code of the user's organization
30695
31004
  */
30696
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;
30697
31109
  eduperson_assurance?: Array<string>;
30698
31110
  /**
30699
31111
  * Designates whether the user is allowed to manage remote user identities.
@@ -30741,10 +31153,11 @@ export type ThreadSessionScopeEnum = 'own';
30741
31153
  export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
30742
31154
  export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
30743
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';
30744
31157
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
30745
31158
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
30746
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';
30747
- 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';
30748
31161
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
30749
31162
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
30750
31163
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -30760,7 +31173,7 @@ export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month'
30760
31173
  export type InvoiceItemOEnum = 'project_name' | '-project_name' | 'resource_name' | '-resource_name' | 'provider_name' | '-provider_name' | 'name' | '-name';
30761
31174
  export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'fingerprint_sha512' | 'is_shared' | 'name' | 'public_key' | 'type' | 'url' | 'user_uuid' | 'uuid';
30762
31175
  export type SshKeyOEnum = '-name' | 'name';
30763
- 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';
30764
31177
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
30765
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';
30766
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';
@@ -30780,17 +31193,18 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
30780
31193
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
30781
31194
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
30782
31195
  export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
30783
- 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';
30784
31197
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
30785
- 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';
30786
31199
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
30787
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';
30788
31202
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
30789
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';
30790
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';
30791
31205
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
30792
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';
30793
- 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';
30794
31208
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
30795
31209
  export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
30796
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';
@@ -30798,9 +31212,9 @@ export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer
30798
31212
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
30799
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';
30800
31214
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
30801
- 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';
30802
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';
30803
- 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' | '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';
30804
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';
30805
31219
  export type AgentServiceStateEnum = 1 | 2 | 3;
30806
31220
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
@@ -30877,7 +31291,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
30877
31291
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
30878
31292
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
30879
31293
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
30880
- 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';
30881
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';
30882
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';
30883
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';
@@ -39019,6 +39433,243 @@ export type ConflictsOfInterestWaiveResponses = {
39019
39433
  200: ConflictOfInterest;
39020
39434
  };
39021
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];
39022
39673
  export type CustomerCreditsListData = {
39023
39674
  body?: never;
39024
39675
  path?: never;
@@ -39140,6 +39791,18 @@ export type CustomerCreditsUpdateResponses = {
39140
39791
  200: CreateCustomerCredit;
39141
39792
  };
39142
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];
39143
39806
  export type CustomerCreditsApplyCompensationsData = {
39144
39807
  body?: never;
39145
39808
  path: {
@@ -39374,6 +40037,10 @@ export type CustomersListData = {
39374
40037
  * Return a list of customers where current user has project create permission.
39375
40038
  */
39376
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>;
39377
40044
  field?: Array<CustomerFieldEnum>;
39378
40045
  /**
39379
40046
  * Filter by customers with resources.
@@ -39470,6 +40137,10 @@ export type CustomersCountData = {
39470
40137
  * Return a list of customers where current user has project create permission.
39471
40138
  */
39472
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>;
39473
40144
  /**
39474
40145
  * Filter by customers with resources.
39475
40146
  */
@@ -39865,6 +40536,10 @@ export type CustomersHistoryListData = {
39865
40536
  * Return a list of customers where current user has project create permission.
39866
40537
  */
39867
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>;
39868
40543
  /**
39869
40544
  * Filter by customers with resources.
39870
40545
  */
@@ -40166,6 +40841,10 @@ export type CustomersCountriesListData = {
40166
40841
  * Return a list of customers where current user has project create permission.
40167
40842
  */
40168
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>;
40169
40848
  /**
40170
40849
  * Filter by customers with resources.
40171
40850
  */
@@ -40261,6 +40940,10 @@ export type CustomersCountriesCountData = {
40261
40940
  * Return a list of customers where current user has project create permission.
40262
40941
  */
40263
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>;
40264
40947
  /**
40265
40948
  * Filter by customers with resources.
40266
40949
  */
@@ -41873,6 +42556,10 @@ export type FinancialReportsListData = {
41873
42556
  * Return a list of customers where current user has project create permission.
41874
42557
  */
41875
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>;
41876
42563
  /**
41877
42564
  * Filter by customer UUID.
41878
42565
  */
@@ -41960,6 +42647,10 @@ export type FinancialReportsCountData = {
41960
42647
  * Return a list of customers where current user has project create permission.
41961
42648
  */
41962
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>;
41963
42654
  /**
41964
42655
  * Filter by customer UUID.
41965
42656
  */
@@ -44308,6 +44999,10 @@ export type MaintenanceAnnouncementsListData = {
44308
44999
  *
44309
45000
  */
44310
45001
  state?: Array<MaintenanceAnnouncementStateEnum>;
45002
+ /**
45003
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
45004
+ */
45005
+ timing_bucket?: string;
44311
45006
  };
44312
45007
  url: '/api/maintenance-announcements/';
44313
45008
  };
@@ -44363,6 +45058,10 @@ export type MaintenanceAnnouncementsCountData = {
44363
45058
  *
44364
45059
  */
44365
45060
  state?: Array<MaintenanceAnnouncementStateEnum>;
45061
+ /**
45062
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
45063
+ */
45064
+ timing_bucket?: string;
44366
45065
  };
44367
45066
  url: '/api/maintenance-announcements/';
44368
45067
  };
@@ -47507,6 +48206,7 @@ export type MarketplaceOfferingPermissionsListData = {
47507
48206
  * User full name contains
47508
48207
  */
47509
48208
  full_name?: string;
48209
+ is_active?: boolean;
47510
48210
  /**
47511
48211
  * Modified after
47512
48212
  */
@@ -47582,6 +48282,7 @@ export type MarketplaceOfferingPermissionsCountData = {
47582
48282
  * User full name contains
47583
48283
  */
47584
48284
  full_name?: string;
48285
+ is_active?: boolean;
47585
48286
  /**
47586
48287
  * Modified after
47587
48288
  */
@@ -47659,6 +48360,7 @@ export type MarketplaceOfferingPermissionsLogListData = {
47659
48360
  * User full name contains
47660
48361
  */
47661
48362
  full_name?: string;
48363
+ is_active?: boolean;
47662
48364
  /**
47663
48365
  * Modified after
47664
48366
  */
@@ -47734,6 +48436,7 @@ export type MarketplaceOfferingPermissionsLogCountData = {
47734
48436
  * User full name contains
47735
48437
  */
47736
48438
  full_name?: string;
48439
+ is_active?: boolean;
47737
48440
  /**
47738
48441
  * Modified after
47739
48442
  */
@@ -48591,7 +49294,7 @@ export type MarketplaceOfferingUsersListData = {
48591
49294
  */
48592
49295
  provider_uuid?: string;
48593
49296
  /**
48594
- * Search by offering name, username or user name
49297
+ * Search by offering name, username, user name, UID or primary GID
48595
49298
  */
48596
49299
  query?: string;
48597
49300
  /**
@@ -48686,7 +49389,7 @@ export type MarketplaceOfferingUsersCountData = {
48686
49389
  */
48687
49390
  provider_uuid?: string;
48688
49391
  /**
48689
- * Search by offering name, username or user name
49392
+ * Search by offering name, username, user name, UID or primary GID
48690
49393
  */
48691
49394
  query?: string;
48692
49395
  /**
@@ -48888,6 +49591,200 @@ export type MarketplaceOfferingUsersCompletionStatusRetrieveResponses = {
48888
49591
  200: ChecklistCompletion;
48889
49592
  };
48890
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];
48891
49788
  export type MarketplaceOfferingUsersRequestDeletionData = {
48892
49789
  body?: never;
48893
49790
  path: {
@@ -49000,6 +49897,18 @@ export type MarketplaceOfferingUsersSetPendingAdditionalValidationResponses = {
49000
49897
  */
49001
49898
  200: unknown;
49002
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];
49003
49912
  export type MarketplaceOfferingUsersSetValidationCompleteData = {
49004
49913
  body?: never;
49005
49914
  path: {
@@ -49118,6 +50027,192 @@ export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
49118
50027
  */
49119
50028
  200: unknown;
49120
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
+ };
49121
50216
  export type MarketplaceOfferingUsersProfileFieldWarningsRetrieveData = {
49122
50217
  body?: never;
49123
50218
  path?: never;
@@ -49142,6 +50237,46 @@ export type MarketplaceOfferingUsersProfileFieldWarningsCountResponses = {
49142
50237
  */
49143
50238
  200: unknown;
49144
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
+ };
49145
50280
  export type MarketplaceOrdersListData = {
49146
50281
  body?: never;
49147
50282
  path?: never;
@@ -50124,6 +51259,216 @@ export type MarketplacePluginsListResponses = {
50124
51259
  200: Array<PluginOfferingType>;
50125
51260
  };
50126
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];
50127
51472
  export type MarketplaceProjectEstimatedCostPoliciesListData = {
50128
51473
  body?: never;
50129
51474
  path?: never;
@@ -50380,6 +51725,32 @@ export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
50380
51725
  200: ProjectOrderAutoApproval;
50381
51726
  };
50382
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
+ };
50383
51754
  export type MarketplaceProjectServiceAccountsListData = {
50384
51755
  body?: never;
50385
51756
  path?: never;
@@ -51861,6 +53232,20 @@ export type MarketplaceProviderOfferingsDraftResponses = {
51861
53232
  200: DetailState;
51862
53233
  };
51863
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];
51864
53249
  export type MarketplaceProviderOfferingsExportOfferingData = {
51865
53250
  body?: OfferingExportParametersRequest;
51866
53251
  path: {
@@ -58448,6 +59833,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
58448
59833
  * Created before
58449
59834
  */
58450
59835
  created_before?: string;
59836
+ /**
59837
+ * Multiple values may be separated by commas.
59838
+ */
59839
+ current_user_has_role?: Array<string>;
58451
59840
  /**
58452
59841
  * Multiple values may be separated by commas.
58453
59842
  */
@@ -58559,6 +59948,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
58559
59948
  * Return a list of customers where current user has project create permission.
58560
59949
  */
58561
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>;
58562
59955
  field?: Array<MarketplaceProviderCustomerFieldEnum>;
58563
59956
  /**
58564
59957
  * Name
@@ -59053,6 +60446,7 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
59053
60446
  * User full name contains
59054
60447
  */
59055
60448
  full_name?: string;
60449
+ is_active?: boolean;
59056
60450
  /**
59057
60451
  * Modified after
59058
60452
  */
@@ -59188,6 +60582,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
59188
60582
  * Created before
59189
60583
  */
59190
60584
  created_before?: string;
60585
+ /**
60586
+ * Multiple values may be separated by commas.
60587
+ */
60588
+ current_user_has_role?: Array<string>;
59191
60589
  /**
59192
60590
  * Multiple values may be separated by commas.
59193
60591
  */
@@ -59295,6 +60693,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
59295
60693
  * Return a list of customers where current user has project create permission.
59296
60694
  */
59297
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>;
59298
60700
  field?: Array<MarketplaceProviderCustomerFieldEnum>;
59299
60701
  /**
59300
60702
  * Name
@@ -66751,6 +68153,10 @@ export type OpenportalUnmanagedProjectsListData = {
66751
68153
  * Created before
66752
68154
  */
66753
68155
  created_before?: string;
68156
+ /**
68157
+ * Multiple values may be separated by commas.
68158
+ */
68159
+ current_user_has_role?: Array<string>;
66754
68160
  /**
66755
68161
  * Multiple values may be separated by commas.
66756
68162
  */
@@ -66882,6 +68288,10 @@ export type OpenportalUnmanagedProjectsCountData = {
66882
68288
  * Created before
66883
68289
  */
66884
68290
  created_before?: string;
68291
+ /**
68292
+ * Multiple values may be separated by commas.
68293
+ */
68294
+ current_user_has_role?: Array<string>;
66885
68295
  /**
66886
68296
  * Multiple values may be separated by commas.
66887
68297
  */
@@ -75813,6 +77223,10 @@ export type ProjectsListData = {
75813
77223
  * Created before
75814
77224
  */
75815
77225
  created_before?: string;
77226
+ /**
77227
+ * Multiple values may be separated by commas.
77228
+ */
77229
+ current_user_has_role?: Array<string>;
75816
77230
  /**
75817
77231
  * Multiple values may be separated by commas.
75818
77232
  */
@@ -75944,6 +77358,10 @@ export type ProjectsCountData = {
75944
77358
  * Created before
75945
77359
  */
75946
77360
  created_before?: string;
77361
+ /**
77362
+ * Multiple values may be separated by commas.
77363
+ */
77364
+ current_user_has_role?: Array<string>;
75947
77365
  /**
75948
77366
  * Multiple values may be separated by commas.
75949
77367
  */
@@ -79146,6 +80564,10 @@ export type PublicMaintenanceAnnouncementsListData = {
79146
80564
  *
79147
80565
  */
79148
80566
  state?: Array<MaintenanceAnnouncementStateEnum>;
80567
+ /**
80568
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80569
+ */
80570
+ timing_bucket?: string;
79149
80571
  };
79150
80572
  url: '/api/public-maintenance-announcements/';
79151
80573
  };
@@ -79201,6 +80623,10 @@ export type PublicMaintenanceAnnouncementsCountData = {
79201
80623
  *
79202
80624
  */
79203
80625
  state?: Array<MaintenanceAnnouncementStateEnum>;
80626
+ /**
80627
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80628
+ */
80629
+ timing_bucket?: string;
79204
80630
  };
79205
80631
  url: '/api/public-maintenance-announcements/';
79206
80632
  };
@@ -87096,6 +88522,7 @@ export type UserPermissionsListData = {
87096
88522
  * User full name contains
87097
88523
  */
87098
88524
  full_name?: string;
88525
+ is_active?: boolean;
87099
88526
  /**
87100
88527
  * Modified after
87101
88528
  */
@@ -87139,6 +88566,10 @@ export type UserPermissionsListData = {
87139
88566
  * Scope UUID
87140
88567
  */
87141
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;
87142
88573
  user?: string;
87143
88574
  /**
87144
88575
  * User slug contains
@@ -87170,6 +88601,7 @@ export type UserPermissionsCountData = {
87170
88601
  * User full name contains
87171
88602
  */
87172
88603
  full_name?: string;
88604
+ is_active?: boolean;
87173
88605
  /**
87174
88606
  * Modified after
87175
88607
  */
@@ -87213,6 +88645,10 @@ export type UserPermissionsCountData = {
87213
88645
  * Scope UUID
87214
88646
  */
87215
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;
87216
88652
  user?: string;
87217
88653
  /**
87218
88654
  * User slug contains
@@ -87241,6 +88677,34 @@ export type UserPermissionsRetrieveResponses = {
87241
88677
  200: Permission;
87242
88678
  };
87243
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
+ };
87244
88708
  export type UsersListData = {
87245
88709
  body?: never;
87246
88710
  path?: never;