waldur-js-client 8.0.10-dev.7 → 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.
@@ -2748,6 +2748,7 @@ export type BasicUser = {
2748
2748
  };
2749
2749
  export type BidEnum = 'eager' | 'willing' | 'not_willing' | 'conflict';
2750
2750
  export type BillingModeEnum = 'monthly' | 'prepaid' | 'usage';
2751
+ export type BillingSourceEnum = 'quota' | 'placement';
2751
2752
  export type BillingTypeEnum = 'fixed' | 'usage' | 'limit' | 'one' | 'few';
2752
2753
  export type BillingUnit = 'month' | 'quarter' | 'half_month' | 'day' | 'hour' | 'quantity';
2753
2754
  export type BlankEnum = '';
@@ -3130,6 +3131,8 @@ export type CallApplicantVisibilityConfig = {
3130
3131
  expose_civil_number?: boolean;
3131
3132
  expose_birth_date?: boolean;
3132
3133
  expose_active_isds?: boolean;
3134
+ expose_uid_number?: boolean;
3135
+ expose_primary_gid?: boolean;
3133
3136
  readonly exposed_fields: Array<string>;
3134
3137
  /**
3135
3138
  * Return True if this is a default (unsaved) config.
@@ -3162,6 +3165,8 @@ export type CallApplicantVisibilityConfigRequest = {
3162
3165
  expose_civil_number?: boolean;
3163
3166
  expose_birth_date?: boolean;
3164
3167
  expose_active_isds?: boolean;
3168
+ expose_uid_number?: boolean;
3169
+ expose_primary_gid?: boolean;
3165
3170
  };
3166
3171
  export type CallAssignmentConfiguration = {
3167
3172
  readonly uuid: string;
@@ -5216,6 +5221,7 @@ export type ConstanceSettings = {
5216
5221
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5217
5222
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5218
5223
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5224
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
5219
5225
  AFFILIATES_ENABLED?: boolean;
5220
5226
  MATRIX_ENABLED?: boolean;
5221
5227
  MATRIX_HOMESERVER_URL?: string;
@@ -5519,6 +5525,7 @@ export type ConstanceSettingsRequest = {
5519
5525
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
5520
5526
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
5521
5527
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
5528
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
5522
5529
  AFFILIATES_ENABLED?: boolean;
5523
5530
  MATRIX_ENABLED?: boolean;
5524
5531
  MATRIX_HOMESERVER_URL?: string;
@@ -9906,6 +9913,9 @@ export type MaintenanceAnnouncement = {
9906
9913
  * When the maintenance actually completed
9907
9914
  */
9908
9915
  readonly actual_end: string | null;
9916
+ readonly overrun_minutes: number | null;
9917
+ readonly start_delta_minutes: number | null;
9918
+ timing_bucket: TimingBucketEnum;
9909
9919
  /**
9910
9920
  * Service provider announcing the maintenance
9911
9921
  */
@@ -10129,6 +10139,18 @@ export type MaintenanceStatsSummary = {
10129
10139
  * Percentage of maintenances completed on time
10130
10140
  */
10131
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;
10132
10154
  };
10133
10155
  export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
10134
10156
  export type ManagedProject = {
@@ -10711,6 +10733,10 @@ export type MergedPluginOptions = {
10711
10733
  * Interval in minutes between usage polling for this offering (default: 60)
10712
10734
  */
10713
10735
  usage_poll_interval_minutes?: number;
10736
+ /**
10737
+ * Source for OpenStack instance compute ComponentUsage: 'quota' (flavor-derived Nova quota, default) or 'placement' (Placement allocations; also bills VGPU/PCI/custom resource classes).
10738
+ */
10739
+ billing_source?: BillingSourceEnum;
10714
10740
  /**
10715
10741
  * HEAppE cluster id
10716
10742
  */
@@ -10740,21 +10766,9 @@ export type MergedPluginOptions = {
10740
10766
  */
10741
10767
  project_permanent_directory?: string;
10742
10768
  /**
10743
- * GLAuth initial primary group number
10744
- */
10745
- initial_primarygroup_number?: number;
10746
- /**
10747
- * GLAuth initial uidnumber
10748
- */
10749
- initial_uidnumber?: number;
10750
- /**
10751
- * GLAuth initial usergroup number
10752
- */
10753
- initial_usergroup_number?: number;
10754
- /**
10755
- * 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.
10756
10770
  */
10757
- initial_rolegroup_number?: number;
10771
+ enable_posix_account?: boolean;
10758
10772
  /**
10759
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"}.
10760
10774
  */
@@ -10783,6 +10797,26 @@ export type MergedPluginOptions = {
10783
10797
  * GLAuth username generation policy
10784
10798
  */
10785
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;
10786
10820
  /**
10787
10821
  * Enable issues for membership changes
10788
10822
  */
@@ -11061,6 +11095,10 @@ export type MergedPluginOptionsRequest = {
11061
11095
  * Interval in minutes between usage polling for this offering (default: 60)
11062
11096
  */
11063
11097
  usage_poll_interval_minutes?: number;
11098
+ /**
11099
+ * Source for OpenStack instance compute ComponentUsage: 'quota' (flavor-derived Nova quota, default) or 'placement' (Placement allocations; also bills VGPU/PCI/custom resource classes).
11100
+ */
11101
+ billing_source?: BillingSourceEnum;
11064
11102
  /**
11065
11103
  * HEAppE cluster id
11066
11104
  */
@@ -11090,21 +11128,9 @@ export type MergedPluginOptionsRequest = {
11090
11128
  */
11091
11129
  project_permanent_directory?: string;
11092
11130
  /**
11093
- * GLAuth initial primary group number
11094
- */
11095
- initial_primarygroup_number?: number;
11096
- /**
11097
- * GLAuth initial uidnumber
11098
- */
11099
- initial_uidnumber?: number;
11100
- /**
11101
- * GLAuth initial usergroup number
11102
- */
11103
- initial_usergroup_number?: number;
11104
- /**
11105
- * 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.
11106
11132
  */
11107
- initial_rolegroup_number?: number;
11133
+ enable_posix_account?: boolean;
11108
11134
  /**
11109
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"}.
11110
11136
  */
@@ -11133,6 +11159,26 @@ export type MergedPluginOptionsRequest = {
11133
11159
  * GLAuth username generation policy
11134
11160
  */
11135
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;
11136
11182
  /**
11137
11183
  * Enable issues for membership changes
11138
11184
  */
@@ -13902,6 +13948,14 @@ export type OfferingUser = {
13902
13948
  * Indicates what identity provider was used.
13903
13949
  */
13904
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;
13905
13959
  /**
13906
13960
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
13907
13961
  */
@@ -13945,6 +13999,10 @@ export type OfferingUser = {
13945
13999
  } | null;
13946
14000
  readonly is_profile_complete: boolean;
13947
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;
13948
14006
  };
13949
14007
  export type OfferingUserAttributeConfig = {
13950
14008
  readonly uuid: string;
@@ -13975,6 +14033,8 @@ export type OfferingUserAttributeConfig = {
13975
14033
  expose_civil_number?: boolean;
13976
14034
  expose_birth_date?: boolean;
13977
14035
  expose_active_isds?: boolean;
14036
+ expose_uid_number?: boolean;
14037
+ expose_primary_gid?: boolean;
13978
14038
  readonly exposed_fields: Array<string>;
13979
14039
  /**
13980
14040
  * Return True if this is a default (unsaved) config.
@@ -14009,8 +14069,50 @@ export type OfferingUserAttributeConfigRequest = {
14009
14069
  expose_civil_number?: boolean;
14010
14070
  expose_birth_date?: boolean;
14011
14071
  expose_active_isds?: boolean;
14072
+ expose_uid_number?: boolean;
14073
+ expose_primary_gid?: boolean;
14012
14074
  offering?: string;
14013
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
+ };
14014
14116
  export type OfferingUserRequest = {
14015
14117
  user?: string;
14016
14118
  offering?: string;
@@ -17925,6 +18027,8 @@ export type PatchedOfferingUserAttributeConfigRequest = {
17925
18027
  expose_civil_number?: boolean;
17926
18028
  expose_birth_date?: boolean;
17927
18029
  expose_active_isds?: boolean;
18030
+ expose_uid_number?: boolean;
18031
+ expose_primary_gid?: boolean;
17928
18032
  offering?: string;
17929
18033
  };
17930
18034
  export type PatchedOfferingUserRequest = {
@@ -18088,6 +18192,13 @@ export type PatchedPaymentRequest = {
18088
18192
  sum?: string;
18089
18193
  proof?: Blob | File | null;
18090
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
+ };
18091
18202
  export type PatchedProjectCreditRequest = {
18092
18203
  value?: string;
18093
18204
  project?: string;
@@ -19243,13 +19354,13 @@ export type PermissionMetadataResponse = {
19243
19354
  * Map of permission keys to permission enum values from PermissionEnum
19244
19355
  */
19245
19356
  permissions: {
19246
- [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';
19247
19358
  };
19248
19359
  /**
19249
19360
  * Map of resource types to create permission enums
19250
19361
  */
19251
19362
  permission_map: {
19252
- [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';
19253
19364
  };
19254
19365
  /**
19255
19366
  * Grouped permission descriptions for UI
@@ -19425,6 +19536,63 @@ export type PluginOfferingType = {
19425
19536
  export type PolicyEnum = 'affinity' | 'anti-affinity' | 'soft-affinity' | 'soft-anti-affinity';
19426
19537
  export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
19427
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
+ };
19428
19596
  export type PresetEnum = 'cscs' | 'oecd_fos_2007';
19429
19597
  export type PreviewPeriod = {
19430
19598
  period: string;
@@ -20028,6 +20196,18 @@ export type ProjectPermissionReview = {
20028
20196
  readonly project_uuid: string;
20029
20197
  readonly project_name: string;
20030
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';
20031
20211
  export type ProjectQuotas = {
20032
20212
  readonly project_name: string;
20033
20213
  readonly customer_name: string;
@@ -20922,6 +21102,7 @@ export type ProviderOffering = {
20922
21102
  thumbnail?: string | null;
20923
21103
  readonly offering_group_uuid: string | null;
20924
21104
  readonly offering_group_title: string | null;
21105
+ readonly service_provider_can_create_offering_user: boolean;
20925
21106
  };
20926
21107
  export type ProviderOfferingCosts = {
20927
21108
  /**
@@ -26946,6 +27127,7 @@ export type TimeSeriesToSData = {
26946
27127
  */
26947
27128
  readonly count: number;
26948
27129
  };
27130
+ export type TimingBucketEnum = 'pending' | 'overrun' | 'late_start' | 'early' | 'on_time';
26949
27131
  export type ToSConsentDashboard = {
26950
27132
  /**
26951
27133
  * Number of active users
@@ -27392,6 +27574,14 @@ export type User = {
27392
27574
  */
27393
27575
  organization_address?: string;
27394
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;
27395
27585
  /**
27396
27586
  * Designates whether the user is allowed to manage remote user identities.
27397
27587
  */
@@ -27807,6 +27997,14 @@ export type UserMe = {
27807
27997
  */
27808
27998
  organization_address?: string;
27809
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;
27810
28008
  /**
27811
28009
  * Designates whether the user is allowed to manage remote user identities.
27812
28010
  */
@@ -27900,6 +28098,14 @@ export type UserOrganizationTypeCount = {
27900
28098
  */
27901
28099
  count: number;
27902
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
+ };
27903
28109
  export type UserRegistrationTrend = {
27904
28110
  month: string;
27905
28111
  count: number;
@@ -28058,7 +28264,7 @@ export type UserRoleUpdateRequest = {
28058
28264
  export type UsernameGenerationPolicyEnum = 'service_provider' | 'anonymized' | 'full_name' | 'waldur_username' | 'freeipa' | 'identity_claim';
28059
28265
  export type ValidationDecisionEnum = 'approved' | 'rejected' | 'pending';
28060
28266
  export type ValidationMethodEnum = 'ariregister' | 'wirtschaftscompass' | 'bolagsverket' | 'breg';
28061
- 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';
28062
28268
  export type VendorNameChoice = {
28063
28269
  value: string;
28064
28270
  label: string;
@@ -30105,6 +30311,7 @@ export type ConstanceSettingsRequestForm = {
30105
30311
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
30106
30312
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
30107
30313
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30314
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30108
30315
  AFFILIATES_ENABLED?: boolean;
30109
30316
  MATRIX_ENABLED?: boolean;
30110
30317
  MATRIX_HOMESERVER_URL?: string;
@@ -30408,6 +30615,7 @@ export type ConstanceSettingsRequestMultipart = {
30408
30615
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
30409
30616
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
30410
30617
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
30618
+ POSIX_ID_POOL_UTILIZATION_THRESHOLD?: number;
30411
30619
  AFFILIATES_ENABLED?: boolean;
30412
30620
  MATRIX_ENABLED?: boolean;
30413
30621
  MATRIX_HOMESERVER_URL?: string;
@@ -30945,7 +31153,7 @@ export type InvoiceOEnum = '-created' | '-month' | '-year' | 'created' | 'month'
30945
31153
  export type InvoiceItemOEnum = 'project_name' | '-project_name' | 'resource_name' | '-resource_name' | 'provider_name' | '-provider_name' | 'name' | '-name';
30946
31154
  export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'fingerprint_sha512' | 'is_shared' | 'name' | 'public_key' | 'type' | 'url' | 'user_uuid' | 'uuid';
30947
31155
  export type SshKeyOEnum = '-name' | 'name';
30948
- 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';
30949
31157
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
30950
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';
30951
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';
@@ -30965,17 +31173,18 @@ export type OfferingPermissionOEnum = '-created' | '-email' | '-expiration_time'
30965
31173
  export type OfferingReferralOEnum = '-published' | '-relation_type' | '-resource_type' | 'published' | 'relation_type' | 'resource_type';
30966
31174
  export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version' | 'created' | 'modified' | 'version';
30967
31175
  export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
30968
- 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';
30969
31177
  export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
30970
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';
30971
31179
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
30972
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';
30973
31182
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
30974
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';
30975
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';
30976
31185
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
30977
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';
30978
- 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';
30979
31188
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
30980
31189
  export type ResourceTeamMemberFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'resource_projects' | 'role_name' | 'role_uuid' | 'url' | 'username' | 'uuid';
30981
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';
@@ -30983,7 +31192,7 @@ export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer
30983
31192
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
30984
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';
30985
31194
  export type MarketplaceProviderCustomerFieldEnum = 'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid';
30986
- 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';
30987
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';
30988
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';
30989
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';
@@ -31062,7 +31271,7 @@ export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last
31062
31271
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
31063
31272
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
31064
31273
  export type InvitationOEnum = '-created' | '-created_by' | '-email' | '-state' | 'created' | 'created_by' | 'email' | 'state';
31065
- 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';
31066
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';
31067
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';
31068
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';
@@ -44770,6 +44979,10 @@ export type MaintenanceAnnouncementsListData = {
44770
44979
  *
44771
44980
  */
44772
44981
  state?: Array<MaintenanceAnnouncementStateEnum>;
44982
+ /**
44983
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
44984
+ */
44985
+ timing_bucket?: string;
44773
44986
  };
44774
44987
  url: '/api/maintenance-announcements/';
44775
44988
  };
@@ -44825,6 +45038,10 @@ export type MaintenanceAnnouncementsCountData = {
44825
45038
  *
44826
45039
  */
44827
45040
  state?: Array<MaintenanceAnnouncementStateEnum>;
45041
+ /**
45042
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
45043
+ */
45044
+ timing_bucket?: string;
44828
45045
  };
44829
45046
  url: '/api/maintenance-announcements/';
44830
45047
  };
@@ -49057,7 +49274,7 @@ export type MarketplaceOfferingUsersListData = {
49057
49274
  */
49058
49275
  provider_uuid?: string;
49059
49276
  /**
49060
- * Search by offering name, username or user name
49277
+ * Search by offering name, username, user name, UID or primary GID
49061
49278
  */
49062
49279
  query?: string;
49063
49280
  /**
@@ -49152,7 +49369,7 @@ export type MarketplaceOfferingUsersCountData = {
49152
49369
  */
49153
49370
  provider_uuid?: string;
49154
49371
  /**
49155
- * Search by offering name, username or user name
49372
+ * Search by offering name, username, user name, UID or primary GID
49156
49373
  */
49157
49374
  query?: string;
49158
49375
  /**
@@ -49354,6 +49571,200 @@ export type MarketplaceOfferingUsersCompletionStatusRetrieveResponses = {
49354
49571
  200: ChecklistCompletion;
49355
49572
  };
49356
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];
49357
49768
  export type MarketplaceOfferingUsersRequestDeletionData = {
49358
49769
  body?: never;
49359
49770
  path: {
@@ -49466,6 +49877,18 @@ export type MarketplaceOfferingUsersSetPendingAdditionalValidationResponses = {
49466
49877
  */
49467
49878
  200: unknown;
49468
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];
49469
49892
  export type MarketplaceOfferingUsersSetValidationCompleteData = {
49470
49893
  body?: never;
49471
49894
  path: {
@@ -49584,6 +50007,192 @@ export type MarketplaceOfferingUsersChecklistTemplateCountResponses = {
49584
50007
  */
49585
50008
  200: unknown;
49586
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
+ };
49587
50196
  export type MarketplaceOfferingUsersProfileFieldWarningsRetrieveData = {
49588
50197
  body?: never;
49589
50198
  path?: never;
@@ -50590,6 +51199,216 @@ export type MarketplacePluginsListResponses = {
50590
51199
  200: Array<PluginOfferingType>;
50591
51200
  };
50592
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];
50593
51412
  export type MarketplaceProjectEstimatedCostPoliciesListData = {
50594
51413
  body?: never;
50595
51414
  path?: never;
@@ -50846,6 +51665,32 @@ export type MarketplaceProjectOrderAutoApprovalsUpdateResponses = {
50846
51665
  200: ProjectOrderAutoApproval;
50847
51666
  };
50848
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
+ };
50849
51694
  export type MarketplaceProjectServiceAccountsListData = {
50850
51695
  body?: never;
50851
51696
  path?: never;
@@ -52327,6 +53172,20 @@ export type MarketplaceProviderOfferingsDraftResponses = {
52327
53172
  200: DetailState;
52328
53173
  };
52329
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];
52330
53189
  export type MarketplaceProviderOfferingsExportOfferingData = {
52331
53190
  body?: OfferingExportParametersRequest;
52332
53191
  path: {
@@ -79645,6 +80504,10 @@ export type PublicMaintenanceAnnouncementsListData = {
79645
80504
  *
79646
80505
  */
79647
80506
  state?: Array<MaintenanceAnnouncementStateEnum>;
80507
+ /**
80508
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80509
+ */
80510
+ timing_bucket?: string;
79648
80511
  };
79649
80512
  url: '/api/public-maintenance-announcements/';
79650
80513
  };
@@ -79700,6 +80563,10 @@ export type PublicMaintenanceAnnouncementsCountData = {
79700
80563
  *
79701
80564
  */
79702
80565
  state?: Array<MaintenanceAnnouncementStateEnum>;
80566
+ /**
80567
+ * Timing bucket (comma-separated: on_time, late_start, overrun, early, pending)
80568
+ */
80569
+ timing_bucket?: string;
79703
80570
  };
79704
80571
  url: '/api/public-maintenance-announcements/';
79705
80572
  };