waldur-js-client 8.0.10-dev.8 → 8.0.10-dev.9

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.
@@ -3131,6 +3131,8 @@ export type CallApplicantVisibilityConfig = {
3131
3131
  expose_civil_number?: boolean;
3132
3132
  expose_birth_date?: boolean;
3133
3133
  expose_active_isds?: boolean;
3134
+ expose_uid_number?: boolean;
3135
+ expose_primary_gid?: boolean;
3134
3136
  readonly exposed_fields: Array<string>;
3135
3137
  /**
3136
3138
  * Return True if this is a default (unsaved) config.
@@ -3163,6 +3165,8 @@ export type CallApplicantVisibilityConfigRequest = {
3163
3165
  expose_civil_number?: boolean;
3164
3166
  expose_birth_date?: boolean;
3165
3167
  expose_active_isds?: boolean;
3168
+ expose_uid_number?: boolean;
3169
+ expose_primary_gid?: boolean;
3166
3170
  };
3167
3171
  export type CallAssignmentConfiguration = {
3168
3172
  readonly uuid: string;
@@ -5217,6 +5221,7 @@ export type ConstanceSettings = {
5217
5221
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5218
5222
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5219
5223
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5224
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
5220
5225
  AFFILIATES_ENABLED?: boolean;
5221
5226
  MATRIX_ENABLED?: boolean;
5222
5227
  MATRIX_HOMESERVER_URL?: string;
@@ -5520,6 +5525,7 @@ export type ConstanceSettingsRequest = {
5520
5525
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5521
5526
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5522
5527
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5528
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
5523
5529
  AFFILIATES_ENABLED?: boolean;
5524
5530
  MATRIX_ENABLED?: boolean;
5525
5531
  MATRIX_HOMESERVER_URL?: string;
@@ -9907,6 +9913,9 @@ export type MaintenanceAnnouncement = {
9907
9913
  * When the maintenance actually completed
9908
9914
  */
9909
9915
  readonly actual_end: string | null;
9916
+ readonly overrun_minutes: number | null;
9917
+ readonly start_delta_minutes: number | null;
9918
+ timing_bucket: TimingBucketEnum;
9910
9919
  /**
9911
9920
  * Service provider announcing the maintenance
9912
9921
  */
@@ -10130,6 +10139,18 @@ export type MaintenanceStatsSummary = {
10130
10139
  * Percentage of maintenances completed on time
10131
10140
  */
10132
10141
  on_time_completion_rate: number | null;
10142
+ /**
10143
+ * Fraction (0-1) of completed maintenances that finished within 15 minutes of their scheduled end
10144
+ */
10145
+ on_time_rate_15min: number | null;
10146
+ /**
10147
+ * Mean overrun in hours across completed maintenances that ran past their scheduled end
10148
+ */
10149
+ avg_overrun_hours: number | null;
10150
+ /**
10151
+ * Number of emergency-type maintenances in the window
10152
+ */
10153
+ emergency_count: number;
10133
10154
  };
10134
10155
  export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
10135
10156
  export type ManagedProject = {
@@ -10745,21 +10766,9 @@ export type MergedPluginOptions = {
10745
10766
  */
10746
10767
  project_permanent_directory?: string;
10747
10768
  /**
10748
- * GLAuth initial primary group number
10749
- */
10750
- initial_primarygroup_number?: number;
10751
- /**
10752
- * GLAuth initial uidnumber
10753
- */
10754
- initial_uidnumber?: number;
10755
- /**
10756
- * GLAuth initial usergroup number
10757
- */
10758
- initial_usergroup_number?: number;
10759
- /**
10760
- * 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.
10769
+ * 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.
10761
10770
  */
10762
- initial_rolegroup_number?: number;
10771
+ enable_posix_account?: boolean;
10763
10772
  /**
10764
10773
  * 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"}.
10765
10774
  */
@@ -10788,6 +10797,26 @@ export type MergedPluginOptions = {
10788
10797
  * GLAuth username generation policy
10789
10798
  */
10790
10799
  username_generation_policy?: UsernameGenerationPolicyEnum;
10800
+ /**
10801
+ * Default login shell assigned to GLAuth/LDAP accounts.
10802
+ */
10803
+ login_shell?: string;
10804
+ /**
10805
+ * 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.
10806
+ */
10807
+ uid_source?: PosixIdSourceEnum;
10808
+ /**
10809
+ * Where each offering user's primary GID comes from: the POSIX ID pool (default), or the user's primary_gid attribute.
10810
+ */
10811
+ gid_source?: PosixIdSourceEnum;
10812
+ /**
10813
+ * Emit the user's full name as a GLAuth displayName custom attribute (rendered to LDAP displayName).
10814
+ */
10815
+ emit_display_name?: boolean;
10816
+ /**
10817
+ * Emit the Waldur username as a GLAuth waldurUsername custom attribute, alongside the generated POSIX login name.
10818
+ */
10819
+ emit_waldur_username?: boolean;
10791
10820
  /**
10792
10821
  * Enable issues for membership changes
10793
10822
  */
@@ -11099,21 +11128,9 @@ export type MergedPluginOptionsRequest = {
11099
11128
  */
11100
11129
  project_permanent_directory?: string;
11101
11130
  /**
11102
- * GLAuth initial primary group number
11103
- */
11104
- initial_primarygroup_number?: number;
11105
- /**
11106
- * GLAuth initial uidnumber
11107
- */
11108
- initial_uidnumber?: number;
11109
- /**
11110
- * GLAuth initial usergroup number
11111
- */
11112
- initial_usergroup_number?: number;
11113
- /**
11114
- * 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.
11131
+ * 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.
11115
11132
  */
11116
- initial_rolegroup_number?: number;
11133
+ enable_posix_account?: boolean;
11117
11134
  /**
11118
11135
  * 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"}.
11119
11136
  */
@@ -11142,6 +11159,26 @@ export type MergedPluginOptionsRequest = {
11142
11159
  * GLAuth username generation policy
11143
11160
  */
11144
11161
  username_generation_policy?: UsernameGenerationPolicyEnum;
11162
+ /**
11163
+ * Default login shell assigned to GLAuth/LDAP accounts.
11164
+ */
11165
+ login_shell?: string;
11166
+ /**
11167
+ * 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.
11168
+ */
11169
+ uid_source?: PosixIdSourceEnum;
11170
+ /**
11171
+ * Where each offering user's primary GID comes from: the POSIX ID pool (default), or the user's primary_gid attribute.
11172
+ */
11173
+ gid_source?: PosixIdSourceEnum;
11174
+ /**
11175
+ * Emit the user's full name as a GLAuth displayName custom attribute (rendered to LDAP displayName).
11176
+ */
11177
+ emit_display_name?: boolean;
11178
+ /**
11179
+ * Emit the Waldur username as a GLAuth waldurUsername custom attribute, alongside the generated POSIX login name.
11180
+ */
11181
+ emit_waldur_username?: boolean;
11145
11182
  /**
11146
11183
  * Enable issues for membership changes
11147
11184
  */
@@ -13911,6 +13948,14 @@ export type OfferingUser = {
13911
13948
  * Indicates what identity provider was used.
13912
13949
  */
13913
13950
  readonly user_identity_source: string;
13951
+ /**
13952
+ * POSIX UID from the identity provider; used when an offering's uid_source is 'user_attribute'.
13953
+ */
13954
+ readonly user_uid_number: number | null;
13955
+ /**
13956
+ * POSIX primary GID from the identity provider; used when an offering's gid_source is 'user_attribute'.
13957
+ */
13958
+ readonly user_primary_gid: number | null;
13914
13959
  /**
13915
13960
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
13916
13961
  */
@@ -13954,6 +13999,10 @@ export type OfferingUser = {
13954
13999
  } | null;
13955
14000
  readonly is_profile_complete: boolean;
13956
14001
  readonly missing_profile_attributes: Array<string>;
14002
+ readonly uidnumber: number | null;
14003
+ readonly primarygroup: number | null;
14004
+ readonly login_shell: string | null;
14005
+ readonly home_directory: string | null;
13957
14006
  };
13958
14007
  export type OfferingUserAttributeConfig = {
13959
14008
  readonly uuid: string;
@@ -13984,6 +14033,8 @@ export type OfferingUserAttributeConfig = {
13984
14033
  expose_civil_number?: boolean;
13985
14034
  expose_birth_date?: boolean;
13986
14035
  expose_active_isds?: boolean;
14036
+ expose_uid_number?: boolean;
14037
+ expose_primary_gid?: boolean;
13987
14038
  readonly exposed_fields: Array<string>;
13988
14039
  /**
13989
14040
  * Return True if this is a default (unsaved) config.
@@ -14018,8 +14069,50 @@ export type OfferingUserAttributeConfigRequest = {
14018
14069
  expose_civil_number?: boolean;
14019
14070
  expose_birth_date?: boolean;
14020
14071
  expose_active_isds?: boolean;
14072
+ expose_uid_number?: boolean;
14073
+ expose_primary_gid?: boolean;
14021
14074
  offering?: string;
14022
14075
  };
14076
+ export type OfferingUserPosixAllocation = {
14077
+ namespace: string;
14078
+ value: number;
14079
+ pool_uuid: string | null;
14080
+ scope: string | null;
14081
+ scope_name: string | null;
14082
+ };
14083
+ export type OfferingUserPosixAttributesRequest = {
14084
+ /**
14085
+ * Login shell for this account (LDAP loginShell).
14086
+ */
14087
+ login_shell?: string;
14088
+ /**
14089
+ * Home directory for this account (LDAP homeDirectory).
14090
+ */
14091
+ home_directory?: string;
14092
+ /**
14093
+ * Override the account's UID. The value must fall within the offering's POSIX ID pool and is rejected if already allocated.
14094
+ */
14095
+ uidnumber?: number | null;
14096
+ /**
14097
+ * Override the account's primary GID (see uidnumber).
14098
+ */
14099
+ primarygroup?: number | null;
14100
+ };
14101
+ export type OfferingUserPosixGroup = {
14102
+ gid: number;
14103
+ offering_name: string;
14104
+ project_name: string | null;
14105
+ project_uuid: string | null;
14106
+ customer_name: string | null;
14107
+ customer_uuid: string | null;
14108
+ project_accessible: boolean;
14109
+ pool_uuid: string | null;
14110
+ };
14111
+ export type OfferingUserPosixUpdateResponse = {
14112
+ uidnumber?: number | null;
14113
+ primarygroup?: number | null;
14114
+ warnings?: Array<string>;
14115
+ };
14023
14116
  export type OfferingUserRequest = {
14024
14117
  user?: string;
14025
14118
  offering?: string;
@@ -17934,6 +18027,8 @@ export type PatchedOfferingUserAttributeConfigRequest = {
17934
18027
  expose_civil_number?: boolean;
17935
18028
  expose_birth_date?: boolean;
17936
18029
  expose_active_isds?: boolean;
18030
+ expose_uid_number?: boolean;
18031
+ expose_primary_gid?: boolean;
17937
18032
  offering?: string;
17938
18033
  };
17939
18034
  export type PatchedOfferingUserRequest = {
@@ -18097,6 +18192,13 @@ export type PatchedPaymentRequest = {
18097
18192
  sum?: string;
18098
18193
  proof?: Blob | File | null;
18099
18194
  };
18195
+ export type PatchedPosixIdPoolRequest = {
18196
+ description?: string;
18197
+ min_uid?: number | null;
18198
+ max_uid?: number | null;
18199
+ min_gid?: number | null;
18200
+ max_gid?: number | null;
18201
+ };
18100
18202
  export type PatchedProjectCreditRequest = {
18101
18203
  value?: string;
18102
18204
  project?: string;
@@ -19252,13 +19354,13 @@ export type PermissionMetadataResponse = {
19252
19354
  * Map of permission keys to permission enum values from PermissionEnum
19253
19355
  */
19254
19356
  permissions: {
19255
- [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';
19357
+ [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';
19256
19358
  };
19257
19359
  /**
19258
19360
  * Map of resource types to create permission enums
19259
19361
  */
19260
19362
  permission_map: {
19261
- [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';
19363
+ [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';
19262
19364
  };
19263
19365
  /**
19264
19366
  * Grouped permission descriptions for UI
@@ -19434,6 +19536,63 @@ export type PluginOfferingType = {
19434
19536
  export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
19435
19537
  export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
19436
19538
  export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
19539
+ export type PosixIdPool = {
19540
+ readonly url: string;
19541
+ readonly uuid: string;
19542
+ readonly created: string;
19543
+ description?: string;
19544
+ service_provider?: string | null;
19545
+ offering?: string | null;
19546
+ min_uid?: number | null;
19547
+ max_uid?: number | null;
19548
+ readonly next_uid: number | null;
19549
+ min_gid?: number | null;
19550
+ max_gid?: number | null;
19551
+ readonly next_gid: number | null;
19552
+ readonly customer_uuid: string;
19553
+ readonly customer_name: string;
19554
+ readonly scope: string;
19555
+ readonly uid_used: number;
19556
+ readonly gid_used: number;
19557
+ readonly uid_utilization: number | null;
19558
+ readonly gid_utilization: number | null;
19559
+ };
19560
+ export type PosixIdPoolNamespaceStats = {
19561
+ min: number;
19562
+ max: number;
19563
+ next: number;
19564
+ capacity: number;
19565
+ used: number;
19566
+ utilization: number;
19567
+ };
19568
+ export type PosixIdPoolRequest = {
19569
+ description?: string;
19570
+ service_provider?: string | null;
19571
+ offering?: string | null;
19572
+ min_uid?: number | null;
19573
+ max_uid?: number | null;
19574
+ min_gid?: number | null;
19575
+ max_gid?: number | null;
19576
+ };
19577
+ export type PosixIdPoolStats = {
19578
+ uid: PosixIdPoolNamespaceStats | null;
19579
+ gid: PosixIdPoolNamespaceStats | null;
19580
+ utilization_threshold: number;
19581
+ };
19582
+ export type PosixIdSourceEnum = 'pool' | 'user_attribute';
19583
+ export type PosixIdentity = {
19584
+ readonly url: string;
19585
+ readonly uuid: string;
19586
+ readonly created: string;
19587
+ uid?: number | null;
19588
+ gid?: number | null;
19589
+ released_at?: string | null;
19590
+ readonly pool_uuid: string;
19591
+ readonly offering_uuid: string;
19592
+ readonly offering_name: string;
19593
+ readonly consumer_type: string | null;
19594
+ readonly consumer_name: string | null;
19595
+ };
19437
19596
  export type PresetEnum = 'cscs' | 'oecd_fos_2007';
19438
19597
  export type PreviewPeriod = {
19439
19598
  period: string;
@@ -20037,6 +20196,18 @@ export type ProjectPermissionReview = {
20037
20196
  readonly project_uuid: string;
20038
20197
  readonly project_name: string;
20039
20198
  };
20199
+ export type ProjectPosixGroup = {
20200
+ kind: ProjectPosixGroupKindEnum;
20201
+ gid: number;
20202
+ offering_uuid: string;
20203
+ offering_name: string;
20204
+ provider_name: string;
20205
+ role: string | null;
20206
+ scope_type: string | null;
20207
+ scope_name: string | null;
20208
+ scope_uuid: string | null;
20209
+ };
20210
+ export type ProjectPosixGroupKindEnum = 'project_group' | 'role_group';
20040
20211
  export type ProjectQuotas = {
20041
20212
  readonly project_name: string;
20042
20213
  readonly customer_name: string;
@@ -20931,6 +21102,7 @@ export type ProviderOffering = {
20931
21102
  thumbnail?: string | null;
20932
21103
  readonly offering_group_uuid: string | null;
20933
21104
  readonly offering_group_title: string | null;
21105
+ readonly service_provider_can_create_offering_user: boolean;
20934
21106
  };
20935
21107
  export type ProviderOfferingCosts = {
20936
21108
  /**
@@ -26955,6 +27127,7 @@ export type TimeSeriesToSData = {
26955
27127
  */
26956
27128
  readonly count: number;
26957
27129
  };
27130
+ export type TimingBucketEnum = 'pending' | 'overrun' | 'late_start' | 'early' | 'on_time';
26958
27131
  export type ToSConsentDashboard = {
26959
27132
  /**
26960
27133
  * Number of active users
@@ -27401,6 +27574,14 @@ export type User = {
27401
27574
  */
27402
27575
  organization_address?: string;
27403
27576
  eduperson_assurance?: Array<string>;
27577
+ /**
27578
+ * POSIX UID from the identity provider; used when an offering's uid_source is 'user_attribute'.
27579
+ */
27580
+ readonly uid_number: number | null;
27581
+ /**
27582
+ * POSIX primary GID from the identity provider; used when an offering's gid_source is 'user_attribute'.
27583
+ */
27584
+ readonly primary_gid: number | null;
27404
27585
  /**
27405
27586
  * Designates whether the user is allowed to manage remote user identities.
27406
27587
  */
@@ -27816,6 +27997,14 @@ export type UserMe = {
27816
27997
  */
27817
27998
  organization_address?: string;
27818
27999
  eduperson_assurance?: Array<string>;
28000
+ /**
28001
+ * POSIX UID from the identity provider; used when an offering's uid_source is 'user_attribute'.
28002
+ */
28003
+ readonly uid_number: number | null;
28004
+ /**
28005
+ * POSIX primary GID from the identity provider; used when an offering's gid_source is 'user_attribute'.
28006
+ */
28007
+ readonly primary_gid: number | null;
27819
28008
  /**
27820
28009
  * Designates whether the user is allowed to manage remote user identities.
27821
28010
  */
@@ -27909,6 +28098,14 @@ export type UserOrganizationTypeCount = {
27909
28098
  */
27910
28099
  count: number;
27911
28100
  };
28101
+ export type UserPosixIdentity = {
28102
+ offering_name: string;
28103
+ offering_uuid: string;
28104
+ namespace: string;
28105
+ value: number;
28106
+ context: string | null;
28107
+ pool_uuid: string | null;
28108
+ };
27912
28109
  export type UserRegistrationTrend = {
27913
28110
  month: string;
27914
28111
  count: number;
@@ -28067,7 +28264,7 @@ export type UserRoleUpdateRequest = {
28067
28264
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
28068
28265
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
28069
28266
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg';
28070
- 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';
28267
+ 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';
28071
28268
  export type VendorNameChoice = {
28072
28269
  value: string;
28073
28270
  label: string;
@@ -30114,6 +30311,7 @@ export type ConstanceSettingsRequestForm = {
30114
30311
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
30115
30312
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
30116
30313
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30314
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30117
30315
  AFFILIATES_ENABLED?: boolean;
30118
30316
  MATRIX_ENABLED?: boolean;
30119
30317
  MATRIX_HOMESERVER_URL?: string;
@@ -30417,6 +30615,7 @@ export type ConstanceSettingsRequestMultipart = {
30417
30615
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
30418
30616
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
30419
30617
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30618
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30420
30619
  AFFILIATES_ENABLED?: boolean;
30421
30620
  MATRIX_ENABLED?: boolean;
30422
30621
  MATRIX_HOMESERVER_URL?: string;
@@ -30954,7 +31153,7 @@ export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month'
30954
31153
  export type InvoiceItemOEnum = 'project_name' | '-project_name' | 'resource_name' | '-resource_name' | 'provider_name' | '-provider_name' | 'name' | '-name';
30955
31154
  export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'fingerprint_sha512' | 'is_shared' | 'name' | 'public_key' | 'type' | 'url' | 'user_uuid' | 'uuid';
30956
31155
  export type SshKeyOEnum = '-name' | 'name';
30957
- export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
31156
+ 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';
30958
31157
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
30959
31158
  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';
30960
31159
  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';
@@ -30974,17 +31173,18 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
30974
31173
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
30975
31174
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
30976
31175
  export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
30977
- 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_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_username' | 'user_uuid' | 'username' | 'uuid';
31176
+ 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';
30978
31177
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
30979
31178
  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';
30980
31179
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
30981
31180
  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';
31181
+ 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';
30982
31182
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
30983
31183
  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';
30984
31184
  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';
30985
31185
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
30986
31186
  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';
30987
- 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' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
31187
+ 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';
30988
31188
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
30989
31189
  export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
30990
31190
  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';
@@ -30992,7 +31192,7 @@ export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer
30992
31192
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
30993
31193
  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';
30994
31194
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
30995
- 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';
31195
+ 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';
30996
31196
  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';
30997
31197
  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';
30998
31198
  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';
@@ -31071,7 +31271,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
31071
31271
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
31072
31272
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
31073
31273
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
31074
- 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' | 'profile_completeness' | 'registration_method' | 'requested_email' | 'should_protect_user_details' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
31274
+ 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';
31075
31275
  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';
31076
31276
  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';
31077
31277
  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';
@@ -44779,6 +44979,10 @@ export type MaintenanceAnnouncementsListData = {
44779
44979
  *
44780
44980
  */
44781
44981
  state?: Array<MaintenanceAnnouncementStateEnum>;
44982
+ /**
44983
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
44984
+ */
44985
+ timing_bucket?: string;
44782
44986
  };
44783
44987
  url: '/api/maintenance-announcements/';
44784
44988
  };
@@ -44834,6 +45038,10 @@ export type MaintenanceAnnouncementsCountData = {
44834
45038
  *
44835
45039
  */
44836
45040
  state?: Array<MaintenanceAnnouncementStateEnum>;
45041
+ /**
45042
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
45043
+ */
45044
+ timing_bucket?: string;
44837
45045
  };
44838
45046
  url: '/api/maintenance-announcements/';
44839
45047
  };
@@ -49066,7 +49274,7 @@ export type MarketplaceOfferingUsersListData = {
49066
49274
  */
49067
49275
  provider_uuid?: string;
49068
49276
  /**
49069
- * Search by offering name, username or user name
49277
+ * Search by offering name, username, user name, UID or primary GID
49070
49278
  */
49071
49279
  query?: string;
49072
49280
  /**
@@ -49161,7 +49369,7 @@ export type MarketplaceOfferingUsersCountData = {
49161
49369
  */
49162
49370
  provider_uuid?: string;
49163
49371
  /**
49164
- * Search by offering name, username or user name
49372
+ * Search by offering name, username, user name, UID or primary GID
49165
49373
  */
49166
49374
  query?: string;
49167
49375
  /**
@@ -49363,6 +49571,200 @@ export type MarketplaceOfferingUsersCompletionStatusRetrieveResponses = {
49363
49571
  200: ChecklistCompletion;
49364
49572
  };
49365
49573
  export type MarketplaceOfferingUsersCompletionStatusRetrieveResponse = MarketplaceOfferingUsersCompletionStatusRetrieveResponses[keyof MarketplaceOfferingUsersCompletionStatusRetrieveResponses];
49574
+ export type MarketplaceOfferingUsersPosixAllocationsListData = {
49575
+ body?: never;
49576
+ path: {
49577
+ uuid: string;
49578
+ };
49579
+ query?: {
49580
+ /**
49581
+ * Created after
49582
+ */
49583
+ created?: string;
49584
+ /**
49585
+ * Created before
49586
+ */
49587
+ created_before?: string;
49588
+ /**
49589
+ * User has complete profile for the offering
49590
+ */
49591
+ has_complete_profile?: boolean;
49592
+ /**
49593
+ * User Has Consent
49594
+ */
49595
+ has_consent?: boolean;
49596
+ /**
49597
+ * Is restricted
49598
+ */
49599
+ is_restricted?: boolean;
49600
+ /**
49601
+ * Modified after
49602
+ */
49603
+ modified?: string;
49604
+ /**
49605
+ * Modified before
49606
+ */
49607
+ modified_before?: string;
49608
+ /**
49609
+ * Ordering
49610
+ *
49611
+ *
49612
+ */
49613
+ o?: Array<OfferingUserOEnum>;
49614
+ offering?: string;
49615
+ /**
49616
+ * Offering has active Terms of Service
49617
+ */
49618
+ offering_has_active_tos?: boolean;
49619
+ /**
49620
+ * Multiple values may be separated by commas.
49621
+ */
49622
+ offering_slug?: Array<string>;
49623
+ /**
49624
+ * Multiple values may be separated by commas.
49625
+ */
49626
+ offering_uuid?: Array<string>;
49627
+ /**
49628
+ * A page number within the paginated result set.
49629
+ */
49630
+ page?: number;
49631
+ /**
49632
+ * Number of results to return per page.
49633
+ */
49634
+ page_size?: number;
49635
+ parent_offering_uuid?: string;
49636
+ /**
49637
+ * Provider UUID
49638
+ */
49639
+ provider_uuid?: string;
49640
+ /**
49641
+ * Search by offering name, username, user name, UID or primary GID
49642
+ */
49643
+ query?: string;
49644
+ /**
49645
+ * Offering user runtime state
49646
+ *
49647
+ *
49648
+ */
49649
+ runtime_state?: Array<RuntimeStateEnum>;
49650
+ /**
49651
+ * Offering user state
49652
+ *
49653
+ *
49654
+ */
49655
+ state?: Array<OfferingUserState>;
49656
+ /**
49657
+ * User username
49658
+ */
49659
+ user_username?: string;
49660
+ /**
49661
+ * User UUID
49662
+ */
49663
+ user_uuid?: string;
49664
+ };
49665
+ url: '/api/marketplace-offering-users/{uuid}/posix_allocations/';
49666
+ };
49667
+ export type MarketplaceOfferingUsersPosixAllocationsListResponses = {
49668
+ 200: Array<OfferingUserPosixAllocation>;
49669
+ };
49670
+ export type MarketplaceOfferingUsersPosixAllocationsListResponse = MarketplaceOfferingUsersPosixAllocationsListResponses[keyof MarketplaceOfferingUsersPosixAllocationsListResponses];
49671
+ export type MarketplaceOfferingUsersPosixGroupsListData = {
49672
+ body?: never;
49673
+ path: {
49674
+ uuid: string;
49675
+ };
49676
+ query?: {
49677
+ /**
49678
+ * Created after
49679
+ */
49680
+ created?: string;
49681
+ /**
49682
+ * Created before
49683
+ */
49684
+ created_before?: string;
49685
+ /**
49686
+ * User has complete profile for the offering
49687
+ */
49688
+ has_complete_profile?: boolean;
49689
+ /**
49690
+ * User Has Consent
49691
+ */
49692
+ has_consent?: boolean;
49693
+ /**
49694
+ * Is restricted
49695
+ */
49696
+ is_restricted?: boolean;
49697
+ /**
49698
+ * Modified after
49699
+ */
49700
+ modified?: string;
49701
+ /**
49702
+ * Modified before
49703
+ */
49704
+ modified_before?: string;
49705
+ /**
49706
+ * Ordering
49707
+ *
49708
+ *
49709
+ */
49710
+ o?: Array<OfferingUserOEnum>;
49711
+ offering?: string;
49712
+ /**
49713
+ * Offering has active Terms of Service
49714
+ */
49715
+ offering_has_active_tos?: boolean;
49716
+ /**
49717
+ * Multiple values may be separated by commas.
49718
+ */
49719
+ offering_slug?: Array<string>;
49720
+ /**
49721
+ * Multiple values may be separated by commas.
49722
+ */
49723
+ offering_uuid?: Array<string>;
49724
+ /**
49725
+ * A page number within the paginated result set.
49726
+ */
49727
+ page?: number;
49728
+ /**
49729
+ * Number of results to return per page.
49730
+ */
49731
+ page_size?: number;
49732
+ parent_offering_uuid?: string;
49733
+ /**
49734
+ * Provider UUID
49735
+ */
49736
+ provider_uuid?: string;
49737
+ /**
49738
+ * Search by offering name, username, user name, UID or primary GID
49739
+ */
49740
+ query?: string;
49741
+ /**
49742
+ * Offering user runtime state
49743
+ *
49744
+ *
49745
+ */
49746
+ runtime_state?: Array<RuntimeStateEnum>;
49747
+ /**
49748
+ * Offering user state
49749
+ *
49750
+ *
49751
+ */
49752
+ state?: Array<OfferingUserState>;
49753
+ /**
49754
+ * User username
49755
+ */
49756
+ user_username?: string;
49757
+ /**
49758
+ * User UUID
49759
+ */
49760
+ user_uuid?: string;
49761
+ };
49762
+ url: '/api/marketplace-offering-users/{uuid}/posix_groups/';
49763
+ };
49764
+ export type MarketplaceOfferingUsersPosixGroupsListResponses = {
49765
+ 200: Array<OfferingUserPosixGroup>;
49766
+ };
49767
+ export type MarketplaceOfferingUsersPosixGroupsListResponse = MarketplaceOfferingUsersPosixGroupsListResponses[keyof MarketplaceOfferingUsersPosixGroupsListResponses];
49366
49768
  export type MarketplaceOfferingUsersRequestDeletionData = {
49367
49769
  body?: never;
49368
49770
  path: {
@@ -49475,6 +49877,18 @@ export type MarketplaceOfferingUsersSetPendingAdditionalValidationResponses = {
49475
49877
  */
49476
49878
  200: unknown;
49477
49879
  };
49880
+ export type MarketplaceOfferingUsersSetPosixAttributesData = {
49881
+ body?: OfferingUserPosixAttributesRequest;
49882
+ path: {
49883
+ uuid: string;
49884
+ };
49885
+ query?: never;
49886
+ url: '/api/marketplace-offering-users/{uuid}/set_posix_attributes/';
49887
+ };
49888
+ export type MarketplaceOfferingUsersSetPosixAttributesResponses = {
49889
+ 200: OfferingUserPosixUpdateResponse;
49890
+ };
49891
+ export type MarketplaceOfferingUsersSetPosixAttributesResponse = MarketplaceOfferingUsersSetPosixAttributesResponses[keyof MarketplaceOfferingUsersSetPosixAttributesResponses];
49478
49892
  export type MarketplaceOfferingUsersSetValidationCompleteData = {
49479
49893
  body?: never;
49480
49894
  path: {
@@ -49593,6 +50007,192 @@ export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
49593
50007
  */
49594
50008
  200: unknown;
49595
50009
  };
50010
+ export type MarketplaceOfferingUsersPosixIdentitiesListData = {
50011
+ body?: never;
50012
+ path?: never;
50013
+ query: {
50014
+ /**
50015
+ * Created after
50016
+ */
50017
+ created?: string;
50018
+ /**
50019
+ * Created before
50020
+ */
50021
+ created_before?: string;
50022
+ /**
50023
+ * User has complete profile for the offering
50024
+ */
50025
+ has_complete_profile?: boolean;
50026
+ /**
50027
+ * User Has Consent
50028
+ */
50029
+ has_consent?: boolean;
50030
+ /**
50031
+ * Is restricted
50032
+ */
50033
+ is_restricted?: boolean;
50034
+ /**
50035
+ * Modified after
50036
+ */
50037
+ modified?: string;
50038
+ /**
50039
+ * Modified before
50040
+ */
50041
+ modified_before?: string;
50042
+ /**
50043
+ * Ordering
50044
+ *
50045
+ *
50046
+ */
50047
+ o?: Array<OfferingUserOEnum>;
50048
+ offering?: string;
50049
+ /**
50050
+ * Offering has active Terms of Service
50051
+ */
50052
+ offering_has_active_tos?: boolean;
50053
+ /**
50054
+ * Multiple values may be separated by commas.
50055
+ */
50056
+ offering_slug?: Array<string>;
50057
+ /**
50058
+ * Multiple values may be separated by commas.
50059
+ */
50060
+ offering_uuid?: Array<string>;
50061
+ /**
50062
+ * A page number within the paginated result set.
50063
+ */
50064
+ page?: number;
50065
+ /**
50066
+ * Number of results to return per page.
50067
+ */
50068
+ page_size?: number;
50069
+ parent_offering_uuid?: string;
50070
+ /**
50071
+ * Provider UUID
50072
+ */
50073
+ provider_uuid?: string;
50074
+ /**
50075
+ * Search by offering name, username, user name, UID or primary GID
50076
+ */
50077
+ query?: string;
50078
+ /**
50079
+ * Offering user runtime state
50080
+ *
50081
+ *
50082
+ */
50083
+ runtime_state?: Array<RuntimeStateEnum>;
50084
+ /**
50085
+ * Offering user state
50086
+ *
50087
+ *
50088
+ */
50089
+ state?: Array<OfferingUserState>;
50090
+ /**
50091
+ * User username
50092
+ */
50093
+ user_username?: string;
50094
+ user_uuid: string;
50095
+ };
50096
+ url: '/api/marketplace-offering-users/posix_identities/';
50097
+ };
50098
+ export type MarketplaceOfferingUsersPosixIdentitiesListResponses = {
50099
+ 200: Array<UserPosixIdentity>;
50100
+ };
50101
+ export type MarketplaceOfferingUsersPosixIdentitiesListResponse = MarketplaceOfferingUsersPosixIdentitiesListResponses[keyof MarketplaceOfferingUsersPosixIdentitiesListResponses];
50102
+ export type MarketplaceOfferingUsersPosixIdentitiesCountData = {
50103
+ body?: never;
50104
+ path?: never;
50105
+ query: {
50106
+ /**
50107
+ * Created after
50108
+ */
50109
+ created?: string;
50110
+ /**
50111
+ * Created before
50112
+ */
50113
+ created_before?: string;
50114
+ /**
50115
+ * User has complete profile for the offering
50116
+ */
50117
+ has_complete_profile?: boolean;
50118
+ /**
50119
+ * User Has Consent
50120
+ */
50121
+ has_consent?: boolean;
50122
+ /**
50123
+ * Is restricted
50124
+ */
50125
+ is_restricted?: boolean;
50126
+ /**
50127
+ * Modified after
50128
+ */
50129
+ modified?: string;
50130
+ /**
50131
+ * Modified before
50132
+ */
50133
+ modified_before?: string;
50134
+ /**
50135
+ * Ordering
50136
+ *
50137
+ *
50138
+ */
50139
+ o?: Array<OfferingUserOEnum>;
50140
+ offering?: string;
50141
+ /**
50142
+ * Offering has active Terms of Service
50143
+ */
50144
+ offering_has_active_tos?: boolean;
50145
+ /**
50146
+ * Multiple values may be separated by commas.
50147
+ */
50148
+ offering_slug?: Array<string>;
50149
+ /**
50150
+ * Multiple values may be separated by commas.
50151
+ */
50152
+ offering_uuid?: Array<string>;
50153
+ /**
50154
+ * A page number within the paginated result set.
50155
+ */
50156
+ page?: number;
50157
+ /**
50158
+ * Number of results to return per page.
50159
+ */
50160
+ page_size?: number;
50161
+ parent_offering_uuid?: string;
50162
+ /**
50163
+ * Provider UUID
50164
+ */
50165
+ provider_uuid?: string;
50166
+ /**
50167
+ * Search by offering name, username, user name, UID or primary GID
50168
+ */
50169
+ query?: string;
50170
+ /**
50171
+ * Offering user runtime state
50172
+ *
50173
+ *
50174
+ */
50175
+ runtime_state?: Array<RuntimeStateEnum>;
50176
+ /**
50177
+ * Offering user state
50178
+ *
50179
+ *
50180
+ */
50181
+ state?: Array<OfferingUserState>;
50182
+ /**
50183
+ * User username
50184
+ */
50185
+ user_username?: string;
50186
+ user_uuid: string;
50187
+ };
50188
+ url: '/api/marketplace-offering-users/posix_identities/';
50189
+ };
50190
+ export type MarketplaceOfferingUsersPosixIdentitiesCountResponses = {
50191
+ /**
50192
+ * No response body
50193
+ */
50194
+ 200: unknown;
50195
+ };
49596
50196
  export type MarketplaceOfferingUsersProfileFieldWarningsRetrieveData = {
49597
50197
  body?: never;
49598
50198
  path?: never;
@@ -50599,6 +51199,216 @@ export type MarketplacePluginsListResponses = {
50599
51199
  200: Array<PluginOfferingType>;
50600
51200
  };
50601
51201
  export type MarketplacePluginsListResponse = MarketplacePluginsListResponses[keyof MarketplacePluginsListResponses];
51202
+ export type MarketplacePosixIdPoolsListData = {
51203
+ body?: never;
51204
+ path?: never;
51205
+ query?: {
51206
+ /**
51207
+ * Customer UUID
51208
+ */
51209
+ customer_uuid?: string;
51210
+ field?: Array<PosixIdPoolFieldEnum>;
51211
+ /**
51212
+ * Offering UUID
51213
+ */
51214
+ offering_uuid?: string;
51215
+ /**
51216
+ * A page number within the paginated result set.
51217
+ */
51218
+ page?: number;
51219
+ /**
51220
+ * Number of results to return per page.
51221
+ */
51222
+ page_size?: number;
51223
+ /**
51224
+ * Service provider UUID
51225
+ */
51226
+ service_provider_uuid?: string;
51227
+ };
51228
+ url: '/api/marketplace-posix-id-pools/';
51229
+ };
51230
+ export type MarketplacePosixIdPoolsListResponses = {
51231
+ 200: Array<PosixIdPool>;
51232
+ };
51233
+ export type MarketplacePosixIdPoolsListResponse = MarketplacePosixIdPoolsListResponses[keyof MarketplacePosixIdPoolsListResponses];
51234
+ export type MarketplacePosixIdPoolsCountData = {
51235
+ body?: never;
51236
+ path?: never;
51237
+ query?: {
51238
+ /**
51239
+ * Customer UUID
51240
+ */
51241
+ customer_uuid?: string;
51242
+ /**
51243
+ * Offering UUID
51244
+ */
51245
+ offering_uuid?: string;
51246
+ /**
51247
+ * A page number within the paginated result set.
51248
+ */
51249
+ page?: number;
51250
+ /**
51251
+ * Number of results to return per page.
51252
+ */
51253
+ page_size?: number;
51254
+ /**
51255
+ * Service provider UUID
51256
+ */
51257
+ service_provider_uuid?: string;
51258
+ };
51259
+ url: '/api/marketplace-posix-id-pools/';
51260
+ };
51261
+ export type MarketplacePosixIdPoolsCountResponses = {
51262
+ /**
51263
+ * No response body
51264
+ */
51265
+ 200: unknown;
51266
+ };
51267
+ export type MarketplacePosixIdPoolsCreateData = {
51268
+ body?: PosixIdPoolRequest;
51269
+ path?: never;
51270
+ query?: never;
51271
+ url: '/api/marketplace-posix-id-pools/';
51272
+ };
51273
+ export type MarketplacePosixIdPoolsCreateResponses = {
51274
+ 201: PosixIdPool;
51275
+ };
51276
+ export type MarketplacePosixIdPoolsCreateResponse = MarketplacePosixIdPoolsCreateResponses[keyof MarketplacePosixIdPoolsCreateResponses];
51277
+ export type MarketplacePosixIdPoolsDestroyData = {
51278
+ body?: never;
51279
+ path: {
51280
+ uuid: string;
51281
+ };
51282
+ query?: never;
51283
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51284
+ };
51285
+ export type MarketplacePosixIdPoolsDestroyResponses = {
51286
+ /**
51287
+ * No response body
51288
+ */
51289
+ 204: void;
51290
+ };
51291
+ export type MarketplacePosixIdPoolsDestroyResponse = MarketplacePosixIdPoolsDestroyResponses[keyof MarketplacePosixIdPoolsDestroyResponses];
51292
+ export type MarketplacePosixIdPoolsRetrieveData = {
51293
+ body?: never;
51294
+ path: {
51295
+ uuid: string;
51296
+ };
51297
+ query?: {
51298
+ field?: Array<PosixIdPoolFieldEnum>;
51299
+ };
51300
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51301
+ };
51302
+ export type MarketplacePosixIdPoolsRetrieveResponses = {
51303
+ 200: PosixIdPool;
51304
+ };
51305
+ export type MarketplacePosixIdPoolsRetrieveResponse = MarketplacePosixIdPoolsRetrieveResponses[keyof MarketplacePosixIdPoolsRetrieveResponses];
51306
+ export type MarketplacePosixIdPoolsPartialUpdateData = {
51307
+ body?: PatchedPosixIdPoolRequest;
51308
+ path: {
51309
+ uuid: string;
51310
+ };
51311
+ query?: never;
51312
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51313
+ };
51314
+ export type MarketplacePosixIdPoolsPartialUpdateResponses = {
51315
+ 200: PosixIdPool;
51316
+ };
51317
+ export type MarketplacePosixIdPoolsPartialUpdateResponse = MarketplacePosixIdPoolsPartialUpdateResponses[keyof MarketplacePosixIdPoolsPartialUpdateResponses];
51318
+ export type MarketplacePosixIdPoolsUpdateData = {
51319
+ body?: PosixIdPoolRequest;
51320
+ path: {
51321
+ uuid: string;
51322
+ };
51323
+ query?: never;
51324
+ url: '/api/marketplace-posix-id-pools/{uuid}/';
51325
+ };
51326
+ export type MarketplacePosixIdPoolsUpdateResponses = {
51327
+ 200: PosixIdPool;
51328
+ };
51329
+ export type MarketplacePosixIdPoolsUpdateResponse = MarketplacePosixIdPoolsUpdateResponses[keyof MarketplacePosixIdPoolsUpdateResponses];
51330
+ export type MarketplacePosixIdPoolsStatsRetrieveData = {
51331
+ body?: never;
51332
+ path: {
51333
+ uuid: string;
51334
+ };
51335
+ query?: never;
51336
+ url: '/api/marketplace-posix-id-pools/{uuid}/stats/';
51337
+ };
51338
+ export type MarketplacePosixIdPoolsStatsRetrieveResponses = {
51339
+ 200: PosixIdPoolStats;
51340
+ };
51341
+ export type MarketplacePosixIdPoolsStatsRetrieveResponse = MarketplacePosixIdPoolsStatsRetrieveResponses[keyof MarketplacePosixIdPoolsStatsRetrieveResponses];
51342
+ export type MarketplacePosixIdentitiesListData = {
51343
+ body?: never;
51344
+ path?: never;
51345
+ query?: {
51346
+ is_released?: boolean;
51347
+ /**
51348
+ * Offering UUID
51349
+ */
51350
+ offering_uuid?: string;
51351
+ /**
51352
+ * A page number within the paginated result set.
51353
+ */
51354
+ page?: number;
51355
+ /**
51356
+ * Number of results to return per page.
51357
+ */
51358
+ page_size?: number;
51359
+ /**
51360
+ * POSIX ID pool UUID
51361
+ */
51362
+ pool_uuid?: string;
51363
+ };
51364
+ url: '/api/marketplace-posix-identities/';
51365
+ };
51366
+ export type MarketplacePosixIdentitiesListResponses = {
51367
+ 200: Array<PosixIdentity>;
51368
+ };
51369
+ export type MarketplacePosixIdentitiesListResponse = MarketplacePosixIdentitiesListResponses[keyof MarketplacePosixIdentitiesListResponses];
51370
+ export type MarketplacePosixIdentitiesCountData = {
51371
+ body?: never;
51372
+ path?: never;
51373
+ query?: {
51374
+ is_released?: boolean;
51375
+ /**
51376
+ * Offering UUID
51377
+ */
51378
+ offering_uuid?: string;
51379
+ /**
51380
+ * A page number within the paginated result set.
51381
+ */
51382
+ page?: number;
51383
+ /**
51384
+ * Number of results to return per page.
51385
+ */
51386
+ page_size?: number;
51387
+ /**
51388
+ * POSIX ID pool UUID
51389
+ */
51390
+ pool_uuid?: string;
51391
+ };
51392
+ url: '/api/marketplace-posix-identities/';
51393
+ };
51394
+ export type MarketplacePosixIdentitiesCountResponses = {
51395
+ /**
51396
+ * No response body
51397
+ */
51398
+ 200: unknown;
51399
+ };
51400
+ export type MarketplacePosixIdentitiesRetrieveData = {
51401
+ body?: never;
51402
+ path: {
51403
+ uuid: string;
51404
+ };
51405
+ query?: never;
51406
+ url: '/api/marketplace-posix-identities/{uuid}/';
51407
+ };
51408
+ export type MarketplacePosixIdentitiesRetrieveResponses = {
51409
+ 200: PosixIdentity;
51410
+ };
51411
+ export type MarketplacePosixIdentitiesRetrieveResponse = MarketplacePosixIdentitiesRetrieveResponses[keyof MarketplacePosixIdentitiesRetrieveResponses];
50602
51412
  export type MarketplaceProjectEstimatedCostPoliciesListData = {
50603
51413
  body?: never;
50604
51414
  path?: never;
@@ -50855,6 +51665,32 @@ export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
50855
51665
  200: ProjectOrderAutoApproval;
50856
51666
  };
50857
51667
  export type MarketplaceProjectOrderAutoApprovalsUpdateResponse = MarketplaceProjectOrderAutoApprovalsUpdateResponses[keyof MarketplaceProjectOrderAutoApprovalsUpdateResponses];
51668
+ export type MarketplaceProjectPosixGroupsListData = {
51669
+ body?: never;
51670
+ path?: never;
51671
+ query: {
51672
+ project_uuid: string;
51673
+ };
51674
+ url: '/api/marketplace-project-posix-groups/';
51675
+ };
51676
+ export type MarketplaceProjectPosixGroupsListResponses = {
51677
+ 200: Array<ProjectPosixGroup>;
51678
+ };
51679
+ export type MarketplaceProjectPosixGroupsListResponse = MarketplaceProjectPosixGroupsListResponses[keyof MarketplaceProjectPosixGroupsListResponses];
51680
+ export type MarketplaceProjectPosixGroupsCountData = {
51681
+ body?: never;
51682
+ path?: never;
51683
+ query: {
51684
+ project_uuid: string;
51685
+ };
51686
+ url: '/api/marketplace-project-posix-groups/';
51687
+ };
51688
+ export type MarketplaceProjectPosixGroupsCountResponses = {
51689
+ /**
51690
+ * No response body
51691
+ */
51692
+ 200: unknown;
51693
+ };
50858
51694
  export type MarketplaceProjectServiceAccountsListData = {
50859
51695
  body?: never;
50860
51696
  path?: never;
@@ -52336,6 +53172,20 @@ export type MarketplaceProviderOfferingsDraftResponses = {
52336
53172
  200: DetailState;
52337
53173
  };
52338
53174
  export type MarketplaceProviderOfferingsDraftResponse = MarketplaceProviderOfferingsDraftResponses[keyof MarketplaceProviderOfferingsDraftResponses];
53175
+ export type MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveData = {
53176
+ body?: never;
53177
+ path: {
53178
+ uuid: string;
53179
+ };
53180
+ query?: {
53181
+ field?: Array<PosixIdPoolFieldEnum>;
53182
+ };
53183
+ url: '/api/marketplace-provider-offerings/{uuid}/effective_posix_id_pool/';
53184
+ };
53185
+ export type MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponses = {
53186
+ 200: PosixIdPool;
53187
+ };
53188
+ export type MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponse = MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponses[keyof MarketplaceProviderOfferingsEffectivePosixIdPoolRetrieveResponses];
52339
53189
  export type MarketplaceProviderOfferingsExportOfferingData = {
52340
53190
  body?: OfferingExportParametersRequest;
52341
53191
  path: {
@@ -79654,6 +80504,10 @@ export type PublicMaintenanceAnnouncementsListData = {
79654
80504
  *
79655
80505
  */
79656
80506
  state?: Array<MaintenanceAnnouncementStateEnum>;
80507
+ /**
80508
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80509
+ */
80510
+ timing_bucket?: string;
79657
80511
  };
79658
80512
  url: '/api/public-maintenance-announcements/';
79659
80513
  };
@@ -79709,6 +80563,10 @@ export type PublicMaintenanceAnnouncementsCountData = {
79709
80563
  *
79710
80564
  */
79711
80565
  state?: Array<MaintenanceAnnouncementStateEnum>;
80566
+ /**
80567
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80568
+ */
80569
+ timing_bucket?: string;
79712
80570
  };
79713
80571
  url: '/api/public-maintenance-announcements/';
79714
80572
  };