waldur-js-client 8.0.7-dev.8 → 8.0.7

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.
@@ -1,3 +1,4 @@
1
+ export type AiassistantenabledrolesEnum = 'disabled' | 'staff' | 'staff_and_support' | 'all';
1
2
  export type AccessSubnet = {
2
3
  readonly uuid: string;
3
4
  inet: string;
@@ -1101,6 +1102,75 @@ export type ArrowVendorOfferingMappingRequest = {
1101
1102
  */
1102
1103
  is_active?: boolean;
1103
1104
  };
1105
+ export type ArticleCodeUpdateApplyRequest = {
1106
+ /**
1107
+ * Substring to search for in article codes.
1108
+ */
1109
+ search: string;
1110
+ /**
1111
+ * Replacement string.
1112
+ */
1113
+ replace?: string;
1114
+ /**
1115
+ * Filter by offering category UUID.
1116
+ */
1117
+ offering_category_uuid?: string;
1118
+ /**
1119
+ * Filter by service provider (customer) UUID.
1120
+ */
1121
+ offering_customer_uuid?: string;
1122
+ /**
1123
+ * Filter by offering state.
1124
+ */
1125
+ offering_state?: OfferingState;
1126
+ /**
1127
+ * Filter by offering name (case-insensitive substring match).
1128
+ */
1129
+ offering_name?: string;
1130
+ /**
1131
+ * UUIDs of components to update (from preview results).
1132
+ */
1133
+ component_uuids: Array<string>;
1134
+ };
1135
+ export type ArticleCodeUpdateApplyResponse = {
1136
+ updated_count: number;
1137
+ };
1138
+ export type ArticleCodeUpdatePreviewItem = {
1139
+ component_uuid: string;
1140
+ component_type: string;
1141
+ component_name: string;
1142
+ offering_uuid: string;
1143
+ offering_name: string;
1144
+ offering_customer_name: string;
1145
+ old_article_code: string;
1146
+ new_article_code: string;
1147
+ };
1148
+ export type ArticleCodeUpdatePreviewRequest = {
1149
+ /**
1150
+ * Substring to search for in article codes.
1151
+ */
1152
+ search: string;
1153
+ /**
1154
+ * Replacement string.
1155
+ */
1156
+ replace?: string;
1157
+ /**
1158
+ * Filter by offering category UUID.
1159
+ */
1160
+ offering_category_uuid?: string;
1161
+ /**
1162
+ * Filter by service provider (customer) UUID.
1163
+ */
1164
+ offering_customer_uuid?: string;
1165
+ /**
1166
+ * Filter by offering state.
1167
+ */
1168
+ offering_state?: OfferingState;
1169
+ /**
1170
+ * Filter by offering name (case-insensitive substring match).
1171
+ */
1172
+ offering_name?: string;
1173
+ };
1104
1174
  export type AssignmentBatch = {
1105
1175
  readonly url: string;
1106
1176
  readonly uuid: string;
@@ -1273,6 +1343,12 @@ export type AssignmentItem = {
1273
1343
  * Number of times this proposal has been reassigned.
1274
1344
  */
1275
1345
  readonly reassign_count: number;
1346
+ /**
1347
+ * Reason for manager override of COI block.
1348
+ */
1349
+ readonly override_reason: string;
1350
+ readonly overridden_by_name: string;
1351
+ readonly overridden_at: string | null;
1276
1352
  readonly created: string;
1277
1353
  };
1278
1354
  export type AssignmentItemDeclineRequest = {
@@ -1562,6 +1638,10 @@ export type AvailableChecklistsResponse = {
1562
1638
  [key: string]: unknown;
1563
1639
  } | null;
1564
1640
  };
1641
+ export type AvailableScope = {
1642
+ permission: string;
1643
+ description: string;
1644
+ };
1565
1645
  export type AwsImage = {
1566
1646
  readonly url: string;
1567
1647
  readonly uuid: string;
@@ -2309,6 +2389,7 @@ export type BasicUser = {
2309
2389
  image?: string | null;
2310
2390
  };
2311
2391
  export type BidEnum = 'eager' | 'willing' | 'not_willing' | 'conflict';
2392
+ export type BillingModeEnum = 'monthly' | 'prepaid' | 'usage';
2312
2393
  export type BillingTypeEnum = 'fixed' | 'usage' | 'limit' | 'one' | 'few';
2313
2394
  export type BillingUnit = 'month' | 'quarter' | 'half_month' | 'day' | 'hour' | 'quantity';
2314
2395
  export type BlankEnum = '';
@@ -2371,14 +2452,14 @@ export type BookingResource = {
2371
2452
  readonly project_name?: string;
2372
2453
  readonly project_description?: string;
2373
2454
  /**
2374
- * The date is inclusive. Once reached (plus any grace period), all project resources will be scheduled for termination.
2455
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
2375
2456
  */
2376
2457
  readonly project_end_date?: string | null;
2377
2458
  /**
2378
2459
  * Effective project end date including grace period. After this date, resources will be terminated.
2379
2460
  */
2380
- readonly project_effective_end_date?: string;
2381
- readonly project_end_date_requested_by?: string;
2461
+ readonly project_effective_end_date?: string | null;
2462
+ readonly project_end_date_requested_by?: string | null;
2382
2463
  readonly customer_uuid?: string;
2383
2464
  readonly customer_name?: string;
2384
2465
  readonly offering_slug?: string;
@@ -2813,6 +2894,25 @@ export type CallManagingOrganisationStat = {
2813
2894
  readonly calls_closing_in_one_week: number;
2814
2895
  readonly offering_requests_pending: number;
2815
2896
  };
2897
+ export type CallPerformanceStat = {
2898
+ readonly call_uuid: string;
2899
+ readonly call_name: string;
2900
+ readonly managing_organization_name: string;
2901
+ readonly state: string;
2902
+ readonly total_proposals: number;
2903
+ readonly proposals_draft: number;
2904
+ readonly proposals_submitted: number;
2905
+ readonly proposals_in_review: number;
2906
+ readonly proposals_accepted: number;
2907
+ readonly proposals_rejected: number;
2908
+ readonly proposals_canceled: number;
2909
+ readonly acceptance_rate: number;
2910
+ readonly total_reviews: number;
2911
+ readonly reviews_completed: number;
2912
+ readonly average_score: number | null;
2913
+ readonly active_rounds: number;
2914
+ readonly last_submission_date: string | null;
2915
+ };
2816
2916
  export type CallResourceTemplate = {
2817
2917
  readonly uuid?: string;
2818
2918
  readonly url?: string;
@@ -2887,7 +2987,7 @@ export type CallReviewerPool = {
2887
2987
  */
2888
2988
  expertise_match_score?: number | null;
2889
2989
  readonly invited_by_name: string;
2890
- readonly invitation_token: string;
2990
+ readonly invitation_link: string | null;
2891
2991
  readonly invitation_expires_at: string | null;
2892
2992
  readonly created: string;
2893
2993
  /**
@@ -2916,6 +3016,12 @@ export type CallReviewerPool = {
2916
3016
  * Count reviews in 'submitted' state.
2917
3017
  */
2918
3018
  readonly reviews_completed: number;
3019
+ /**
3020
+ * Reason for manager override of invitation status.
3021
+ */
3022
+ readonly override_reason: string;
3023
+ readonly overridden_by_name: string;
3024
+ readonly overridden_at: string | null;
2919
3025
  };
2920
3026
  export type CallReviewerPoolUpdate = {
2921
3027
  /**
@@ -3537,6 +3643,10 @@ export type ChatResponse = {
3537
3643
  * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3538
3644
  */
3539
3645
  projects?: Array<unknown>;
3646
+ /**
3647
+ * Available offering options [{uuid, name}]. Present when status='offering_form'.
3648
+ */
3649
+ offerings?: Array<unknown>;
3540
3650
  };
3541
3651
  export type ChatSession = {
3542
3652
  readonly uuid?: string;
@@ -4171,6 +4281,8 @@ export type ConstanceSettings = {
4171
4281
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4172
4282
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4173
4283
  MARKETPLACE_LANDING_PAGE?: string;
4284
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4285
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4174
4286
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4175
4287
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4176
4288
  TELEMETRY_URL?: string;
@@ -4319,6 +4431,7 @@ export type ConstanceSettings = {
4319
4431
  OIDC_CACHE_TIMEOUT?: number;
4320
4432
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4321
4433
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4434
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
4322
4435
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4323
4436
  OIDC_DEFAULT_LOGOUT_URL?: string;
4324
4437
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -4347,18 +4460,20 @@ export type ConstanceSettings = {
4347
4460
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4348
4461
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4349
4462
  ONBOARDING_BREG_API_URL?: string;
4350
- LLM_CHAT_ENABLED?: boolean;
4351
- LLM_INFERENCES_BACKEND_TYPE?: string;
4352
- LLM_INFERENCES_API_URL?: string;
4353
- LLM_INFERENCES_API_TOKEN?: string;
4354
- LLM_INFERENCES_MODEL?: string;
4355
- LLM_COMPLETION_KWARGS?: string;
4356
- LLM_TOKEN_LIMIT_DAILY?: number;
4357
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4358
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4359
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4360
- LLM_CHAT_HISTORY_LIMIT?: number;
4361
- LLM_INJECTION_ALLOWLIST?: string;
4463
+ AI_ASSISTANT_ENABLED?: boolean;
4464
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4465
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4466
+ AI_ASSISTANT_API_URL?: string;
4467
+ AI_ASSISTANT_API_TOKEN?: string;
4468
+ AI_ASSISTANT_MODEL?: string;
4469
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4470
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4471
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4472
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4473
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4474
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4475
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4476
+ AI_ASSISTANT_NAME?: string;
4362
4477
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4363
4478
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4364
4479
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4398,6 +4513,9 @@ export type ConstanceSettings = {
4398
4513
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4399
4514
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4400
4515
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4516
+ PAT_ENABLED?: boolean;
4517
+ PAT_MAX_LIFETIME_DAYS?: number;
4518
+ PAT_MAX_TOKENS_PER_USER?: number;
4401
4519
  };
4402
4520
  export type ConstanceSettingsRequest = {
4403
4521
  SITE_NAME?: string;
@@ -4418,6 +4536,8 @@ export type ConstanceSettingsRequest = {
4418
4536
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4419
4537
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4420
4538
  MARKETPLACE_LANDING_PAGE?: string;
4539
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4540
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4421
4541
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4422
4542
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4423
4543
  TELEMETRY_URL?: string;
@@ -4566,6 +4686,7 @@ export type ConstanceSettingsRequest = {
4566
4686
  OIDC_CACHE_TIMEOUT?: number;
4567
4687
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4568
4688
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4689
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
4569
4690
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4570
4691
  OIDC_DEFAULT_LOGOUT_URL?: string;
4571
4692
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -4594,18 +4715,20 @@ export type ConstanceSettingsRequest = {
4594
4715
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4595
4716
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4596
4717
  ONBOARDING_BREG_API_URL?: string;
4597
- LLM_CHAT_ENABLED?: boolean;
4598
- LLM_INFERENCES_BACKEND_TYPE?: string;
4599
- LLM_INFERENCES_API_URL?: string;
4600
- LLM_INFERENCES_API_TOKEN?: string;
4601
- LLM_INFERENCES_MODEL?: string;
4602
- LLM_COMPLETION_KWARGS?: string;
4603
- LLM_TOKEN_LIMIT_DAILY?: number;
4604
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4605
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4606
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4607
- LLM_CHAT_HISTORY_LIMIT?: number;
4608
- LLM_INJECTION_ALLOWLIST?: string;
4718
+ AI_ASSISTANT_ENABLED?: boolean;
4719
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
4720
+ AI_ASSISTANT_BACKEND_TYPE?: string;
4721
+ AI_ASSISTANT_API_URL?: string;
4722
+ AI_ASSISTANT_API_TOKEN?: string;
4723
+ AI_ASSISTANT_MODEL?: string;
4724
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
4725
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
4726
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
4727
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
4728
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
4729
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
4730
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
4731
+ AI_ASSISTANT_NAME?: string;
4609
4732
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4610
4733
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4611
4734
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4645,6 +4768,9 @@ export type ConstanceSettingsRequest = {
4645
4768
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4646
4769
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4647
4770
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4771
+ PAT_ENABLED?: boolean;
4772
+ PAT_MAX_LIFETIME_DAYS?: number;
4773
+ PAT_MAX_TOKENS_PER_USER?: number;
4648
4774
  };
4649
4775
  export type ConsumptionStatisticsResponse = {
4650
4776
  total_records: number;
@@ -4886,96 +5012,86 @@ export type CreateFeedbackRequest = {
4886
5012
  export type CreateHealthMonitor = {
4887
5013
  readonly url: string;
4888
5014
  readonly uuid: string;
4889
- /**
4890
- * Pool this health monitor belongs to
4891
- */
4892
- pool: string;
4893
5015
  name?: string;
4894
- type: LoadBalancerProtocolEnum;
4895
5016
  /**
4896
5017
  * Interval between health checks in seconds
4897
5018
  */
4898
- delay: number;
5019
+ delay?: number;
4899
5020
  /**
4900
5021
  * Time in seconds to timeout a health check
4901
5022
  */
4902
- timeout: number;
4903
- /**
4904
- * Number of retries before marking member as down
4905
- */
4906
- max_retries: number;
4907
- readonly project: string;
4908
- readonly service_settings: string;
4909
- };
4910
- export type CreateHealthMonitorRequest = {
5023
+ timeout?: number;
5024
+ max_retries?: number;
5025
+ max_retries_down?: number;
4911
5026
  /**
4912
5027
  * Pool this health monitor belongs to
4913
5028
  */
4914
5029
  pool: string;
4915
- name?: string;
4916
5030
  type: LoadBalancerProtocolEnum;
5031
+ };
5032
+ export type CreateHealthMonitorRequest = {
5033
+ name?: string;
4917
5034
  /**
4918
5035
  * Interval between health checks in seconds
4919
5036
  */
4920
- delay: number;
5037
+ delay?: number;
4921
5038
  /**
4922
5039
  * Time in seconds to timeout a health check
4923
5040
  */
4924
- timeout: number;
5041
+ timeout?: number;
5042
+ max_retries?: number;
5043
+ max_retries_down?: number;
4925
5044
  /**
4926
- * Number of retries before marking member as down
5045
+ * Pool this health monitor belongs to
4927
5046
  */
4928
- max_retries: number;
5047
+ pool: string;
5048
+ type: LoadBalancerProtocolEnum;
4929
5049
  };
4930
5050
  export type CreateListener = {
5051
+ name?: string;
5052
+ default_pool?: string | null;
4931
5053
  readonly url: string;
4932
5054
  readonly uuid: string;
4933
5055
  /**
4934
5056
  * Load balancer this listener belongs to
4935
5057
  */
4936
5058
  load_balancer: string;
4937
- name: string;
4938
5059
  protocol: LoadBalancerProtocolEnum;
4939
5060
  /**
4940
5061
  * Port on which the listener listens
4941
5062
  */
4942
5063
  protocol_port: number;
4943
- default_pool?: string | null;
4944
- readonly project: string;
4945
- readonly service_settings: string;
4946
5064
  };
4947
5065
  export type CreateListenerRequest = {
5066
+ name?: string;
5067
+ default_pool?: string | null;
4948
5068
  /**
4949
5069
  * Load balancer this listener belongs to
4950
5070
  */
4951
5071
  load_balancer: string;
4952
- name: string;
4953
5072
  protocol: LoadBalancerProtocolEnum;
4954
5073
  /**
4955
5074
  * Port on which the listener listens
4956
5075
  */
4957
5076
  protocol_port: number;
4958
- default_pool?: string | null;
4959
5077
  };
4960
5078
  export type CreateLoadBalancer = {
4961
5079
  readonly url: string;
4962
5080
  readonly uuid: string;
5081
+ name: string;
4963
5082
  /**
4964
5083
  * OpenStack tenant this load balancer belongs to
4965
5084
  */
4966
5085
  tenant: string;
4967
- name: string;
4968
- vip_subnet_id: string;
4969
- readonly project: string;
4970
- readonly service_settings: string;
5086
+ vip_subnet: string;
4971
5087
  };
4972
5088
  export type CreateLoadBalancerRequest = {
5089
+ name: string;
4973
5090
  /**
4974
5091
  * OpenStack tenant this load balancer belongs to
4975
5092
  */
4976
5093
  tenant: string;
4977
- name: string;
4978
- vip_subnet_id: string;
5094
+ vip_subnet: string;
4979
5095
  };
4980
5096
  export type CreateManualAssignmentRequest = {
4981
5097
  /**
@@ -5004,24 +5120,22 @@ export type CreateManualAssignmentResponse = {
5004
5120
  export type CreatePool = {
5005
5121
  readonly url: string;
5006
5122
  readonly uuid: string;
5123
+ name: string;
5007
5124
  /**
5008
5125
  * Load balancer this pool belongs to
5009
5126
  */
5010
5127
  load_balancer: string;
5011
- name: string;
5012
5128
  protocol: LoadBalancerProtocolEnum;
5013
- lb_algorithm?: LbAlgorithmEnum;
5014
- readonly project: string;
5015
- readonly service_settings: string;
5016
5129
  };
5017
5130
  export type CreatePoolMember = {
5018
5131
  readonly url: string;
5019
5132
  readonly uuid: string;
5133
+ name?: string;
5134
+ weight?: number;
5020
5135
  /**
5021
5136
  * Pool this member belongs to
5022
5137
  */
5023
5138
  pool: string;
5024
- name?: string;
5025
5139
  /**
5026
5140
  * An IPv4 or IPv6 address.
5027
5141
  */
@@ -5030,17 +5144,15 @@ export type CreatePoolMember = {
5030
5144
  * Port on the backend server
5031
5145
  */
5032
5146
  protocol_port: number;
5033
- subnet_id: string;
5034
- weight?: number;
5035
- readonly project: string;
5036
- readonly service_settings: string;
5147
+ subnet: string;
5037
5148
  };
5038
5149
  export type CreatePoolMemberRequest = {
5150
+ name?: string;
5151
+ weight?: number;
5039
5152
  /**
5040
5153
  * Pool this member belongs to
5041
5154
  */
5042
5155
  pool: string;
5043
- name?: string;
5044
5156
  /**
5045
5157
  * An IPv4 or IPv6 address.
5046
5158
  */
@@ -5049,17 +5161,15 @@ export type CreatePoolMemberRequest = {
5049
5161
  * Port on the backend server
5050
5162
  */
5051
5163
  protocol_port: number;
5052
- subnet_id: string;
5053
- weight?: number;
5164
+ subnet: string;
5054
5165
  };
5055
5166
  export type CreatePoolRequest = {
5167
+ name: string;
5056
5168
  /**
5057
5169
  * Load balancer this pool belongs to
5058
5170
  */
5059
5171
  load_balancer: string;
5060
- name: string;
5061
5172
  protocol: LoadBalancerProtocolEnum;
5062
- lb_algorithm?: LbAlgorithmEnum;
5063
5173
  };
5064
5174
  export type CreateRouter = {
5065
5175
  readonly url: string;
@@ -5185,6 +5295,13 @@ export type Customer = {
5185
5295
  * Comma-separated list of notification email addresses
5186
5296
  */
5187
5297
  notification_emails?: string;
5298
+ city?: string;
5299
+ state?: string;
5300
+ parish?: string;
5301
+ street?: string;
5302
+ house_nr?: string;
5303
+ apartment_nr?: string;
5304
+ household?: string;
5188
5305
  readonly payment_profiles?: Array<PaymentProfile>;
5189
5306
  readonly customer_credit?: number | null;
5190
5307
  readonly customer_unallocated_credit?: number | null;
@@ -5245,6 +5362,7 @@ export type CustomerComponentUsagePolicy = {
5245
5362
  * Fields for saving actions extra data. Keys are name of actions.
5246
5363
  */
5247
5364
  options?: unknown;
5365
+ readonly affected_resources_count: number;
5248
5366
  component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
5249
5367
  };
5250
5368
  export type CustomerComponentUsagePolicyRequest = {
@@ -5347,6 +5465,7 @@ export type CustomerEstimatedCostPolicy = {
5347
5465
  * Fields for saving actions extra data. Keys are name of actions.
5348
5466
  */
5349
5467
  options?: unknown;
5468
+ readonly affected_resources_count: number;
5350
5469
  limit_cost: number;
5351
5470
  period?: PolicyPeriodEnum;
5352
5471
  readonly period_name: string;
@@ -5546,6 +5665,13 @@ export type CustomerRequest = {
5546
5665
  * Comma-separated list of notification email addresses
5547
5666
  */
5548
5667
  notification_emails?: string;
5668
+ city?: string;
5669
+ state?: string;
5670
+ parish?: string;
5671
+ street?: string;
5672
+ house_nr?: string;
5673
+ apartment_nr?: string;
5674
+ household?: string;
5549
5675
  };
5550
5676
  export type CustomerServiceAccount = {
5551
5677
  readonly url: string;
@@ -6293,7 +6419,7 @@ export type DryRunRequest = {
6293
6419
  };
6294
6420
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6295
6421
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
6296
- export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
6422
+ export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
6297
6423
  export type EligibilityCheck = {
6298
6424
  is_eligible: boolean;
6299
6425
  restrictions: Array<string>;
@@ -6365,7 +6491,7 @@ export type EventMetadataResponse = {
6365
6491
  * Map of event group keys to lists of event type enums from EventType
6366
6492
  */
6367
6493
  event_groups: {
6368
- [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
6494
+ [key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
6369
6495
  };
6370
6496
  };
6371
6497
  export type EventStats = {
@@ -6444,7 +6570,7 @@ export type EventSubscriptionRequest = {
6444
6570
  */
6445
6571
  observable_objects?: unknown;
6446
6572
  };
6447
- export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
6573
+ export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
6448
6574
  export type ExecuteActionErrorResponse = {
6449
6575
  error: string;
6450
6576
  };
@@ -6925,6 +7051,12 @@ export type FlavorResponse = {
6925
7051
  */
6926
7052
  disk: number;
6927
7053
  };
7054
+ export type ForceAcceptPoolRequest = {
7055
+ override_reason: string;
7056
+ };
7057
+ export type ForceUnblockRequest = {
7058
+ override_reason: string;
7059
+ };
6928
7060
  export type FreeipaProfile = {
6929
7061
  readonly uuid: string;
6930
7062
  /**
@@ -6958,7 +7090,7 @@ export type FreeipaProfileRequest = {
6958
7090
  agreement_date?: string;
6959
7091
  };
6960
7092
  export type FrequencyEnum = 'weekly' | 'biweekly' | 'monthly';
6961
- export type GenderEnum = 0 | 1 | 2 | 9;
7093
+ export type GenderEnum = 'male' | 'female' | 'unknown';
6962
7094
  export type GenerateAssignmentsRequest = {
6963
7095
  /**
6964
7096
  * Specific proposal UUIDs to generate assignments for. If empty, generates for all submitted proposals needing reviewers.
@@ -7141,6 +7273,14 @@ export type GroupInvitation = {
7141
7273
  * Custom description text displayed to users viewing this invitation.
7142
7274
  */
7143
7275
  custom_text?: string;
7276
+ /**
7277
+ * Allow users to submit multiple permission requests for this invitation.
7278
+ */
7279
+ allow_multiple_requests?: boolean;
7280
+ /**
7281
+ * Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
7282
+ */
7283
+ allow_custom_project_details?: boolean;
7144
7284
  };
7145
7285
  export type GroupInvitationRequest = {
7146
7286
  /**
@@ -7181,6 +7321,14 @@ export type GroupInvitationRequest = {
7181
7321
  * Custom description text displayed to users viewing this invitation.
7182
7322
  */
7183
7323
  custom_text?: string;
7324
+ /**
7325
+ * Allow users to submit multiple permission requests for this invitation.
7326
+ */
7327
+ allow_multiple_requests?: boolean;
7328
+ /**
7329
+ * Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
7330
+ */
7331
+ allow_custom_project_details?: boolean;
7184
7332
  };
7185
7333
  export type GroupInvitationUpdate = {
7186
7334
  /**
@@ -7221,6 +7369,14 @@ export type GroupInvitationUpdate = {
7221
7369
  * Custom description text displayed to users viewing this invitation.
7222
7370
  */
7223
7371
  custom_text?: string;
7372
+ /**
7373
+ * Allow users to submit multiple permission requests for this invitation.
7374
+ */
7375
+ allow_multiple_requests?: boolean;
7376
+ /**
7377
+ * Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
7378
+ */
7379
+ allow_custom_project_details?: boolean;
7224
7380
  };
7225
7381
  export type GroupInvitationUpdateRequest = {
7226
7382
  /**
@@ -7261,6 +7417,14 @@ export type GroupInvitationUpdateRequest = {
7261
7417
  * Custom description text displayed to users viewing this invitation.
7262
7418
  */
7263
7419
  custom_text?: string;
7420
+ /**
7421
+ * Allow users to submit multiple permission requests for this invitation.
7422
+ */
7423
+ allow_multiple_requests?: boolean;
7424
+ /**
7425
+ * Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
7426
+ */
7427
+ allow_custom_project_details?: boolean;
7264
7428
  };
7265
7429
  export type GrowthPeriodEnum = 'weekly' | 'monthly';
7266
7430
  export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
@@ -7291,6 +7455,9 @@ export type IsdUserCount = {
7291
7455
  stale_user_count: number;
7292
7456
  oldest_sync: string | null;
7293
7457
  };
7458
+ export type IdentityBridgeAllowedFields = {
7459
+ allowed_fields: Array<string>;
7460
+ };
7294
7461
  export type IdentityBridgeRemoveRequest = {
7295
7462
  /**
7296
7463
  * CUID / username of the user to remove from the ISD.
@@ -8386,7 +8553,6 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8386
8553
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8387
8554
  export type KindEnum = 'default' | 'course' | 'public';
8388
8555
  export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
8389
- export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8390
8556
  export type LexisLink = {
8391
8557
  readonly url: string;
8392
8558
  readonly uuid: string;
@@ -8451,13 +8617,16 @@ export type LinkToInvoice = {
8451
8617
  export type LinkToInvoiceRequest = {
8452
8618
  invoice: string;
8453
8619
  };
8620
+ export type LoadBalancerAsyncOperationResponse = {
8621
+ /**
8622
+ * Message that execution of the operation was scheduled.
8623
+ */
8624
+ status: string;
8625
+ };
8454
8626
  export type LoadBalancerAttachFloatingIpRequest = {
8455
8627
  floating_ip: string;
8456
8628
  };
8457
8629
  export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8458
- export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8459
- security_groups: Array<string>;
8460
- };
8461
8630
  export type LockStats = {
8462
8631
  /**
8463
8632
  * Total number of locks currently held
@@ -8478,6 +8647,8 @@ export type Logout = {
8478
8647
  */
8479
8648
  readonly logout_url: string;
8480
8649
  };
8650
+ export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
8651
+ export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
8481
8652
  export type MaintenanceActionResponse = {
8482
8653
  /**
8483
8654
  * Response message describing the action result
@@ -8885,7 +9056,7 @@ export type MarketplaceProviderCustomerProject = {
8885
9056
  name?: string;
8886
9057
  description?: string;
8887
9058
  /**
8888
- * The date is inclusive. Once reached (plus any grace period), all project resources will be scheduled for termination.
9059
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
8889
9060
  */
8890
9061
  end_date?: string | null;
8891
9062
  readonly resources_count?: number;
@@ -8923,9 +9094,9 @@ export type MarketplaceServiceProviderUser = {
8923
9094
  is_active?: boolean;
8924
9095
  job_title?: string;
8925
9096
  /**
8926
- * ISO 5218 gender code
9097
+ * User's gender (male, female, or unknown)
8927
9098
  */
8928
- gender?: GenderEnum | NullEnum | null;
9099
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
8929
9100
  /**
8930
9101
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
8931
9102
  */
@@ -9112,6 +9283,10 @@ export type MergedPluginOptions = {
9112
9283
  * Default limit for snapshot size in GB
9113
9284
  */
9114
9285
  snapshot_size_limit_gb?: number;
9286
+ /**
9287
+ * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9288
+ */
9289
+ lbaas_enabled?: boolean;
9115
9290
  /**
9116
9291
  * HEAppE cluster id
9117
9292
  */
@@ -9410,6 +9585,10 @@ export type MergedPluginOptionsRequest = {
9410
9585
  * Default limit for snapshot size in GB
9411
9586
  */
9412
9587
  snapshot_size_limit_gb?: number;
9588
+ /**
9589
+ * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9590
+ */
9591
+ lbaas_enabled?: boolean;
9413
9592
  /**
9414
9593
  * HEAppE cluster id
9415
9594
  */
@@ -9911,11 +10090,14 @@ export type Message = {
9911
10090
  readonly uuid: string;
9912
10091
  readonly thread: string;
9913
10092
  role: MessageRoleEnum;
9914
- content: string;
10093
+ content?: string;
10094
+ readonly content_display: string;
9915
10095
  readonly tool_calls: unknown;
9916
10096
  readonly sequence_index: number;
9917
10097
  readonly replaces: string | null;
9918
10098
  readonly created: string;
10099
+ readonly input_tokens: number | null;
10100
+ readonly output_tokens: number | null;
9919
10101
  readonly is_flagged: boolean;
9920
10102
  severity: InjectionSeverityEnum;
9921
10103
  readonly injection_categories: unknown;
@@ -10478,6 +10660,8 @@ export type NestedPlanComponent = {
10478
10660
  * Discount rate in percentage.
10479
10661
  */
10480
10662
  discount_rate?: number | null;
10663
+ readonly discounted_price?: string | null;
10664
+ readonly discount_description?: string | null;
10481
10665
  };
10482
10666
  export type NestedPlanComponentRequest = {
10483
10667
  amount?: number;
@@ -10967,6 +11151,7 @@ export type Offering = {
10967
11151
  * Returns 'limit_only', 'usage_only', or 'mixed'.
10968
11152
  */
10969
11153
  readonly billing_type_classification?: string;
11154
+ readonly effective_available_limits?: Array<string>;
10970
11155
  compliance_checklist?: string | null;
10971
11156
  readonly user_has_consent?: boolean;
10972
11157
  readonly is_accessible?: boolean;
@@ -11018,6 +11203,22 @@ export type OfferingComponent = {
11018
11203
  overage_component?: string | null;
11019
11204
  min_prepaid_duration?: number | null;
11020
11205
  max_prepaid_duration?: number | null;
11206
+ /**
11207
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11208
+ */
11209
+ prepaid_duration_step?: number | null;
11210
+ /**
11211
+ * Minimum number of months allowed for a renewal.
11212
+ */
11213
+ min_renewal_duration?: number | null;
11214
+ /**
11215
+ * Maximum number of months allowed for a renewal.
11216
+ */
11217
+ max_renewal_duration?: number | null;
11218
+ /**
11219
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11220
+ */
11221
+ renewal_duration_step?: number | null;
11021
11222
  };
11022
11223
  export type OfferingComponentLimitRequest = {
11023
11224
  /**
@@ -11064,6 +11265,22 @@ export type OfferingComponentRequest = {
11064
11265
  overage_component?: string | null;
11065
11266
  min_prepaid_duration?: number | null;
11066
11267
  max_prepaid_duration?: number | null;
11268
+ /**
11269
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
11270
+ */
11271
+ prepaid_duration_step?: number | null;
11272
+ /**
11273
+ * Minimum number of months allowed for a renewal.
11274
+ */
11275
+ min_renewal_duration?: number | null;
11276
+ /**
11277
+ * Maximum number of months allowed for a renewal.
11278
+ */
11279
+ max_renewal_duration?: number | null;
11280
+ /**
11281
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11282
+ */
11283
+ renewal_duration_step?: number | null;
11067
11284
  };
11068
11285
  export type OfferingComponentStat = {
11069
11286
  readonly period: string;
@@ -11187,6 +11404,7 @@ export type OfferingEstimatedCostPolicy = {
11187
11404
  * Fields for saving actions extra data. Keys are name of actions.
11188
11405
  */
11189
11406
  options?: unknown;
11407
+ readonly affected_resources_count: number;
11190
11408
  limit_cost: number;
11191
11409
  period?: PolicyPeriodEnum;
11192
11410
  readonly period_name: string;
@@ -11813,6 +12031,14 @@ export type OfferingSoftwareCatalogRequest = {
11813
12031
  partition?: string | null;
11814
12032
  };
11815
12033
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
12034
+ export type OfferingStateCounter = {
12035
+ state: string;
12036
+ count: number;
12037
+ };
12038
+ export type OfferingStateCounters = {
12039
+ resources: Array<OfferingStateCounter>;
12040
+ users: Array<OfferingStateCounter>;
12041
+ };
11816
12042
  export type OfferingStats = {
11817
12043
  /**
11818
12044
  * Number of resources for the offering
@@ -11936,6 +12162,7 @@ export type OfferingUsagePolicy = {
11936
12162
  * Fields for saving actions extra data. Keys are name of actions.
11937
12163
  */
11938
12164
  options?: unknown;
12165
+ readonly affected_resources_count: number;
11939
12166
  organization_groups?: Array<string>;
11940
12167
  /**
11941
12168
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -11988,9 +12215,9 @@ export type OfferingUser = {
11988
12215
  */
11989
12216
  readonly user_affiliations?: unknown;
11990
12217
  /**
11991
- * ISO 5218 gender code
12218
+ * User's gender (male, female, or unknown)
11992
12219
  */
11993
- user_gender?: GenderEnum | NullEnum | null;
12220
+ user_gender?: GenderEnum | BlankEnum | NullEnum | null;
11994
12221
  /**
11995
12222
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
11996
12223
  */
@@ -13236,8 +13463,8 @@ export type OpenStackLoadBalancer = {
13236
13463
  * An IPv4 or IPv6 address.
13237
13464
  */
13238
13465
  vip_address?: string;
13239
- readonly vip_subnet_id?: string;
13240
- readonly vip_port_id?: string;
13466
+ readonly vip_subnet?: string | null;
13467
+ readonly vip_port?: string | null;
13241
13468
  /**
13242
13469
  * Floating IP attached to the VIP port
13243
13470
  */
@@ -13259,26 +13486,6 @@ export type OpenStackLoadBalancer = {
13259
13486
  readonly is_usage_based?: boolean | null;
13260
13487
  readonly is_limit_based?: boolean | null;
13261
13488
  };
13262
- export type OpenStackLoadBalancerRequest = {
13263
- name: string;
13264
- description?: string;
13265
- service_settings: string;
13266
- project: string;
13267
- error_message?: string;
13268
- error_traceback?: string;
13269
- /**
13270
- * Load balancer ID in Octavia
13271
- */
13272
- backend_id?: string | null;
13273
- /**
13274
- * OpenStack tenant this load balancer belongs to
13275
- */
13276
- tenant: string;
13277
- /**
13278
- * Floating IP attached to the VIP port
13279
- */
13280
- attached_floating_ip?: string | null;
13281
- };
13282
13489
  export type OpenStackNestedFloatingIp = {
13283
13490
  readonly url?: string;
13284
13491
  readonly uuid?: string;
@@ -13618,10 +13825,7 @@ export type OpenStackPoolMember = {
13618
13825
  */
13619
13826
  address?: string;
13620
13827
  readonly protocol_port?: number;
13621
- /**
13622
- * Subnet ID for the member (required for creation)
13623
- */
13624
- subnet_id?: string;
13828
+ readonly subnet?: string | null;
13625
13829
  readonly weight?: number;
13626
13830
  readonly provisioning_status?: string;
13627
13831
  readonly operating_status?: string;
@@ -13639,22 +13843,6 @@ export type OpenStackPoolMember = {
13639
13843
  readonly is_usage_based?: boolean | null;
13640
13844
  readonly is_limit_based?: boolean | null;
13641
13845
  };
13642
- export type OpenStackPoolRequest = {
13643
- name: string;
13644
- description?: string;
13645
- service_settings: string;
13646
- project: string;
13647
- error_message?: string;
13648
- error_traceback?: string;
13649
- /**
13650
- * Pool ID in Octavia
13651
- */
13652
- backend_id?: string | null;
13653
- /**
13654
- * Load balancer this pool belongs to
13655
- */
13656
- load_balancer: string;
13657
- };
13658
13846
  export type OpenStackPort = {
13659
13847
  readonly url?: string;
13660
13848
  readonly uuid?: string;
@@ -15404,6 +15592,13 @@ export type PatchedCustomerRequest = {
15404
15592
  * Comma-separated list of notification email addresses
15405
15593
  */
15406
15594
  notification_emails?: string;
15595
+ city?: string;
15596
+ state?: string;
15597
+ parish?: string;
15598
+ street?: string;
15599
+ house_nr?: string;
15600
+ apartment_nr?: string;
15601
+ household?: string;
15407
15602
  };
15408
15603
  export type PatchedCustomerServiceAccountRequest = {
15409
15604
  username?: string;
@@ -15473,6 +15668,14 @@ export type PatchedGroupInvitationUpdateRequest = {
15473
15668
  * Custom description text displayed to users viewing this invitation.
15474
15669
  */
15475
15670
  custom_text?: string;
15671
+ /**
15672
+ * Allow users to submit multiple permission requests for this invitation.
15673
+ */
15674
+ allow_multiple_requests?: boolean;
15675
+ /**
15676
+ * Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
15677
+ */
15678
+ allow_custom_project_details?: boolean;
15476
15679
  };
15477
15680
  export type PatchedIdentityProviderRequest = {
15478
15681
  provider?: string;
@@ -15948,46 +16151,10 @@ export type PatchedOpenStackInstanceRequest = {
15948
16151
  name?: string;
15949
16152
  description?: string;
15950
16153
  };
15951
- export type PatchedOpenStackLoadBalancerRequest = {
15952
- name?: string;
15953
- description?: string;
15954
- service_settings?: string;
15955
- project?: string;
15956
- error_message?: string;
15957
- error_traceback?: string;
15958
- /**
15959
- * Load balancer ID in Octavia
15960
- */
15961
- backend_id?: string | null;
15962
- /**
15963
- * OpenStack tenant this load balancer belongs to
15964
- */
15965
- tenant?: string;
15966
- /**
15967
- * Floating IP attached to the VIP port
15968
- */
15969
- attached_floating_ip?: string | null;
15970
- };
15971
16154
  export type PatchedOpenStackNetworkRequest = {
15972
16155
  name?: string;
15973
16156
  description?: string;
15974
16157
  };
15975
- export type PatchedOpenStackPoolRequest = {
15976
- name?: string;
15977
- description?: string;
15978
- service_settings?: string;
15979
- project?: string;
15980
- error_message?: string;
15981
- error_traceback?: string;
15982
- /**
15983
- * Pool ID in Octavia
15984
- */
15985
- backend_id?: string | null;
15986
- /**
15987
- * Load balancer this pool belongs to
15988
- */
15989
- load_balancer?: string;
15990
- };
15991
16158
  export type PatchedOpenStackPortRequest = {
15992
16159
  name?: string;
15993
16160
  description?: string;
@@ -16850,18 +17017,31 @@ export type PatchedTemplateRequest = {
16850
17017
  };
16851
17018
  export type PatchedUpdateHealthMonitorRequest = {
16852
17019
  name?: string;
17020
+ /**
17021
+ * Interval between health checks in seconds
17022
+ */
16853
17023
  delay?: number;
17024
+ /**
17025
+ * Time in seconds to timeout a health check
17026
+ */
16854
17027
  timeout?: number;
16855
17028
  max_retries?: number;
17029
+ max_retries_down?: number;
16856
17030
  };
16857
17031
  export type PatchedUpdateListenerRequest = {
16858
17032
  name?: string;
16859
17033
  default_pool?: string | null;
16860
17034
  };
17035
+ export type PatchedUpdateLoadBalancerRequest = {
17036
+ name?: string;
17037
+ };
16861
17038
  export type PatchedUpdatePoolMemberRequest = {
16862
17039
  name?: string;
16863
17040
  weight?: number;
16864
17041
  };
17042
+ export type PatchedUpdatePoolRequest = {
17043
+ name?: string;
17044
+ };
16865
17045
  export type PatchedUserAgreementRequest = {
16866
17046
  content?: string;
16867
17047
  agreement_type?: AgreementTypeEnum;
@@ -16927,9 +17107,9 @@ export type PatchedUserRequest = {
16927
17107
  birth_date?: string | null;
16928
17108
  image?: (Blob | File) | null;
16929
17109
  /**
16930
- * ISO 5218 gender code
17110
+ * User's gender (male, female, or unknown)
16931
17111
  */
16932
- gender?: GenderEnum | NullEnum | null;
17112
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
16933
17113
  /**
16934
17114
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
16935
17115
  */
@@ -16965,6 +17145,10 @@ export type PatchedUserRequest = {
16965
17145
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
16966
17146
  */
16967
17147
  managed_isds?: unknown;
17148
+ /**
17149
+ * Reason why the user was deactivated. Visible to staff and support.
17150
+ */
17151
+ deactivation_reason?: string;
16968
17152
  };
16969
17153
  export type PatchedVmwareVirtualMachineRequest = {
16970
17154
  description?: string;
@@ -17085,13 +17269,13 @@ export type PermissionMetadataResponse = {
17085
17269
  * Map of permission keys to permission enum values from PermissionEnum
17086
17270
  */
17087
17271
  permissions: {
17088
- [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.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | '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.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';
17272
+ [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.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | '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.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' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
17089
17273
  };
17090
17274
  /**
17091
17275
  * Map of resource types to create permission enums
17092
17276
  */
17093
17277
  permission_map: {
17094
- [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.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | '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.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';
17278
+ [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.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | '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.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' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
17095
17279
  };
17096
17280
  /**
17097
17281
  * Grouped permission descriptions for UI
@@ -17126,6 +17310,14 @@ export type PermissionRequest = {
17126
17310
  readonly role_name: string;
17127
17311
  readonly role_description: string;
17128
17312
  readonly project_name_template: string;
17313
+ /**
17314
+ * Custom project name provided by user during invitation acceptance.
17315
+ */
17316
+ project_name?: string;
17317
+ /**
17318
+ * Custom project description provided by user during invitation acceptance.
17319
+ */
17320
+ project_description?: string;
17129
17321
  };
17130
17322
  export type PersonIdentifierFieldsResponse = {
17131
17323
  /**
@@ -17139,6 +17331,37 @@ export type PersonIdentifierFieldsResponse = {
17139
17331
  [key: string]: unknown;
17140
17332
  };
17141
17333
  };
17334
+ export type PersonalAccessToken = {
17335
+ uuid: string;
17336
+ name: string;
17337
+ token_prefix: string;
17338
+ scopes: Array<string>;
17339
+ expires_at: string;
17340
+ is_active: boolean;
17341
+ last_used_at: string;
17342
+ /**
17343
+ * An IPv4 or IPv6 address.
17344
+ */
17345
+ last_used_ip: string;
17346
+ use_count: number;
17347
+ created: string;
17348
+ };
17349
+ export type PersonalAccessTokenCreateRequest = {
17350
+ name: string;
17351
+ scopes: Array<string>;
17352
+ expires_at: string;
17353
+ };
17354
+ export type PersonalAccessTokenCreated = {
17355
+ uuid: string;
17356
+ name: string;
17357
+ /**
17358
+ * Plaintext token — shown only once.
17359
+ */
17360
+ token: string;
17361
+ scopes: Array<string>;
17362
+ expires_at: string;
17363
+ created: string;
17364
+ };
17142
17365
  export type PlanComponent = {
17143
17366
  readonly offering_uuid: string;
17144
17367
  readonly offering_name: string;
@@ -17356,6 +17579,10 @@ export type Project = {
17356
17579
  */
17357
17580
  end_date?: string | null;
17358
17581
  readonly end_date_requested_by?: string | null;
17582
+ /**
17583
+ * Timestamp of the last end_date change.
17584
+ */
17585
+ readonly end_date_updated_at?: string | null;
17359
17586
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17360
17587
  /**
17361
17588
  * Human-readable label for the OECD FOS 2007 classification code
@@ -17388,10 +17615,14 @@ export type Project = {
17388
17615
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17389
17616
  */
17390
17617
  grace_period_days?: number | null;
17618
+ /**
17619
+ * Grace period days set at the customer (organization) level. Used as default when project-level is not set.
17620
+ */
17621
+ readonly customer_grace_period_days?: number | null;
17391
17622
  /**
17392
17623
  * Effective end date including grace period. After this date, project resources will be terminated.
17393
17624
  */
17394
- readonly effective_end_date?: string;
17625
+ readonly effective_end_date?: string | null;
17395
17626
  /**
17396
17627
  * True if the project is past its end date but still within the grace period.
17397
17628
  */
@@ -17456,6 +17687,16 @@ export type ProjectClassificationSummary = {
17456
17687
  */
17457
17688
  industry_projects: number;
17458
17689
  };
17690
+ export type ProjectCreationTrend = {
17691
+ /**
17692
+ * Month in YYYY-MM format
17693
+ */
17694
+ month: string;
17695
+ /**
17696
+ * Number of items created
17697
+ */
17698
+ count: number;
17699
+ };
17459
17700
  export type ProjectCredit = {
17460
17701
  readonly uuid: string;
17461
17702
  readonly url: string;
@@ -17546,6 +17787,61 @@ export type ProjectDigestPreviewResponse = {
17546
17787
  html_body: string;
17547
17788
  text_body: string;
17548
17789
  };
17790
+ export type ProjectEndDateChangeRequest = {
17791
+ readonly url: string;
17792
+ readonly uuid: string;
17793
+ readonly state: string;
17794
+ project: string;
17795
+ readonly project_uuid: string;
17796
+ readonly project_name: string;
17797
+ readonly customer_uuid: string;
17798
+ readonly customer_name: string;
17799
+ /**
17800
+ * The requested new end date for the project
17801
+ */
17802
+ requested_end_date: string;
17803
+ /**
17804
+ * Optional comment from the requester
17805
+ */
17806
+ comment?: string | null;
17807
+ readonly created: string;
17808
+ readonly created_by_uuid: string | null;
17809
+ readonly created_by_full_name: string | null;
17810
+ /**
17811
+ * Timestamp when the review was completed
17812
+ */
17813
+ readonly reviewed_at: string | null;
17814
+ readonly reviewed_by_uuid: string | null;
17815
+ readonly reviewed_by_full_name: string | null;
17816
+ /**
17817
+ * Optional comment provided during review
17818
+ */
17819
+ review_comment?: string | null;
17820
+ };
17821
+ export type ProjectEndDateChangeRequestCreate = {
17822
+ project: string;
17823
+ /**
17824
+ * The requested new end date for the project
17825
+ */
17826
+ requested_end_date: string;
17827
+ /**
17828
+ * Optional comment from the requester
17829
+ */
17830
+ comment?: string | null;
17831
+ readonly uuid: string;
17832
+ readonly state: string;
17833
+ };
17834
+ export type ProjectEndDateChangeRequestCreateRequest = {
17835
+ project: string;
17836
+ /**
17837
+ * The requested new end date for the project
17838
+ */
17839
+ requested_end_date: string;
17840
+ /**
17841
+ * Optional comment from the requester
17842
+ */
17843
+ comment?: string | null;
17844
+ };
17549
17845
  export type ProjectEstimatedCostPolicy = {
17550
17846
  readonly uuid: string;
17551
17847
  readonly url: string;
@@ -17562,6 +17858,7 @@ export type ProjectEstimatedCostPolicy = {
17562
17858
  * Fields for saving actions extra data. Keys are name of actions.
17563
17859
  */
17564
17860
  options?: unknown;
17861
+ readonly affected_resources_count: number;
17565
17862
  limit_cost: number;
17566
17863
  period?: PolicyPeriodEnum;
17567
17864
  readonly period_name: string;
@@ -18422,6 +18719,7 @@ export type ProviderOfferingDetails = {
18422
18719
  * Returns 'limit_only', 'usage_only', or 'mixed'.
18423
18720
  */
18424
18721
  readonly billing_type_classification?: string;
18722
+ readonly effective_available_limits?: Array<string>;
18425
18723
  compliance_checklist?: string | null;
18426
18724
  readonly integration_status?: Array<IntegrationStatus> | null;
18427
18725
  readonly google_calendar_is_public?: boolean | null;
@@ -18824,6 +19122,7 @@ export type PublicOfferingDetails = {
18824
19122
  * Returns 'limit_only', 'usage_only', or 'mixed'.
18825
19123
  */
18826
19124
  readonly billing_type_classification?: string;
19125
+ readonly effective_available_limits?: Array<string>;
18827
19126
  compliance_checklist?: string | null;
18828
19127
  readonly user_has_consent?: boolean;
18829
19128
  readonly is_accessible?: boolean;
@@ -20620,14 +20919,14 @@ export type Resource = {
20620
20919
  readonly project_name?: string;
20621
20920
  readonly project_description?: string;
20622
20921
  /**
20623
- * The date is inclusive. Once reached (plus any grace period), all project resources will be scheduled for termination.
20922
+ * The date is inclusive. Once reached, all project resource will be scheduled for termination.
20624
20923
  */
20625
20924
  readonly project_end_date?: string | null;
20626
20925
  /**
20627
20926
  * Effective project end date including grace period. After this date, resources will be terminated.
20628
20927
  */
20629
- readonly project_effective_end_date?: string;
20630
- readonly project_end_date_requested_by?: string;
20928
+ readonly project_effective_end_date?: string | null;
20929
+ readonly project_end_date_requested_by?: string | null;
20631
20930
  readonly customer_uuid?: string;
20632
20931
  readonly customer_name?: string;
20633
20932
  readonly offering_slug?: string;
@@ -20701,15 +21000,40 @@ export type ResourceBackendIdRequest = {
20701
21000
  export type ResourceBackendMetadataRequest = {
20702
21001
  backend_metadata: unknown;
20703
21002
  };
21003
+ export type ResourceDemandStat = {
21004
+ readonly offering_uuid: string;
21005
+ readonly offering_name: string;
21006
+ readonly offering_type: string;
21007
+ readonly provider_name: string;
21008
+ readonly proposal_count: number;
21009
+ readonly request_count: number;
21010
+ readonly approved_count: number;
21011
+ readonly pending_count: number;
21012
+ readonly total_requested_limits: {
21013
+ [key: string]: number;
21014
+ };
21015
+ readonly total_approved_limits: {
21016
+ [key: string]: number;
21017
+ };
21018
+ };
20704
21019
  export type ResourceDownscaledRequest = {
20705
21020
  downscaled?: boolean;
20706
21021
  };
21022
+ export type ResourceEffectiveIdRequest = {
21023
+ effective_id?: string;
21024
+ };
20707
21025
  export type ResourceEndDateByProviderRequest = {
20708
21026
  /**
20709
21027
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
20710
21028
  */
20711
21029
  end_date?: string | null;
20712
21030
  };
21031
+ export type ResourceEndDateRequest = {
21032
+ /**
21033
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
21034
+ */
21035
+ end_date?: string | null;
21036
+ };
20713
21037
  export type ResourceKeycloakScopesRequest = {
20714
21038
  /**
20715
21039
  * Pre-configured scope options for this resource.
@@ -21134,6 +21458,19 @@ export type ReviewCommentRequest = {
21134
21458
  */
21135
21459
  comment?: string;
21136
21460
  };
21461
+ export type ReviewProgressStat = {
21462
+ readonly reviewer_uuid: string;
21463
+ readonly reviewer_name: string;
21464
+ readonly reviewer_email: string;
21465
+ readonly total_assigned: number;
21466
+ readonly pending: number;
21467
+ readonly in_progress: number;
21468
+ readonly completed: number;
21469
+ readonly declined: number;
21470
+ readonly average_score: number | null;
21471
+ readonly average_review_time_days: number | null;
21472
+ readonly completion_rate: number;
21473
+ };
21137
21474
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
21138
21475
  export type ReviewSubmitRequest = {
21139
21476
  summary_score?: number;
@@ -22803,6 +23140,7 @@ export type SlurmPeriodicUsagePolicy = {
22803
23140
  * Fields for saving actions extra data. Keys are name of actions.
22804
23141
  */
22805
23142
  options?: unknown;
23143
+ readonly affected_resources_count: number;
22806
23144
  organization_groups?: Array<string>;
22807
23145
  /**
22808
23146
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -23172,6 +23510,7 @@ export type SoftwarePackage = {
23172
23510
  */
23173
23511
  is_extension?: boolean;
23174
23512
  readonly parent_softwares: Array<NestedParentSoftware>;
23513
+ readonly extensions: Array<NestedParentSoftware>;
23175
23514
  readonly catalog_name: string;
23176
23515
  readonly catalog_version: string;
23177
23516
  readonly catalog_type: string;
@@ -23322,6 +23661,16 @@ export type SubNetMappingRequest = {
23322
23661
  src_cidr: string;
23323
23662
  dst_cidr: string;
23324
23663
  };
23664
+ export type SubmitRequestRequest = {
23665
+ /**
23666
+ * Custom project name to use instead of auto-generated one
23667
+ */
23668
+ project_name?: string;
23669
+ /**
23670
+ * Custom project description
23671
+ */
23672
+ project_description?: string;
23673
+ };
23325
23674
  export type SubmitRequestResponse = {
23326
23675
  /**
23327
23676
  * UUID of the created permission request
@@ -23380,6 +23729,12 @@ export type SupportUser = {
23380
23729
  export type SupportedCountriesResponse = {
23381
23730
  supported_countries: Array<string>;
23382
23731
  };
23732
+ export type SwitchBillingModeRequest = {
23733
+ /**
23734
+ * Switch all builtin components to monthly (LIMIT), prepaid (ONE_TIME + is_prepaid), or usage-based billing.
23735
+ */
23736
+ billing_mode: BillingModeEnum;
23737
+ };
23383
23738
  export type SyncFromArrowRequestRequest = {
23384
23739
  settings_uuid?: string;
23385
23740
  };
@@ -23709,6 +24064,11 @@ export type ThreadSession = {
23709
24064
  readonly flags?: unknown;
23710
24065
  is_archived?: boolean;
23711
24066
  readonly message_count?: number;
24067
+ readonly input_tokens?: number | null;
24068
+ readonly output_tokens?: number | null;
24069
+ readonly total_tokens?: number | null;
24070
+ readonly title_gen_input_tokens?: number | null;
24071
+ readonly title_gen_output_tokens?: number | null;
23712
24072
  readonly is_flagged?: boolean;
23713
24073
  max_severity?: InjectionSeverityEnum;
23714
24074
  readonly user_username?: string;
@@ -23847,6 +24207,24 @@ export type TopQueue = {
23847
24207
  */
23848
24208
  readonly consumers: number;
23849
24209
  };
24210
+ export type TopServiceProviderByResources = {
24211
+ /**
24212
+ * UUID of the service provider
24213
+ */
24214
+ customer_uuid: string;
24215
+ /**
24216
+ * Name of the service provider
24217
+ */
24218
+ customer_name: string;
24219
+ /**
24220
+ * Number of active resources
24221
+ */
24222
+ resources_count: number;
24223
+ /**
24224
+ * Number of distinct projects
24225
+ */
24226
+ projects_count: number;
24227
+ };
23850
24228
  export type TotalCustomerCost = {
23851
24229
  readonly total: number;
23852
24230
  readonly price: number;
@@ -23906,16 +24284,32 @@ export type UpdateActionsResponse = {
23906
24284
  provider_action_type?: string | null;
23907
24285
  };
23908
24286
  export type UpdateHealthMonitor = {
24287
+ readonly url: string;
24288
+ readonly uuid: string;
23909
24289
  name?: string;
24290
+ /**
24291
+ * Interval between health checks in seconds
24292
+ */
23910
24293
  delay?: number;
24294
+ /**
24295
+ * Time in seconds to timeout a health check
24296
+ */
23911
24297
  timeout?: number;
23912
24298
  max_retries?: number;
24299
+ max_retries_down?: number;
23913
24300
  };
23914
24301
  export type UpdateHealthMonitorRequest = {
23915
24302
  name?: string;
24303
+ /**
24304
+ * Interval between health checks in seconds
24305
+ */
23916
24306
  delay?: number;
24307
+ /**
24308
+ * Time in seconds to timeout a health check
24309
+ */
23917
24310
  timeout?: number;
23918
24311
  max_retries?: number;
24312
+ max_retries_down?: number;
23919
24313
  };
23920
24314
  export type UpdateListener = {
23921
24315
  name?: string;
@@ -23925,6 +24319,14 @@ export type UpdateListenerRequest = {
23925
24319
  name?: string;
23926
24320
  default_pool?: string | null;
23927
24321
  };
24322
+ export type UpdateLoadBalancer = {
24323
+ readonly url: string;
24324
+ readonly uuid: string;
24325
+ name: string;
24326
+ };
24327
+ export type UpdateLoadBalancerRequest = {
24328
+ name: string;
24329
+ };
23928
24330
  export type UpdateOfferingComponentRequest = {
23929
24331
  uuid: string;
23930
24332
  billing_type: BillingTypeEnum;
@@ -23957,8 +24359,31 @@ export type UpdateOfferingComponentRequest = {
23957
24359
  overage_component?: string | null;
23958
24360
  min_prepaid_duration?: number | null;
23959
24361
  max_prepaid_duration?: number | null;
24362
+ /**
24363
+ * Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
24364
+ */
24365
+ prepaid_duration_step?: number | null;
24366
+ /**
24367
+ * Minimum number of months allowed for a renewal.
24368
+ */
24369
+ min_renewal_duration?: number | null;
24370
+ /**
24371
+ * Maximum number of months allowed for a renewal.
24372
+ */
24373
+ max_renewal_duration?: number | null;
24374
+ /**
24375
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
24376
+ */
24377
+ renewal_duration_step?: number | null;
24378
+ };
24379
+ export type UpdatePool = {
24380
+ readonly url: string;
24381
+ readonly uuid: string;
24382
+ name: string;
23960
24383
  };
23961
24384
  export type UpdatePoolMember = {
24385
+ readonly url: string;
24386
+ readonly uuid: string;
23962
24387
  name?: string;
23963
24388
  weight?: number;
23964
24389
  };
@@ -23966,6 +24391,9 @@ export type UpdatePoolMemberRequest = {
23966
24391
  name?: string;
23967
24392
  weight?: number;
23968
24393
  };
24394
+ export type UpdatePoolRequest = {
24395
+ name: string;
24396
+ };
23969
24397
  export type UrgencyEnum = 'low' | 'medium' | 'high';
23970
24398
  export type User = {
23971
24399
  readonly url?: string;
@@ -24044,9 +24472,9 @@ export type User = {
24044
24472
  readonly has_usable_password?: boolean;
24045
24473
  readonly ip_address?: string | null;
24046
24474
  /**
24047
- * ISO 5218 gender code
24475
+ * User's gender (male, female, or unknown)
24048
24476
  */
24049
- gender?: GenderEnum | NullEnum | null;
24477
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
24050
24478
  /**
24051
24479
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
24052
24480
  */
@@ -24090,6 +24518,10 @@ export type User = {
24090
24518
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
24091
24519
  */
24092
24520
  readonly active_isds?: unknown;
24521
+ /**
24522
+ * Reason why the user was deactivated. Visible to staff and support.
24523
+ */
24524
+ deactivation_reason?: string;
24093
24525
  };
24094
24526
  export type UserAction = {
24095
24527
  readonly uuid: string;
@@ -24322,6 +24754,16 @@ export type UserLanguageCount = {
24322
24754
  language: string;
24323
24755
  count: number;
24324
24756
  };
24757
+ export type UserNationalityStats = {
24758
+ /**
24759
+ * Nationality code
24760
+ */
24761
+ nationality: string;
24762
+ /**
24763
+ * Number of users
24764
+ */
24765
+ count: number;
24766
+ };
24325
24767
  export type UserOfferingConsent = {
24326
24768
  readonly uuid: string;
24327
24769
  readonly user_uuid: string;
@@ -24431,9 +24873,9 @@ export type UserRequest = {
24431
24873
  birth_date?: string | null;
24432
24874
  image?: (Blob | File) | null;
24433
24875
  /**
24434
- * ISO 5218 gender code
24876
+ * User's gender (male, female, or unknown)
24435
24877
  */
24436
- gender?: GenderEnum | NullEnum | null;
24878
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
24437
24879
  /**
24438
24880
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
24439
24881
  */
@@ -24469,6 +24911,20 @@ export type UserRequest = {
24469
24911
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
24470
24912
  */
24471
24913
  managed_isds?: unknown;
24914
+ /**
24915
+ * Reason why the user was deactivated. Visible to staff and support.
24916
+ */
24917
+ deactivation_reason?: string;
24918
+ };
24919
+ export type UserResidenceCountryStats = {
24920
+ /**
24921
+ * Country of residence code
24922
+ */
24923
+ country_of_residence: string;
24924
+ /**
24925
+ * Number of users
24926
+ */
24927
+ count: number;
24472
24928
  };
24473
24929
  export type UserRoleCreateRequest = {
24474
24930
  role: string;
@@ -25279,6 +25735,13 @@ export type CustomerRequestForm = {
25279
25735
  * Comma-separated list of notification email addresses
25280
25736
  */
25281
25737
  notification_emails?: string;
25738
+ city?: string;
25739
+ state?: string;
25740
+ parish?: string;
25741
+ street?: string;
25742
+ house_nr?: string;
25743
+ apartment_nr?: string;
25744
+ household?: string;
25282
25745
  };
25283
25746
  export type CustomerRequestMultipart = {
25284
25747
  /**
@@ -25356,6 +25819,13 @@ export type CustomerRequestMultipart = {
25356
25819
  * Comma-separated list of notification email addresses
25357
25820
  */
25358
25821
  notification_emails?: string;
25822
+ city?: string;
25823
+ state?: string;
25824
+ parish?: string;
25825
+ street?: string;
25826
+ house_nr?: string;
25827
+ apartment_nr?: string;
25828
+ household?: string;
25359
25829
  };
25360
25830
  export type PatchedCustomerRequestForm = {
25361
25831
  /**
@@ -25433,6 +25903,13 @@ export type PatchedCustomerRequestForm = {
25433
25903
  * Comma-separated list of notification email addresses
25434
25904
  */
25435
25905
  notification_emails?: string;
25906
+ city?: string;
25907
+ state?: string;
25908
+ parish?: string;
25909
+ street?: string;
25910
+ house_nr?: string;
25911
+ apartment_nr?: string;
25912
+ household?: string;
25436
25913
  };
25437
25914
  export type PatchedCustomerRequestMultipart = {
25438
25915
  /**
@@ -25510,6 +25987,13 @@ export type PatchedCustomerRequestMultipart = {
25510
25987
  * Comma-separated list of notification email addresses
25511
25988
  */
25512
25989
  notification_emails?: string;
25990
+ city?: string;
25991
+ state?: string;
25992
+ parish?: string;
25993
+ street?: string;
25994
+ house_nr?: string;
25995
+ apartment_nr?: string;
25996
+ household?: string;
25513
25997
  };
25514
25998
  export type ExternalLinkRequestForm = {
25515
25999
  name: string;
@@ -26108,6 +26592,8 @@ export type ConstanceSettingsRequestForm = {
26108
26592
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26109
26593
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26110
26594
  MARKETPLACE_LANDING_PAGE?: string;
26595
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26596
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26111
26597
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26112
26598
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26113
26599
  TELEMETRY_URL?: string;
@@ -26256,6 +26742,7 @@ export type ConstanceSettingsRequestForm = {
26256
26742
  OIDC_CACHE_TIMEOUT?: number;
26257
26743
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26258
26744
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26745
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
26259
26746
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26260
26747
  OIDC_DEFAULT_LOGOUT_URL?: string;
26261
26748
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -26284,18 +26771,20 @@ export type ConstanceSettingsRequestForm = {
26284
26771
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26285
26772
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26286
26773
  ONBOARDING_BREG_API_URL?: string;
26287
- LLM_CHAT_ENABLED?: boolean;
26288
- LLM_INFERENCES_BACKEND_TYPE?: string;
26289
- LLM_INFERENCES_API_URL?: string;
26290
- LLM_INFERENCES_API_TOKEN?: string;
26291
- LLM_INFERENCES_MODEL?: string;
26292
- LLM_COMPLETION_KWARGS?: string;
26293
- LLM_TOKEN_LIMIT_DAILY?: number;
26294
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26295
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26296
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26297
- LLM_CHAT_HISTORY_LIMIT?: number;
26298
- LLM_INJECTION_ALLOWLIST?: string;
26774
+ AI_ASSISTANT_ENABLED?: boolean;
26775
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26776
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26777
+ AI_ASSISTANT_API_URL?: string;
26778
+ AI_ASSISTANT_API_TOKEN?: string;
26779
+ AI_ASSISTANT_MODEL?: string;
26780
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26781
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26782
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26783
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26784
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26785
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26786
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26787
+ AI_ASSISTANT_NAME?: string;
26299
26788
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26300
26789
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26301
26790
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26335,6 +26824,9 @@ export type ConstanceSettingsRequestForm = {
26335
26824
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26336
26825
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26337
26826
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26827
+ PAT_ENABLED?: boolean;
26828
+ PAT_MAX_LIFETIME_DAYS?: number;
26829
+ PAT_MAX_TOKENS_PER_USER?: number;
26338
26830
  };
26339
26831
  export type ConstanceSettingsRequestMultipart = {
26340
26832
  SITE_NAME?: string;
@@ -26355,6 +26847,8 @@ export type ConstanceSettingsRequestMultipart = {
26355
26847
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26356
26848
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26357
26849
  MARKETPLACE_LANDING_PAGE?: string;
26850
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26851
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26358
26852
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26359
26853
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26360
26854
  TELEMETRY_URL?: string;
@@ -26503,6 +26997,7 @@ export type ConstanceSettingsRequestMultipart = {
26503
26997
  OIDC_CACHE_TIMEOUT?: number;
26504
26998
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26505
26999
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
27000
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
26506
27001
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26507
27002
  OIDC_DEFAULT_LOGOUT_URL?: string;
26508
27003
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -26531,18 +27026,20 @@ export type ConstanceSettingsRequestMultipart = {
26531
27026
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26532
27027
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26533
27028
  ONBOARDING_BREG_API_URL?: string;
26534
- LLM_CHAT_ENABLED?: boolean;
26535
- LLM_INFERENCES_BACKEND_TYPE?: string;
26536
- LLM_INFERENCES_API_URL?: string;
26537
- LLM_INFERENCES_API_TOKEN?: string;
26538
- LLM_INFERENCES_MODEL?: string;
26539
- LLM_COMPLETION_KWARGS?: string;
26540
- LLM_TOKEN_LIMIT_DAILY?: number;
26541
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26542
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26543
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26544
- LLM_CHAT_HISTORY_LIMIT?: number;
26545
- LLM_INJECTION_ALLOWLIST?: string;
27029
+ AI_ASSISTANT_ENABLED?: boolean;
27030
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
27031
+ AI_ASSISTANT_BACKEND_TYPE?: string;
27032
+ AI_ASSISTANT_API_URL?: string;
27033
+ AI_ASSISTANT_API_TOKEN?: string;
27034
+ AI_ASSISTANT_MODEL?: string;
27035
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
27036
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
27037
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
27038
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
27039
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
27040
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
27041
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
27042
+ AI_ASSISTANT_NAME?: string;
26546
27043
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26547
27044
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26548
27045
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26582,6 +27079,9 @@ export type ConstanceSettingsRequestMultipart = {
26582
27079
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26583
27080
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26584
27081
  ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
27082
+ PAT_ENABLED?: boolean;
27083
+ PAT_MAX_LIFETIME_DAYS?: number;
27084
+ PAT_MAX_TOKENS_PER_USER?: number;
26585
27085
  };
26586
27086
  export type PaymentRequestForm = {
26587
27087
  profile: string;
@@ -26697,9 +27197,9 @@ export type UserRequestForm = {
26697
27197
  birth_date?: string | null;
26698
27198
  image?: (Blob | File) | null;
26699
27199
  /**
26700
- * ISO 5218 gender code
27200
+ * User's gender (male, female, or unknown)
26701
27201
  */
26702
- gender?: GenderEnum | NullEnum | null;
27202
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
26703
27203
  /**
26704
27204
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
26705
27205
  */
@@ -26735,6 +27235,10 @@ export type UserRequestForm = {
26735
27235
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
26736
27236
  */
26737
27237
  managed_isds?: unknown;
27238
+ /**
27239
+ * Reason why the user was deactivated. Visible to staff and support.
27240
+ */
27241
+ deactivation_reason?: string;
26738
27242
  };
26739
27243
  export type UserRequestMultipart = {
26740
27244
  /**
@@ -26784,9 +27288,9 @@ export type UserRequestMultipart = {
26784
27288
  birth_date?: string | null;
26785
27289
  image?: (Blob | File) | null;
26786
27290
  /**
26787
- * ISO 5218 gender code
27291
+ * User's gender (male, female, or unknown)
26788
27292
  */
26789
- gender?: GenderEnum | NullEnum | null;
27293
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
26790
27294
  /**
26791
27295
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
26792
27296
  */
@@ -26822,6 +27326,10 @@ export type UserRequestMultipart = {
26822
27326
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
26823
27327
  */
26824
27328
  managed_isds?: unknown;
27329
+ /**
27330
+ * Reason why the user was deactivated. Visible to staff and support.
27331
+ */
27332
+ deactivation_reason?: string;
26825
27333
  };
26826
27334
  export type PatchedUserRequestForm = {
26827
27335
  /**
@@ -26870,9 +27378,9 @@ export type PatchedUserRequestForm = {
26870
27378
  birth_date?: string | null;
26871
27379
  image?: (Blob | File) | null;
26872
27380
  /**
26873
- * ISO 5218 gender code
27381
+ * User's gender (male, female, or unknown)
26874
27382
  */
26875
- gender?: GenderEnum | NullEnum | null;
27383
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
26876
27384
  /**
26877
27385
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
26878
27386
  */
@@ -26908,6 +27416,10 @@ export type PatchedUserRequestForm = {
26908
27416
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
26909
27417
  */
26910
27418
  managed_isds?: unknown;
27419
+ /**
27420
+ * Reason why the user was deactivated. Visible to staff and support.
27421
+ */
27422
+ deactivation_reason?: string;
26911
27423
  };
26912
27424
  export type PatchedUserRequestMultipart = {
26913
27425
  /**
@@ -26956,9 +27468,9 @@ export type PatchedUserRequestMultipart = {
26956
27468
  birth_date?: string | null;
26957
27469
  image?: (Blob | File) | null;
26958
27470
  /**
26959
- * ISO 5218 gender code
27471
+ * User's gender (male, female, or unknown)
26960
27472
  */
26961
- gender?: GenderEnum | NullEnum | null;
27473
+ gender?: GenderEnum | BlankEnum | NullEnum | null;
26962
27474
  /**
26963
27475
  * Honorific title (Mr, Ms, Dr, Prof, etc.)
26964
27476
  */
@@ -26994,6 +27506,10 @@ export type PatchedUserRequestMultipart = {
26994
27506
  * List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
26995
27507
  */
26996
27508
  managed_isds?: unknown;
27509
+ /**
27510
+ * Reason why the user was deactivated. Visible to staff and support.
27511
+ */
27512
+ deactivation_reason?: string;
26997
27513
  };
26998
27514
  export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created' | 'description' | 'is_active' | 'maintenance_affected_offerings' | 'maintenance_external_reference_url' | 'maintenance_name' | 'maintenance_scheduled_end' | 'maintenance_scheduled_start' | 'maintenance_service_provider' | 'maintenance_state' | 'maintenance_type' | 'maintenance_uuid' | 'type' | 'uuid';
26999
27515
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
@@ -27007,7 +27523,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
27007
27523
  export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
27008
27524
  export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
27009
27525
  export type BackendResourceReqOEnum = '-created' | 'created';
27010
- export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27526
+ export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27011
27527
  export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | '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_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' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
27012
27528
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
27013
27529
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
@@ -27017,15 +27533,15 @@ export type UserRoleDetailsFieldEnum = 'created' | 'created_by_full_name' | 'cre
27017
27533
  export type UserRoleDetailsOEnum = 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
27018
27534
  export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expertise_match_score' | '-invited_at' | 'created' | 'current_assignments' | 'expertise_match_score' | 'invited_at';
27019
27535
  export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
27020
- export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid';
27021
- export type ThreadSessionOEnum = '-created' | '-modified' | 'created' | 'modified';
27536
+ export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'input_tokens' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'output_tokens' | 'title_gen_input_tokens' | 'title_gen_output_tokens' | 'total_tokens' | 'user_full_name' | 'user_username' | 'uuid';
27537
+ export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
27022
27538
  export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
27023
27539
  export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
27024
27540
  export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
27025
27541
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
27026
27542
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
27027
27543
  export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
27028
- export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
27544
+ export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
27029
27545
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
27030
27546
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
27031
27547
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -27064,13 +27580,13 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
27064
27580
  export type OrderDetailsFieldEnum = 'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | '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_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | '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' | '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';
27065
27581
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
27066
27582
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
27067
- 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' | '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' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27583
+ 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' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | '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';
27068
27584
  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';
27069
27585
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
27070
- export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | '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' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27071
- export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | '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_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
27586
+ export type ProjectFieldEnum = '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' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
27587
+ export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | '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_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
27072
27588
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
27073
- export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | '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' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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';
27589
+ export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | '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' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | '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';
27074
27590
  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';
27075
27591
  export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
27076
27592
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -27083,7 +27599,7 @@ export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-
27083
27599
  export type AgentServiceStateEnum = 1 | 2 | 3;
27084
27600
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
27085
27601
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
27086
- export type SoftwareTargetOEnum = '-cpu_family' | '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_family' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
27602
+ export type SoftwareTargetOEnum = '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
27087
27603
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
27088
27604
  export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
27089
27605
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
@@ -27105,9 +27621,9 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
27105
27621
  export type OpenStackInstanceFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes';
27106
27622
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
27107
27623
  export type OpenStackListenerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_pool' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | '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' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
27108
- export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | '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' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port_id' | 'vip_subnet_id';
27624
+ export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | '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' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port' | 'vip_subnet';
27109
27625
  export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | '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' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
27110
- export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | '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' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_id' | 'url' | 'uuid' | 'weight';
27626
+ export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | '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' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet' | 'url' | 'uuid' | 'weight';
27111
27627
  export type OpenStackPoolFieldEnum = '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' | 'lb_algorithm' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | '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' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
27112
27628
  export type OpenStackPortFieldEnum = 'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | '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' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
27113
27629
  export type OpenStackPortOEnum = '-admin_state_up' | '-created' | '-device_owner' | '-instance_name' | '-mac_address' | '-name' | '-network_name' | '-status' | '-subnet_name' | 'admin_state_up' | 'created' | 'device_owner' | 'instance_name' | 'mac_address' | 'name' | 'network_name' | 'status' | 'subnet_name';
@@ -27147,6 +27663,7 @@ export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_
27147
27663
  export type SlurmAllocationFieldEnum = 'access_url' | 'backend_id' | 'cpu_limit' | 'cpu_usage' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'gateway' | 'gpu_limit' | 'gpu_usage' | 'is_active' | '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' | 'ram_limit' | 'ram_usage' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'username' | 'uuid';
27148
27664
  export type FirecrestJobFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'file' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'report' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'user' | 'user_username' | 'user_uuid' | 'uuid';
27149
27665
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
27666
+ export type CommentOEnum = '-created' | '-modified' | 'created' | 'modified';
27150
27667
  export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last_name' | '-created' | '-customer_name' | '-key' | '-modified' | '-priority' | '-project_name' | '-remote_id' | '-reporter_name' | '-status' | '-summary' | '-type' | 'assignee_name' | 'caller_first_name' | 'caller_last_name' | 'created' | 'customer_name' | 'key' | 'modified' | 'priority' | 'project_name' | 'remote_id' | 'reporter_name' | 'status' | 'summary' | 'type';
27151
27668
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
27152
27669
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
@@ -28873,6 +29390,18 @@ export type AssignmentItemsDeclineResponses = {
28873
29390
  200: AssignmentItemResponse;
28874
29391
  };
28875
29392
  export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
29393
+ export type AssignmentItemsForceUnblockData = {
29394
+ body: ForceUnblockRequest;
29395
+ path: {
29396
+ uuid: string;
29397
+ };
29398
+ query?: never;
29399
+ url: '/api/assignment-items/{uuid}/force-unblock/';
29400
+ };
29401
+ export type AssignmentItemsForceUnblockResponses = {
29402
+ 200: AssignmentItem;
29403
+ };
29404
+ export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
28876
29405
  export type AssignmentItemsReassignData = {
28877
29406
  body: ReassignItemRequest;
28878
29407
  path: {
@@ -32072,6 +32601,10 @@ export type BookingResourcesListData = {
32072
32601
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
32073
32602
  */
32074
32603
  query?: string;
32604
+ /**
32605
+ * Resource attributes (JSON)
32606
+ */
32607
+ resource_attributes?: string;
32075
32608
  /**
32076
32609
  * Restrict member access
32077
32610
  */
@@ -32084,6 +32617,10 @@ export type BookingResourcesListData = {
32084
32617
  * Service manager UUID
32085
32618
  */
32086
32619
  service_manager_uuid?: string;
32620
+ /**
32621
+ * Slug
32622
+ */
32623
+ slug?: string;
32087
32624
  /**
32088
32625
  * Resource state
32089
32626
  *
@@ -32256,6 +32793,10 @@ export type BookingResourcesCountData = {
32256
32793
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
32257
32794
  */
32258
32795
  query?: string;
32796
+ /**
32797
+ * Resource attributes (JSON)
32798
+ */
32799
+ resource_attributes?: string;
32259
32800
  /**
32260
32801
  * Restrict member access
32261
32802
  */
@@ -32268,6 +32809,10 @@ export type BookingResourcesCountData = {
32268
32809
  * Service manager UUID
32269
32810
  */
32270
32811
  service_manager_uuid?: string;
32812
+ /**
32813
+ * Slug
32814
+ */
32815
+ slug?: string;
32271
32816
  /**
32272
32817
  * Resource state
32273
32818
  *
@@ -32949,6 +33494,180 @@ export type CallManagingOrganisationsUpdateUserResponses = {
32949
33494
  200: UserRoleExpirationTime;
32950
33495
  };
32951
33496
  export type CallManagingOrganisationsUpdateUserResponse = CallManagingOrganisationsUpdateUserResponses[keyof CallManagingOrganisationsUpdateUserResponses];
33497
+ export type CallManagingOrganisationsGlobalStatsPerformanceListData = {
33498
+ body?: never;
33499
+ path?: never;
33500
+ query?: {
33501
+ customer?: string;
33502
+ customer_keyword?: string;
33503
+ customer_uuid?: string;
33504
+ /**
33505
+ * Ordering
33506
+ *
33507
+ *
33508
+ */
33509
+ o?: Array<CallManagingOrganisationOEnum>;
33510
+ /**
33511
+ * A page number within the paginated result set.
33512
+ */
33513
+ page?: number;
33514
+ /**
33515
+ * Number of results to return per page.
33516
+ */
33517
+ page_size?: number;
33518
+ };
33519
+ url: '/api/call-managing-organisations/global_stats_performance/';
33520
+ };
33521
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponses = {
33522
+ 200: Array<CallPerformanceStat>;
33523
+ };
33524
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponse = CallManagingOrganisationsGlobalStatsPerformanceListResponses[keyof CallManagingOrganisationsGlobalStatsPerformanceListResponses];
33525
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountData = {
33526
+ body?: never;
33527
+ path?: never;
33528
+ query?: {
33529
+ customer?: string;
33530
+ customer_keyword?: string;
33531
+ customer_uuid?: string;
33532
+ /**
33533
+ * Ordering
33534
+ *
33535
+ *
33536
+ */
33537
+ o?: Array<CallManagingOrganisationOEnum>;
33538
+ /**
33539
+ * A page number within the paginated result set.
33540
+ */
33541
+ page?: number;
33542
+ /**
33543
+ * Number of results to return per page.
33544
+ */
33545
+ page_size?: number;
33546
+ };
33547
+ url: '/api/call-managing-organisations/global_stats_performance/';
33548
+ };
33549
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountResponses = {
33550
+ /**
33551
+ * No response body
33552
+ */
33553
+ 200: unknown;
33554
+ };
33555
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListData = {
33556
+ body?: never;
33557
+ path?: never;
33558
+ query?: {
33559
+ customer?: string;
33560
+ customer_keyword?: string;
33561
+ customer_uuid?: string;
33562
+ /**
33563
+ * Ordering
33564
+ *
33565
+ *
33566
+ */
33567
+ o?: Array<CallManagingOrganisationOEnum>;
33568
+ /**
33569
+ * A page number within the paginated result set.
33570
+ */
33571
+ page?: number;
33572
+ /**
33573
+ * Number of results to return per page.
33574
+ */
33575
+ page_size?: number;
33576
+ };
33577
+ url: '/api/call-managing-organisations/global_stats_resource_demand/';
33578
+ };
33579
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponses = {
33580
+ 200: Array<ResourceDemandStat>;
33581
+ };
33582
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponse = CallManagingOrganisationsGlobalStatsResourceDemandListResponses[keyof CallManagingOrganisationsGlobalStatsResourceDemandListResponses];
33583
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountData = {
33584
+ body?: never;
33585
+ path?: never;
33586
+ query?: {
33587
+ customer?: string;
33588
+ customer_keyword?: string;
33589
+ customer_uuid?: string;
33590
+ /**
33591
+ * Ordering
33592
+ *
33593
+ *
33594
+ */
33595
+ o?: Array<CallManagingOrganisationOEnum>;
33596
+ /**
33597
+ * A page number within the paginated result set.
33598
+ */
33599
+ page?: number;
33600
+ /**
33601
+ * Number of results to return per page.
33602
+ */
33603
+ page_size?: number;
33604
+ };
33605
+ url: '/api/call-managing-organisations/global_stats_resource_demand/';
33606
+ };
33607
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountResponses = {
33608
+ /**
33609
+ * No response body
33610
+ */
33611
+ 200: unknown;
33612
+ };
33613
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListData = {
33614
+ body?: never;
33615
+ path?: never;
33616
+ query?: {
33617
+ customer?: string;
33618
+ customer_keyword?: string;
33619
+ customer_uuid?: string;
33620
+ /**
33621
+ * Ordering
33622
+ *
33623
+ *
33624
+ */
33625
+ o?: Array<CallManagingOrganisationOEnum>;
33626
+ /**
33627
+ * A page number within the paginated result set.
33628
+ */
33629
+ page?: number;
33630
+ /**
33631
+ * Number of results to return per page.
33632
+ */
33633
+ page_size?: number;
33634
+ };
33635
+ url: '/api/call-managing-organisations/global_stats_review_progress/';
33636
+ };
33637
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponses = {
33638
+ 200: Array<ReviewProgressStat>;
33639
+ };
33640
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponse = CallManagingOrganisationsGlobalStatsReviewProgressListResponses[keyof CallManagingOrganisationsGlobalStatsReviewProgressListResponses];
33641
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountData = {
33642
+ body?: never;
33643
+ path?: never;
33644
+ query?: {
33645
+ customer?: string;
33646
+ customer_keyword?: string;
33647
+ customer_uuid?: string;
33648
+ /**
33649
+ * Ordering
33650
+ *
33651
+ *
33652
+ */
33653
+ o?: Array<CallManagingOrganisationOEnum>;
33654
+ /**
33655
+ * A page number within the paginated result set.
33656
+ */
33657
+ page?: number;
33658
+ /**
33659
+ * Number of results to return per page.
33660
+ */
33661
+ page_size?: number;
33662
+ };
33663
+ url: '/api/call-managing-organisations/global_stats_review_progress/';
33664
+ };
33665
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountResponses = {
33666
+ /**
33667
+ * No response body
33668
+ */
33669
+ 200: unknown;
33670
+ };
32952
33671
  export type CallProposalProjectRoleMappingsListData = {
32953
33672
  body?: never;
32954
33673
  path?: never;
@@ -33164,6 +33883,18 @@ export type CallReviewerPoolsDeclineResponses = {
33164
33883
  200: InvitationDeclineResponse;
33165
33884
  };
33166
33885
  export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
33886
+ export type CallReviewerPoolsForceAcceptData = {
33887
+ body: ForceAcceptPoolRequest;
33888
+ path: {
33889
+ uuid: string;
33890
+ };
33891
+ query?: never;
33892
+ url: '/api/call-reviewer-pools/{uuid}/force-accept/';
33893
+ };
33894
+ export type CallReviewerPoolsForceAcceptResponses = {
33895
+ 200: CallReviewerPool;
33896
+ };
33897
+ export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
33167
33898
  export type CallRoundsListData = {
33168
33899
  body?: never;
33169
33900
  path?: never;
@@ -33338,6 +34069,8 @@ export type ChatThreadsListData = {
33338
34069
  query?: {
33339
34070
  created?: string;
33340
34071
  field?: Array<ThreadSessionFieldEnum>;
34072
+ input_tokens_max?: number;
34073
+ input_tokens_min?: number;
33341
34074
  is_archived?: boolean;
33342
34075
  is_flagged?: boolean;
33343
34076
  max_severity?: InjectionSeverityEnum;
@@ -33348,6 +34081,8 @@ export type ChatThreadsListData = {
33348
34081
  *
33349
34082
  */
33350
34083
  o?: Array<ThreadSessionOEnum>;
34084
+ output_tokens_max?: number;
34085
+ output_tokens_min?: number;
33351
34086
  /**
33352
34087
  * A page number within the paginated result set.
33353
34088
  */
@@ -33357,6 +34092,8 @@ export type ChatThreadsListData = {
33357
34092
  */
33358
34093
  page_size?: number;
33359
34094
  query?: string;
34095
+ total_tokens_max?: number;
34096
+ total_tokens_min?: number;
33360
34097
  user?: string;
33361
34098
  };
33362
34099
  url: '/api/chat-threads/';
@@ -33394,6 +34131,20 @@ export type ChatThreadsArchiveResponses = {
33394
34131
  204: void;
33395
34132
  };
33396
34133
  export type ChatThreadsArchiveResponse = ChatThreadsArchiveResponses[keyof ChatThreadsArchiveResponses];
34134
+ export type ChatThreadsCancelData = {
34135
+ body?: ThreadSessionRequest;
34136
+ path: {
34137
+ uuid: string;
34138
+ };
34139
+ query?: never;
34140
+ url: '/api/chat-threads/{uuid}/cancel/';
34141
+ };
34142
+ export type ChatThreadsCancelResponses = {
34143
+ /**
34144
+ * No response body
34145
+ */
34146
+ 200: unknown;
34147
+ };
33397
34148
  export type ChatThreadsUnarchiveData = {
33398
34149
  body?: ThreadSessionRequest;
33399
34150
  path: {
@@ -34776,6 +35527,10 @@ export type CustomersListData = {
34776
35527
  * Filter by service provider UUID.
34777
35528
  */
34778
35529
  service_provider_uuid?: string;
35530
+ /**
35531
+ * Slug
35532
+ */
35533
+ slug?: string;
34779
35534
  /**
34780
35535
  * Filter by user UUID.
34781
35536
  */
@@ -34867,6 +35622,10 @@ export type CustomersCountData = {
34867
35622
  * Filter by service provider UUID.
34868
35623
  */
34869
35624
  service_provider_uuid?: string;
35625
+ /**
35626
+ * Slug
35627
+ */
35628
+ slug?: string;
34870
35629
  /**
34871
35630
  * Filter by user UUID.
34872
35631
  */
@@ -35258,6 +36017,10 @@ export type CustomersHistoryListData = {
35258
36017
  * Filter by service provider UUID.
35259
36018
  */
35260
36019
  service_provider_uuid?: string;
36020
+ /**
36021
+ * Slug
36022
+ */
36023
+ slug?: string;
35261
36024
  /**
35262
36025
  * Filter by user UUID.
35263
36026
  */
@@ -35541,6 +36304,10 @@ export type CustomersCountriesListData = {
35541
36304
  * Filter by service provider UUID.
35542
36305
  */
35543
36306
  service_provider_uuid?: string;
36307
+ /**
36308
+ * Slug
36309
+ */
36310
+ slug?: string;
35544
36311
  /**
35545
36312
  * Filter by user UUID.
35546
36313
  */
@@ -35632,6 +36399,10 @@ export type CustomersCountriesCountData = {
35632
36399
  * Filter by service provider UUID.
35633
36400
  */
35634
36401
  service_provider_uuid?: string;
36402
+ /**
36403
+ * Slug
36404
+ */
36405
+ slug?: string;
35635
36406
  /**
35636
36407
  * Filter by user UUID.
35637
36408
  */
@@ -37250,6 +38021,10 @@ export type FinancialReportsListData = {
37250
38021
  */
37251
38022
  query?: string;
37252
38023
  registration_code?: string;
38024
+ /**
38025
+ * Slug
38026
+ */
38027
+ slug?: string;
37253
38028
  /**
37254
38029
  * Filter by year.
37255
38030
  */
@@ -37333,6 +38108,10 @@ export type FinancialReportsCountData = {
37333
38108
  */
37334
38109
  query?: string;
37335
38110
  registration_code?: string;
38111
+ /**
38112
+ * Slug
38113
+ */
38114
+ slug?: string;
37336
38115
  /**
37337
38116
  * Filter by year.
37338
38117
  */
@@ -37915,6 +38694,16 @@ export type IdentityBridgeResponses = {
37915
38694
  200: IdentityBridgeResult;
37916
38695
  };
37917
38696
  export type IdentityBridgeResponse = IdentityBridgeResponses[keyof IdentityBridgeResponses];
38697
+ export type IdentityBridgeAllowedFieldsRetrieveData = {
38698
+ body?: never;
38699
+ path?: never;
38700
+ query?: never;
38701
+ url: '/api/identity-bridge/allowed-fields/';
38702
+ };
38703
+ export type IdentityBridgeAllowedFieldsRetrieveResponses = {
38704
+ 200: IdentityBridgeAllowedFields;
38705
+ };
38706
+ export type IdentityBridgeAllowedFieldsRetrieveResponse = IdentityBridgeAllowedFieldsRetrieveResponses[keyof IdentityBridgeAllowedFieldsRetrieveResponses];
37918
38707
  export type IdentityBridgeRemoveData = {
37919
38708
  body: IdentityBridgeRemoveRequest;
37920
38709
  path?: never;
@@ -40031,6 +40820,35 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
40031
40820
  200: RancherNode;
40032
40821
  };
40033
40822
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
40823
+ export type MarketplaceArticleCodeUpdateApplyData = {
40824
+ body: ArticleCodeUpdateApplyRequest;
40825
+ path?: never;
40826
+ query?: never;
40827
+ url: '/api/marketplace-article-code-update/apply/';
40828
+ };
40829
+ export type MarketplaceArticleCodeUpdateApplyResponses = {
40830
+ 200: ArticleCodeUpdateApplyResponse;
40831
+ };
40832
+ export type MarketplaceArticleCodeUpdateApplyResponse = MarketplaceArticleCodeUpdateApplyResponses[keyof MarketplaceArticleCodeUpdateApplyResponses];
40833
+ export type MarketplaceArticleCodeUpdatePreviewData = {
40834
+ body: ArticleCodeUpdatePreviewRequest;
40835
+ path?: never;
40836
+ query?: {
40837
+ /**
40838
+ * A page number within the paginated result set.
40839
+ */
40840
+ page?: number;
40841
+ /**
40842
+ * Number of results to return per page.
40843
+ */
40844
+ page_size?: number;
40845
+ };
40846
+ url: '/api/marketplace-article-code-update/preview/';
40847
+ };
40848
+ export type MarketplaceArticleCodeUpdatePreviewResponses = {
40849
+ 200: Array<ArticleCodeUpdatePreviewItem>;
40850
+ };
40851
+ export type MarketplaceArticleCodeUpdatePreviewResponse = MarketplaceArticleCodeUpdatePreviewResponses[keyof MarketplaceArticleCodeUpdatePreviewResponses];
40034
40852
  export type MarketplaceAttributeOptionsListData = {
40035
40853
  body?: never;
40036
40854
  path?: never;
@@ -41467,6 +42285,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
41467
42285
  200: CourseAccount;
41468
42286
  };
41469
42287
  export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
42288
+ export type MarketplaceCourseAccountsRetryData = {
42289
+ body?: never;
42290
+ path: {
42291
+ uuid: string;
42292
+ };
42293
+ query?: never;
42294
+ url: '/api/marketplace-course-accounts/{uuid}/retry/';
42295
+ };
42296
+ export type MarketplaceCourseAccountsRetryResponses = {
42297
+ 202: CourseAccount;
42298
+ };
42299
+ export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
41470
42300
  export type MarketplaceCourseAccountsCreateBulkData = {
41471
42301
  body: CourseAccountsBulkCreateRequest;
41472
42302
  path?: never;
@@ -44020,6 +44850,10 @@ export type MarketplaceOrdersListData = {
44020
44850
  * Service manager UUID
44021
44851
  */
44022
44852
  service_manager_uuid?: string;
44853
+ /**
44854
+ * Slug
44855
+ */
44856
+ slug?: string;
44023
44857
  /**
44024
44858
  * Order state
44025
44859
  *
@@ -44131,6 +44965,10 @@ export type MarketplaceOrdersCountData = {
44131
44965
  * Service manager UUID
44132
44966
  */
44133
44967
  service_manager_uuid?: string;
44968
+ /**
44969
+ * Slug
44970
+ */
44971
+ slug?: string;
44134
44972
  /**
44135
44973
  * Order state
44136
44974
  *
@@ -44308,6 +45146,32 @@ export type MarketplaceOrdersRejectByProviderResponses = {
44308
45146
  */
44309
45147
  200: unknown;
44310
45148
  };
45149
+ export type MarketplaceOrdersResourceRetrieveData = {
45150
+ body?: never;
45151
+ path: {
45152
+ uuid: string;
45153
+ };
45154
+ query?: never;
45155
+ url: '/api/marketplace-orders/{uuid}/resource/';
45156
+ };
45157
+ export type MarketplaceOrdersResourceRetrieveResponses = {
45158
+ 200: Resource;
45159
+ };
45160
+ export type MarketplaceOrdersResourceRetrieveResponse = MarketplaceOrdersResourceRetrieveResponses[keyof MarketplaceOrdersResourceRetrieveResponses];
45161
+ export type MarketplaceOrdersRetryData = {
45162
+ body?: never;
45163
+ path: {
45164
+ uuid: string;
45165
+ };
45166
+ query?: never;
45167
+ url: '/api/marketplace-orders/{uuid}/retry/';
45168
+ };
45169
+ export type MarketplaceOrdersRetryResponses = {
45170
+ /**
45171
+ * No response body
45172
+ */
45173
+ 200: unknown;
45174
+ };
44311
45175
  export type MarketplaceOrdersSetBackendIdData = {
44312
45176
  body: OrderBackendIdRequest;
44313
45177
  path: {
@@ -44881,6 +45745,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListData = {
44881
45745
  page_size?: number;
44882
45746
  project?: string;
44883
45747
  project_uuid?: string;
45748
+ query?: string;
44884
45749
  scope?: string;
44885
45750
  scope_uuid?: string;
44886
45751
  };
@@ -44906,6 +45771,7 @@ export type MarketplaceProjectEstimatedCostPoliciesCountData = {
44906
45771
  page_size?: number;
44907
45772
  project?: string;
44908
45773
  project_uuid?: string;
45774
+ query?: string;
44909
45775
  scope?: string;
44910
45776
  scope_uuid?: string;
44911
45777
  };
@@ -45379,6 +46245,10 @@ export type MarketplaceProviderOfferingsListData = {
45379
46245
  * Shared
45380
46246
  */
45381
46247
  shared?: boolean;
46248
+ /**
46249
+ * Slug
46250
+ */
46251
+ slug?: string;
45382
46252
  /**
45383
46253
  * Offering state
45384
46254
  *
@@ -45555,6 +46425,10 @@ export type MarketplaceProviderOfferingsCountData = {
45555
46425
  * Shared
45556
46426
  */
45557
46427
  shared?: boolean;
46428
+ /**
46429
+ * Slug
46430
+ */
46431
+ slug?: string;
45558
46432
  /**
45559
46433
  * Offering state
45560
46434
  *
@@ -45868,6 +46742,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45868
46742
  * Shared
45869
46743
  */
45870
46744
  shared?: boolean;
46745
+ /**
46746
+ * Slug
46747
+ */
46748
+ slug?: string;
45871
46749
  /**
45872
46750
  * Start date in format YYYY-MM.
45873
46751
  */
@@ -46055,6 +46933,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
46055
46933
  * Shared
46056
46934
  */
46057
46935
  shared?: boolean;
46936
+ /**
46937
+ * Slug
46938
+ */
46939
+ slug?: string;
46058
46940
  /**
46059
46941
  * Start date in format YYYY-MM.
46060
46942
  */
@@ -46252,6 +47134,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
46252
47134
  * Shared
46253
47135
  */
46254
47136
  shared?: boolean;
47137
+ /**
47138
+ * Slug
47139
+ */
47140
+ slug?: string;
46255
47141
  /**
46256
47142
  * Offering state
46257
47143
  *
@@ -46575,242 +47461,250 @@ export type MarketplaceProviderOfferingsHistoryListData = {
46575
47461
  */
46576
47462
  shared?: boolean;
46577
47463
  /**
46578
- * Offering state
46579
- *
46580
- *
46581
- */
46582
- state?: Array<OfferingState>;
46583
- /**
46584
- * Tag UUID (OR logic)
46585
- */
46586
- tag?: Array<string>;
46587
- /**
46588
- * Tag name (OR logic)
46589
- */
46590
- tag_name?: Array<string>;
46591
- /**
46592
- * Tag names with AND logic (comma-separated)
46593
- */
46594
- tag_names_and?: string;
46595
- /**
46596
- * Tag UUIDs with AND logic (comma-separated)
46597
- */
46598
- tags_and?: string;
46599
- /**
46600
- * Offering type
46601
- */
46602
- type?: Array<string>;
46603
- /**
46604
- * User Has Consent
46605
- */
46606
- user_has_consent?: boolean;
46607
- /**
46608
- * User Has Offering User
46609
- */
46610
- user_has_offering_user?: boolean;
46611
- /**
46612
- * Comma-separated offering UUIDs
46613
- */
46614
- uuid_list?: string;
46615
- };
46616
- url: '/api/marketplace-provider-offerings/{uuid}/history/';
46617
- };
46618
- export type MarketplaceProviderOfferingsHistoryListResponses = {
46619
- 200: Array<VersionHistory>;
46620
- };
46621
- export type MarketplaceProviderOfferingsHistoryListResponse = MarketplaceProviderOfferingsHistoryListResponses[keyof MarketplaceProviderOfferingsHistoryListResponses];
46622
- export type MarketplaceProviderOfferingsHistoryAtRetrieveData = {
46623
- body?: never;
46624
- path: {
46625
- uuid: string;
46626
- };
46627
- query: {
46628
- /**
46629
- * ISO 8601 timestamp to query the object state at
46630
- */
46631
- timestamp: string;
46632
- };
46633
- url: '/api/marketplace-provider-offerings/{uuid}/history/at/';
46634
- };
46635
- export type MarketplaceProviderOfferingsHistoryAtRetrieveErrors = {
46636
- 400: {
46637
- [key: string]: unknown;
46638
- };
46639
- 404: {
46640
- [key: string]: unknown;
46641
- };
46642
- };
46643
- export type MarketplaceProviderOfferingsHistoryAtRetrieveError = MarketplaceProviderOfferingsHistoryAtRetrieveErrors[keyof MarketplaceProviderOfferingsHistoryAtRetrieveErrors];
46644
- export type MarketplaceProviderOfferingsHistoryAtRetrieveResponses = {
46645
- 200: VersionHistory;
46646
- };
46647
- export type MarketplaceProviderOfferingsHistoryAtRetrieveResponse = MarketplaceProviderOfferingsHistoryAtRetrieveResponses[keyof MarketplaceProviderOfferingsHistoryAtRetrieveResponses];
46648
- export type MarketplaceProviderOfferingsImportResourceData = {
46649
- body: ImportResourceRequest;
46650
- path: {
46651
- uuid: string;
46652
- };
46653
- query?: never;
46654
- url: '/api/marketplace-provider-offerings/{uuid}/import_resource/';
46655
- };
46656
- export type MarketplaceProviderOfferingsImportResourceResponses = {
46657
- 200: Resource;
46658
- };
46659
- export type MarketplaceProviderOfferingsImportResourceResponse = MarketplaceProviderOfferingsImportResourceResponses[keyof MarketplaceProviderOfferingsImportResourceResponses];
46660
- export type MarketplaceProviderOfferingsImportableResourcesListData = {
46661
- body?: never;
46662
- path: {
46663
- uuid: string;
46664
- };
46665
- query?: {
46666
- /**
46667
- * A page number within the paginated result set.
46668
- */
46669
- page?: number;
46670
- /**
46671
- * Number of results to return per page.
46672
- */
46673
- page_size?: number;
46674
- };
46675
- url: '/api/marketplace-provider-offerings/{uuid}/importable_resources/';
46676
- };
46677
- export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
46678
- 200: Array<ImportableResource>;
46679
- };
46680
- export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
46681
- export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46682
- body?: never;
46683
- path: {
46684
- uuid: string;
46685
- };
46686
- query?: {
46687
- /**
46688
- * Accessible via calls
46689
- */
46690
- accessible_via_calls?: boolean;
46691
- /**
46692
- * Allowed customer UUID
46693
- */
46694
- allowed_customer_uuid?: string;
46695
- /**
46696
- * Offering attributes (JSON)
46697
- */
46698
- attributes?: string;
46699
- /**
46700
- * Billable
46701
- */
46702
- billable?: boolean;
46703
- can_create_offering_user?: boolean;
46704
- /**
46705
- * Category group UUID
46706
- */
46707
- category_group_uuid?: string;
46708
- /**
46709
- * Category UUID
46710
- */
46711
- category_uuid?: string;
46712
- /**
46713
- * Created after
46714
- */
46715
- created?: string;
46716
- /**
46717
- * Created before
46718
- */
46719
- created_before?: string;
46720
- /**
46721
- * Customer URL
46722
- */
46723
- customer?: string;
46724
- /**
46725
- * Customer UUID
46726
- */
46727
- customer_uuid?: string;
46728
- /**
46729
- * Description contains
46730
- */
46731
- description?: string;
46732
- /**
46733
- * Has Active Terms of Service
46734
- */
46735
- has_active_terms_of_service?: boolean;
46736
- /**
46737
- * Has Terms of Service
46738
- */
46739
- has_terms_of_service?: boolean;
46740
- /**
46741
- * Filter by importable offerings.
46742
- */
46743
- importable?: string;
46744
- /**
46745
- * Keyword
46746
- */
46747
- keyword?: string;
46748
- /**
46749
- * Modified after
46750
- */
46751
- modified?: string;
46752
- /**
46753
- * Modified before
46754
- */
46755
- modified_before?: string;
46756
- /**
46757
- * Name
46758
- */
46759
- name?: string;
46760
- /**
46761
- * Name (exact)
46762
- */
46763
- name_exact?: string;
46764
- /**
46765
- * Ordering
46766
- *
46767
- *
46768
- */
46769
- o?: Array<ProviderOfferingDetailsOEnum>;
46770
- /**
46771
- * Organization group UUID
46772
- */
46773
- organization_group_uuid?: string;
46774
- /**
46775
- * A page number within the paginated result set.
46776
- */
46777
- page?: number;
46778
- /**
46779
- * Number of results to return per page.
46780
- */
46781
- page_size?: number;
46782
- /**
46783
- * Parent offering UUID
46784
- */
46785
- parent_uuid?: string;
46786
- /**
46787
- * Project UUID
46788
- */
46789
- project_uuid?: string;
46790
- /**
46791
- * Search by offering name, slug or description
46792
- */
46793
- query?: string;
46794
- /**
46795
- * Resource customer UUID
46796
- */
46797
- resource_customer_uuid?: string;
46798
- /**
46799
- * Resource project UUID
46800
- */
46801
- resource_project_uuid?: string;
46802
- /**
46803
- * Scope UUID
46804
- */
46805
- scope_uuid?: string;
46806
- /**
46807
- * Service manager UUID
46808
- */
46809
- service_manager_uuid?: string;
46810
- /**
46811
- * Shared
47464
+ * Slug
47465
+ */
47466
+ slug?: string;
47467
+ /**
47468
+ * Offering state
47469
+ *
47470
+ *
47471
+ */
47472
+ state?: Array<OfferingState>;
47473
+ /**
47474
+ * Tag UUID (OR logic)
47475
+ */
47476
+ tag?: Array<string>;
47477
+ /**
47478
+ * Tag name (OR logic)
47479
+ */
47480
+ tag_name?: Array<string>;
47481
+ /**
47482
+ * Tag names with AND logic (comma-separated)
47483
+ */
47484
+ tag_names_and?: string;
47485
+ /**
47486
+ * Tag UUIDs with AND logic (comma-separated)
47487
+ */
47488
+ tags_and?: string;
47489
+ /**
47490
+ * Offering type
47491
+ */
47492
+ type?: Array<string>;
47493
+ /**
47494
+ * User Has Consent
47495
+ */
47496
+ user_has_consent?: boolean;
47497
+ /**
47498
+ * User Has Offering User
47499
+ */
47500
+ user_has_offering_user?: boolean;
47501
+ /**
47502
+ * Comma-separated offering UUIDs
47503
+ */
47504
+ uuid_list?: string;
47505
+ };
47506
+ url: '/api/marketplace-provider-offerings/{uuid}/history/';
47507
+ };
47508
+ export type MarketplaceProviderOfferingsHistoryListResponses = {
47509
+ 200: Array<VersionHistory>;
47510
+ };
47511
+ export type MarketplaceProviderOfferingsHistoryListResponse = MarketplaceProviderOfferingsHistoryListResponses[keyof MarketplaceProviderOfferingsHistoryListResponses];
47512
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveData = {
47513
+ body?: never;
47514
+ path: {
47515
+ uuid: string;
47516
+ };
47517
+ query: {
47518
+ /**
47519
+ * ISO 8601 timestamp to query the object state at
47520
+ */
47521
+ timestamp: string;
47522
+ };
47523
+ url: '/api/marketplace-provider-offerings/{uuid}/history/at/';
47524
+ };
47525
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveErrors = {
47526
+ 400: {
47527
+ [key: string]: unknown;
47528
+ };
47529
+ 404: {
47530
+ [key: string]: unknown;
47531
+ };
47532
+ };
47533
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveError = MarketplaceProviderOfferingsHistoryAtRetrieveErrors[keyof MarketplaceProviderOfferingsHistoryAtRetrieveErrors];
47534
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveResponses = {
47535
+ 200: VersionHistory;
47536
+ };
47537
+ export type MarketplaceProviderOfferingsHistoryAtRetrieveResponse = MarketplaceProviderOfferingsHistoryAtRetrieveResponses[keyof MarketplaceProviderOfferingsHistoryAtRetrieveResponses];
47538
+ export type MarketplaceProviderOfferingsImportResourceData = {
47539
+ body: ImportResourceRequest;
47540
+ path: {
47541
+ uuid: string;
47542
+ };
47543
+ query?: never;
47544
+ url: '/api/marketplace-provider-offerings/{uuid}/import_resource/';
47545
+ };
47546
+ export type MarketplaceProviderOfferingsImportResourceResponses = {
47547
+ 200: Resource;
47548
+ };
47549
+ export type MarketplaceProviderOfferingsImportResourceResponse = MarketplaceProviderOfferingsImportResourceResponses[keyof MarketplaceProviderOfferingsImportResourceResponses];
47550
+ export type MarketplaceProviderOfferingsImportableResourcesListData = {
47551
+ body?: never;
47552
+ path: {
47553
+ uuid: string;
47554
+ };
47555
+ query?: {
47556
+ /**
47557
+ * A page number within the paginated result set.
47558
+ */
47559
+ page?: number;
47560
+ /**
47561
+ * Number of results to return per page.
47562
+ */
47563
+ page_size?: number;
47564
+ };
47565
+ url: '/api/marketplace-provider-offerings/{uuid}/importable_resources/';
47566
+ };
47567
+ export type MarketplaceProviderOfferingsImportableResourcesListResponses = {
47568
+ 200: Array<ImportableResource>;
47569
+ };
47570
+ export type MarketplaceProviderOfferingsImportableResourcesListResponse = MarketplaceProviderOfferingsImportableResourcesListResponses[keyof MarketplaceProviderOfferingsImportableResourcesListResponses];
47571
+ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
47572
+ body?: never;
47573
+ path: {
47574
+ uuid: string;
47575
+ };
47576
+ query?: {
47577
+ /**
47578
+ * Accessible via calls
47579
+ */
47580
+ accessible_via_calls?: boolean;
47581
+ /**
47582
+ * Allowed customer UUID
47583
+ */
47584
+ allowed_customer_uuid?: string;
47585
+ /**
47586
+ * Offering attributes (JSON)
47587
+ */
47588
+ attributes?: string;
47589
+ /**
47590
+ * Billable
47591
+ */
47592
+ billable?: boolean;
47593
+ can_create_offering_user?: boolean;
47594
+ /**
47595
+ * Category group UUID
47596
+ */
47597
+ category_group_uuid?: string;
47598
+ /**
47599
+ * Category UUID
47600
+ */
47601
+ category_uuid?: string;
47602
+ /**
47603
+ * Created after
47604
+ */
47605
+ created?: string;
47606
+ /**
47607
+ * Created before
47608
+ */
47609
+ created_before?: string;
47610
+ /**
47611
+ * Customer URL
47612
+ */
47613
+ customer?: string;
47614
+ /**
47615
+ * Customer UUID
47616
+ */
47617
+ customer_uuid?: string;
47618
+ /**
47619
+ * Description contains
47620
+ */
47621
+ description?: string;
47622
+ /**
47623
+ * Has Active Terms of Service
47624
+ */
47625
+ has_active_terms_of_service?: boolean;
47626
+ /**
47627
+ * Has Terms of Service
47628
+ */
47629
+ has_terms_of_service?: boolean;
47630
+ /**
47631
+ * Filter by importable offerings.
47632
+ */
47633
+ importable?: string;
47634
+ /**
47635
+ * Keyword
47636
+ */
47637
+ keyword?: string;
47638
+ /**
47639
+ * Modified after
47640
+ */
47641
+ modified?: string;
47642
+ /**
47643
+ * Modified before
47644
+ */
47645
+ modified_before?: string;
47646
+ /**
47647
+ * Name
47648
+ */
47649
+ name?: string;
47650
+ /**
47651
+ * Name (exact)
47652
+ */
47653
+ name_exact?: string;
47654
+ /**
47655
+ * Ordering
47656
+ *
47657
+ *
47658
+ */
47659
+ o?: Array<ProviderOfferingDetailsOEnum>;
47660
+ /**
47661
+ * Organization group UUID
47662
+ */
47663
+ organization_group_uuid?: string;
47664
+ /**
47665
+ * A page number within the paginated result set.
47666
+ */
47667
+ page?: number;
47668
+ /**
47669
+ * Number of results to return per page.
47670
+ */
47671
+ page_size?: number;
47672
+ /**
47673
+ * Parent offering UUID
47674
+ */
47675
+ parent_uuid?: string;
47676
+ /**
47677
+ * Project UUID
47678
+ */
47679
+ project_uuid?: string;
47680
+ /**
47681
+ * Search by offering name, slug or description
47682
+ */
47683
+ query?: string;
47684
+ /**
47685
+ * Resource customer UUID
47686
+ */
47687
+ resource_customer_uuid?: string;
47688
+ /**
47689
+ * Resource project UUID
47690
+ */
47691
+ resource_project_uuid?: string;
47692
+ /**
47693
+ * Scope UUID
47694
+ */
47695
+ scope_uuid?: string;
47696
+ /**
47697
+ * Service manager UUID
47698
+ */
47699
+ service_manager_uuid?: string;
47700
+ /**
47701
+ * Shared
47702
+ */
47703
+ shared?: boolean;
47704
+ /**
47705
+ * Slug
46812
47706
  */
46813
- shared?: boolean;
47707
+ slug?: string;
46814
47708
  /**
46815
47709
  * Offering state
46816
47710
  *
@@ -47011,6 +47905,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
47011
47905
  * Shared
47012
47906
  */
47013
47907
  shared?: boolean;
47908
+ /**
47909
+ * Slug
47910
+ */
47911
+ slug?: string;
47014
47912
  /**
47015
47913
  * Offering state
47016
47914
  *
@@ -47211,6 +48109,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
47211
48109
  * Shared
47212
48110
  */
47213
48111
  shared?: boolean;
48112
+ /**
48113
+ * Slug
48114
+ */
48115
+ slug?: string;
47214
48116
  /**
47215
48117
  * Offering state
47216
48118
  *
@@ -47470,6 +48372,18 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
47470
48372
  */
47471
48373
  200: unknown;
47472
48374
  };
48375
+ export type MarketplaceProviderOfferingsStateCountersRetrieveData = {
48376
+ body?: never;
48377
+ path: {
48378
+ uuid: string;
48379
+ };
48380
+ query?: never;
48381
+ url: '/api/marketplace-provider-offerings/{uuid}/state_counters/';
48382
+ };
48383
+ export type MarketplaceProviderOfferingsStateCountersRetrieveResponses = {
48384
+ 200: OfferingStateCounters;
48385
+ };
48386
+ export type MarketplaceProviderOfferingsStateCountersRetrieveResponse = MarketplaceProviderOfferingsStateCountersRetrieveResponses[keyof MarketplaceProviderOfferingsStateCountersRetrieveResponses];
47473
48387
  export type MarketplaceProviderOfferingsStatsRetrieveData = {
47474
48388
  body?: never;
47475
48389
  path: {
@@ -47485,6 +48399,20 @@ export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
47485
48399
  };
47486
48400
  };
47487
48401
  export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
48402
+ export type MarketplaceProviderOfferingsSwitchBillingModeData = {
48403
+ body: SwitchBillingModeRequest;
48404
+ path: {
48405
+ uuid: string;
48406
+ };
48407
+ query?: never;
48408
+ url: '/api/marketplace-provider-offerings/{uuid}/switch_billing_mode/';
48409
+ };
48410
+ export type MarketplaceProviderOfferingsSwitchBillingModeResponses = {
48411
+ /**
48412
+ * No response body
48413
+ */
48414
+ 200: unknown;
48415
+ };
47488
48416
  export type MarketplaceProviderOfferingsSyncData = {
47489
48417
  body?: never;
47490
48418
  path: {
@@ -47950,6 +48878,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47950
48878
  * Shared
47951
48879
  */
47952
48880
  shared?: boolean;
48881
+ /**
48882
+ * Slug
48883
+ */
48884
+ slug?: string;
47953
48885
  /**
47954
48886
  * Offering state
47955
48887
  *
@@ -48122,6 +49054,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
48122
49054
  * Shared
48123
49055
  */
48124
49056
  shared?: boolean;
49057
+ /**
49058
+ * Slug
49059
+ */
49060
+ slug?: string;
48125
49061
  /**
48126
49062
  * Offering state
48127
49063
  *
@@ -48326,6 +49262,10 @@ export type MarketplaceProviderResourcesListData = {
48326
49262
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48327
49263
  */
48328
49264
  query?: string;
49265
+ /**
49266
+ * Resource attributes (JSON)
49267
+ */
49268
+ resource_attributes?: string;
48329
49269
  /**
48330
49270
  * Restrict member access
48331
49271
  */
@@ -48342,6 +49282,10 @@ export type MarketplaceProviderResourcesListData = {
48342
49282
  * Service manager UUID
48343
49283
  */
48344
49284
  service_manager_uuid?: string;
49285
+ /**
49286
+ * Slug
49287
+ */
49288
+ slug?: string;
48345
49289
  /**
48346
49290
  * Resource state
48347
49291
  *
@@ -48513,6 +49457,10 @@ export type MarketplaceProviderResourcesCountData = {
48513
49457
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48514
49458
  */
48515
49459
  query?: string;
49460
+ /**
49461
+ * Resource attributes (JSON)
49462
+ */
49463
+ resource_attributes?: string;
48516
49464
  /**
48517
49465
  * Restrict member access
48518
49466
  */
@@ -48529,6 +49477,10 @@ export type MarketplaceProviderResourcesCountData = {
48529
49477
  * Service manager UUID
48530
49478
  */
48531
49479
  service_manager_uuid?: string;
49480
+ /**
49481
+ * Slug
49482
+ */
49483
+ slug?: string;
48532
49484
  /**
48533
49485
  * Resource state
48534
49486
  *
@@ -48776,6 +49728,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48776
49728
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48777
49729
  */
48778
49730
  query?: string;
49731
+ /**
49732
+ * Resource attributes (JSON)
49733
+ */
49734
+ resource_attributes?: string;
48779
49735
  /**
48780
49736
  * Restrict member access
48781
49737
  */
@@ -48792,6 +49748,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48792
49748
  * Service manager UUID
48793
49749
  */
48794
49750
  service_manager_uuid?: string;
49751
+ /**
49752
+ * Slug
49753
+ */
49754
+ slug?: string;
48795
49755
  /**
48796
49756
  * Resource state
48797
49757
  *
@@ -48997,6 +49957,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
48997
49957
  };
48998
49958
  };
48999
49959
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
49960
+ export type MarketplaceProviderResourcesSetEffectiveIdData = {
49961
+ body?: ResourceEffectiveIdRequest;
49962
+ path: {
49963
+ uuid: string;
49964
+ };
49965
+ query?: never;
49966
+ url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
49967
+ };
49968
+ export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
49969
+ 200: ResourceResponseStatus;
49970
+ };
49971
+ export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
49972
+ export type MarketplaceProviderResourcesSetEndDateData = {
49973
+ body?: ResourceEndDateRequest;
49974
+ path: {
49975
+ uuid: string;
49976
+ };
49977
+ query?: never;
49978
+ url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
49979
+ };
49980
+ export type MarketplaceProviderResourcesSetEndDateResponses = {
49981
+ /**
49982
+ * No response body
49983
+ */
49984
+ 200: unknown;
49985
+ };
49000
49986
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
49001
49987
  body?: ResourceEndDateByProviderRequest;
49002
49988
  path: {
@@ -49343,6 +50329,10 @@ export type MarketplacePublicOfferingsListData = {
49343
50329
  * Shared
49344
50330
  */
49345
50331
  shared?: boolean;
50332
+ /**
50333
+ * Slug
50334
+ */
50335
+ slug?: string;
49346
50336
  /**
49347
50337
  * Offering state
49348
50338
  *
@@ -49515,6 +50505,10 @@ export type MarketplacePublicOfferingsCountData = {
49515
50505
  * Shared
49516
50506
  */
49517
50507
  shared?: boolean;
50508
+ /**
50509
+ * Slug
50510
+ */
50511
+ slug?: string;
49518
50512
  /**
49519
50513
  * Offering state
49520
50514
  *
@@ -50036,6 +51030,10 @@ export type MarketplaceResourcesListData = {
50036
51030
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
50037
51031
  */
50038
51032
  query?: string;
51033
+ /**
51034
+ * Resource attributes (JSON)
51035
+ */
51036
+ resource_attributes?: string;
50039
51037
  /**
50040
51038
  * Restrict member access
50041
51039
  */
@@ -50052,6 +51050,10 @@ export type MarketplaceResourcesListData = {
50052
51050
  * Service manager UUID
50053
51051
  */
50054
51052
  service_manager_uuid?: string;
51053
+ /**
51054
+ * Slug
51055
+ */
51056
+ slug?: string;
50055
51057
  /**
50056
51058
  * Resource state
50057
51059
  *
@@ -50223,6 +51225,10 @@ export type MarketplaceResourcesCountData = {
50223
51225
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
50224
51226
  */
50225
51227
  query?: string;
51228
+ /**
51229
+ * Resource attributes (JSON)
51230
+ */
51231
+ resource_attributes?: string;
50226
51232
  /**
50227
51233
  * Restrict member access
50228
51234
  */
@@ -50239,6 +51245,10 @@ export type MarketplaceResourcesCountData = {
50239
51245
  * Service manager UUID
50240
51246
  */
50241
51247
  service_manager_uuid?: string;
51248
+ /**
51249
+ * Slug
51250
+ */
51251
+ slug?: string;
50242
51252
  /**
50243
51253
  * Resource state
50244
51254
  *
@@ -50498,6 +51508,10 @@ export type MarketplaceResourcesHistoryListData = {
50498
51508
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
50499
51509
  */
50500
51510
  query?: string;
51511
+ /**
51512
+ * Resource attributes (JSON)
51513
+ */
51514
+ resource_attributes?: string;
50501
51515
  /**
50502
51516
  * Restrict member access
50503
51517
  */
@@ -50514,6 +51528,10 @@ export type MarketplaceResourcesHistoryListData = {
50514
51528
  * Service manager UUID
50515
51529
  */
50516
51530
  service_manager_uuid?: string;
51531
+ /**
51532
+ * Slug
51533
+ */
51534
+ slug?: string;
50517
51535
  /**
50518
51536
  * Resource state
50519
51537
  *
@@ -50677,6 +51695,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
50677
51695
  };
50678
51696
  };
50679
51697
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
51698
+ export type MarketplaceResourcesSetEndDateData = {
51699
+ body?: ResourceEndDateRequest;
51700
+ path: {
51701
+ uuid: string;
51702
+ };
51703
+ query?: never;
51704
+ url: '/api/marketplace-resources/{uuid}/set_end_date/';
51705
+ };
51706
+ export type MarketplaceResourcesSetEndDateResponses = {
51707
+ /**
51708
+ * No response body
51709
+ */
51710
+ 200: unknown;
51711
+ };
50680
51712
  export type MarketplaceResourcesSetEndDateByStaffData = {
50681
51713
  body?: ResourceEndDateByProviderRequest;
50682
51714
  path: {
@@ -51869,6 +52901,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
51869
52901
  */
51870
52902
  query?: string;
51871
52903
  registration_code?: string;
52904
+ /**
52905
+ * Slug
52906
+ */
52907
+ slug?: string;
51872
52908
  };
51873
52909
  url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/';
51874
52910
  };
@@ -52070,6 +53106,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
52070
53106
  * Shared
52071
53107
  */
52072
53108
  shared?: boolean;
53109
+ /**
53110
+ * Slug
53111
+ */
53112
+ slug?: string;
52073
53113
  /**
52074
53114
  * Offering state
52075
53115
  *
@@ -52395,6 +53435,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
52395
53435
  */
52396
53436
  query?: string;
52397
53437
  registration_code?: string;
53438
+ /**
53439
+ * Slug
53440
+ */
53441
+ slug?: string;
52398
53442
  /**
52399
53443
  * UUID of the user to get related customers for.
52400
53444
  */
@@ -54029,6 +55073,9 @@ export type MarketplaceSoftwareTargetsListData = {
54029
55073
  * Number of results to return per page.
54030
55074
  */
54031
55075
  page_size?: number;
55076
+ /**
55077
+ * Filter targets by location/path (case-insensitive partial match)
55078
+ */
54032
55079
  path?: string;
54033
55080
  /**
54034
55081
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -54081,6 +55128,9 @@ export type MarketplaceSoftwareTargetsCountData = {
54081
55128
  * Number of results to return per page.
54082
55129
  */
54083
55130
  page_size?: number;
55131
+ /**
55132
+ * Filter targets by location/path (case-insensitive partial match)
55133
+ */
54084
55134
  path?: string;
54085
55135
  /**
54086
55136
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -54532,6 +55582,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
54532
55582
  body?: never;
54533
55583
  path?: never;
54534
55584
  query?: {
55585
+ /**
55586
+ * Limit number of results (e.g. top N offerings). No limit by default.
55587
+ */
55588
+ limit?: number;
54535
55589
  /**
54536
55590
  * A page number within the paginated result set.
54537
55591
  */
@@ -54551,6 +55605,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
54551
55605
  body?: never;
54552
55606
  path?: never;
54553
55607
  query?: {
55608
+ /**
55609
+ * Limit number of results (e.g. top N offerings). No limit by default.
55610
+ */
55611
+ limit?: number;
54554
55612
  /**
54555
55613
  * A page number within the paginated result set.
54556
55614
  */
@@ -55482,6 +56540,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
55482
56540
  */
55483
56541
  200: unknown;
55484
56542
  };
56543
+ export type MarketplaceStatsProjectCreationTrendListData = {
56544
+ body?: never;
56545
+ path?: never;
56546
+ query?: {
56547
+ /**
56548
+ * A page number within the paginated result set.
56549
+ */
56550
+ page?: number;
56551
+ /**
56552
+ * Number of results to return per page.
56553
+ */
56554
+ page_size?: number;
56555
+ };
56556
+ url: '/api/marketplace-stats/project_creation_trend/';
56557
+ };
56558
+ export type MarketplaceStatsProjectCreationTrendListResponses = {
56559
+ 200: Array<ProjectCreationTrend>;
56560
+ };
56561
+ export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
56562
+ export type MarketplaceStatsProjectCreationTrendCountData = {
56563
+ body?: never;
56564
+ path?: never;
56565
+ query?: {
56566
+ /**
56567
+ * A page number within the paginated result set.
56568
+ */
56569
+ page?: number;
56570
+ /**
56571
+ * Number of results to return per page.
56572
+ */
56573
+ page_size?: number;
56574
+ };
56575
+ url: '/api/marketplace-stats/project_creation_trend/';
56576
+ };
56577
+ export type MarketplaceStatsProjectCreationTrendCountResponses = {
56578
+ /**
56579
+ * No response body
56580
+ */
56581
+ 200: unknown;
56582
+ };
55485
56583
  export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
55486
56584
  body?: never;
55487
56585
  path?: never;
@@ -55666,6 +56764,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
55666
56764
  */
55667
56765
  200: unknown;
55668
56766
  };
56767
+ export type MarketplaceStatsResourceCreationTrendListData = {
56768
+ body?: never;
56769
+ path?: never;
56770
+ query?: {
56771
+ /**
56772
+ * A page number within the paginated result set.
56773
+ */
56774
+ page?: number;
56775
+ /**
56776
+ * Number of results to return per page.
56777
+ */
56778
+ page_size?: number;
56779
+ };
56780
+ url: '/api/marketplace-stats/resource_creation_trend/';
56781
+ };
56782
+ export type MarketplaceStatsResourceCreationTrendListResponses = {
56783
+ 200: Array<ProjectCreationTrend>;
56784
+ };
56785
+ export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
56786
+ export type MarketplaceStatsResourceCreationTrendCountData = {
56787
+ body?: never;
56788
+ path?: never;
56789
+ query?: {
56790
+ /**
56791
+ * A page number within the paginated result set.
56792
+ */
56793
+ page?: number;
56794
+ /**
56795
+ * Number of results to return per page.
56796
+ */
56797
+ page_size?: number;
56798
+ };
56799
+ url: '/api/marketplace-stats/resource_creation_trend/';
56800
+ };
56801
+ export type MarketplaceStatsResourceCreationTrendCountResponses = {
56802
+ /**
56803
+ * No response body
56804
+ */
56805
+ 200: unknown;
56806
+ };
55669
56807
  export type MarketplaceStatsResourceProvisioningStatsListData = {
55670
56808
  body?: never;
55671
56809
  path?: never;
@@ -55952,6 +57090,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
55952
57090
  */
55953
57091
  200: unknown;
55954
57092
  };
57093
+ export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
57094
+ body?: never;
57095
+ path?: never;
57096
+ query?: {
57097
+ /**
57098
+ * Number of top providers to return. Default is 5.
57099
+ */
57100
+ limit?: number;
57101
+ /**
57102
+ * A page number within the paginated result set.
57103
+ */
57104
+ page?: number;
57105
+ /**
57106
+ * Number of results to return per page.
57107
+ */
57108
+ page_size?: number;
57109
+ };
57110
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
57111
+ };
57112
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
57113
+ 200: Array<TopServiceProviderByResources>;
57114
+ };
57115
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
57116
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
57117
+ body?: never;
57118
+ path?: never;
57119
+ query?: {
57120
+ /**
57121
+ * Number of top providers to return. Default is 5.
57122
+ */
57123
+ limit?: number;
57124
+ /**
57125
+ * A page number within the paginated result set.
57126
+ */
57127
+ page?: number;
57128
+ /**
57129
+ * Number of results to return per page.
57130
+ */
57131
+ page_size?: number;
57132
+ };
57133
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
57134
+ };
57135
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
57136
+ /**
57137
+ * No response body
57138
+ */
57139
+ 200: unknown;
57140
+ };
55955
57141
  export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
55956
57142
  body?: never;
55957
57143
  path?: never;
@@ -56152,6 +57338,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
56152
57338
  */
56153
57339
  200: unknown;
56154
57340
  };
57341
+ export type MarketplaceStatsUserNationalityListData = {
57342
+ body?: never;
57343
+ path?: never;
57344
+ query?: {
57345
+ /**
57346
+ * A page number within the paginated result set.
57347
+ */
57348
+ page?: number;
57349
+ /**
57350
+ * Number of results to return per page.
57351
+ */
57352
+ page_size?: number;
57353
+ };
57354
+ url: '/api/marketplace-stats/user_nationality/';
57355
+ };
57356
+ export type MarketplaceStatsUserNationalityListResponses = {
57357
+ 200: Array<UserNationalityStats>;
57358
+ };
57359
+ export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
57360
+ export type MarketplaceStatsUserNationalityCountData = {
57361
+ body?: never;
57362
+ path?: never;
57363
+ query?: {
57364
+ /**
57365
+ * A page number within the paginated result set.
57366
+ */
57367
+ page?: number;
57368
+ /**
57369
+ * Number of results to return per page.
57370
+ */
57371
+ page_size?: number;
57372
+ };
57373
+ url: '/api/marketplace-stats/user_nationality/';
57374
+ };
57375
+ export type MarketplaceStatsUserNationalityCountResponses = {
57376
+ /**
57377
+ * No response body
57378
+ */
57379
+ 200: unknown;
57380
+ };
56155
57381
  export type MarketplaceStatsUserOrganizationCountListData = {
56156
57382
  body?: never;
56157
57383
  path?: never;
@@ -56232,6 +57458,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
56232
57458
  */
56233
57459
  200: unknown;
56234
57460
  };
57461
+ export type MarketplaceStatsUserResidenceCountryListData = {
57462
+ body?: never;
57463
+ path?: never;
57464
+ query?: {
57465
+ /**
57466
+ * A page number within the paginated result set.
57467
+ */
57468
+ page?: number;
57469
+ /**
57470
+ * Number of results to return per page.
57471
+ */
57472
+ page_size?: number;
57473
+ };
57474
+ url: '/api/marketplace-stats/user_residence_country/';
57475
+ };
57476
+ export type MarketplaceStatsUserResidenceCountryListResponses = {
57477
+ 200: Array<UserResidenceCountryStats>;
57478
+ };
57479
+ export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
57480
+ export type MarketplaceStatsUserResidenceCountryCountData = {
57481
+ body?: never;
57482
+ path?: never;
57483
+ query?: {
57484
+ /**
57485
+ * A page number within the paginated result set.
57486
+ */
57487
+ page?: number;
57488
+ /**
57489
+ * Number of results to return per page.
57490
+ */
57491
+ page_size?: number;
57492
+ };
57493
+ url: '/api/marketplace-stats/user_residence_country/';
57494
+ };
57495
+ export type MarketplaceStatsUserResidenceCountryCountResponses = {
57496
+ /**
57497
+ * No response body
57498
+ */
57499
+ 200: unknown;
57500
+ };
56235
57501
  export type MarketplaceTagsListData = {
56236
57502
  body?: never;
56237
57503
  path?: never;
@@ -62104,7 +63370,7 @@ export type OpenstackLoadbalancersRetrieveResponses = {
62104
63370
  };
62105
63371
  export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
62106
63372
  export type OpenstackLoadbalancersPartialUpdateData = {
62107
- body?: PatchedOpenStackLoadBalancerRequest;
63373
+ body?: PatchedUpdateLoadBalancerRequest;
62108
63374
  path: {
62109
63375
  uuid: string;
62110
63376
  };
@@ -62112,11 +63378,11 @@ export type OpenstackLoadbalancersPartialUpdateData = {
62112
63378
  url: '/api/openstack-loadbalancers/{uuid}/';
62113
63379
  };
62114
63380
  export type OpenstackLoadbalancersPartialUpdateResponses = {
62115
- 200: OpenStackLoadBalancer;
63381
+ 200: UpdateLoadBalancer;
62116
63382
  };
62117
63383
  export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
62118
63384
  export type OpenstackLoadbalancersUpdateData = {
62119
- body: OpenStackLoadBalancerRequest;
63385
+ body: UpdateLoadBalancerRequest;
62120
63386
  path: {
62121
63387
  uuid: string;
62122
63388
  };
@@ -62124,7 +63390,7 @@ export type OpenstackLoadbalancersUpdateData = {
62124
63390
  url: '/api/openstack-loadbalancers/{uuid}/';
62125
63391
  };
62126
63392
  export type OpenstackLoadbalancersUpdateResponses = {
62127
- 200: OpenStackLoadBalancer;
63393
+ 200: UpdateLoadBalancer;
62128
63394
  };
62129
63395
  export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
62130
63396
  export type OpenstackLoadbalancersAttachFloatingIpData = {
@@ -62136,11 +63402,9 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
62136
63402
  url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
62137
63403
  };
62138
63404
  export type OpenstackLoadbalancersAttachFloatingIpResponses = {
62139
- /**
62140
- * No response body
62141
- */
62142
- 200: unknown;
63405
+ 202: LoadBalancerAsyncOperationResponse;
62143
63406
  };
63407
+ export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
62144
63408
  export type OpenstackLoadbalancersDetachFloatingIpData = {
62145
63409
  body?: never;
62146
63410
  path: {
@@ -62150,25 +63414,24 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
62150
63414
  url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
62151
63415
  };
62152
63416
  export type OpenstackLoadbalancersDetachFloatingIpResponses = {
62153
- /**
62154
- * No response body
62155
- */
62156
- 200: unknown;
63417
+ 202: LoadBalancerAsyncOperationResponse;
62157
63418
  };
62158
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
62159
- body: LoadBalancerUpdateVipSecurityGroupsRequest;
63419
+ export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
63420
+ export type OpenstackLoadbalancersUnlinkData = {
63421
+ body?: never;
62160
63422
  path: {
62161
63423
  uuid: string;
62162
63424
  };
62163
63425
  query?: never;
62164
- url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
63426
+ url: '/api/openstack-loadbalancers/{uuid}/unlink/';
62165
63427
  };
62166
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
63428
+ export type OpenstackLoadbalancersUnlinkResponses = {
62167
63429
  /**
62168
63430
  * No response body
62169
63431
  */
62170
- 200: unknown;
63432
+ 204: void;
62171
63433
  };
63434
+ export type OpenstackLoadbalancersUnlinkResponse = OpenstackLoadbalancersUnlinkResponses[keyof OpenstackLoadbalancersUnlinkResponses];
62172
63435
  export type OpenstackMarketplaceTenantsListData = {
62173
63436
  body?: never;
62174
63437
  path?: never;
@@ -63345,7 +64608,7 @@ export type OpenstackPoolsRetrieveResponses = {
63345
64608
  };
63346
64609
  export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
63347
64610
  export type OpenstackPoolsPartialUpdateData = {
63348
- body?: PatchedOpenStackPoolRequest;
64611
+ body?: PatchedUpdatePoolRequest;
63349
64612
  path: {
63350
64613
  uuid: string;
63351
64614
  };
@@ -63353,11 +64616,11 @@ export type OpenstackPoolsPartialUpdateData = {
63353
64616
  url: '/api/openstack-pools/{uuid}/';
63354
64617
  };
63355
64618
  export type OpenstackPoolsPartialUpdateResponses = {
63356
- 200: OpenStackPool;
64619
+ 200: UpdatePool;
63357
64620
  };
63358
64621
  export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
63359
64622
  export type OpenstackPoolsUpdateData = {
63360
- body: OpenStackPoolRequest;
64623
+ body: UpdatePoolRequest;
63361
64624
  path: {
63362
64625
  uuid: string;
63363
64626
  };
@@ -63365,7 +64628,7 @@ export type OpenstackPoolsUpdateData = {
63365
64628
  url: '/api/openstack-pools/{uuid}/';
63366
64629
  };
63367
64630
  export type OpenstackPoolsUpdateResponses = {
63368
- 200: OpenStackPool;
64631
+ 200: UpdatePool;
63369
64632
  };
63370
64633
  export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
63371
64634
  export type OpenstackPortsListData = {
@@ -67192,6 +68455,135 @@ export type PaymentsUnlinkFromInvoiceResponses = {
67192
68455
  */
67193
68456
  200: unknown;
67194
68457
  };
68458
+ export type PersonalAccessTokensListData = {
68459
+ body?: never;
68460
+ path?: never;
68461
+ query?: {
68462
+ /**
68463
+ * A page number within the paginated result set.
68464
+ */
68465
+ page?: number;
68466
+ /**
68467
+ * Number of results to return per page.
68468
+ */
68469
+ page_size?: number;
68470
+ };
68471
+ url: '/api/personal-access-tokens/';
68472
+ };
68473
+ export type PersonalAccessTokensListResponses = {
68474
+ 200: Array<PersonalAccessToken>;
68475
+ };
68476
+ export type PersonalAccessTokensListResponse = PersonalAccessTokensListResponses[keyof PersonalAccessTokensListResponses];
68477
+ export type PersonalAccessTokensCountData = {
68478
+ body?: never;
68479
+ path?: never;
68480
+ query?: {
68481
+ /**
68482
+ * A page number within the paginated result set.
68483
+ */
68484
+ page?: number;
68485
+ /**
68486
+ * Number of results to return per page.
68487
+ */
68488
+ page_size?: number;
68489
+ };
68490
+ url: '/api/personal-access-tokens/';
68491
+ };
68492
+ export type PersonalAccessTokensCountResponses = {
68493
+ /**
68494
+ * No response body
68495
+ */
68496
+ 200: unknown;
68497
+ };
68498
+ export type PersonalAccessTokensCreateData = {
68499
+ body: PersonalAccessTokenCreateRequest;
68500
+ path?: never;
68501
+ query?: never;
68502
+ url: '/api/personal-access-tokens/';
68503
+ };
68504
+ export type PersonalAccessTokensCreateResponses = {
68505
+ 201: PersonalAccessTokenCreated;
68506
+ };
68507
+ export type PersonalAccessTokensCreateResponse = PersonalAccessTokensCreateResponses[keyof PersonalAccessTokensCreateResponses];
68508
+ export type PersonalAccessTokensDestroyData = {
68509
+ body?: never;
68510
+ path: {
68511
+ uuid: string;
68512
+ };
68513
+ query?: never;
68514
+ url: '/api/personal-access-tokens/{uuid}/';
68515
+ };
68516
+ export type PersonalAccessTokensDestroyResponses = {
68517
+ /**
68518
+ * No response body
68519
+ */
68520
+ 204: void;
68521
+ };
68522
+ export type PersonalAccessTokensDestroyResponse = PersonalAccessTokensDestroyResponses[keyof PersonalAccessTokensDestroyResponses];
68523
+ export type PersonalAccessTokensRetrieveData = {
68524
+ body?: never;
68525
+ path: {
68526
+ uuid: string;
68527
+ };
68528
+ query?: never;
68529
+ url: '/api/personal-access-tokens/{uuid}/';
68530
+ };
68531
+ export type PersonalAccessTokensRetrieveResponses = {
68532
+ 200: PersonalAccessToken;
68533
+ };
68534
+ export type PersonalAccessTokensRetrieveResponse = PersonalAccessTokensRetrieveResponses[keyof PersonalAccessTokensRetrieveResponses];
68535
+ export type PersonalAccessTokensRotateData = {
68536
+ body?: never;
68537
+ path: {
68538
+ uuid: string;
68539
+ };
68540
+ query?: never;
68541
+ url: '/api/personal-access-tokens/{uuid}/rotate/';
68542
+ };
68543
+ export type PersonalAccessTokensRotateResponses = {
68544
+ 201: PersonalAccessTokenCreated;
68545
+ };
68546
+ export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
68547
+ export type PersonalAccessTokensAvailableScopesListData = {
68548
+ body?: never;
68549
+ path?: never;
68550
+ query?: {
68551
+ /**
68552
+ * A page number within the paginated result set.
68553
+ */
68554
+ page?: number;
68555
+ /**
68556
+ * Number of results to return per page.
68557
+ */
68558
+ page_size?: number;
68559
+ };
68560
+ url: '/api/personal-access-tokens/available_scopes/';
68561
+ };
68562
+ export type PersonalAccessTokensAvailableScopesListResponses = {
68563
+ 200: Array<AvailableScope>;
68564
+ };
68565
+ export type PersonalAccessTokensAvailableScopesListResponse = PersonalAccessTokensAvailableScopesListResponses[keyof PersonalAccessTokensAvailableScopesListResponses];
68566
+ export type PersonalAccessTokensAvailableScopesCountData = {
68567
+ body?: never;
68568
+ path?: never;
68569
+ query?: {
68570
+ /**
68571
+ * A page number within the paginated result set.
68572
+ */
68573
+ page?: number;
68574
+ /**
68575
+ * Number of results to return per page.
68576
+ */
68577
+ page_size?: number;
68578
+ };
68579
+ url: '/api/personal-access-tokens/available_scopes/';
68580
+ };
68581
+ export type PersonalAccessTokensAvailableScopesCountResponses = {
68582
+ /**
68583
+ * No response body
68584
+ */
68585
+ 200: unknown;
68586
+ };
67195
68587
  export type ProjectCreditsListData = {
67196
68588
  body?: never;
67197
68589
  path?: never;
@@ -67317,6 +68709,136 @@ export type ProjectCreditsUpdateResponses = {
67317
68709
  200: ProjectCredit;
67318
68710
  };
67319
68711
  export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
68712
+ export type ProjectEndDateChangeRequestsListData = {
68713
+ body?: never;
68714
+ path?: never;
68715
+ query?: {
68716
+ /**
68717
+ * Created by UUID
68718
+ */
68719
+ created_by_uuid?: string;
68720
+ /**
68721
+ * Customer UUID
68722
+ */
68723
+ customer_uuid?: string;
68724
+ /**
68725
+ * A page number within the paginated result set.
68726
+ */
68727
+ page?: number;
68728
+ /**
68729
+ * Number of results to return per page.
68730
+ */
68731
+ page_size?: number;
68732
+ /**
68733
+ * Project UUID
68734
+ */
68735
+ project_uuid?: string;
68736
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68737
+ };
68738
+ url: '/api/project-end-date-change-requests/';
68739
+ };
68740
+ export type ProjectEndDateChangeRequestsListResponses = {
68741
+ 200: Array<ProjectEndDateChangeRequest>;
68742
+ };
68743
+ export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
68744
+ export type ProjectEndDateChangeRequestsCountData = {
68745
+ body?: never;
68746
+ path?: never;
68747
+ query?: {
68748
+ /**
68749
+ * Created by UUID
68750
+ */
68751
+ created_by_uuid?: string;
68752
+ /**
68753
+ * Customer UUID
68754
+ */
68755
+ customer_uuid?: string;
68756
+ /**
68757
+ * A page number within the paginated result set.
68758
+ */
68759
+ page?: number;
68760
+ /**
68761
+ * Number of results to return per page.
68762
+ */
68763
+ page_size?: number;
68764
+ /**
68765
+ * Project UUID
68766
+ */
68767
+ project_uuid?: string;
68768
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68769
+ };
68770
+ url: '/api/project-end-date-change-requests/';
68771
+ };
68772
+ export type ProjectEndDateChangeRequestsCountResponses = {
68773
+ /**
68774
+ * No response body
68775
+ */
68776
+ 200: unknown;
68777
+ };
68778
+ export type ProjectEndDateChangeRequestsCreateData = {
68779
+ body: ProjectEndDateChangeRequestCreateRequest;
68780
+ path?: never;
68781
+ query?: never;
68782
+ url: '/api/project-end-date-change-requests/';
68783
+ };
68784
+ export type ProjectEndDateChangeRequestsCreateResponses = {
68785
+ 201: ProjectEndDateChangeRequestCreate;
68786
+ };
68787
+ export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
68788
+ export type ProjectEndDateChangeRequestsRetrieveData = {
68789
+ body?: never;
68790
+ path: {
68791
+ uuid: string;
68792
+ };
68793
+ query?: never;
68794
+ url: '/api/project-end-date-change-requests/{uuid}/';
68795
+ };
68796
+ export type ProjectEndDateChangeRequestsRetrieveResponses = {
68797
+ 200: ProjectEndDateChangeRequest;
68798
+ };
68799
+ export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
68800
+ export type ProjectEndDateChangeRequestsApproveData = {
68801
+ body?: ReviewCommentRequest;
68802
+ path: {
68803
+ uuid: string;
68804
+ };
68805
+ query?: never;
68806
+ url: '/api/project-end-date-change-requests/{uuid}/approve/';
68807
+ };
68808
+ export type ProjectEndDateChangeRequestsApproveResponses = {
68809
+ /**
68810
+ * No response body
68811
+ */
68812
+ 200: unknown;
68813
+ };
68814
+ export type ProjectEndDateChangeRequestsCancelData = {
68815
+ body?: never;
68816
+ path: {
68817
+ uuid: string;
68818
+ };
68819
+ query?: never;
68820
+ url: '/api/project-end-date-change-requests/{uuid}/cancel/';
68821
+ };
68822
+ export type ProjectEndDateChangeRequestsCancelResponses = {
68823
+ /**
68824
+ * No response body
68825
+ */
68826
+ 200: unknown;
68827
+ };
68828
+ export type ProjectEndDateChangeRequestsRejectData = {
68829
+ body?: ReviewCommentRequest;
68830
+ path: {
68831
+ uuid: string;
68832
+ };
68833
+ query?: never;
68834
+ url: '/api/project-end-date-change-requests/{uuid}/reject/';
68835
+ };
68836
+ export type ProjectEndDateChangeRequestsRejectResponses = {
68837
+ /**
68838
+ * No response body
68839
+ */
68840
+ 200: unknown;
68841
+ };
67320
68842
  export type ProjectPermissionsReviewsListData = {
67321
68843
  body?: never;
67322
68844
  path?: never;
@@ -68410,6 +69932,10 @@ export type ProposalProposalsListData = {
68410
69932
  page_size?: number;
68411
69933
  round?: string;
68412
69934
  round_uuid?: string;
69935
+ /**
69936
+ * Slug
69937
+ */
69938
+ slug?: string;
68413
69939
  state?: Array<ProposalStates>;
68414
69940
  };
68415
69941
  url: '/api/proposal-proposals/';
@@ -68443,6 +69969,10 @@ export type ProposalProposalsCountData = {
68443
69969
  page_size?: number;
68444
69970
  round?: string;
68445
69971
  round_uuid?: string;
69972
+ /**
69973
+ * Slug
69974
+ */
69975
+ slug?: string;
68446
69976
  state?: Array<ProposalStates>;
68447
69977
  };
68448
69978
  url: '/api/proposal-proposals/';
@@ -68950,6 +70480,10 @@ export type ProposalProtectedCallsListData = {
68950
70480
  * Number of results to return per page.
68951
70481
  */
68952
70482
  page_size?: number;
70483
+ /**
70484
+ * Slug
70485
+ */
70486
+ slug?: string;
68953
70487
  state?: Array<CallStates>;
68954
70488
  };
68955
70489
  url: '/api/proposal-protected-calls/';
@@ -68983,6 +70517,10 @@ export type ProposalProtectedCallsCountData = {
68983
70517
  * Number of results to return per page.
68984
70518
  */
68985
70519
  page_size?: number;
70520
+ /**
70521
+ * Slug
70522
+ */
70523
+ slug?: string;
68986
70524
  state?: Array<CallStates>;
68987
70525
  };
68988
70526
  url: '/api/proposal-protected-calls/';
@@ -69228,6 +70766,10 @@ export type ProposalProtectedCallsConflictsListData = {
69228
70766
  * Number of results to return per page.
69229
70767
  */
69230
70768
  page_size?: number;
70769
+ /**
70770
+ * Slug
70771
+ */
70772
+ slug?: string;
69231
70773
  state?: Array<CallStates>;
69232
70774
  };
69233
70775
  url: '/api/proposal-protected-calls/{uuid}/conflicts/';
@@ -69547,6 +71089,10 @@ export type ProposalProtectedCallsProposalsComplianceAnswersListData = {
69547
71089
  * Number of results to return per page.
69548
71090
  */
69549
71091
  page_size?: number;
71092
+ /**
71093
+ * Slug
71094
+ */
71095
+ slug?: string;
69550
71096
  state?: Array<CallStates>;
69551
71097
  };
69552
71098
  url: '/api/proposal-protected-calls/{uuid}/proposals/{proposal_uuid}/compliance-answers/';
@@ -69582,6 +71128,10 @@ export type ProposalProtectedCallsProposedAssignmentsListData = {
69582
71128
  * Number of results to return per page.
69583
71129
  */
69584
71130
  page_size?: number;
71131
+ /**
71132
+ * Slug
71133
+ */
71134
+ slug?: string;
69585
71135
  state?: Array<CallStates>;
69586
71136
  };
69587
71137
  url: '/api/proposal-protected-calls/{uuid}/proposed-assignments/';
@@ -69740,6 +71290,10 @@ export type ProposalProtectedCallsInviteReviewersData = {
69740
71290
  * Number of results to return per page.
69741
71291
  */
69742
71292
  page_size?: number;
71293
+ /**
71294
+ * Slug
71295
+ */
71296
+ slug?: string;
69743
71297
  state?: Array<CallStates>;
69744
71298
  };
69745
71299
  url: '/api/proposal-protected-calls/{uuid}/reviewer-pool/';
@@ -69900,6 +71454,10 @@ export type ProposalProtectedCallsSuggestionsListData = {
69900
71454
  * Number of results to return per page.
69901
71455
  */
69902
71456
  page_size?: number;
71457
+ /**
71458
+ * Slug
71459
+ */
71460
+ slug?: string;
69903
71461
  state?: Array<CallStates>;
69904
71462
  };
69905
71463
  url: '/api/proposal-protected-calls/{uuid}/suggestions/';
@@ -69976,6 +71534,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
69976
71534
  * Number of results to return per page.
69977
71535
  */
69978
71536
  page_size?: number;
71537
+ /**
71538
+ * Slug
71539
+ */
71540
+ slug?: string;
69979
71541
  state?: Array<CallStates>;
69980
71542
  };
69981
71543
  url: '/api/proposal-protected-calls/available_compliance_checklists/';
@@ -70016,6 +71578,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsCountData = {
70016
71578
  * Number of results to return per page.
70017
71579
  */
70018
71580
  page_size?: number;
71581
+ /**
71582
+ * Slug
71583
+ */
71584
+ slug?: string;
70019
71585
  state?: Array<CallStates>;
70020
71586
  };
70021
71587
  url: '/api/proposal-protected-calls/available_compliance_checklists/';
@@ -70052,6 +71618,10 @@ export type ProposalPublicCallsListData = {
70052
71618
  * Number of results to return per page.
70053
71619
  */
70054
71620
  page_size?: number;
71621
+ /**
71622
+ * Slug
71623
+ */
71624
+ slug?: string;
70055
71625
  state?: Array<CallStates>;
70056
71626
  };
70057
71627
  url: '/api/proposal-public-calls/';
@@ -70085,6 +71655,10 @@ export type ProposalPublicCallsCountData = {
70085
71655
  * Number of results to return per page.
70086
71656
  */
70087
71657
  page_size?: number;
71658
+ /**
71659
+ * Slug
71660
+ */
71661
+ slug?: string;
70088
71662
  state?: Array<CallStates>;
70089
71663
  };
70090
71664
  url: '/api/proposal-public-calls/';
@@ -75715,7 +77289,7 @@ export type SupportCommentsListData = {
75715
77289
  *
75716
77290
  *
75717
77291
  */
75718
- o?: Array<ThreadSessionOEnum>;
77292
+ o?: Array<CommentOEnum>;
75719
77293
  /**
75720
77294
  * A page number within the paginated result set.
75721
77295
  */
@@ -75754,7 +77328,7 @@ export type SupportCommentsCountData = {
75754
77328
  *
75755
77329
  *
75756
77330
  */
75757
- o?: Array<ThreadSessionOEnum>;
77331
+ o?: Array<CommentOEnum>;
75758
77332
  /**
75759
77333
  * A page number within the paginated result set.
75760
77334
  */
@@ -77763,7 +79337,7 @@ export type UserGroupInvitationsProjectsListResponses = {
77763
79337
  };
77764
79338
  export type UserGroupInvitationsProjectsListResponse = UserGroupInvitationsProjectsListResponses[keyof UserGroupInvitationsProjectsListResponses];
77765
79339
  export type UserGroupInvitationsSubmitRequestData = {
77766
- body?: never;
79340
+ body?: SubmitRequestRequest;
77767
79341
  path: {
77768
79342
  uuid: string;
77769
79343
  };