waldur-js-client 8.0.7-dev.4 → 8.0.7-dev.40

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 = '';
@@ -2374,7 +2455,11 @@ export type BookingResource = {
2374
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
- readonly project_end_date_requested_by?: string;
2458
+ /**
2459
+ * Effective project end date including grace period. After this date, resources will be terminated.
2460
+ */
2461
+ readonly project_effective_end_date?: string | null;
2462
+ readonly project_end_date_requested_by?: string | null;
2378
2463
  readonly customer_uuid?: string;
2379
2464
  readonly customer_name?: string;
2380
2465
  readonly offering_slug?: string;
@@ -2809,6 +2894,25 @@ export type CallManagingOrganisationStat = {
2809
2894
  readonly calls_closing_in_one_week: number;
2810
2895
  readonly offering_requests_pending: number;
2811
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
+ };
2812
2916
  export type CallResourceTemplate = {
2813
2917
  readonly uuid?: string;
2814
2918
  readonly url?: string;
@@ -2883,7 +2987,7 @@ export type CallReviewerPool = {
2883
2987
  */
2884
2988
  expertise_match_score?: number | null;
2885
2989
  readonly invited_by_name: string;
2886
- readonly invitation_token: string;
2990
+ readonly invitation_link: string | null;
2887
2991
  readonly invitation_expires_at: string | null;
2888
2992
  readonly created: string;
2889
2993
  /**
@@ -2912,6 +3016,12 @@ export type CallReviewerPool = {
2912
3016
  * Count reviews in 'submitted' state.
2913
3017
  */
2914
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;
2915
3025
  };
2916
3026
  export type CallReviewerPoolUpdate = {
2917
3027
  /**
@@ -3533,6 +3643,10 @@ export type ChatResponse = {
3533
3643
  * Available project options [{name, organization, uuid}]. Present when status='project_form'.
3534
3644
  */
3535
3645
  projects?: Array<unknown>;
3646
+ /**
3647
+ * Available offering options [{uuid, name}]. Present when status='offering_form'.
3648
+ */
3649
+ offerings?: Array<unknown>;
3536
3650
  };
3537
3651
  export type ChatSession = {
3538
3652
  readonly uuid?: string;
@@ -4167,6 +4281,8 @@ export type ConstanceSettings = {
4167
4281
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4168
4282
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4169
4283
  MARKETPLACE_LANDING_PAGE?: string;
4284
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4285
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4170
4286
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4171
4287
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4172
4288
  TELEMETRY_URL?: string;
@@ -4315,6 +4431,7 @@ export type ConstanceSettings = {
4315
4431
  OIDC_CACHE_TIMEOUT?: number;
4316
4432
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4317
4433
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4434
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
4318
4435
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4319
4436
  OIDC_DEFAULT_LOGOUT_URL?: string;
4320
4437
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -4343,17 +4460,20 @@ export type ConstanceSettings = {
4343
4460
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4344
4461
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4345
4462
  ONBOARDING_BREG_API_URL?: string;
4346
- LLM_CHAT_ENABLED?: boolean;
4347
- LLM_INFERENCES_BACKEND_TYPE?: string;
4348
- LLM_INFERENCES_API_URL?: string;
4349
- LLM_INFERENCES_API_TOKEN?: string;
4350
- LLM_INFERENCES_MODEL?: string;
4351
- LLM_TOKEN_LIMIT_DAILY?: number;
4352
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4353
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4354
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4355
- LLM_CHAT_HISTORY_LIMIT?: number;
4356
- 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;
4357
4477
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4358
4478
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4359
4479
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4392,6 +4512,10 @@ export type ConstanceSettings = {
4392
4512
  ENABLE_PROJECT_DIGEST?: boolean;
4393
4513
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4394
4514
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4515
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4516
+ PAT_ENABLED?: boolean;
4517
+ PAT_MAX_LIFETIME_DAYS?: number;
4518
+ PAT_MAX_TOKENS_PER_USER?: number;
4395
4519
  };
4396
4520
  export type ConstanceSettingsRequest = {
4397
4521
  SITE_NAME?: string;
@@ -4412,6 +4536,8 @@ export type ConstanceSettingsRequest = {
4412
4536
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
4413
4537
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
4414
4538
  MARKETPLACE_LANDING_PAGE?: string;
4539
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
4540
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
4415
4541
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
4416
4542
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
4417
4543
  TELEMETRY_URL?: string;
@@ -4560,6 +4686,7 @@ export type ConstanceSettingsRequest = {
4560
4686
  OIDC_CACHE_TIMEOUT?: number;
4561
4687
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
4562
4688
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
4689
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
4563
4690
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
4564
4691
  OIDC_DEFAULT_LOGOUT_URL?: string;
4565
4692
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -4588,17 +4715,20 @@ export type ConstanceSettingsRequest = {
4588
4715
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
4589
4716
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
4590
4717
  ONBOARDING_BREG_API_URL?: string;
4591
- LLM_CHAT_ENABLED?: boolean;
4592
- LLM_INFERENCES_BACKEND_TYPE?: string;
4593
- LLM_INFERENCES_API_URL?: string;
4594
- LLM_INFERENCES_API_TOKEN?: string;
4595
- LLM_INFERENCES_MODEL?: string;
4596
- LLM_TOKEN_LIMIT_DAILY?: number;
4597
- LLM_TOKEN_LIMIT_WEEKLY?: number;
4598
- LLM_TOKEN_LIMIT_MONTHLY?: number;
4599
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
4600
- LLM_CHAT_HISTORY_LIMIT?: number;
4601
- 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;
4602
4732
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
4603
4733
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
4604
4734
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -4637,6 +4767,10 @@ export type ConstanceSettingsRequest = {
4637
4767
  ENABLE_PROJECT_DIGEST?: boolean;
4638
4768
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
4639
4769
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
4770
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
4771
+ PAT_ENABLED?: boolean;
4772
+ PAT_MAX_LIFETIME_DAYS?: number;
4773
+ PAT_MAX_TOKENS_PER_USER?: number;
4640
4774
  };
4641
4775
  export type ConsumptionStatisticsResponse = {
4642
4776
  total_records: number;
@@ -4878,96 +5012,86 @@ export type CreateFeedbackRequest = {
4878
5012
  export type CreateHealthMonitor = {
4879
5013
  readonly url: string;
4880
5014
  readonly uuid: string;
4881
- /**
4882
- * Pool this health monitor belongs to
4883
- */
4884
- pool: string;
4885
5015
  name?: string;
4886
- type: LoadBalancerProtocolEnum;
4887
5016
  /**
4888
5017
  * Interval between health checks in seconds
4889
5018
  */
4890
- delay: number;
5019
+ delay?: number;
4891
5020
  /**
4892
5021
  * Time in seconds to timeout a health check
4893
5022
  */
4894
- timeout: number;
4895
- /**
4896
- * Number of retries before marking member as down
4897
- */
4898
- max_retries: number;
4899
- readonly project: string;
4900
- readonly service_settings: string;
4901
- };
4902
- export type CreateHealthMonitorRequest = {
5023
+ timeout?: number;
5024
+ max_retries?: number;
5025
+ max_retries_down?: number;
4903
5026
  /**
4904
5027
  * Pool this health monitor belongs to
4905
5028
  */
4906
5029
  pool: string;
4907
- name?: string;
4908
5030
  type: LoadBalancerProtocolEnum;
5031
+ };
5032
+ export type CreateHealthMonitorRequest = {
5033
+ name?: string;
4909
5034
  /**
4910
5035
  * Interval between health checks in seconds
4911
5036
  */
4912
- delay: number;
5037
+ delay?: number;
4913
5038
  /**
4914
5039
  * Time in seconds to timeout a health check
4915
5040
  */
4916
- timeout: number;
5041
+ timeout?: number;
5042
+ max_retries?: number;
5043
+ max_retries_down?: number;
4917
5044
  /**
4918
- * Number of retries before marking member as down
5045
+ * Pool this health monitor belongs to
4919
5046
  */
4920
- max_retries: number;
5047
+ pool: string;
5048
+ type: LoadBalancerProtocolEnum;
4921
5049
  };
4922
5050
  export type CreateListener = {
5051
+ name?: string;
5052
+ default_pool?: string | null;
4923
5053
  readonly url: string;
4924
5054
  readonly uuid: string;
4925
5055
  /**
4926
5056
  * Load balancer this listener belongs to
4927
5057
  */
4928
5058
  load_balancer: string;
4929
- name: string;
4930
5059
  protocol: LoadBalancerProtocolEnum;
4931
5060
  /**
4932
5061
  * Port on which the listener listens
4933
5062
  */
4934
5063
  protocol_port: number;
4935
- default_pool?: string | null;
4936
- readonly project: string;
4937
- readonly service_settings: string;
4938
5064
  };
4939
5065
  export type CreateListenerRequest = {
5066
+ name?: string;
5067
+ default_pool?: string | null;
4940
5068
  /**
4941
5069
  * Load balancer this listener belongs to
4942
5070
  */
4943
5071
  load_balancer: string;
4944
- name: string;
4945
5072
  protocol: LoadBalancerProtocolEnum;
4946
5073
  /**
4947
5074
  * Port on which the listener listens
4948
5075
  */
4949
5076
  protocol_port: number;
4950
- default_pool?: string | null;
4951
5077
  };
4952
5078
  export type CreateLoadBalancer = {
4953
5079
  readonly url: string;
4954
5080
  readonly uuid: string;
5081
+ name: string;
4955
5082
  /**
4956
5083
  * OpenStack tenant this load balancer belongs to
4957
5084
  */
4958
5085
  tenant: string;
4959
- name: string;
4960
- vip_subnet_id: string;
4961
- readonly project: string;
4962
- readonly service_settings: string;
5086
+ vip_subnet: string;
4963
5087
  };
4964
5088
  export type CreateLoadBalancerRequest = {
5089
+ name: string;
4965
5090
  /**
4966
5091
  * OpenStack tenant this load balancer belongs to
4967
5092
  */
4968
5093
  tenant: string;
4969
- name: string;
4970
- vip_subnet_id: string;
5094
+ vip_subnet: string;
4971
5095
  };
4972
5096
  export type CreateManualAssignmentRequest = {
4973
5097
  /**
@@ -4996,24 +5120,22 @@ export type CreateManualAssignmentResponse = {
4996
5120
  export type CreatePool = {
4997
5121
  readonly url: string;
4998
5122
  readonly uuid: string;
5123
+ name: string;
4999
5124
  /**
5000
5125
  * Load balancer this pool belongs to
5001
5126
  */
5002
5127
  load_balancer: string;
5003
- name: string;
5004
5128
  protocol: LoadBalancerProtocolEnum;
5005
- lb_algorithm?: LbAlgorithmEnum;
5006
- readonly project: string;
5007
- readonly service_settings: string;
5008
5129
  };
5009
5130
  export type CreatePoolMember = {
5010
5131
  readonly url: string;
5011
5132
  readonly uuid: string;
5133
+ name?: string;
5134
+ weight?: number;
5012
5135
  /**
5013
5136
  * Pool this member belongs to
5014
5137
  */
5015
5138
  pool: string;
5016
- name?: string;
5017
5139
  /**
5018
5140
  * An IPv4 or IPv6 address.
5019
5141
  */
@@ -5022,17 +5144,15 @@ export type CreatePoolMember = {
5022
5144
  * Port on the backend server
5023
5145
  */
5024
5146
  protocol_port: number;
5025
- subnet_id: string;
5026
- weight?: number;
5027
- readonly project: string;
5028
- readonly service_settings: string;
5147
+ subnet: string;
5029
5148
  };
5030
5149
  export type CreatePoolMemberRequest = {
5150
+ name?: string;
5151
+ weight?: number;
5031
5152
  /**
5032
5153
  * Pool this member belongs to
5033
5154
  */
5034
5155
  pool: string;
5035
- name?: string;
5036
5156
  /**
5037
5157
  * An IPv4 or IPv6 address.
5038
5158
  */
@@ -5041,17 +5161,15 @@ export type CreatePoolMemberRequest = {
5041
5161
  * Port on the backend server
5042
5162
  */
5043
5163
  protocol_port: number;
5044
- subnet_id: string;
5045
- weight?: number;
5164
+ subnet: string;
5046
5165
  };
5047
5166
  export type CreatePoolRequest = {
5167
+ name: string;
5048
5168
  /**
5049
5169
  * Load balancer this pool belongs to
5050
5170
  */
5051
5171
  load_balancer: string;
5052
- name: string;
5053
5172
  protocol: LoadBalancerProtocolEnum;
5054
- lb_algorithm?: LbAlgorithmEnum;
5055
5173
  };
5056
5174
  export type CreateRouter = {
5057
5175
  readonly url: string;
@@ -5177,6 +5295,13 @@ export type Customer = {
5177
5295
  * Comma-separated list of notification email addresses
5178
5296
  */
5179
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;
5180
5305
  readonly payment_profiles?: Array<PaymentProfile>;
5181
5306
  readonly customer_credit?: number | null;
5182
5307
  readonly customer_unallocated_credit?: number | null;
@@ -5237,6 +5362,7 @@ export type CustomerComponentUsagePolicy = {
5237
5362
  * Fields for saving actions extra data. Keys are name of actions.
5238
5363
  */
5239
5364
  options?: unknown;
5365
+ readonly affected_resources_count: number;
5240
5366
  component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
5241
5367
  };
5242
5368
  export type CustomerComponentUsagePolicyRequest = {
@@ -5339,6 +5465,7 @@ export type CustomerEstimatedCostPolicy = {
5339
5465
  * Fields for saving actions extra data. Keys are name of actions.
5340
5466
  */
5341
5467
  options?: unknown;
5468
+ readonly affected_resources_count: number;
5342
5469
  limit_cost: number;
5343
5470
  period?: PolicyPeriodEnum;
5344
5471
  readonly period_name: string;
@@ -5538,6 +5665,13 @@ export type CustomerRequest = {
5538
5665
  * Comma-separated list of notification email addresses
5539
5666
  */
5540
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;
5541
5675
  };
5542
5676
  export type CustomerServiceAccount = {
5543
5677
  readonly url: string;
@@ -6285,6 +6419,7 @@ export type DryRunRequest = {
6285
6419
  };
6286
6420
  export type DryRunStateEnum = 1 | 2 | 3 | 4;
6287
6421
  export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
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';
6288
6423
  export type EligibilityCheck = {
6289
6424
  is_eligible: boolean;
6290
6425
  restrictions: Array<string>;
@@ -6356,7 +6491,7 @@ export type EventMetadataResponse = {
6356
6491
  * Map of event group keys to lists of event type enums from EventType
6357
6492
  */
6358
6493
  event_groups: {
6359
- [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'>;
6360
6495
  };
6361
6496
  };
6362
6497
  export type EventStats = {
@@ -6435,7 +6570,7 @@ export type EventSubscriptionRequest = {
6435
6570
  */
6436
6571
  observable_objects?: unknown;
6437
6572
  };
6438
- 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';
6439
6574
  export type ExecuteActionErrorResponse = {
6440
6575
  error: string;
6441
6576
  };
@@ -6916,6 +7051,12 @@ export type FlavorResponse = {
6916
7051
  */
6917
7052
  disk: number;
6918
7053
  };
7054
+ export type ForceAcceptPoolRequest = {
7055
+ override_reason: string;
7056
+ };
7057
+ export type ForceUnblockRequest = {
7058
+ override_reason: string;
7059
+ };
6919
7060
  export type FreeipaProfile = {
6920
7061
  readonly uuid: string;
6921
7062
  /**
@@ -7282,6 +7423,9 @@ export type IsdUserCount = {
7282
7423
  stale_user_count: number;
7283
7424
  oldest_sync: string | null;
7284
7425
  };
7426
+ export type IdentityBridgeAllowedFields = {
7427
+ allowed_fields: Array<string>;
7428
+ };
7285
7429
  export type IdentityBridgeRemoveRequest = {
7286
7430
  /**
7287
7431
  * CUID / username of the user to remove from the ISD.
@@ -8377,7 +8521,6 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
8377
8521
  export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
8378
8522
  export type KindEnum = 'default' | 'course' | 'public';
8379
8523
  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';
8380
- export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
8381
8524
  export type LexisLink = {
8382
8525
  readonly url: string;
8383
8526
  readonly uuid: string;
@@ -8442,13 +8585,16 @@ export type LinkToInvoice = {
8442
8585
  export type LinkToInvoiceRequest = {
8443
8586
  invoice: string;
8444
8587
  };
8588
+ export type LoadBalancerAsyncOperationResponse = {
8589
+ /**
8590
+ * Message that execution of the operation was scheduled.
8591
+ */
8592
+ status: string;
8593
+ };
8445
8594
  export type LoadBalancerAttachFloatingIpRequest = {
8446
8595
  floating_ip: string;
8447
8596
  };
8448
8597
  export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
8449
- export type LoadBalancerUpdateVipSecurityGroupsRequest = {
8450
- security_groups: Array<string>;
8451
- };
8452
8598
  export type LockStats = {
8453
8599
  /**
8454
8600
  * Total number of locks currently held
@@ -8469,6 +8615,8 @@ export type Logout = {
8469
8615
  */
8470
8616
  readonly logout_url: string;
8471
8617
  };
8618
+ export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
8619
+ export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
8472
8620
  export type MaintenanceActionResponse = {
8473
8621
  /**
8474
8622
  * Response message describing the action result
@@ -9103,6 +9251,10 @@ export type MergedPluginOptions = {
9103
9251
  * Default limit for snapshot size in GB
9104
9252
  */
9105
9253
  snapshot_size_limit_gb?: number;
9254
+ /**
9255
+ * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9256
+ */
9257
+ lbaas_enabled?: boolean;
9106
9258
  /**
9107
9259
  * HEAppE cluster id
9108
9260
  */
@@ -9401,6 +9553,10 @@ export type MergedPluginOptionsRequest = {
9401
9553
  * Default limit for snapshot size in GB
9402
9554
  */
9403
9555
  snapshot_size_limit_gb?: number;
9556
+ /**
9557
+ * If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
9558
+ */
9559
+ lbaas_enabled?: boolean;
9404
9560
  /**
9405
9561
  * HEAppE cluster id
9406
9562
  */
@@ -9902,10 +10058,14 @@ export type Message = {
9902
10058
  readonly uuid: string;
9903
10059
  readonly thread: string;
9904
10060
  role: MessageRoleEnum;
9905
- content: string;
10061
+ content?: string;
10062
+ readonly content_display: string;
10063
+ readonly tool_calls: unknown;
9906
10064
  readonly sequence_index: number;
9907
10065
  readonly replaces: string | null;
9908
10066
  readonly created: string;
10067
+ readonly input_tokens: number | null;
10068
+ readonly output_tokens: number | null;
9909
10069
  readonly is_flagged: boolean;
9910
10070
  severity: InjectionSeverityEnum;
9911
10071
  readonly injection_categories: unknown;
@@ -10468,6 +10628,8 @@ export type NestedPlanComponent = {
10468
10628
  * Discount rate in percentage.
10469
10629
  */
10470
10630
  discount_rate?: number | null;
10631
+ readonly discounted_price?: string | null;
10632
+ readonly discount_description?: string | null;
10471
10633
  };
10472
10634
  export type NestedPlanComponentRequest = {
10473
10635
  amount?: number;
@@ -10957,6 +11119,7 @@ export type Offering = {
10957
11119
  * Returns 'limit_only', 'usage_only', or 'mixed'.
10958
11120
  */
10959
11121
  readonly billing_type_classification?: string;
11122
+ readonly effective_available_limits?: Array<string>;
10960
11123
  compliance_checklist?: string | null;
10961
11124
  readonly user_has_consent?: boolean;
10962
11125
  readonly is_accessible?: boolean;
@@ -11008,6 +11171,22 @@ export type OfferingComponent = {
11008
11171
  overage_component?: string | null;
11009
11172
  min_prepaid_duration?: number | null;
11010
11173
  max_prepaid_duration?: number | null;
11174
+ /**
11175
+ * 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).
11176
+ */
11177
+ prepaid_duration_step?: number | null;
11178
+ /**
11179
+ * Minimum number of months allowed for a renewal.
11180
+ */
11181
+ min_renewal_duration?: number | null;
11182
+ /**
11183
+ * Maximum number of months allowed for a renewal.
11184
+ */
11185
+ max_renewal_duration?: number | null;
11186
+ /**
11187
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11188
+ */
11189
+ renewal_duration_step?: number | null;
11011
11190
  };
11012
11191
  export type OfferingComponentLimitRequest = {
11013
11192
  /**
@@ -11054,6 +11233,22 @@ export type OfferingComponentRequest = {
11054
11233
  overage_component?: string | null;
11055
11234
  min_prepaid_duration?: number | null;
11056
11235
  max_prepaid_duration?: number | null;
11236
+ /**
11237
+ * 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).
11238
+ */
11239
+ prepaid_duration_step?: number | null;
11240
+ /**
11241
+ * Minimum number of months allowed for a renewal.
11242
+ */
11243
+ min_renewal_duration?: number | null;
11244
+ /**
11245
+ * Maximum number of months allowed for a renewal.
11246
+ */
11247
+ max_renewal_duration?: number | null;
11248
+ /**
11249
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
11250
+ */
11251
+ renewal_duration_step?: number | null;
11057
11252
  };
11058
11253
  export type OfferingComponentStat = {
11059
11254
  readonly period: string;
@@ -11177,6 +11372,7 @@ export type OfferingEstimatedCostPolicy = {
11177
11372
  * Fields for saving actions extra data. Keys are name of actions.
11178
11373
  */
11179
11374
  options?: unknown;
11375
+ readonly affected_resources_count: number;
11180
11376
  limit_cost: number;
11181
11377
  period?: PolicyPeriodEnum;
11182
11378
  readonly period_name: string;
@@ -11803,6 +11999,14 @@ export type OfferingSoftwareCatalogRequest = {
11803
11999
  partition?: string | null;
11804
12000
  };
11805
12001
  export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
12002
+ export type OfferingStateCounter = {
12003
+ state: string;
12004
+ count: number;
12005
+ };
12006
+ export type OfferingStateCounters = {
12007
+ resources: Array<OfferingStateCounter>;
12008
+ users: Array<OfferingStateCounter>;
12009
+ };
11806
12010
  export type OfferingStats = {
11807
12011
  /**
11808
12012
  * Number of resources for the offering
@@ -11926,6 +12130,7 @@ export type OfferingUsagePolicy = {
11926
12130
  * Fields for saving actions extra data. Keys are name of actions.
11927
12131
  */
11928
12132
  options?: unknown;
12133
+ readonly affected_resources_count: number;
11929
12134
  organization_groups?: Array<string>;
11930
12135
  /**
11931
12136
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -13226,8 +13431,8 @@ export type OpenStackLoadBalancer = {
13226
13431
  * An IPv4 or IPv6 address.
13227
13432
  */
13228
13433
  vip_address?: string;
13229
- readonly vip_subnet_id?: string;
13230
- readonly vip_port_id?: string;
13434
+ readonly vip_subnet?: string | null;
13435
+ readonly vip_port?: string | null;
13231
13436
  /**
13232
13437
  * Floating IP attached to the VIP port
13233
13438
  */
@@ -13249,26 +13454,6 @@ export type OpenStackLoadBalancer = {
13249
13454
  readonly is_usage_based?: boolean | null;
13250
13455
  readonly is_limit_based?: boolean | null;
13251
13456
  };
13252
- export type OpenStackLoadBalancerRequest = {
13253
- name: string;
13254
- description?: string;
13255
- service_settings: string;
13256
- project: string;
13257
- error_message?: string;
13258
- error_traceback?: string;
13259
- /**
13260
- * Load balancer ID in Octavia
13261
- */
13262
- backend_id?: string | null;
13263
- /**
13264
- * OpenStack tenant this load balancer belongs to
13265
- */
13266
- tenant: string;
13267
- /**
13268
- * Floating IP attached to the VIP port
13269
- */
13270
- attached_floating_ip?: string | null;
13271
- };
13272
13457
  export type OpenStackNestedFloatingIp = {
13273
13458
  readonly url?: string;
13274
13459
  readonly uuid?: string;
@@ -13608,10 +13793,7 @@ export type OpenStackPoolMember = {
13608
13793
  */
13609
13794
  address?: string;
13610
13795
  readonly protocol_port?: number;
13611
- /**
13612
- * Subnet ID for the member (required for creation)
13613
- */
13614
- subnet_id?: string;
13796
+ readonly subnet?: string | null;
13615
13797
  readonly weight?: number;
13616
13798
  readonly provisioning_status?: string;
13617
13799
  readonly operating_status?: string;
@@ -13629,22 +13811,6 @@ export type OpenStackPoolMember = {
13629
13811
  readonly is_usage_based?: boolean | null;
13630
13812
  readonly is_limit_based?: boolean | null;
13631
13813
  };
13632
- export type OpenStackPoolRequest = {
13633
- name: string;
13634
- description?: string;
13635
- service_settings: string;
13636
- project: string;
13637
- error_message?: string;
13638
- error_traceback?: string;
13639
- /**
13640
- * Pool ID in Octavia
13641
- */
13642
- backend_id?: string | null;
13643
- /**
13644
- * Load balancer this pool belongs to
13645
- */
13646
- load_balancer: string;
13647
- };
13648
13814
  export type OpenStackPort = {
13649
13815
  readonly url?: string;
13650
13816
  readonly uuid?: string;
@@ -15394,6 +15560,13 @@ export type PatchedCustomerRequest = {
15394
15560
  * Comma-separated list of notification email addresses
15395
15561
  */
15396
15562
  notification_emails?: string;
15563
+ city?: string;
15564
+ state?: string;
15565
+ parish?: string;
15566
+ street?: string;
15567
+ house_nr?: string;
15568
+ apartment_nr?: string;
15569
+ household?: string;
15397
15570
  };
15398
15571
  export type PatchedCustomerServiceAccountRequest = {
15399
15572
  username?: string;
@@ -15938,46 +16111,10 @@ export type PatchedOpenStackInstanceRequest = {
15938
16111
  name?: string;
15939
16112
  description?: string;
15940
16113
  };
15941
- export type PatchedOpenStackLoadBalancerRequest = {
15942
- name?: string;
15943
- description?: string;
15944
- service_settings?: string;
15945
- project?: string;
15946
- error_message?: string;
15947
- error_traceback?: string;
15948
- /**
15949
- * Load balancer ID in Octavia
15950
- */
15951
- backend_id?: string | null;
15952
- /**
15953
- * OpenStack tenant this load balancer belongs to
15954
- */
15955
- tenant?: string;
15956
- /**
15957
- * Floating IP attached to the VIP port
15958
- */
15959
- attached_floating_ip?: string | null;
15960
- };
15961
16114
  export type PatchedOpenStackNetworkRequest = {
15962
16115
  name?: string;
15963
16116
  description?: string;
15964
16117
  };
15965
- export type PatchedOpenStackPoolRequest = {
15966
- name?: string;
15967
- description?: string;
15968
- service_settings?: string;
15969
- project?: string;
15970
- error_message?: string;
15971
- error_traceback?: string;
15972
- /**
15973
- * Pool ID in Octavia
15974
- */
15975
- backend_id?: string | null;
15976
- /**
15977
- * Load balancer this pool belongs to
15978
- */
15979
- load_balancer?: string;
15980
- };
15981
16118
  export type PatchedOpenStackPortRequest = {
15982
16119
  name?: string;
15983
16120
  description?: string;
@@ -16840,18 +16977,31 @@ export type PatchedTemplateRequest = {
16840
16977
  };
16841
16978
  export type PatchedUpdateHealthMonitorRequest = {
16842
16979
  name?: string;
16980
+ /**
16981
+ * Interval between health checks in seconds
16982
+ */
16843
16983
  delay?: number;
16984
+ /**
16985
+ * Time in seconds to timeout a health check
16986
+ */
16844
16987
  timeout?: number;
16845
16988
  max_retries?: number;
16989
+ max_retries_down?: number;
16846
16990
  };
16847
16991
  export type PatchedUpdateListenerRequest = {
16848
16992
  name?: string;
16849
16993
  default_pool?: string | null;
16850
16994
  };
16995
+ export type PatchedUpdateLoadBalancerRequest = {
16996
+ name?: string;
16997
+ };
16851
16998
  export type PatchedUpdatePoolMemberRequest = {
16852
16999
  name?: string;
16853
17000
  weight?: number;
16854
17001
  };
17002
+ export type PatchedUpdatePoolRequest = {
17003
+ name?: string;
17004
+ };
16855
17005
  export type PatchedUserAgreementRequest = {
16856
17006
  content?: string;
16857
17007
  agreement_type?: AgreementTypeEnum;
@@ -16955,6 +17105,10 @@ export type PatchedUserRequest = {
16955
17105
  * 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.
16956
17106
  */
16957
17107
  managed_isds?: unknown;
17108
+ /**
17109
+ * Reason why the user was deactivated. Visible to staff and support.
17110
+ */
17111
+ deactivation_reason?: string;
16958
17112
  };
16959
17113
  export type PatchedVmwareVirtualMachineRequest = {
16960
17114
  description?: string;
@@ -17075,13 +17229,13 @@ export type PermissionMetadataResponse = {
17075
17229
  * Map of permission keys to permission enum values from PermissionEnum
17076
17230
  */
17077
17231
  permissions: {
17078
- [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';
17232
+ [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';
17079
17233
  };
17080
17234
  /**
17081
17235
  * Map of resource types to create permission enums
17082
17236
  */
17083
17237
  permission_map: {
17084
- [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';
17238
+ [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';
17085
17239
  };
17086
17240
  /**
17087
17241
  * Grouped permission descriptions for UI
@@ -17129,6 +17283,37 @@ export type PersonIdentifierFieldsResponse = {
17129
17283
  [key: string]: unknown;
17130
17284
  };
17131
17285
  };
17286
+ export type PersonalAccessToken = {
17287
+ uuid: string;
17288
+ name: string;
17289
+ token_prefix: string;
17290
+ scopes: Array<string>;
17291
+ expires_at: string;
17292
+ is_active: boolean;
17293
+ last_used_at: string;
17294
+ /**
17295
+ * An IPv4 or IPv6 address.
17296
+ */
17297
+ last_used_ip: string;
17298
+ use_count: number;
17299
+ created: string;
17300
+ };
17301
+ export type PersonalAccessTokenCreateRequest = {
17302
+ name: string;
17303
+ scopes: Array<string>;
17304
+ expires_at: string;
17305
+ };
17306
+ export type PersonalAccessTokenCreated = {
17307
+ uuid: string;
17308
+ name: string;
17309
+ /**
17310
+ * Plaintext token — shown only once.
17311
+ */
17312
+ token: string;
17313
+ scopes: Array<string>;
17314
+ expires_at: string;
17315
+ created: string;
17316
+ };
17132
17317
  export type PlanComponent = {
17133
17318
  readonly offering_uuid: string;
17134
17319
  readonly offering_name: string;
@@ -17346,6 +17531,10 @@ export type Project = {
17346
17531
  */
17347
17532
  end_date?: string | null;
17348
17533
  readonly end_date_requested_by?: string | null;
17534
+ /**
17535
+ * Timestamp of the last end_date change.
17536
+ */
17537
+ readonly end_date_updated_at?: string | null;
17349
17538
  oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
17350
17539
  /**
17351
17540
  * Human-readable label for the OECD FOS 2007 classification code
@@ -17378,6 +17567,18 @@ export type Project = {
17378
17567
  * Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
17379
17568
  */
17380
17569
  grace_period_days?: number | null;
17570
+ /**
17571
+ * Grace period days set at the customer (organization) level. Used as default when project-level is not set.
17572
+ */
17573
+ readonly customer_grace_period_days?: number | null;
17574
+ /**
17575
+ * Effective end date including grace period. After this date, project resources will be terminated.
17576
+ */
17577
+ readonly effective_end_date?: string | null;
17578
+ /**
17579
+ * True if the project is past its end date but still within the grace period.
17580
+ */
17581
+ readonly is_in_grace_period?: boolean;
17381
17582
  user_email_patterns?: unknown;
17382
17583
  user_affiliations?: unknown;
17383
17584
  /**
@@ -17438,6 +17639,16 @@ export type ProjectClassificationSummary = {
17438
17639
  */
17439
17640
  industry_projects: number;
17440
17641
  };
17642
+ export type ProjectCreationTrend = {
17643
+ /**
17644
+ * Month in YYYY-MM format
17645
+ */
17646
+ month: string;
17647
+ /**
17648
+ * Number of items created
17649
+ */
17650
+ count: number;
17651
+ };
17441
17652
  export type ProjectCredit = {
17442
17653
  readonly uuid: string;
17443
17654
  readonly url: string;
@@ -17528,6 +17739,61 @@ export type ProjectDigestPreviewResponse = {
17528
17739
  html_body: string;
17529
17740
  text_body: string;
17530
17741
  };
17742
+ export type ProjectEndDateChangeRequest = {
17743
+ readonly url: string;
17744
+ readonly uuid: string;
17745
+ readonly state: string;
17746
+ project: string;
17747
+ readonly project_uuid: string;
17748
+ readonly project_name: string;
17749
+ readonly customer_uuid: string;
17750
+ readonly customer_name: string;
17751
+ /**
17752
+ * The requested new end date for the project
17753
+ */
17754
+ requested_end_date: string;
17755
+ /**
17756
+ * Optional comment from the requester
17757
+ */
17758
+ comment?: string | null;
17759
+ readonly created: string;
17760
+ readonly created_by_uuid: string | null;
17761
+ readonly created_by_full_name: string | null;
17762
+ /**
17763
+ * Timestamp when the review was completed
17764
+ */
17765
+ readonly reviewed_at: string | null;
17766
+ readonly reviewed_by_uuid: string | null;
17767
+ readonly reviewed_by_full_name: string | null;
17768
+ /**
17769
+ * Optional comment provided during review
17770
+ */
17771
+ review_comment?: string | null;
17772
+ };
17773
+ export type ProjectEndDateChangeRequestCreate = {
17774
+ project: string;
17775
+ /**
17776
+ * The requested new end date for the project
17777
+ */
17778
+ requested_end_date: string;
17779
+ /**
17780
+ * Optional comment from the requester
17781
+ */
17782
+ comment?: string | null;
17783
+ readonly uuid: string;
17784
+ readonly state: string;
17785
+ };
17786
+ export type ProjectEndDateChangeRequestCreateRequest = {
17787
+ project: string;
17788
+ /**
17789
+ * The requested new end date for the project
17790
+ */
17791
+ requested_end_date: string;
17792
+ /**
17793
+ * Optional comment from the requester
17794
+ */
17795
+ comment?: string | null;
17796
+ };
17531
17797
  export type ProjectEstimatedCostPolicy = {
17532
17798
  readonly uuid: string;
17533
17799
  readonly url: string;
@@ -17544,6 +17810,7 @@ export type ProjectEstimatedCostPolicy = {
17544
17810
  * Fields for saving actions extra data. Keys are name of actions.
17545
17811
  */
17546
17812
  options?: unknown;
17813
+ readonly affected_resources_count: number;
17547
17814
  limit_cost: number;
17548
17815
  period?: PolicyPeriodEnum;
17549
17816
  readonly period_name: string;
@@ -18404,6 +18671,7 @@ export type ProviderOfferingDetails = {
18404
18671
  * Returns 'limit_only', 'usage_only', or 'mixed'.
18405
18672
  */
18406
18673
  readonly billing_type_classification?: string;
18674
+ readonly effective_available_limits?: Array<string>;
18407
18675
  compliance_checklist?: string | null;
18408
18676
  readonly integration_status?: Array<IntegrationStatus> | null;
18409
18677
  readonly google_calendar_is_public?: boolean | null;
@@ -18806,6 +19074,7 @@ export type PublicOfferingDetails = {
18806
19074
  * Returns 'limit_only', 'usage_only', or 'mixed'.
18807
19075
  */
18808
19076
  readonly billing_type_classification?: string;
19077
+ readonly effective_available_limits?: Array<string>;
18809
19078
  compliance_checklist?: string | null;
18810
19079
  readonly user_has_consent?: boolean;
18811
19080
  readonly is_accessible?: boolean;
@@ -20605,7 +20874,11 @@ export type Resource = {
20605
20874
  * The date is inclusive. Once reached, all project resource will be scheduled for termination.
20606
20875
  */
20607
20876
  readonly project_end_date?: string | null;
20608
- readonly project_end_date_requested_by?: string;
20877
+ /**
20878
+ * Effective project end date including grace period. After this date, resources will be terminated.
20879
+ */
20880
+ readonly project_effective_end_date?: string | null;
20881
+ readonly project_end_date_requested_by?: string | null;
20609
20882
  readonly customer_uuid?: string;
20610
20883
  readonly customer_name?: string;
20611
20884
  readonly offering_slug?: string;
@@ -20679,15 +20952,40 @@ export type ResourceBackendIdRequest = {
20679
20952
  export type ResourceBackendMetadataRequest = {
20680
20953
  backend_metadata: unknown;
20681
20954
  };
20955
+ export type ResourceDemandStat = {
20956
+ readonly offering_uuid: string;
20957
+ readonly offering_name: string;
20958
+ readonly offering_type: string;
20959
+ readonly provider_name: string;
20960
+ readonly proposal_count: number;
20961
+ readonly request_count: number;
20962
+ readonly approved_count: number;
20963
+ readonly pending_count: number;
20964
+ readonly total_requested_limits: {
20965
+ [key: string]: number;
20966
+ };
20967
+ readonly total_approved_limits: {
20968
+ [key: string]: number;
20969
+ };
20970
+ };
20682
20971
  export type ResourceDownscaledRequest = {
20683
20972
  downscaled?: boolean;
20684
20973
  };
20974
+ export type ResourceEffectiveIdRequest = {
20975
+ effective_id?: string;
20976
+ };
20685
20977
  export type ResourceEndDateByProviderRequest = {
20686
20978
  /**
20687
20979
  * The date is inclusive. Once reached, a resource will be scheduled for termination.
20688
20980
  */
20689
20981
  end_date?: string | null;
20690
20982
  };
20983
+ export type ResourceEndDateRequest = {
20984
+ /**
20985
+ * The date is inclusive. Once reached, a resource will be scheduled for termination.
20986
+ */
20987
+ end_date?: string | null;
20988
+ };
20691
20989
  export type ResourceKeycloakScopesRequest = {
20692
20990
  /**
20693
20991
  * Pre-configured scope options for this resource.
@@ -21112,6 +21410,19 @@ export type ReviewCommentRequest = {
21112
21410
  */
21113
21411
  comment?: string;
21114
21412
  };
21413
+ export type ReviewProgressStat = {
21414
+ readonly reviewer_uuid: string;
21415
+ readonly reviewer_name: string;
21416
+ readonly reviewer_email: string;
21417
+ readonly total_assigned: number;
21418
+ readonly pending: number;
21419
+ readonly in_progress: number;
21420
+ readonly completed: number;
21421
+ readonly declined: number;
21422
+ readonly average_score: number | null;
21423
+ readonly average_review_time_days: number | null;
21424
+ readonly completion_rate: number;
21425
+ };
21115
21426
  export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
21116
21427
  export type ReviewSubmitRequest = {
21117
21428
  summary_score?: number;
@@ -22781,6 +23092,7 @@ export type SlurmPeriodicUsagePolicy = {
22781
23092
  * Fields for saving actions extra data. Keys are name of actions.
22782
23093
  */
22783
23094
  options?: unknown;
23095
+ readonly affected_resources_count: number;
22784
23096
  organization_groups?: Array<string>;
22785
23097
  /**
22786
23098
  * If True, policy applies to all customers. Mutually exclusive with organization_groups.
@@ -23150,6 +23462,7 @@ export type SoftwarePackage = {
23150
23462
  */
23151
23463
  is_extension?: boolean;
23152
23464
  readonly parent_softwares: Array<NestedParentSoftware>;
23465
+ readonly extensions: Array<NestedParentSoftware>;
23153
23466
  readonly catalog_name: string;
23154
23467
  readonly catalog_version: string;
23155
23468
  readonly catalog_type: string;
@@ -23358,6 +23671,12 @@ export type SupportUser = {
23358
23671
  export type SupportedCountriesResponse = {
23359
23672
  supported_countries: Array<string>;
23360
23673
  };
23674
+ export type SwitchBillingModeRequest = {
23675
+ /**
23676
+ * Switch all builtin components to monthly (LIMIT), prepaid (ONE_TIME + is_prepaid), or usage-based billing.
23677
+ */
23678
+ billing_mode: BillingModeEnum;
23679
+ };
23361
23680
  export type SyncFromArrowRequestRequest = {
23362
23681
  settings_uuid?: string;
23363
23682
  };
@@ -23687,6 +24006,11 @@ export type ThreadSession = {
23687
24006
  readonly flags?: unknown;
23688
24007
  is_archived?: boolean;
23689
24008
  readonly message_count?: number;
24009
+ readonly input_tokens?: number | null;
24010
+ readonly output_tokens?: number | null;
24011
+ readonly total_tokens?: number | null;
24012
+ readonly title_gen_input_tokens?: number | null;
24013
+ readonly title_gen_output_tokens?: number | null;
23690
24014
  readonly is_flagged?: boolean;
23691
24015
  max_severity?: InjectionSeverityEnum;
23692
24016
  readonly user_username?: string;
@@ -23825,6 +24149,24 @@ export type TopQueue = {
23825
24149
  */
23826
24150
  readonly consumers: number;
23827
24151
  };
24152
+ export type TopServiceProviderByResources = {
24153
+ /**
24154
+ * UUID of the service provider
24155
+ */
24156
+ customer_uuid: string;
24157
+ /**
24158
+ * Name of the service provider
24159
+ */
24160
+ customer_name: string;
24161
+ /**
24162
+ * Number of active resources
24163
+ */
24164
+ resources_count: number;
24165
+ /**
24166
+ * Number of distinct projects
24167
+ */
24168
+ projects_count: number;
24169
+ };
23828
24170
  export type TotalCustomerCost = {
23829
24171
  readonly total: number;
23830
24172
  readonly price: number;
@@ -23884,16 +24226,32 @@ export type UpdateActionsResponse = {
23884
24226
  provider_action_type?: string | null;
23885
24227
  };
23886
24228
  export type UpdateHealthMonitor = {
24229
+ readonly url: string;
24230
+ readonly uuid: string;
23887
24231
  name?: string;
24232
+ /**
24233
+ * Interval between health checks in seconds
24234
+ */
23888
24235
  delay?: number;
24236
+ /**
24237
+ * Time in seconds to timeout a health check
24238
+ */
23889
24239
  timeout?: number;
23890
24240
  max_retries?: number;
24241
+ max_retries_down?: number;
23891
24242
  };
23892
24243
  export type UpdateHealthMonitorRequest = {
23893
24244
  name?: string;
24245
+ /**
24246
+ * Interval between health checks in seconds
24247
+ */
23894
24248
  delay?: number;
24249
+ /**
24250
+ * Time in seconds to timeout a health check
24251
+ */
23895
24252
  timeout?: number;
23896
24253
  max_retries?: number;
24254
+ max_retries_down?: number;
23897
24255
  };
23898
24256
  export type UpdateListener = {
23899
24257
  name?: string;
@@ -23903,6 +24261,14 @@ export type UpdateListenerRequest = {
23903
24261
  name?: string;
23904
24262
  default_pool?: string | null;
23905
24263
  };
24264
+ export type UpdateLoadBalancer = {
24265
+ readonly url: string;
24266
+ readonly uuid: string;
24267
+ name: string;
24268
+ };
24269
+ export type UpdateLoadBalancerRequest = {
24270
+ name: string;
24271
+ };
23906
24272
  export type UpdateOfferingComponentRequest = {
23907
24273
  uuid: string;
23908
24274
  billing_type: BillingTypeEnum;
@@ -23935,8 +24301,31 @@ export type UpdateOfferingComponentRequest = {
23935
24301
  overage_component?: string | null;
23936
24302
  min_prepaid_duration?: number | null;
23937
24303
  max_prepaid_duration?: number | null;
24304
+ /**
24305
+ * 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).
24306
+ */
24307
+ prepaid_duration_step?: number | null;
24308
+ /**
24309
+ * Minimum number of months allowed for a renewal.
24310
+ */
24311
+ min_renewal_duration?: number | null;
24312
+ /**
24313
+ * Maximum number of months allowed for a renewal.
24314
+ */
24315
+ max_renewal_duration?: number | null;
24316
+ /**
24317
+ * Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
24318
+ */
24319
+ renewal_duration_step?: number | null;
24320
+ };
24321
+ export type UpdatePool = {
24322
+ readonly url: string;
24323
+ readonly uuid: string;
24324
+ name: string;
23938
24325
  };
23939
24326
  export type UpdatePoolMember = {
24327
+ readonly url: string;
24328
+ readonly uuid: string;
23940
24329
  name?: string;
23941
24330
  weight?: number;
23942
24331
  };
@@ -23944,6 +24333,9 @@ export type UpdatePoolMemberRequest = {
23944
24333
  name?: string;
23945
24334
  weight?: number;
23946
24335
  };
24336
+ export type UpdatePoolRequest = {
24337
+ name: string;
24338
+ };
23947
24339
  export type UrgencyEnum = 'low' | 'medium' | 'high';
23948
24340
  export type User = {
23949
24341
  readonly url?: string;
@@ -24068,6 +24460,10 @@ export type User = {
24068
24460
  * List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
24069
24461
  */
24070
24462
  readonly active_isds?: unknown;
24463
+ /**
24464
+ * Reason why the user was deactivated. Visible to staff and support.
24465
+ */
24466
+ deactivation_reason?: string;
24071
24467
  };
24072
24468
  export type UserAction = {
24073
24469
  readonly uuid: string;
@@ -24300,6 +24696,16 @@ export type UserLanguageCount = {
24300
24696
  language: string;
24301
24697
  count: number;
24302
24698
  };
24699
+ export type UserNationalityStats = {
24700
+ /**
24701
+ * Nationality code
24702
+ */
24703
+ nationality: string;
24704
+ /**
24705
+ * Number of users
24706
+ */
24707
+ count: number;
24708
+ };
24303
24709
  export type UserOfferingConsent = {
24304
24710
  readonly uuid: string;
24305
24711
  readonly user_uuid: string;
@@ -24447,6 +24853,20 @@ export type UserRequest = {
24447
24853
  * 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.
24448
24854
  */
24449
24855
  managed_isds?: unknown;
24856
+ /**
24857
+ * Reason why the user was deactivated. Visible to staff and support.
24858
+ */
24859
+ deactivation_reason?: string;
24860
+ };
24861
+ export type UserResidenceCountryStats = {
24862
+ /**
24863
+ * Country of residence code
24864
+ */
24865
+ country_of_residence: string;
24866
+ /**
24867
+ * Number of users
24868
+ */
24869
+ count: number;
24450
24870
  };
24451
24871
  export type UserRoleCreateRequest = {
24452
24872
  role: string;
@@ -25043,6 +25463,10 @@ export type OpenStackCreateInstancePortRequest = {
25043
25463
  */
25044
25464
  subnet?: string | null;
25045
25465
  port?: string;
25466
+ /**
25467
+ * If True, security groups and rules will be applied to this port
25468
+ */
25469
+ port_security_enabled?: boolean;
25046
25470
  };
25047
25471
  export type OpenStackDataVolumeRequest = {
25048
25472
  size: number;
@@ -25253,6 +25677,13 @@ export type CustomerRequestForm = {
25253
25677
  * Comma-separated list of notification email addresses
25254
25678
  */
25255
25679
  notification_emails?: string;
25680
+ city?: string;
25681
+ state?: string;
25682
+ parish?: string;
25683
+ street?: string;
25684
+ house_nr?: string;
25685
+ apartment_nr?: string;
25686
+ household?: string;
25256
25687
  };
25257
25688
  export type CustomerRequestMultipart = {
25258
25689
  /**
@@ -25330,6 +25761,13 @@ export type CustomerRequestMultipart = {
25330
25761
  * Comma-separated list of notification email addresses
25331
25762
  */
25332
25763
  notification_emails?: string;
25764
+ city?: string;
25765
+ state?: string;
25766
+ parish?: string;
25767
+ street?: string;
25768
+ house_nr?: string;
25769
+ apartment_nr?: string;
25770
+ household?: string;
25333
25771
  };
25334
25772
  export type PatchedCustomerRequestForm = {
25335
25773
  /**
@@ -25407,6 +25845,13 @@ export type PatchedCustomerRequestForm = {
25407
25845
  * Comma-separated list of notification email addresses
25408
25846
  */
25409
25847
  notification_emails?: string;
25848
+ city?: string;
25849
+ state?: string;
25850
+ parish?: string;
25851
+ street?: string;
25852
+ house_nr?: string;
25853
+ apartment_nr?: string;
25854
+ household?: string;
25410
25855
  };
25411
25856
  export type PatchedCustomerRequestMultipart = {
25412
25857
  /**
@@ -25484,6 +25929,13 @@ export type PatchedCustomerRequestMultipart = {
25484
25929
  * Comma-separated list of notification email addresses
25485
25930
  */
25486
25931
  notification_emails?: string;
25932
+ city?: string;
25933
+ state?: string;
25934
+ parish?: string;
25935
+ street?: string;
25936
+ house_nr?: string;
25937
+ apartment_nr?: string;
25938
+ household?: string;
25487
25939
  };
25488
25940
  export type ExternalLinkRequestForm = {
25489
25941
  name: string;
@@ -26082,6 +26534,8 @@ export type ConstanceSettingsRequestForm = {
26082
26534
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26083
26535
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26084
26536
  MARKETPLACE_LANDING_PAGE?: string;
26537
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26538
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26085
26539
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26086
26540
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26087
26541
  TELEMETRY_URL?: string;
@@ -26230,6 +26684,7 @@ export type ConstanceSettingsRequestForm = {
26230
26684
  OIDC_CACHE_TIMEOUT?: number;
26231
26685
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26232
26686
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26687
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
26233
26688
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26234
26689
  OIDC_DEFAULT_LOGOUT_URL?: string;
26235
26690
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -26258,17 +26713,20 @@ export type ConstanceSettingsRequestForm = {
26258
26713
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26259
26714
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26260
26715
  ONBOARDING_BREG_API_URL?: string;
26261
- LLM_CHAT_ENABLED?: boolean;
26262
- LLM_INFERENCES_BACKEND_TYPE?: string;
26263
- LLM_INFERENCES_API_URL?: string;
26264
- LLM_INFERENCES_API_TOKEN?: string;
26265
- LLM_INFERENCES_MODEL?: string;
26266
- LLM_TOKEN_LIMIT_DAILY?: number;
26267
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26268
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26269
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26270
- LLM_CHAT_HISTORY_LIMIT?: number;
26271
- LLM_INJECTION_ALLOWLIST?: string;
26716
+ AI_ASSISTANT_ENABLED?: boolean;
26717
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26718
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26719
+ AI_ASSISTANT_API_URL?: string;
26720
+ AI_ASSISTANT_API_TOKEN?: string;
26721
+ AI_ASSISTANT_MODEL?: string;
26722
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26723
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26724
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26725
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26726
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26727
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26728
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26729
+ AI_ASSISTANT_NAME?: string;
26272
26730
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26273
26731
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26274
26732
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26307,6 +26765,10 @@ export type ConstanceSettingsRequestForm = {
26307
26765
  ENABLE_PROJECT_DIGEST?: boolean;
26308
26766
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26309
26767
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
26768
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
26769
+ PAT_ENABLED?: boolean;
26770
+ PAT_MAX_LIFETIME_DAYS?: number;
26771
+ PAT_MAX_TOKENS_PER_USER?: number;
26310
26772
  };
26311
26773
  export type ConstanceSettingsRequestMultipart = {
26312
26774
  SITE_NAME?: string;
@@ -26327,6 +26789,8 @@ export type ConstanceSettingsRequestMultipart = {
26327
26789
  NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
26328
26790
  DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
26329
26791
  MARKETPLACE_LANDING_PAGE?: string;
26792
+ MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
26793
+ MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
26330
26794
  ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
26331
26795
  ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
26332
26796
  TELEMETRY_URL?: string;
@@ -26475,6 +26939,7 @@ export type ConstanceSettingsRequestMultipart = {
26475
26939
  OIDC_CACHE_TIMEOUT?: number;
26476
26940
  OIDC_ACCESS_TOKEN_ENABLED?: boolean;
26477
26941
  OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
26942
+ OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
26478
26943
  OIDC_MATCHMAKING_BY_EMAIL?: boolean;
26479
26944
  OIDC_DEFAULT_LOGOUT_URL?: string;
26480
26945
  DEACTIVATE_USER_IF_NO_ROLES?: boolean;
@@ -26503,17 +26968,20 @@ export type ConstanceSettingsRequestMultipart = {
26503
26968
  ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
26504
26969
  ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
26505
26970
  ONBOARDING_BREG_API_URL?: string;
26506
- LLM_CHAT_ENABLED?: boolean;
26507
- LLM_INFERENCES_BACKEND_TYPE?: string;
26508
- LLM_INFERENCES_API_URL?: string;
26509
- LLM_INFERENCES_API_TOKEN?: string;
26510
- LLM_INFERENCES_MODEL?: string;
26511
- LLM_TOKEN_LIMIT_DAILY?: number;
26512
- LLM_TOKEN_LIMIT_WEEKLY?: number;
26513
- LLM_TOKEN_LIMIT_MONTHLY?: number;
26514
- LLM_CHAT_SESSION_RETENTION_DAYS?: number;
26515
- LLM_CHAT_HISTORY_LIMIT?: number;
26516
- LLM_INJECTION_ALLOWLIST?: string;
26971
+ AI_ASSISTANT_ENABLED?: boolean;
26972
+ AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
26973
+ AI_ASSISTANT_BACKEND_TYPE?: string;
26974
+ AI_ASSISTANT_API_URL?: string;
26975
+ AI_ASSISTANT_API_TOKEN?: string;
26976
+ AI_ASSISTANT_MODEL?: string;
26977
+ AI_ASSISTANT_COMPLETION_KWARGS?: string;
26978
+ AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
26979
+ AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
26980
+ AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
26981
+ AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
26982
+ AI_ASSISTANT_HISTORY_LIMIT?: number;
26983
+ AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
26984
+ AI_ASSISTANT_NAME?: string;
26517
26985
  SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
26518
26986
  SOFTWARE_CATALOG_EESSI_VERSION?: string;
26519
26987
  SOFTWARE_CATALOG_EESSI_API_URL?: string;
@@ -26552,6 +27020,10 @@ export type ConstanceSettingsRequestMultipart = {
26552
27020
  ENABLE_PROJECT_DIGEST?: boolean;
26553
27021
  SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
26554
27022
  SSH_KEY_MIN_RSA_KEY_SIZE?: number;
27023
+ ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
27024
+ PAT_ENABLED?: boolean;
27025
+ PAT_MAX_LIFETIME_DAYS?: number;
27026
+ PAT_MAX_TOKENS_PER_USER?: number;
26555
27027
  };
26556
27028
  export type PaymentRequestForm = {
26557
27029
  profile: string;
@@ -26705,6 +27177,10 @@ export type UserRequestForm = {
26705
27177
  * 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.
26706
27178
  */
26707
27179
  managed_isds?: unknown;
27180
+ /**
27181
+ * Reason why the user was deactivated. Visible to staff and support.
27182
+ */
27183
+ deactivation_reason?: string;
26708
27184
  };
26709
27185
  export type UserRequestMultipart = {
26710
27186
  /**
@@ -26792,6 +27268,10 @@ export type UserRequestMultipart = {
26792
27268
  * 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.
26793
27269
  */
26794
27270
  managed_isds?: unknown;
27271
+ /**
27272
+ * Reason why the user was deactivated. Visible to staff and support.
27273
+ */
27274
+ deactivation_reason?: string;
26795
27275
  };
26796
27276
  export type PatchedUserRequestForm = {
26797
27277
  /**
@@ -26878,6 +27358,10 @@ export type PatchedUserRequestForm = {
26878
27358
  * 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.
26879
27359
  */
26880
27360
  managed_isds?: unknown;
27361
+ /**
27362
+ * Reason why the user was deactivated. Visible to staff and support.
27363
+ */
27364
+ deactivation_reason?: string;
26881
27365
  };
26882
27366
  export type PatchedUserRequestMultipart = {
26883
27367
  /**
@@ -26964,6 +27448,10 @@ export type PatchedUserRequestMultipart = {
26964
27448
  * 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.
26965
27449
  */
26966
27450
  managed_isds?: unknown;
27451
+ /**
27452
+ * Reason why the user was deactivated. Visible to staff and support.
27453
+ */
27454
+ deactivation_reason?: string;
26967
27455
  };
26968
27456
  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';
26969
27457
  export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
@@ -26977,8 +27465,8 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
26977
27465
  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';
26978
27466
  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';
26979
27467
  export type BackendResourceReqOEnum = '-created' | 'created';
26980
- 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';
26981
- 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_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';
27468
+ 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';
27469
+ 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';
26982
27470
  export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
26983
27471
  export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
26984
27472
  export type BroadcastMessageOEnum = '-author_full_name' | '-created' | '-subject' | 'author_full_name' | 'created' | 'subject';
@@ -26987,15 +27475,15 @@ export type UserRoleDetailsFieldEnum = 'created' | 'created_by_full_name' | 'cre
26987
27475
  export type UserRoleDetailsOEnum = 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
26988
27476
  export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expertise_match_score' | '-invited_at' | 'created' | 'current_assignments' | 'expertise_match_score' | 'invited_at';
26989
27477
  export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
26990
- export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid';
26991
- export type ThreadSessionOEnum = '-created' | '-modified' | 'created' | 'modified';
27478
+ 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';
27479
+ export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
26992
27480
  export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
26993
27481
  export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
26994
27482
  export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
26995
27483
  export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
26996
27484
  export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
26997
27485
  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';
26998
- 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';
27486
+ 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';
26999
27487
  export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
27000
27488
  export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
27001
27489
  export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
@@ -27013,7 +27501,7 @@ export type SshKeyFieldEnum = 'fingerprint_md5' | 'fingerprint_sha256' | 'finger
27013
27501
  export type SshKeyOEnum = '-name' | 'name';
27014
27502
  export type MaintenanceAnnouncementOEnum = '-created' | '-name' | '-scheduled_end' | '-scheduled_start' | 'created' | 'name' | 'scheduled_end' | 'scheduled_start';
27015
27503
  export type MaintenanceAnnouncementTemplateOEnum = '-created' | '-name' | 'created' | 'name';
27016
- export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | '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_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' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
27504
+ export type ResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'created' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | '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' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
27017
27505
  export type MarketplaceCategoryFieldEnum = 'articles' | 'available_offerings_count' | 'columns' | 'components' | 'default_tenant_category' | 'default_vm_category' | 'default_volume_category' | 'description' | 'group' | 'icon' | 'offering_count' | 'sections' | 'title' | 'url' | 'uuid';
27018
27506
  export type CategoryComponentUsageFieldEnum = 'category_title' | 'category_uuid' | 'date' | 'fixed_usage' | 'measured_unit' | 'name' | 'reported_usage' | 'scope' | 'type';
27019
27507
  export type CategoryGroupFieldEnum = 'description' | 'icon' | 'title' | 'url' | 'uuid';
@@ -27034,13 +27522,13 @@ export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'create
27034
27522
  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';
27035
27523
  export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
27036
27524
  export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
27037
- 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';
27525
+ 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';
27038
27526
  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';
27039
27527
  export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
27040
- 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' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | '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';
27041
- 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';
27528
+ 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';
27529
+ 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';
27042
27530
  export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
27043
- 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';
27531
+ 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';
27044
27532
  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';
27045
27533
  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';
27046
27534
  export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
@@ -27053,7 +27541,7 @@ export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-
27053
27541
  export type AgentServiceStateEnum = 1 | 2 | 3;
27054
27542
  export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
27055
27543
  export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
27056
- 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';
27544
+ export type SoftwareTargetOEnum = '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
27057
27545
  export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
27058
27546
  export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
27059
27547
  export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
@@ -27075,9 +27563,9 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
27075
27563
  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';
27076
27564
  export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
27077
27565
  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';
27078
- 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';
27566
+ 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';
27079
27567
  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';
27080
- 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';
27568
+ 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';
27081
27569
  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';
27082
27570
  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';
27083
27571
  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';
@@ -27117,6 +27605,7 @@ export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_
27117
27605
  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';
27118
27606
  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';
27119
27607
  export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
27608
+ export type CommentOEnum = '-created' | '-modified' | 'created' | 'modified';
27120
27609
  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';
27121
27610
  export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
27122
27611
  export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
@@ -28843,6 +29332,18 @@ export type AssignmentItemsDeclineResponses = {
28843
29332
  200: AssignmentItemResponse;
28844
29333
  };
28845
29334
  export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
29335
+ export type AssignmentItemsForceUnblockData = {
29336
+ body: ForceUnblockRequest;
29337
+ path: {
29338
+ uuid: string;
29339
+ };
29340
+ query?: never;
29341
+ url: '/api/assignment-items/{uuid}/force-unblock/';
29342
+ };
29343
+ export type AssignmentItemsForceUnblockResponses = {
29344
+ 200: AssignmentItem;
29345
+ };
29346
+ export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
28846
29347
  export type AssignmentItemsReassignData = {
28847
29348
  body: ReassignItemRequest;
28848
29349
  path: {
@@ -31432,6 +31933,10 @@ export type BackendResourceRequestsListData = {
31432
31933
  * Created after
31433
31934
  */
31434
31935
  created?: string;
31936
+ /**
31937
+ * Created before
31938
+ */
31939
+ created_before?: string;
31435
31940
  /**
31436
31941
  * Modified after
31437
31942
  */
@@ -31440,6 +31945,10 @@ export type BackendResourceRequestsListData = {
31440
31945
  * Modified after
31441
31946
  */
31442
31947
  modified?: string;
31948
+ /**
31949
+ * Modified before
31950
+ */
31951
+ modified_before?: string;
31443
31952
  /**
31444
31953
  * Ordering
31445
31954
  *
@@ -31483,6 +31992,10 @@ export type BackendResourceRequestsCountData = {
31483
31992
  * Created after
31484
31993
  */
31485
31994
  created?: string;
31995
+ /**
31996
+ * Created before
31997
+ */
31998
+ created_before?: string;
31486
31999
  /**
31487
32000
  * Modified after
31488
32001
  */
@@ -31491,6 +32004,10 @@ export type BackendResourceRequestsCountData = {
31491
32004
  * Modified after
31492
32005
  */
31493
32006
  modified?: string;
32007
+ /**
32008
+ * Modified before
32009
+ */
32010
+ modified_before?: string;
31494
32011
  /**
31495
32012
  * Ordering
31496
32013
  *
@@ -31604,10 +32121,18 @@ export type BackendResourcesListData = {
31604
32121
  * Created after
31605
32122
  */
31606
32123
  created?: string;
32124
+ /**
32125
+ * Created before
32126
+ */
32127
+ created_before?: string;
31607
32128
  /**
31608
32129
  * Modified after
31609
32130
  */
31610
32131
  modified?: string;
32132
+ /**
32133
+ * Modified before
32134
+ */
32135
+ modified_before?: string;
31611
32136
  /**
31612
32137
  * Name
31613
32138
  */
@@ -31657,10 +32182,18 @@ export type BackendResourcesCountData = {
31657
32182
  * Created after
31658
32183
  */
31659
32184
  created?: string;
32185
+ /**
32186
+ * Created before
32187
+ */
32188
+ created_before?: string;
31660
32189
  /**
31661
32190
  * Modified after
31662
32191
  */
31663
32192
  modified?: string;
32193
+ /**
32194
+ * Modified before
32195
+ */
32196
+ modified_before?: string;
31664
32197
  /**
31665
32198
  * Name
31666
32199
  */
@@ -31883,6 +32416,10 @@ export type BookingResourcesListData = {
31883
32416
  * Created after
31884
32417
  */
31885
32418
  created?: string;
32419
+ /**
32420
+ * Created before
32421
+ */
32422
+ created_before?: string;
31886
32423
  /**
31887
32424
  * Customer URL
31888
32425
  */
@@ -31920,6 +32457,10 @@ export type BookingResourcesListData = {
31920
32457
  * Modified after
31921
32458
  */
31922
32459
  modified?: string;
32460
+ /**
32461
+ * Modified before
32462
+ */
32463
+ modified_before?: string;
31923
32464
  /**
31924
32465
  * Name
31925
32466
  */
@@ -32002,6 +32543,10 @@ export type BookingResourcesListData = {
32002
32543
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
32003
32544
  */
32004
32545
  query?: string;
32546
+ /**
32547
+ * Resource attributes (JSON)
32548
+ */
32549
+ resource_attributes?: string;
32005
32550
  /**
32006
32551
  * Restrict member access
32007
32552
  */
@@ -32014,6 +32559,10 @@ export type BookingResourcesListData = {
32014
32559
  * Service manager UUID
32015
32560
  */
32016
32561
  service_manager_uuid?: string;
32562
+ /**
32563
+ * Slug
32564
+ */
32565
+ slug?: string;
32017
32566
  /**
32018
32567
  * Resource state
32019
32568
  *
@@ -32060,6 +32609,10 @@ export type BookingResourcesCountData = {
32060
32609
  * Created after
32061
32610
  */
32062
32611
  created?: string;
32612
+ /**
32613
+ * Created before
32614
+ */
32615
+ created_before?: string;
32063
32616
  /**
32064
32617
  * Customer URL
32065
32618
  */
@@ -32096,6 +32649,10 @@ export type BookingResourcesCountData = {
32096
32649
  * Modified after
32097
32650
  */
32098
32651
  modified?: string;
32652
+ /**
32653
+ * Modified before
32654
+ */
32655
+ modified_before?: string;
32099
32656
  /**
32100
32657
  * Name
32101
32658
  */
@@ -32178,6 +32735,10 @@ export type BookingResourcesCountData = {
32178
32735
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
32179
32736
  */
32180
32737
  query?: string;
32738
+ /**
32739
+ * Resource attributes (JSON)
32740
+ */
32741
+ resource_attributes?: string;
32181
32742
  /**
32182
32743
  * Restrict member access
32183
32744
  */
@@ -32190,6 +32751,10 @@ export type BookingResourcesCountData = {
32190
32751
  * Service manager UUID
32191
32752
  */
32192
32753
  service_manager_uuid?: string;
32754
+ /**
32755
+ * Slug
32756
+ */
32757
+ slug?: string;
32193
32758
  /**
32194
32759
  * Resource state
32195
32760
  *
@@ -32871,6 +33436,180 @@ export type CallManagingOrganisationsUpdateUserResponses = {
32871
33436
  200: UserRoleExpirationTime;
32872
33437
  };
32873
33438
  export type CallManagingOrganisationsUpdateUserResponse = CallManagingOrganisationsUpdateUserResponses[keyof CallManagingOrganisationsUpdateUserResponses];
33439
+ export type CallManagingOrganisationsGlobalStatsPerformanceListData = {
33440
+ body?: never;
33441
+ path?: never;
33442
+ query?: {
33443
+ customer?: string;
33444
+ customer_keyword?: string;
33445
+ customer_uuid?: string;
33446
+ /**
33447
+ * Ordering
33448
+ *
33449
+ *
33450
+ */
33451
+ o?: Array<CallManagingOrganisationOEnum>;
33452
+ /**
33453
+ * A page number within the paginated result set.
33454
+ */
33455
+ page?: number;
33456
+ /**
33457
+ * Number of results to return per page.
33458
+ */
33459
+ page_size?: number;
33460
+ };
33461
+ url: '/api/call-managing-organisations/global_stats_performance/';
33462
+ };
33463
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponses = {
33464
+ 200: Array<CallPerformanceStat>;
33465
+ };
33466
+ export type CallManagingOrganisationsGlobalStatsPerformanceListResponse = CallManagingOrganisationsGlobalStatsPerformanceListResponses[keyof CallManagingOrganisationsGlobalStatsPerformanceListResponses];
33467
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountData = {
33468
+ body?: never;
33469
+ path?: never;
33470
+ query?: {
33471
+ customer?: string;
33472
+ customer_keyword?: string;
33473
+ customer_uuid?: string;
33474
+ /**
33475
+ * Ordering
33476
+ *
33477
+ *
33478
+ */
33479
+ o?: Array<CallManagingOrganisationOEnum>;
33480
+ /**
33481
+ * A page number within the paginated result set.
33482
+ */
33483
+ page?: number;
33484
+ /**
33485
+ * Number of results to return per page.
33486
+ */
33487
+ page_size?: number;
33488
+ };
33489
+ url: '/api/call-managing-organisations/global_stats_performance/';
33490
+ };
33491
+ export type CallManagingOrganisationsGlobalStatsPerformanceCountResponses = {
33492
+ /**
33493
+ * No response body
33494
+ */
33495
+ 200: unknown;
33496
+ };
33497
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListData = {
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_resource_demand/';
33520
+ };
33521
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponses = {
33522
+ 200: Array<ResourceDemandStat>;
33523
+ };
33524
+ export type CallManagingOrganisationsGlobalStatsResourceDemandListResponse = CallManagingOrganisationsGlobalStatsResourceDemandListResponses[keyof CallManagingOrganisationsGlobalStatsResourceDemandListResponses];
33525
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountData = {
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_resource_demand/';
33548
+ };
33549
+ export type CallManagingOrganisationsGlobalStatsResourceDemandCountResponses = {
33550
+ /**
33551
+ * No response body
33552
+ */
33553
+ 200: unknown;
33554
+ };
33555
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListData = {
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_review_progress/';
33578
+ };
33579
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponses = {
33580
+ 200: Array<ReviewProgressStat>;
33581
+ };
33582
+ export type CallManagingOrganisationsGlobalStatsReviewProgressListResponse = CallManagingOrganisationsGlobalStatsReviewProgressListResponses[keyof CallManagingOrganisationsGlobalStatsReviewProgressListResponses];
33583
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountData = {
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_review_progress/';
33606
+ };
33607
+ export type CallManagingOrganisationsGlobalStatsReviewProgressCountResponses = {
33608
+ /**
33609
+ * No response body
33610
+ */
33611
+ 200: unknown;
33612
+ };
32874
33613
  export type CallProposalProjectRoleMappingsListData = {
32875
33614
  body?: never;
32876
33615
  path?: never;
@@ -33086,6 +33825,18 @@ export type CallReviewerPoolsDeclineResponses = {
33086
33825
  200: InvitationDeclineResponse;
33087
33826
  };
33088
33827
  export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
33828
+ export type CallReviewerPoolsForceAcceptData = {
33829
+ body: ForceAcceptPoolRequest;
33830
+ path: {
33831
+ uuid: string;
33832
+ };
33833
+ query?: never;
33834
+ url: '/api/call-reviewer-pools/{uuid}/force-accept/';
33835
+ };
33836
+ export type CallReviewerPoolsForceAcceptResponses = {
33837
+ 200: CallReviewerPool;
33838
+ };
33839
+ export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
33089
33840
  export type CallRoundsListData = {
33090
33841
  body?: never;
33091
33842
  path?: never;
@@ -33260,6 +34011,8 @@ export type ChatThreadsListData = {
33260
34011
  query?: {
33261
34012
  created?: string;
33262
34013
  field?: Array<ThreadSessionFieldEnum>;
34014
+ input_tokens_max?: number;
34015
+ input_tokens_min?: number;
33263
34016
  is_archived?: boolean;
33264
34017
  is_flagged?: boolean;
33265
34018
  max_severity?: InjectionSeverityEnum;
@@ -33270,6 +34023,8 @@ export type ChatThreadsListData = {
33270
34023
  *
33271
34024
  */
33272
34025
  o?: Array<ThreadSessionOEnum>;
34026
+ output_tokens_max?: number;
34027
+ output_tokens_min?: number;
33273
34028
  /**
33274
34029
  * A page number within the paginated result set.
33275
34030
  */
@@ -33279,6 +34034,8 @@ export type ChatThreadsListData = {
33279
34034
  */
33280
34035
  page_size?: number;
33281
34036
  query?: string;
34037
+ total_tokens_max?: number;
34038
+ total_tokens_min?: number;
33282
34039
  user?: string;
33283
34040
  };
33284
34041
  url: '/api/chat-threads/';
@@ -33316,6 +34073,20 @@ export type ChatThreadsArchiveResponses = {
33316
34073
  204: void;
33317
34074
  };
33318
34075
  export type ChatThreadsArchiveResponse = ChatThreadsArchiveResponses[keyof ChatThreadsArchiveResponses];
34076
+ export type ChatThreadsCancelData = {
34077
+ body?: ThreadSessionRequest;
34078
+ path: {
34079
+ uuid: string;
34080
+ };
34081
+ query?: never;
34082
+ url: '/api/chat-threads/{uuid}/cancel/';
34083
+ };
34084
+ export type ChatThreadsCancelResponses = {
34085
+ /**
34086
+ * No response body
34087
+ */
34088
+ 200: unknown;
34089
+ };
33319
34090
  export type ChatThreadsUnarchiveData = {
33320
34091
  body?: ThreadSessionRequest;
33321
34092
  path: {
@@ -34640,7 +35411,102 @@ export type CustomersListData = {
34640
35411
  * Return a list of customers where current user has project create permission.
34641
35412
  */
34642
35413
  current_user_has_project_create_permission?: boolean;
34643
- field?: Array<CustomerFieldEnum>;
35414
+ field?: Array<CustomerFieldEnum>;
35415
+ /**
35416
+ * Filter by customers with resources.
35417
+ */
35418
+ has_resources?: string;
35419
+ /**
35420
+ * Filter by customers that are call managing organizations.
35421
+ */
35422
+ is_call_managing_organization?: boolean;
35423
+ /**
35424
+ * Filter by customers that are service providers.
35425
+ */
35426
+ is_service_provider?: boolean;
35427
+ /**
35428
+ * Name
35429
+ */
35430
+ name?: string;
35431
+ /**
35432
+ * Name (exact)
35433
+ */
35434
+ name_exact?: string;
35435
+ /**
35436
+ * Native name
35437
+ */
35438
+ native_name?: string;
35439
+ /**
35440
+ * Which field to use when ordering the results.
35441
+ */
35442
+ o?: string;
35443
+ /**
35444
+ * Organization group name
35445
+ */
35446
+ organization_group_name?: string;
35447
+ /**
35448
+ * Organization group UUID
35449
+ */
35450
+ organization_group_uuid?: Array<string>;
35451
+ /**
35452
+ * Return a list of customers where current user is owner.
35453
+ */
35454
+ owned_by_current_user?: boolean;
35455
+ /**
35456
+ * A page number within the paginated result set.
35457
+ */
35458
+ page?: number;
35459
+ /**
35460
+ * Number of results to return per page.
35461
+ */
35462
+ page_size?: number;
35463
+ /**
35464
+ * Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
35465
+ */
35466
+ query?: string;
35467
+ registration_code?: string;
35468
+ /**
35469
+ * Filter by service provider UUID.
35470
+ */
35471
+ service_provider_uuid?: string;
35472
+ /**
35473
+ * Slug
35474
+ */
35475
+ slug?: string;
35476
+ /**
35477
+ * Filter by user UUID.
35478
+ */
35479
+ user_uuid?: string;
35480
+ };
35481
+ url: '/api/customers/';
35482
+ };
35483
+ export type CustomersListResponses = {
35484
+ 200: Array<Customer>;
35485
+ };
35486
+ export type CustomersListResponse = CustomersListResponses[keyof CustomersListResponses];
35487
+ export type CustomersCountData = {
35488
+ body?: never;
35489
+ path?: never;
35490
+ query?: {
35491
+ /**
35492
+ * Abbreviation
35493
+ */
35494
+ abbreviation?: string;
35495
+ /**
35496
+ * Filter by whether accounting is running.
35497
+ */
35498
+ accounting_is_running?: boolean;
35499
+ agreement_number?: string;
35500
+ archived?: boolean;
35501
+ backend_id?: string;
35502
+ /**
35503
+ * Contact details
35504
+ */
35505
+ contact_details?: string;
35506
+ /**
35507
+ * Return a list of customers where current user has project create permission.
35508
+ */
35509
+ current_user_has_project_create_permission?: boolean;
34644
35510
  /**
34645
35511
  * Filter by customers with resources.
34646
35512
  */
@@ -34699,96 +35565,9 @@ export type CustomersListData = {
34699
35565
  */
34700
35566
  service_provider_uuid?: string;
34701
35567
  /**
34702
- * Filter by user UUID.
34703
- */
34704
- user_uuid?: string;
34705
- };
34706
- url: '/api/customers/';
34707
- };
34708
- export type CustomersListResponses = {
34709
- 200: Array<Customer>;
34710
- };
34711
- export type CustomersListResponse = CustomersListResponses[keyof CustomersListResponses];
34712
- export type CustomersCountData = {
34713
- body?: never;
34714
- path?: never;
34715
- query?: {
34716
- /**
34717
- * Abbreviation
34718
- */
34719
- abbreviation?: string;
34720
- /**
34721
- * Filter by whether accounting is running.
34722
- */
34723
- accounting_is_running?: boolean;
34724
- agreement_number?: string;
34725
- archived?: boolean;
34726
- backend_id?: string;
34727
- /**
34728
- * Contact details
34729
- */
34730
- contact_details?: string;
34731
- /**
34732
- * Return a list of customers where current user has project create permission.
34733
- */
34734
- current_user_has_project_create_permission?: boolean;
34735
- /**
34736
- * Filter by customers with resources.
34737
- */
34738
- has_resources?: string;
34739
- /**
34740
- * Filter by customers that are call managing organizations.
34741
- */
34742
- is_call_managing_organization?: boolean;
34743
- /**
34744
- * Filter by customers that are service providers.
34745
- */
34746
- is_service_provider?: boolean;
34747
- /**
34748
- * Name
34749
- */
34750
- name?: string;
34751
- /**
34752
- * Name (exact)
34753
- */
34754
- name_exact?: string;
34755
- /**
34756
- * Native name
34757
- */
34758
- native_name?: string;
34759
- /**
34760
- * Which field to use when ordering the results.
34761
- */
34762
- o?: string;
34763
- /**
34764
- * Organization group name
34765
- */
34766
- organization_group_name?: string;
34767
- /**
34768
- * Organization group UUID
34769
- */
34770
- organization_group_uuid?: Array<string>;
34771
- /**
34772
- * Return a list of customers where current user is owner.
34773
- */
34774
- owned_by_current_user?: boolean;
34775
- /**
34776
- * A page number within the paginated result set.
34777
- */
34778
- page?: number;
34779
- /**
34780
- * Number of results to return per page.
34781
- */
34782
- page_size?: number;
34783
- /**
34784
- * Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
34785
- */
34786
- query?: string;
34787
- registration_code?: string;
34788
- /**
34789
- * Filter by service provider UUID.
35568
+ * Slug
34790
35569
  */
34791
- service_provider_uuid?: string;
35570
+ slug?: string;
34792
35571
  /**
34793
35572
  * Filter by user UUID.
34794
35573
  */
@@ -35180,6 +35959,10 @@ export type CustomersHistoryListData = {
35180
35959
  * Filter by service provider UUID.
35181
35960
  */
35182
35961
  service_provider_uuid?: string;
35962
+ /**
35963
+ * Slug
35964
+ */
35965
+ slug?: string;
35183
35966
  /**
35184
35967
  * Filter by user UUID.
35185
35968
  */
@@ -35463,6 +36246,10 @@ export type CustomersCountriesListData = {
35463
36246
  * Filter by service provider UUID.
35464
36247
  */
35465
36248
  service_provider_uuid?: string;
36249
+ /**
36250
+ * Slug
36251
+ */
36252
+ slug?: string;
35466
36253
  /**
35467
36254
  * Filter by user UUID.
35468
36255
  */
@@ -35554,6 +36341,10 @@ export type CustomersCountriesCountData = {
35554
36341
  * Filter by service provider UUID.
35555
36342
  */
35556
36343
  service_provider_uuid?: string;
36344
+ /**
36345
+ * Slug
36346
+ */
36347
+ slug?: string;
35557
36348
  /**
35558
36349
  * Filter by user UUID.
35559
36350
  */
@@ -37172,6 +37963,10 @@ export type FinancialReportsListData = {
37172
37963
  */
37173
37964
  query?: string;
37174
37965
  registration_code?: string;
37966
+ /**
37967
+ * Slug
37968
+ */
37969
+ slug?: string;
37175
37970
  /**
37176
37971
  * Filter by year.
37177
37972
  */
@@ -37255,6 +38050,10 @@ export type FinancialReportsCountData = {
37255
38050
  */
37256
38051
  query?: string;
37257
38052
  registration_code?: string;
38053
+ /**
38054
+ * Slug
38055
+ */
38056
+ slug?: string;
37258
38057
  /**
37259
38058
  * Filter by year.
37260
38059
  */
@@ -37837,6 +38636,16 @@ export type IdentityBridgeResponses = {
37837
38636
  200: IdentityBridgeResult;
37838
38637
  };
37839
38638
  export type IdentityBridgeResponse = IdentityBridgeResponses[keyof IdentityBridgeResponses];
38639
+ export type IdentityBridgeAllowedFieldsRetrieveData = {
38640
+ body?: never;
38641
+ path?: never;
38642
+ query?: never;
38643
+ url: '/api/identity-bridge/allowed-fields/';
38644
+ };
38645
+ export type IdentityBridgeAllowedFieldsRetrieveResponses = {
38646
+ 200: IdentityBridgeAllowedFields;
38647
+ };
38648
+ export type IdentityBridgeAllowedFieldsRetrieveResponse = IdentityBridgeAllowedFieldsRetrieveResponses[keyof IdentityBridgeAllowedFieldsRetrieveResponses];
37840
38649
  export type IdentityBridgeRemoveData = {
37841
38650
  body: IdentityBridgeRemoveRequest;
37842
38651
  path?: never;
@@ -38862,6 +39671,10 @@ export type KeysListData = {
38862
39671
  * Created after
38863
39672
  */
38864
39673
  created?: string;
39674
+ /**
39675
+ * Created before
39676
+ */
39677
+ created_before?: string;
38865
39678
  field?: Array<SshKeyFieldEnum>;
38866
39679
  fingerprint_md5?: string;
38867
39680
  fingerprint_sha256?: string;
@@ -38871,6 +39684,10 @@ export type KeysListData = {
38871
39684
  * Modified after
38872
39685
  */
38873
39686
  modified?: string;
39687
+ /**
39688
+ * Modified before
39689
+ */
39690
+ modified_before?: string;
38874
39691
  /**
38875
39692
  * Name
38876
39693
  */
@@ -38916,6 +39733,10 @@ export type KeysCountData = {
38916
39733
  * Created after
38917
39734
  */
38918
39735
  created?: string;
39736
+ /**
39737
+ * Created before
39738
+ */
39739
+ created_before?: string;
38919
39740
  fingerprint_md5?: string;
38920
39741
  fingerprint_sha256?: string;
38921
39742
  fingerprint_sha512?: string;
@@ -38924,6 +39745,10 @@ export type KeysCountData = {
38924
39745
  * Modified after
38925
39746
  */
38926
39747
  modified?: string;
39748
+ /**
39749
+ * Modified before
39750
+ */
39751
+ modified_before?: string;
38927
39752
  /**
38928
39753
  * Name
38929
39754
  */
@@ -39028,6 +39853,10 @@ export type KeysHistoryListData = {
39028
39853
  * Modified after
39029
39854
  */
39030
39855
  modified?: string;
39856
+ /**
39857
+ * Modified before
39858
+ */
39859
+ modified_before?: string;
39031
39860
  /**
39032
39861
  * Name
39033
39862
  */
@@ -39933,6 +40762,35 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
39933
40762
  200: RancherNode;
39934
40763
  };
39935
40764
  export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
40765
+ export type MarketplaceArticleCodeUpdateApplyData = {
40766
+ body: ArticleCodeUpdateApplyRequest;
40767
+ path?: never;
40768
+ query?: never;
40769
+ url: '/api/marketplace-article-code-update/apply/';
40770
+ };
40771
+ export type MarketplaceArticleCodeUpdateApplyResponses = {
40772
+ 200: ArticleCodeUpdateApplyResponse;
40773
+ };
40774
+ export type MarketplaceArticleCodeUpdateApplyResponse = MarketplaceArticleCodeUpdateApplyResponses[keyof MarketplaceArticleCodeUpdateApplyResponses];
40775
+ export type MarketplaceArticleCodeUpdatePreviewData = {
40776
+ body: ArticleCodeUpdatePreviewRequest;
40777
+ path?: never;
40778
+ query?: {
40779
+ /**
40780
+ * A page number within the paginated result set.
40781
+ */
40782
+ page?: number;
40783
+ /**
40784
+ * Number of results to return per page.
40785
+ */
40786
+ page_size?: number;
40787
+ };
40788
+ url: '/api/marketplace-article-code-update/preview/';
40789
+ };
40790
+ export type MarketplaceArticleCodeUpdatePreviewResponses = {
40791
+ 200: Array<ArticleCodeUpdatePreviewItem>;
40792
+ };
40793
+ export type MarketplaceArticleCodeUpdatePreviewResponse = MarketplaceArticleCodeUpdatePreviewResponses[keyof MarketplaceArticleCodeUpdatePreviewResponses];
39936
40794
  export type MarketplaceAttributeOptionsListData = {
39937
40795
  body?: never;
39938
40796
  path?: never;
@@ -41369,6 +42227,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
41369
42227
  200: CourseAccount;
41370
42228
  };
41371
42229
  export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
42230
+ export type MarketplaceCourseAccountsRetryData = {
42231
+ body?: never;
42232
+ path: {
42233
+ uuid: string;
42234
+ };
42235
+ query?: never;
42236
+ url: '/api/marketplace-course-accounts/{uuid}/retry/';
42237
+ };
42238
+ export type MarketplaceCourseAccountsRetryResponses = {
42239
+ 202: CourseAccount;
42240
+ };
42241
+ export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
41372
42242
  export type MarketplaceCourseAccountsCreateBulkData = {
41373
42243
  body: CourseAccountsBulkCreateRequest;
41374
42244
  path?: never;
@@ -42330,6 +43200,10 @@ export type MarketplaceOfferingPermissionsListData = {
42330
43200
  * Created after
42331
43201
  */
42332
43202
  created?: string;
43203
+ /**
43204
+ * Created before
43205
+ */
43206
+ created_before?: string;
42333
43207
  customer?: string;
42334
43208
  /**
42335
43209
  * User full name contains
@@ -42339,6 +43213,10 @@ export type MarketplaceOfferingPermissionsListData = {
42339
43213
  * Modified after
42340
43214
  */
42341
43215
  modified?: string;
43216
+ /**
43217
+ * Modified before
43218
+ */
43219
+ modified_before?: string;
42342
43220
  native_name?: string;
42343
43221
  /**
42344
43222
  * Ordering
@@ -42397,6 +43275,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42397
43275
  * Created after
42398
43276
  */
42399
43277
  created?: string;
43278
+ /**
43279
+ * Created before
43280
+ */
43281
+ created_before?: string;
42400
43282
  customer?: string;
42401
43283
  /**
42402
43284
  * User full name contains
@@ -42406,6 +43288,10 @@ export type MarketplaceOfferingPermissionsCountData = {
42406
43288
  * Modified after
42407
43289
  */
42408
43290
  modified?: string;
43291
+ /**
43292
+ * Modified before
43293
+ */
43294
+ modified_before?: string;
42409
43295
  native_name?: string;
42410
43296
  /**
42411
43297
  * Ordering
@@ -42466,6 +43352,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42466
43352
  * Created after
42467
43353
  */
42468
43354
  created?: string;
43355
+ /**
43356
+ * Created before
43357
+ */
43358
+ created_before?: string;
42469
43359
  customer?: string;
42470
43360
  /**
42471
43361
  * User full name contains
@@ -42475,6 +43365,10 @@ export type MarketplaceOfferingPermissionsLogListData = {
42475
43365
  * Modified after
42476
43366
  */
42477
43367
  modified?: string;
43368
+ /**
43369
+ * Modified before
43370
+ */
43371
+ modified_before?: string;
42478
43372
  native_name?: string;
42479
43373
  /**
42480
43374
  * Ordering
@@ -42533,6 +43427,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42533
43427
  * Created after
42534
43428
  */
42535
43429
  created?: string;
43430
+ /**
43431
+ * Created before
43432
+ */
43433
+ created_before?: string;
42536
43434
  customer?: string;
42537
43435
  /**
42538
43436
  * User full name contains
@@ -42542,6 +43440,10 @@ export type MarketplaceOfferingPermissionsLogCountData = {
42542
43440
  * Modified after
42543
43441
  */
42544
43442
  modified?: string;
43443
+ /**
43444
+ * Modified before
43445
+ */
43446
+ modified_before?: string;
42545
43447
  native_name?: string;
42546
43448
  /**
42547
43449
  * Ordering
@@ -42984,11 +43886,19 @@ export type MarketplaceOfferingUserChecklistCompletionsListData = {
42984
43886
  * Created after
42985
43887
  */
42986
43888
  created?: string;
43889
+ /**
43890
+ * Created before
43891
+ */
43892
+ created_before?: string;
42987
43893
  is_completed?: boolean;
42988
43894
  /**
42989
43895
  * Modified after
42990
43896
  */
42991
43897
  modified?: string;
43898
+ /**
43899
+ * Modified before
43900
+ */
43901
+ modified_before?: string;
42992
43902
  /**
42993
43903
  * Ordering
42994
43904
  *
@@ -43026,11 +43936,19 @@ export type MarketplaceOfferingUserChecklistCompletionsCountData = {
43026
43936
  * Created after
43027
43937
  */
43028
43938
  created?: string;
43939
+ /**
43940
+ * Created before
43941
+ */
43942
+ created_before?: string;
43029
43943
  is_completed?: boolean;
43030
43944
  /**
43031
43945
  * Modified after
43032
43946
  */
43033
43947
  modified?: string;
43948
+ /**
43949
+ * Modified before
43950
+ */
43951
+ modified_before?: string;
43034
43952
  /**
43035
43953
  * Ordering
43036
43954
  *
@@ -43206,6 +44124,10 @@ export type MarketplaceOfferingUsersListData = {
43206
44124
  * Created after
43207
44125
  */
43208
44126
  created?: string;
44127
+ /**
44128
+ * Created before
44129
+ */
44130
+ created_before?: string;
43209
44131
  field?: Array<OfferingUserFieldEnum>;
43210
44132
  /**
43211
44133
  * User has complete profile for the offering
@@ -43223,6 +44145,10 @@ export type MarketplaceOfferingUsersListData = {
43223
44145
  * Modified after
43224
44146
  */
43225
44147
  modified?: string;
44148
+ /**
44149
+ * Modified before
44150
+ */
44151
+ modified_before?: string;
43226
44152
  /**
43227
44153
  * Ordering
43228
44154
  *
@@ -43284,6 +44210,10 @@ export type MarketplaceOfferingUsersCountData = {
43284
44210
  * Created after
43285
44211
  */
43286
44212
  created?: string;
44213
+ /**
44214
+ * Created before
44215
+ */
44216
+ created_before?: string;
43287
44217
  /**
43288
44218
  * User has complete profile for the offering
43289
44219
  */
@@ -43300,6 +44230,10 @@ export type MarketplaceOfferingUsersCountData = {
43300
44230
  * Modified after
43301
44231
  */
43302
44232
  modified?: string;
44233
+ /**
44234
+ * Modified before
44235
+ */
44236
+ modified_before?: string;
43303
44237
  /**
43304
44238
  * Ordering
43305
44239
  *
@@ -43785,6 +44719,10 @@ export type MarketplaceOrdersListData = {
43785
44719
  * Created after
43786
44720
  */
43787
44721
  created?: string;
44722
+ /**
44723
+ * Created before
44724
+ */
44725
+ created_before?: string;
43788
44726
  /**
43789
44727
  * Customer UUID
43790
44728
  */
@@ -43794,6 +44732,10 @@ export type MarketplaceOrdersListData = {
43794
44732
  * Modified after
43795
44733
  */
43796
44734
  modified?: string;
44735
+ /**
44736
+ * Modified before
44737
+ */
44738
+ modified_before?: string;
43797
44739
  /**
43798
44740
  * Ordering
43799
44741
  *
@@ -43850,6 +44792,10 @@ export type MarketplaceOrdersListData = {
43850
44792
  * Service manager UUID
43851
44793
  */
43852
44794
  service_manager_uuid?: string;
44795
+ /**
44796
+ * Slug
44797
+ */
44798
+ slug?: string;
43853
44799
  /**
43854
44800
  * Order state
43855
44801
  *
@@ -43889,6 +44835,10 @@ export type MarketplaceOrdersCountData = {
43889
44835
  * Created after
43890
44836
  */
43891
44837
  created?: string;
44838
+ /**
44839
+ * Created before
44840
+ */
44841
+ created_before?: string;
43892
44842
  /**
43893
44843
  * Customer UUID
43894
44844
  */
@@ -43897,6 +44847,10 @@ export type MarketplaceOrdersCountData = {
43897
44847
  * Modified after
43898
44848
  */
43899
44849
  modified?: string;
44850
+ /**
44851
+ * Modified before
44852
+ */
44853
+ modified_before?: string;
43900
44854
  /**
43901
44855
  * Ordering
43902
44856
  *
@@ -43953,6 +44907,10 @@ export type MarketplaceOrdersCountData = {
43953
44907
  * Service manager UUID
43954
44908
  */
43955
44909
  service_manager_uuid?: string;
44910
+ /**
44911
+ * Slug
44912
+ */
44913
+ slug?: string;
43956
44914
  /**
43957
44915
  * Order state
43958
44916
  *
@@ -44130,6 +45088,32 @@ export type MarketplaceOrdersRejectByProviderResponses = {
44130
45088
  */
44131
45089
  200: unknown;
44132
45090
  };
45091
+ export type MarketplaceOrdersResourceRetrieveData = {
45092
+ body?: never;
45093
+ path: {
45094
+ uuid: string;
45095
+ };
45096
+ query?: never;
45097
+ url: '/api/marketplace-orders/{uuid}/resource/';
45098
+ };
45099
+ export type MarketplaceOrdersResourceRetrieveResponses = {
45100
+ 200: Resource;
45101
+ };
45102
+ export type MarketplaceOrdersResourceRetrieveResponse = MarketplaceOrdersResourceRetrieveResponses[keyof MarketplaceOrdersResourceRetrieveResponses];
45103
+ export type MarketplaceOrdersRetryData = {
45104
+ body?: never;
45105
+ path: {
45106
+ uuid: string;
45107
+ };
45108
+ query?: never;
45109
+ url: '/api/marketplace-orders/{uuid}/retry/';
45110
+ };
45111
+ export type MarketplaceOrdersRetryResponses = {
45112
+ /**
45113
+ * No response body
45114
+ */
45115
+ 200: unknown;
45116
+ };
44133
45117
  export type MarketplaceOrdersSetBackendIdData = {
44134
45118
  body: OrderBackendIdRequest;
44135
45119
  path: {
@@ -44703,6 +45687,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListData = {
44703
45687
  page_size?: number;
44704
45688
  project?: string;
44705
45689
  project_uuid?: string;
45690
+ query?: string;
44706
45691
  scope?: string;
44707
45692
  scope_uuid?: string;
44708
45693
  };
@@ -44728,6 +45713,7 @@ export type MarketplaceProjectEstimatedCostPoliciesCountData = {
44728
45713
  page_size?: number;
44729
45714
  project?: string;
44730
45715
  project_uuid?: string;
45716
+ query?: string;
44731
45717
  scope?: string;
44732
45718
  scope_uuid?: string;
44733
45719
  };
@@ -45102,6 +46088,10 @@ export type MarketplaceProviderOfferingsListData = {
45102
46088
  * Created after
45103
46089
  */
45104
46090
  created?: string;
46091
+ /**
46092
+ * Created before
46093
+ */
46094
+ created_before?: string;
45105
46095
  /**
45106
46096
  * Customer URL
45107
46097
  */
@@ -45135,6 +46125,10 @@ export type MarketplaceProviderOfferingsListData = {
45135
46125
  * Modified after
45136
46126
  */
45137
46127
  modified?: string;
46128
+ /**
46129
+ * Modified before
46130
+ */
46131
+ modified_before?: string;
45138
46132
  /**
45139
46133
  * Name
45140
46134
  */
@@ -45193,6 +46187,10 @@ export type MarketplaceProviderOfferingsListData = {
45193
46187
  * Shared
45194
46188
  */
45195
46189
  shared?: boolean;
46190
+ /**
46191
+ * Slug
46192
+ */
46193
+ slug?: string;
45196
46194
  /**
45197
46195
  * Offering state
45198
46196
  *
@@ -45271,6 +46269,10 @@ export type MarketplaceProviderOfferingsCountData = {
45271
46269
  * Created after
45272
46270
  */
45273
46271
  created?: string;
46272
+ /**
46273
+ * Created before
46274
+ */
46275
+ created_before?: string;
45274
46276
  /**
45275
46277
  * Customer URL
45276
46278
  */
@@ -45303,6 +46305,10 @@ export type MarketplaceProviderOfferingsCountData = {
45303
46305
  * Modified after
45304
46306
  */
45305
46307
  modified?: string;
46308
+ /**
46309
+ * Modified before
46310
+ */
46311
+ modified_before?: string;
45306
46312
  /**
45307
46313
  * Name
45308
46314
  */
@@ -45361,6 +46367,10 @@ export type MarketplaceProviderOfferingsCountData = {
45361
46367
  * Shared
45362
46368
  */
45363
46369
  shared?: boolean;
46370
+ /**
46371
+ * Slug
46372
+ */
46373
+ slug?: string;
45364
46374
  /**
45365
46375
  * Offering state
45366
46376
  *
@@ -45572,6 +46582,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45572
46582
  * Created after
45573
46583
  */
45574
46584
  created?: string;
46585
+ /**
46586
+ * Created before
46587
+ */
46588
+ created_before?: string;
45575
46589
  /**
45576
46590
  * Customer URL
45577
46591
  */
@@ -45608,6 +46622,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45608
46622
  * Modified after
45609
46623
  */
45610
46624
  modified?: string;
46625
+ /**
46626
+ * Modified before
46627
+ */
46628
+ modified_before?: string;
45611
46629
  /**
45612
46630
  * Name
45613
46631
  */
@@ -45666,6 +46684,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
45666
46684
  * Shared
45667
46685
  */
45668
46686
  shared?: boolean;
46687
+ /**
46688
+ * Slug
46689
+ */
46690
+ slug?: string;
45669
46691
  /**
45670
46692
  * Start date in format YYYY-MM.
45671
46693
  */
@@ -45751,6 +46773,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45751
46773
  * Created after
45752
46774
  */
45753
46775
  created?: string;
46776
+ /**
46777
+ * Created before
46778
+ */
46779
+ created_before?: string;
45754
46780
  /**
45755
46781
  * Customer URL
45756
46782
  */
@@ -45787,6 +46813,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45787
46813
  * Modified after
45788
46814
  */
45789
46815
  modified?: string;
46816
+ /**
46817
+ * Modified before
46818
+ */
46819
+ modified_before?: string;
45790
46820
  /**
45791
46821
  * Name
45792
46822
  */
@@ -45845,6 +46875,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
45845
46875
  * Shared
45846
46876
  */
45847
46877
  shared?: boolean;
46878
+ /**
46879
+ * Slug
46880
+ */
46881
+ slug?: string;
45848
46882
  /**
45849
46883
  * Start date in format YYYY-MM.
45850
46884
  */
@@ -45943,6 +46977,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45943
46977
  * Created after
45944
46978
  */
45945
46979
  created?: string;
46980
+ /**
46981
+ * Created before
46982
+ */
46983
+ created_before?: string;
45946
46984
  /**
45947
46985
  * Customer URL
45948
46986
  */
@@ -45976,6 +47014,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
45976
47014
  * Modified after
45977
47015
  */
45978
47016
  modified?: string;
47017
+ /**
47018
+ * Modified before
47019
+ */
47020
+ modified_before?: string;
45979
47021
  /**
45980
47022
  * Name
45981
47023
  */
@@ -46034,6 +47076,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
46034
47076
  * Shared
46035
47077
  */
46036
47078
  shared?: boolean;
47079
+ /**
47080
+ * Slug
47081
+ */
47082
+ slug?: string;
46037
47083
  /**
46038
47084
  * Offering state
46039
47085
  *
@@ -46294,6 +47340,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
46294
47340
  * Modified after
46295
47341
  */
46296
47342
  modified?: string;
47343
+ /**
47344
+ * Modified before
47345
+ */
47346
+ modified_before?: string;
46297
47347
  /**
46298
47348
  * Name
46299
47349
  */
@@ -46352,6 +47402,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
46352
47402
  * Shared
46353
47403
  */
46354
47404
  shared?: boolean;
47405
+ /**
47406
+ * Slug
47407
+ */
47408
+ slug?: string;
46355
47409
  /**
46356
47410
  * Offering state
46357
47411
  *
@@ -46491,6 +47545,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46491
47545
  * Created after
46492
47546
  */
46493
47547
  created?: string;
47548
+ /**
47549
+ * Created before
47550
+ */
47551
+ created_before?: string;
46494
47552
  /**
46495
47553
  * Customer URL
46496
47554
  */
@@ -46523,6 +47581,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46523
47581
  * Modified after
46524
47582
  */
46525
47583
  modified?: string;
47584
+ /**
47585
+ * Modified before
47586
+ */
47587
+ modified_before?: string;
46526
47588
  /**
46527
47589
  * Name
46528
47590
  */
@@ -46581,6 +47643,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
46581
47643
  * Shared
46582
47644
  */
46583
47645
  shared?: boolean;
47646
+ /**
47647
+ * Slug
47648
+ */
47649
+ slug?: string;
46584
47650
  /**
46585
47651
  * Offering state
46586
47652
  *
@@ -46683,6 +47749,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46683
47749
  * Created after
46684
47750
  */
46685
47751
  created?: string;
47752
+ /**
47753
+ * Created before
47754
+ */
47755
+ created_before?: string;
46686
47756
  /**
46687
47757
  * Customer URL
46688
47758
  */
@@ -46715,6 +47785,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46715
47785
  * Modified after
46716
47786
  */
46717
47787
  modified?: string;
47788
+ /**
47789
+ * Modified before
47790
+ */
47791
+ modified_before?: string;
46718
47792
  /**
46719
47793
  * Name
46720
47794
  */
@@ -46773,6 +47847,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
46773
47847
  * Shared
46774
47848
  */
46775
47849
  shared?: boolean;
47850
+ /**
47851
+ * Slug
47852
+ */
47853
+ slug?: string;
46776
47854
  /**
46777
47855
  * Offering state
46778
47856
  *
@@ -46875,6 +47953,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46875
47953
  * Created after
46876
47954
  */
46877
47955
  created?: string;
47956
+ /**
47957
+ * Created before
47958
+ */
47959
+ created_before?: string;
46878
47960
  /**
46879
47961
  * Customer URL
46880
47962
  */
@@ -46907,6 +47989,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46907
47989
  * Modified after
46908
47990
  */
46909
47991
  modified?: string;
47992
+ /**
47993
+ * Modified before
47994
+ */
47995
+ modified_before?: string;
46910
47996
  /**
46911
47997
  * Name
46912
47998
  */
@@ -46965,6 +48051,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
46965
48051
  * Shared
46966
48052
  */
46967
48053
  shared?: boolean;
48054
+ /**
48055
+ * Slug
48056
+ */
48057
+ slug?: string;
46968
48058
  /**
46969
48059
  * Offering state
46970
48060
  *
@@ -47224,6 +48314,18 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
47224
48314
  */
47225
48315
  200: unknown;
47226
48316
  };
48317
+ export type MarketplaceProviderOfferingsStateCountersRetrieveData = {
48318
+ body?: never;
48319
+ path: {
48320
+ uuid: string;
48321
+ };
48322
+ query?: never;
48323
+ url: '/api/marketplace-provider-offerings/{uuid}/state_counters/';
48324
+ };
48325
+ export type MarketplaceProviderOfferingsStateCountersRetrieveResponses = {
48326
+ 200: OfferingStateCounters;
48327
+ };
48328
+ export type MarketplaceProviderOfferingsStateCountersRetrieveResponse = MarketplaceProviderOfferingsStateCountersRetrieveResponses[keyof MarketplaceProviderOfferingsStateCountersRetrieveResponses];
47227
48329
  export type MarketplaceProviderOfferingsStatsRetrieveData = {
47228
48330
  body?: never;
47229
48331
  path: {
@@ -47239,6 +48341,20 @@ export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
47239
48341
  };
47240
48342
  };
47241
48343
  export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
48344
+ export type MarketplaceProviderOfferingsSwitchBillingModeData = {
48345
+ body: SwitchBillingModeRequest;
48346
+ path: {
48347
+ uuid: string;
48348
+ };
48349
+ query?: never;
48350
+ url: '/api/marketplace-provider-offerings/{uuid}/switch_billing_mode/';
48351
+ };
48352
+ export type MarketplaceProviderOfferingsSwitchBillingModeResponses = {
48353
+ /**
48354
+ * No response body
48355
+ */
48356
+ 200: unknown;
48357
+ };
47242
48358
  export type MarketplaceProviderOfferingsSyncData = {
47243
48359
  body?: never;
47244
48360
  path: {
@@ -47610,6 +48726,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47610
48726
  * Created after
47611
48727
  */
47612
48728
  created?: string;
48729
+ /**
48730
+ * Created before
48731
+ */
48732
+ created_before?: string;
47613
48733
  /**
47614
48734
  * Customer URL
47615
48735
  */
@@ -47638,6 +48758,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47638
48758
  * Modified after
47639
48759
  */
47640
48760
  modified?: string;
48761
+ /**
48762
+ * Modified before
48763
+ */
48764
+ modified_before?: string;
47641
48765
  /**
47642
48766
  * Name
47643
48767
  */
@@ -47696,6 +48820,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
47696
48820
  * Shared
47697
48821
  */
47698
48822
  shared?: boolean;
48823
+ /**
48824
+ * Slug
48825
+ */
48826
+ slug?: string;
47699
48827
  /**
47700
48828
  * Offering state
47701
48829
  *
@@ -47774,6 +48902,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47774
48902
  * Created after
47775
48903
  */
47776
48904
  created?: string;
48905
+ /**
48906
+ * Created before
48907
+ */
48908
+ created_before?: string;
47777
48909
  /**
47778
48910
  * Customer URL
47779
48911
  */
@@ -47802,6 +48934,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47802
48934
  * Modified after
47803
48935
  */
47804
48936
  modified?: string;
48937
+ /**
48938
+ * Modified before
48939
+ */
48940
+ modified_before?: string;
47805
48941
  /**
47806
48942
  * Name
47807
48943
  */
@@ -47860,6 +48996,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
47860
48996
  * Shared
47861
48997
  */
47862
48998
  shared?: boolean;
48999
+ /**
49000
+ * Slug
49001
+ */
49002
+ slug?: string;
47863
49003
  /**
47864
49004
  * Offering state
47865
49005
  *
@@ -47937,6 +49077,10 @@ export type MarketplaceProviderResourcesListData = {
47937
49077
  * Created after
47938
49078
  */
47939
49079
  created?: string;
49080
+ /**
49081
+ * Created before
49082
+ */
49083
+ created_before?: string;
47940
49084
  /**
47941
49085
  * Customer URL
47942
49086
  */
@@ -47974,6 +49118,10 @@ export type MarketplaceProviderResourcesListData = {
47974
49118
  * Modified after
47975
49119
  */
47976
49120
  modified?: string;
49121
+ /**
49122
+ * Modified before
49123
+ */
49124
+ modified_before?: string;
47977
49125
  /**
47978
49126
  * Name
47979
49127
  */
@@ -48056,6 +49204,10 @@ export type MarketplaceProviderResourcesListData = {
48056
49204
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48057
49205
  */
48058
49206
  query?: string;
49207
+ /**
49208
+ * Resource attributes (JSON)
49209
+ */
49210
+ resource_attributes?: string;
48059
49211
  /**
48060
49212
  * Restrict member access
48061
49213
  */
@@ -48072,6 +49224,10 @@ export type MarketplaceProviderResourcesListData = {
48072
49224
  * Service manager UUID
48073
49225
  */
48074
49226
  service_manager_uuid?: string;
49227
+ /**
49228
+ * Slug
49229
+ */
49230
+ slug?: string;
48075
49231
  /**
48076
49232
  * Resource state
48077
49233
  *
@@ -48117,6 +49273,10 @@ export type MarketplaceProviderResourcesCountData = {
48117
49273
  * Created after
48118
49274
  */
48119
49275
  created?: string;
49276
+ /**
49277
+ * Created before
49278
+ */
49279
+ created_before?: string;
48120
49280
  /**
48121
49281
  * Customer URL
48122
49282
  */
@@ -48153,6 +49313,10 @@ export type MarketplaceProviderResourcesCountData = {
48153
49313
  * Modified after
48154
49314
  */
48155
49315
  modified?: string;
49316
+ /**
49317
+ * Modified before
49318
+ */
49319
+ modified_before?: string;
48156
49320
  /**
48157
49321
  * Name
48158
49322
  */
@@ -48235,6 +49399,10 @@ export type MarketplaceProviderResourcesCountData = {
48235
49399
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48236
49400
  */
48237
49401
  query?: string;
49402
+ /**
49403
+ * Resource attributes (JSON)
49404
+ */
49405
+ resource_attributes?: string;
48238
49406
  /**
48239
49407
  * Restrict member access
48240
49408
  */
@@ -48251,6 +49419,10 @@ export type MarketplaceProviderResourcesCountData = {
48251
49419
  * Service manager UUID
48252
49420
  */
48253
49421
  service_manager_uuid?: string;
49422
+ /**
49423
+ * Slug
49424
+ */
49425
+ slug?: string;
48254
49426
  /**
48255
49427
  * Resource state
48256
49428
  *
@@ -48412,6 +49584,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48412
49584
  * Modified after
48413
49585
  */
48414
49586
  modified?: string;
49587
+ /**
49588
+ * Modified before
49589
+ */
49590
+ modified_before?: string;
48415
49591
  /**
48416
49592
  * Name
48417
49593
  */
@@ -48494,6 +49670,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48494
49670
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
48495
49671
  */
48496
49672
  query?: string;
49673
+ /**
49674
+ * Resource attributes (JSON)
49675
+ */
49676
+ resource_attributes?: string;
48497
49677
  /**
48498
49678
  * Restrict member access
48499
49679
  */
@@ -48510,6 +49690,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
48510
49690
  * Service manager UUID
48511
49691
  */
48512
49692
  service_manager_uuid?: string;
49693
+ /**
49694
+ * Slug
49695
+ */
49696
+ slug?: string;
48513
49697
  /**
48514
49698
  * Resource state
48515
49699
  *
@@ -48715,6 +49899,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
48715
49899
  };
48716
49900
  };
48717
49901
  export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
49902
+ export type MarketplaceProviderResourcesSetEffectiveIdData = {
49903
+ body?: ResourceEffectiveIdRequest;
49904
+ path: {
49905
+ uuid: string;
49906
+ };
49907
+ query?: never;
49908
+ url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
49909
+ };
49910
+ export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
49911
+ 200: ResourceResponseStatus;
49912
+ };
49913
+ export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
49914
+ export type MarketplaceProviderResourcesSetEndDateData = {
49915
+ body?: ResourceEndDateRequest;
49916
+ path: {
49917
+ uuid: string;
49918
+ };
49919
+ query?: never;
49920
+ url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
49921
+ };
49922
+ export type MarketplaceProviderResourcesSetEndDateResponses = {
49923
+ /**
49924
+ * No response body
49925
+ */
49926
+ 200: unknown;
49927
+ };
48718
49928
  export type MarketplaceProviderResourcesSetEndDateByProviderData = {
48719
49929
  body?: ResourceEndDateByProviderRequest;
48720
49930
  path: {
@@ -48966,6 +50176,10 @@ export type MarketplacePublicOfferingsListData = {
48966
50176
  * Created after
48967
50177
  */
48968
50178
  created?: string;
50179
+ /**
50180
+ * Created before
50181
+ */
50182
+ created_before?: string;
48969
50183
  /**
48970
50184
  * Customer URL
48971
50185
  */
@@ -48995,6 +50209,10 @@ export type MarketplacePublicOfferingsListData = {
48995
50209
  * Modified after
48996
50210
  */
48997
50211
  modified?: string;
50212
+ /**
50213
+ * Modified before
50214
+ */
50215
+ modified_before?: string;
48998
50216
  /**
48999
50217
  * Name
49000
50218
  */
@@ -49053,6 +50271,10 @@ export type MarketplacePublicOfferingsListData = {
49053
50271
  * Shared
49054
50272
  */
49055
50273
  shared?: boolean;
50274
+ /**
50275
+ * Slug
50276
+ */
50277
+ slug?: string;
49056
50278
  /**
49057
50279
  * Offering state
49058
50280
  *
@@ -49131,6 +50353,10 @@ export type MarketplacePublicOfferingsCountData = {
49131
50353
  * Created after
49132
50354
  */
49133
50355
  created?: string;
50356
+ /**
50357
+ * Created before
50358
+ */
50359
+ created_before?: string;
49134
50360
  /**
49135
50361
  * Customer URL
49136
50362
  */
@@ -49159,6 +50385,10 @@ export type MarketplacePublicOfferingsCountData = {
49159
50385
  * Modified after
49160
50386
  */
49161
50387
  modified?: string;
50388
+ /**
50389
+ * Modified before
50390
+ */
50391
+ modified_before?: string;
49162
50392
  /**
49163
50393
  * Name
49164
50394
  */
@@ -49217,6 +50447,10 @@ export type MarketplacePublicOfferingsCountData = {
49217
50447
  * Shared
49218
50448
  */
49219
50449
  shared?: boolean;
50450
+ /**
50451
+ * Slug
50452
+ */
50453
+ slug?: string;
49220
50454
  /**
49221
50455
  * Offering state
49222
50456
  *
@@ -49611,6 +50845,10 @@ export type MarketplaceResourcesListData = {
49611
50845
  * Created after
49612
50846
  */
49613
50847
  created?: string;
50848
+ /**
50849
+ * Created before
50850
+ */
50851
+ created_before?: string;
49614
50852
  /**
49615
50853
  * Customer URL
49616
50854
  */
@@ -49648,6 +50886,10 @@ export type MarketplaceResourcesListData = {
49648
50886
  * Modified after
49649
50887
  */
49650
50888
  modified?: string;
50889
+ /**
50890
+ * Modified before
50891
+ */
50892
+ modified_before?: string;
49651
50893
  /**
49652
50894
  * Name
49653
50895
  */
@@ -49730,6 +50972,10 @@ export type MarketplaceResourcesListData = {
49730
50972
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
49731
50973
  */
49732
50974
  query?: string;
50975
+ /**
50976
+ * Resource attributes (JSON)
50977
+ */
50978
+ resource_attributes?: string;
49733
50979
  /**
49734
50980
  * Restrict member access
49735
50981
  */
@@ -49746,6 +50992,10 @@ export type MarketplaceResourcesListData = {
49746
50992
  * Service manager UUID
49747
50993
  */
49748
50994
  service_manager_uuid?: string;
50995
+ /**
50996
+ * Slug
50997
+ */
50998
+ slug?: string;
49749
50999
  /**
49750
51000
  * Resource state
49751
51001
  *
@@ -49791,6 +51041,10 @@ export type MarketplaceResourcesCountData = {
49791
51041
  * Created after
49792
51042
  */
49793
51043
  created?: string;
51044
+ /**
51045
+ * Created before
51046
+ */
51047
+ created_before?: string;
49794
51048
  /**
49795
51049
  * Customer URL
49796
51050
  */
@@ -49827,6 +51081,10 @@ export type MarketplaceResourcesCountData = {
49827
51081
  * Modified after
49828
51082
  */
49829
51083
  modified?: string;
51084
+ /**
51085
+ * Modified before
51086
+ */
51087
+ modified_before?: string;
49830
51088
  /**
49831
51089
  * Name
49832
51090
  */
@@ -49909,6 +51167,10 @@ export type MarketplaceResourcesCountData = {
49909
51167
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
49910
51168
  */
49911
51169
  query?: string;
51170
+ /**
51171
+ * Resource attributes (JSON)
51172
+ */
51173
+ resource_attributes?: string;
49912
51174
  /**
49913
51175
  * Restrict member access
49914
51176
  */
@@ -49925,6 +51187,10 @@ export type MarketplaceResourcesCountData = {
49925
51187
  * Service manager UUID
49926
51188
  */
49927
51189
  service_manager_uuid?: string;
51190
+ /**
51191
+ * Slug
51192
+ */
51193
+ slug?: string;
49928
51194
  /**
49929
51195
  * Resource state
49930
51196
  *
@@ -50098,6 +51364,10 @@ export type MarketplaceResourcesHistoryListData = {
50098
51364
  * Modified after
50099
51365
  */
50100
51366
  modified?: string;
51367
+ /**
51368
+ * Modified before
51369
+ */
51370
+ modified_before?: string;
50101
51371
  /**
50102
51372
  * Name
50103
51373
  */
@@ -50180,6 +51450,10 @@ export type MarketplaceResourcesHistoryListData = {
50180
51450
  * Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
50181
51451
  */
50182
51452
  query?: string;
51453
+ /**
51454
+ * Resource attributes (JSON)
51455
+ */
51456
+ resource_attributes?: string;
50183
51457
  /**
50184
51458
  * Restrict member access
50185
51459
  */
@@ -50196,6 +51470,10 @@ export type MarketplaceResourcesHistoryListData = {
50196
51470
  * Service manager UUID
50197
51471
  */
50198
51472
  service_manager_uuid?: string;
51473
+ /**
51474
+ * Slug
51475
+ */
51476
+ slug?: string;
50199
51477
  /**
50200
51478
  * Resource state
50201
51479
  *
@@ -50359,6 +51637,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
50359
51637
  };
50360
51638
  };
50361
51639
  export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
51640
+ export type MarketplaceResourcesSetEndDateData = {
51641
+ body?: ResourceEndDateRequest;
51642
+ path: {
51643
+ uuid: string;
51644
+ };
51645
+ query?: never;
51646
+ url: '/api/marketplace-resources/{uuid}/set_end_date/';
51647
+ };
51648
+ export type MarketplaceResourcesSetEndDateResponses = {
51649
+ /**
51650
+ * No response body
51651
+ */
51652
+ 200: unknown;
51653
+ };
50362
51654
  export type MarketplaceResourcesSetEndDateByStaffData = {
50363
51655
  body?: ResourceEndDateByProviderRequest;
50364
51656
  path: {
@@ -50523,6 +51815,10 @@ export type MarketplaceRobotAccountsListData = {
50523
51815
  * Created after
50524
51816
  */
50525
51817
  created?: string;
51818
+ /**
51819
+ * Created before
51820
+ */
51821
+ created_before?: string;
50526
51822
  /**
50527
51823
  * Customer UUID
50528
51824
  */
@@ -50532,6 +51828,10 @@ export type MarketplaceRobotAccountsListData = {
50532
51828
  * Modified after
50533
51829
  */
50534
51830
  modified?: string;
51831
+ /**
51832
+ * Modified before
51833
+ */
51834
+ modified_before?: string;
50535
51835
  /**
50536
51836
  * A page number within the paginated result set.
50537
51837
  */
@@ -50590,6 +51890,10 @@ export type MarketplaceRobotAccountsCountData = {
50590
51890
  * Created after
50591
51891
  */
50592
51892
  created?: string;
51893
+ /**
51894
+ * Created before
51895
+ */
51896
+ created_before?: string;
50593
51897
  /**
50594
51898
  * Customer UUID
50595
51899
  */
@@ -50598,6 +51902,10 @@ export type MarketplaceRobotAccountsCountData = {
50598
51902
  * Modified after
50599
51903
  */
50600
51904
  modified?: string;
51905
+ /**
51906
+ * Modified before
51907
+ */
51908
+ modified_before?: string;
50601
51909
  /**
50602
51910
  * A page number within the paginated result set.
50603
51911
  */
@@ -51394,6 +52702,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51394
52702
  * Created after
51395
52703
  */
51396
52704
  created?: string;
52705
+ /**
52706
+ * Created before
52707
+ */
52708
+ created_before?: string;
51397
52709
  /**
51398
52710
  * Multiple values may be separated by commas.
51399
52711
  */
@@ -51423,6 +52735,10 @@ export type MarketplaceServiceProvidersCustomerProjectsListData = {
51423
52735
  * Modified after
51424
52736
  */
51425
52737
  modified?: string;
52738
+ /**
52739
+ * Modified before
52740
+ */
52741
+ modified_before?: string;
51426
52742
  /**
51427
52743
  * Name
51428
52744
  */
@@ -51527,6 +52843,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
51527
52843
  */
51528
52844
  query?: string;
51529
52845
  registration_code?: string;
52846
+ /**
52847
+ * Slug
52848
+ */
52849
+ slug?: string;
51530
52850
  };
51531
52851
  url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/';
51532
52852
  };
@@ -51544,6 +52864,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51544
52864
  * Created after
51545
52865
  */
51546
52866
  created?: string;
52867
+ /**
52868
+ * Created before
52869
+ */
52870
+ created_before?: string;
51547
52871
  field?: Array<SshKeyFieldEnum>;
51548
52872
  fingerprint_md5?: string;
51549
52873
  fingerprint_sha256?: string;
@@ -51553,6 +52877,10 @@ export type MarketplaceServiceProvidersKeysListData = {
51553
52877
  * Modified after
51554
52878
  */
51555
52879
  modified?: string;
52880
+ /**
52881
+ * Modified before
52882
+ */
52883
+ modified_before?: string;
51556
52884
  /**
51557
52885
  * Name
51558
52886
  */
@@ -51625,6 +52953,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51625
52953
  * Created after
51626
52954
  */
51627
52955
  created?: string;
52956
+ /**
52957
+ * Created before
52958
+ */
52959
+ created_before?: string;
51628
52960
  /**
51629
52961
  * Customer URL
51630
52962
  */
@@ -51654,6 +52986,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51654
52986
  * Modified after
51655
52987
  */
51656
52988
  modified?: string;
52989
+ /**
52990
+ * Modified before
52991
+ */
52992
+ modified_before?: string;
51657
52993
  /**
51658
52994
  * Name
51659
52995
  */
@@ -51712,6 +53048,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
51712
53048
  * Shared
51713
53049
  */
51714
53050
  shared?: boolean;
53051
+ /**
53052
+ * Slug
53053
+ */
53054
+ slug?: string;
51715
53055
  /**
51716
53056
  * Offering state
51717
53057
  *
@@ -51767,6 +53107,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51767
53107
  * Created after
51768
53108
  */
51769
53109
  created?: string;
53110
+ /**
53111
+ * Created before
53112
+ */
53113
+ created_before?: string;
51770
53114
  expiration_time?: string;
51771
53115
  field?: Array<ProjectPermissionLogFieldEnum>;
51772
53116
  /**
@@ -51777,6 +53121,10 @@ export type MarketplaceServiceProvidersProjectPermissionsListData = {
51777
53121
  * Modified after
51778
53122
  */
51779
53123
  modified?: string;
53124
+ /**
53125
+ * Modified before
53126
+ */
53127
+ modified_before?: string;
51780
53128
  native_name?: string;
51781
53129
  /**
51782
53130
  * Ordering
@@ -51892,6 +53240,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51892
53240
  * Created after
51893
53241
  */
51894
53242
  created?: string;
53243
+ /**
53244
+ * Created before
53245
+ */
53246
+ created_before?: string;
51895
53247
  /**
51896
53248
  * Multiple values may be separated by commas.
51897
53249
  */
@@ -51921,6 +53273,10 @@ export type MarketplaceServiceProvidersProjectsListData = {
51921
53273
  * Modified after
51922
53274
  */
51923
53275
  modified?: string;
53276
+ /**
53277
+ * Modified before
53278
+ */
53279
+ modified_before?: string;
51924
53280
  /**
51925
53281
  * Name
51926
53282
  */
@@ -52021,6 +53377,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
52021
53377
  */
52022
53378
  query?: string;
52023
53379
  registration_code?: string;
53380
+ /**
53381
+ * Slug
53382
+ */
53383
+ slug?: string;
52024
53384
  /**
52025
53385
  * UUID of the user to get related customers for.
52026
53386
  */
@@ -53655,6 +55015,9 @@ export type MarketplaceSoftwareTargetsListData = {
53655
55015
  * Number of results to return per page.
53656
55016
  */
53657
55017
  page_size?: number;
55018
+ /**
55019
+ * Filter targets by location/path (case-insensitive partial match)
55020
+ */
53658
55021
  path?: string;
53659
55022
  /**
53660
55023
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -53707,6 +55070,9 @@ export type MarketplaceSoftwareTargetsCountData = {
53707
55070
  * Number of results to return per page.
53708
55071
  */
53709
55072
  page_size?: number;
55073
+ /**
55074
+ * Filter targets by location/path (case-insensitive partial match)
55075
+ */
53710
55076
  path?: string;
53711
55077
  /**
53712
55078
  * Filter targets by name (e.g., x86_64, aarch64)
@@ -54158,6 +55524,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
54158
55524
  body?: never;
54159
55525
  path?: never;
54160
55526
  query?: {
55527
+ /**
55528
+ * Limit number of results (e.g. top N offerings). No limit by default.
55529
+ */
55530
+ limit?: number;
54161
55531
  /**
54162
55532
  * A page number within the paginated result set.
54163
55533
  */
@@ -54177,6 +55547,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
54177
55547
  body?: never;
54178
55548
  path?: never;
54179
55549
  query?: {
55550
+ /**
55551
+ * Limit number of results (e.g. top N offerings). No limit by default.
55552
+ */
55553
+ limit?: number;
54180
55554
  /**
54181
55555
  * A page number within the paginated result set.
54182
55556
  */
@@ -55108,6 +56482,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
55108
56482
  */
55109
56483
  200: unknown;
55110
56484
  };
56485
+ export type MarketplaceStatsProjectCreationTrendListData = {
56486
+ body?: never;
56487
+ path?: never;
56488
+ query?: {
56489
+ /**
56490
+ * A page number within the paginated result set.
56491
+ */
56492
+ page?: number;
56493
+ /**
56494
+ * Number of results to return per page.
56495
+ */
56496
+ page_size?: number;
56497
+ };
56498
+ url: '/api/marketplace-stats/project_creation_trend/';
56499
+ };
56500
+ export type MarketplaceStatsProjectCreationTrendListResponses = {
56501
+ 200: Array<ProjectCreationTrend>;
56502
+ };
56503
+ export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
56504
+ export type MarketplaceStatsProjectCreationTrendCountData = {
56505
+ body?: never;
56506
+ path?: never;
56507
+ query?: {
56508
+ /**
56509
+ * A page number within the paginated result set.
56510
+ */
56511
+ page?: number;
56512
+ /**
56513
+ * Number of results to return per page.
56514
+ */
56515
+ page_size?: number;
56516
+ };
56517
+ url: '/api/marketplace-stats/project_creation_trend/';
56518
+ };
56519
+ export type MarketplaceStatsProjectCreationTrendCountResponses = {
56520
+ /**
56521
+ * No response body
56522
+ */
56523
+ 200: unknown;
56524
+ };
55111
56525
  export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
55112
56526
  body?: never;
55113
56527
  path?: never;
@@ -55292,6 +56706,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
55292
56706
  */
55293
56707
  200: unknown;
55294
56708
  };
56709
+ export type MarketplaceStatsResourceCreationTrendListData = {
56710
+ body?: never;
56711
+ path?: never;
56712
+ query?: {
56713
+ /**
56714
+ * A page number within the paginated result set.
56715
+ */
56716
+ page?: number;
56717
+ /**
56718
+ * Number of results to return per page.
56719
+ */
56720
+ page_size?: number;
56721
+ };
56722
+ url: '/api/marketplace-stats/resource_creation_trend/';
56723
+ };
56724
+ export type MarketplaceStatsResourceCreationTrendListResponses = {
56725
+ 200: Array<ProjectCreationTrend>;
56726
+ };
56727
+ export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
56728
+ export type MarketplaceStatsResourceCreationTrendCountData = {
56729
+ body?: never;
56730
+ path?: never;
56731
+ query?: {
56732
+ /**
56733
+ * A page number within the paginated result set.
56734
+ */
56735
+ page?: number;
56736
+ /**
56737
+ * Number of results to return per page.
56738
+ */
56739
+ page_size?: number;
56740
+ };
56741
+ url: '/api/marketplace-stats/resource_creation_trend/';
56742
+ };
56743
+ export type MarketplaceStatsResourceCreationTrendCountResponses = {
56744
+ /**
56745
+ * No response body
56746
+ */
56747
+ 200: unknown;
56748
+ };
55295
56749
  export type MarketplaceStatsResourceProvisioningStatsListData = {
55296
56750
  body?: never;
55297
56751
  path?: never;
@@ -55578,6 +57032,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
55578
57032
  */
55579
57033
  200: unknown;
55580
57034
  };
57035
+ export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
57036
+ body?: never;
57037
+ path?: never;
57038
+ query?: {
57039
+ /**
57040
+ * Number of top providers to return. Default is 5.
57041
+ */
57042
+ limit?: number;
57043
+ /**
57044
+ * A page number within the paginated result set.
57045
+ */
57046
+ page?: number;
57047
+ /**
57048
+ * Number of results to return per page.
57049
+ */
57050
+ page_size?: number;
57051
+ };
57052
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
57053
+ };
57054
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
57055
+ 200: Array<TopServiceProviderByResources>;
57056
+ };
57057
+ export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
57058
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
57059
+ body?: never;
57060
+ path?: never;
57061
+ query?: {
57062
+ /**
57063
+ * Number of top providers to return. Default is 5.
57064
+ */
57065
+ limit?: number;
57066
+ /**
57067
+ * A page number within the paginated result set.
57068
+ */
57069
+ page?: number;
57070
+ /**
57071
+ * Number of results to return per page.
57072
+ */
57073
+ page_size?: number;
57074
+ };
57075
+ url: '/api/marketplace-stats/top_service_providers_by_resources/';
57076
+ };
57077
+ export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
57078
+ /**
57079
+ * No response body
57080
+ */
57081
+ 200: unknown;
57082
+ };
55581
57083
  export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
55582
57084
  body?: never;
55583
57085
  path?: never;
@@ -55778,6 +57280,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
55778
57280
  */
55779
57281
  200: unknown;
55780
57282
  };
57283
+ export type MarketplaceStatsUserNationalityListData = {
57284
+ body?: never;
57285
+ path?: never;
57286
+ query?: {
57287
+ /**
57288
+ * A page number within the paginated result set.
57289
+ */
57290
+ page?: number;
57291
+ /**
57292
+ * Number of results to return per page.
57293
+ */
57294
+ page_size?: number;
57295
+ };
57296
+ url: '/api/marketplace-stats/user_nationality/';
57297
+ };
57298
+ export type MarketplaceStatsUserNationalityListResponses = {
57299
+ 200: Array<UserNationalityStats>;
57300
+ };
57301
+ export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
57302
+ export type MarketplaceStatsUserNationalityCountData = {
57303
+ body?: never;
57304
+ path?: never;
57305
+ query?: {
57306
+ /**
57307
+ * A page number within the paginated result set.
57308
+ */
57309
+ page?: number;
57310
+ /**
57311
+ * Number of results to return per page.
57312
+ */
57313
+ page_size?: number;
57314
+ };
57315
+ url: '/api/marketplace-stats/user_nationality/';
57316
+ };
57317
+ export type MarketplaceStatsUserNationalityCountResponses = {
57318
+ /**
57319
+ * No response body
57320
+ */
57321
+ 200: unknown;
57322
+ };
55781
57323
  export type MarketplaceStatsUserOrganizationCountListData = {
55782
57324
  body?: never;
55783
57325
  path?: never;
@@ -55858,6 +57400,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
55858
57400
  */
55859
57401
  200: unknown;
55860
57402
  };
57403
+ export type MarketplaceStatsUserResidenceCountryListData = {
57404
+ body?: never;
57405
+ path?: never;
57406
+ query?: {
57407
+ /**
57408
+ * A page number within the paginated result set.
57409
+ */
57410
+ page?: number;
57411
+ /**
57412
+ * Number of results to return per page.
57413
+ */
57414
+ page_size?: number;
57415
+ };
57416
+ url: '/api/marketplace-stats/user_residence_country/';
57417
+ };
57418
+ export type MarketplaceStatsUserResidenceCountryListResponses = {
57419
+ 200: Array<UserResidenceCountryStats>;
57420
+ };
57421
+ export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
57422
+ export type MarketplaceStatsUserResidenceCountryCountData = {
57423
+ body?: never;
57424
+ path?: never;
57425
+ query?: {
57426
+ /**
57427
+ * A page number within the paginated result set.
57428
+ */
57429
+ page?: number;
57430
+ /**
57431
+ * Number of results to return per page.
57432
+ */
57433
+ page_size?: number;
57434
+ };
57435
+ url: '/api/marketplace-stats/user_residence_country/';
57436
+ };
57437
+ export type MarketplaceStatsUserResidenceCountryCountResponses = {
57438
+ /**
57439
+ * No response body
57440
+ */
57441
+ 200: unknown;
57442
+ };
55861
57443
  export type MarketplaceTagsListData = {
55862
57444
  body?: never;
55863
57445
  path?: never;
@@ -58920,6 +60502,10 @@ export type OpenportalUnmanagedProjectsListData = {
58920
60502
  * Created after
58921
60503
  */
58922
60504
  created?: string;
60505
+ /**
60506
+ * Created before
60507
+ */
60508
+ created_before?: string;
58923
60509
  /**
58924
60510
  * Multiple values may be separated by commas.
58925
60511
  */
@@ -58953,6 +60539,10 @@ export type OpenportalUnmanagedProjectsListData = {
58953
60539
  * Modified after
58954
60540
  */
58955
60541
  modified?: string;
60542
+ /**
60543
+ * Modified before
60544
+ */
60545
+ modified_before?: string;
58956
60546
  /**
58957
60547
  * Name
58958
60548
  */
@@ -59023,6 +60613,10 @@ export type OpenportalUnmanagedProjectsCountData = {
59023
60613
  * Created after
59024
60614
  */
59025
60615
  created?: string;
60616
+ /**
60617
+ * Created before
60618
+ */
60619
+ created_before?: string;
59026
60620
  /**
59027
60621
  * Multiple values may be separated by commas.
59028
60622
  */
@@ -59055,6 +60649,10 @@ export type OpenportalUnmanagedProjectsCountData = {
59055
60649
  * Modified after
59056
60650
  */
59057
60651
  modified?: string;
60652
+ /**
60653
+ * Modified before
60654
+ */
60655
+ modified_before?: string;
59058
60656
  /**
59059
60657
  * Name
59060
60658
  */
@@ -61714,7 +63312,7 @@ export type OpenstackLoadbalancersRetrieveResponses = {
61714
63312
  };
61715
63313
  export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
61716
63314
  export type OpenstackLoadbalancersPartialUpdateData = {
61717
- body?: PatchedOpenStackLoadBalancerRequest;
63315
+ body?: PatchedUpdateLoadBalancerRequest;
61718
63316
  path: {
61719
63317
  uuid: string;
61720
63318
  };
@@ -61722,11 +63320,11 @@ export type OpenstackLoadbalancersPartialUpdateData = {
61722
63320
  url: '/api/openstack-loadbalancers/{uuid}/';
61723
63321
  };
61724
63322
  export type OpenstackLoadbalancersPartialUpdateResponses = {
61725
- 200: OpenStackLoadBalancer;
63323
+ 200: UpdateLoadBalancer;
61726
63324
  };
61727
63325
  export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
61728
63326
  export type OpenstackLoadbalancersUpdateData = {
61729
- body: OpenStackLoadBalancerRequest;
63327
+ body: UpdateLoadBalancerRequest;
61730
63328
  path: {
61731
63329
  uuid: string;
61732
63330
  };
@@ -61734,7 +63332,7 @@ export type OpenstackLoadbalancersUpdateData = {
61734
63332
  url: '/api/openstack-loadbalancers/{uuid}/';
61735
63333
  };
61736
63334
  export type OpenstackLoadbalancersUpdateResponses = {
61737
- 200: OpenStackLoadBalancer;
63335
+ 200: UpdateLoadBalancer;
61738
63336
  };
61739
63337
  export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
61740
63338
  export type OpenstackLoadbalancersAttachFloatingIpData = {
@@ -61746,11 +63344,9 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
61746
63344
  url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
61747
63345
  };
61748
63346
  export type OpenstackLoadbalancersAttachFloatingIpResponses = {
61749
- /**
61750
- * No response body
61751
- */
61752
- 200: unknown;
63347
+ 202: LoadBalancerAsyncOperationResponse;
61753
63348
  };
63349
+ export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
61754
63350
  export type OpenstackLoadbalancersDetachFloatingIpData = {
61755
63351
  body?: never;
61756
63352
  path: {
@@ -61760,25 +63356,24 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
61760
63356
  url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
61761
63357
  };
61762
63358
  export type OpenstackLoadbalancersDetachFloatingIpResponses = {
61763
- /**
61764
- * No response body
61765
- */
61766
- 200: unknown;
63359
+ 202: LoadBalancerAsyncOperationResponse;
61767
63360
  };
61768
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsData = {
61769
- body: LoadBalancerUpdateVipSecurityGroupsRequest;
63361
+ export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
63362
+ export type OpenstackLoadbalancersUnlinkData = {
63363
+ body?: never;
61770
63364
  path: {
61771
63365
  uuid: string;
61772
63366
  };
61773
63367
  query?: never;
61774
- url: '/api/openstack-loadbalancers/{uuid}/update_vip_security_groups/';
63368
+ url: '/api/openstack-loadbalancers/{uuid}/unlink/';
61775
63369
  };
61776
- export type OpenstackLoadbalancersUpdateVipSecurityGroupsResponses = {
63370
+ export type OpenstackLoadbalancersUnlinkResponses = {
61777
63371
  /**
61778
63372
  * No response body
61779
63373
  */
61780
- 200: unknown;
63374
+ 204: void;
61781
63375
  };
63376
+ export type OpenstackLoadbalancersUnlinkResponse = OpenstackLoadbalancersUnlinkResponses[keyof OpenstackLoadbalancersUnlinkResponses];
61782
63377
  export type OpenstackMarketplaceTenantsListData = {
61783
63378
  body?: never;
61784
63379
  path?: never;
@@ -62955,7 +64550,7 @@ export type OpenstackPoolsRetrieveResponses = {
62955
64550
  };
62956
64551
  export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
62957
64552
  export type OpenstackPoolsPartialUpdateData = {
62958
- body?: PatchedOpenStackPoolRequest;
64553
+ body?: PatchedUpdatePoolRequest;
62959
64554
  path: {
62960
64555
  uuid: string;
62961
64556
  };
@@ -62963,11 +64558,11 @@ export type OpenstackPoolsPartialUpdateData = {
62963
64558
  url: '/api/openstack-pools/{uuid}/';
62964
64559
  };
62965
64560
  export type OpenstackPoolsPartialUpdateResponses = {
62966
- 200: OpenStackPool;
64561
+ 200: UpdatePool;
62967
64562
  };
62968
64563
  export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
62969
64564
  export type OpenstackPoolsUpdateData = {
62970
- body: OpenStackPoolRequest;
64565
+ body: UpdatePoolRequest;
62971
64566
  path: {
62972
64567
  uuid: string;
62973
64568
  };
@@ -62975,7 +64570,7 @@ export type OpenstackPoolsUpdateData = {
62975
64570
  url: '/api/openstack-pools/{uuid}/';
62976
64571
  };
62977
64572
  export type OpenstackPoolsUpdateResponses = {
62978
- 200: OpenStackPool;
64573
+ 200: UpdatePool;
62979
64574
  };
62980
64575
  export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
62981
64576
  export type OpenstackPortsListData = {
@@ -66802,6 +68397,135 @@ export type PaymentsUnlinkFromInvoiceResponses = {
66802
68397
  */
66803
68398
  200: unknown;
66804
68399
  };
68400
+ export type PersonalAccessTokensListData = {
68401
+ body?: never;
68402
+ path?: never;
68403
+ query?: {
68404
+ /**
68405
+ * A page number within the paginated result set.
68406
+ */
68407
+ page?: number;
68408
+ /**
68409
+ * Number of results to return per page.
68410
+ */
68411
+ page_size?: number;
68412
+ };
68413
+ url: '/api/personal-access-tokens/';
68414
+ };
68415
+ export type PersonalAccessTokensListResponses = {
68416
+ 200: Array<PersonalAccessToken>;
68417
+ };
68418
+ export type PersonalAccessTokensListResponse = PersonalAccessTokensListResponses[keyof PersonalAccessTokensListResponses];
68419
+ export type PersonalAccessTokensCountData = {
68420
+ body?: never;
68421
+ path?: never;
68422
+ query?: {
68423
+ /**
68424
+ * A page number within the paginated result set.
68425
+ */
68426
+ page?: number;
68427
+ /**
68428
+ * Number of results to return per page.
68429
+ */
68430
+ page_size?: number;
68431
+ };
68432
+ url: '/api/personal-access-tokens/';
68433
+ };
68434
+ export type PersonalAccessTokensCountResponses = {
68435
+ /**
68436
+ * No response body
68437
+ */
68438
+ 200: unknown;
68439
+ };
68440
+ export type PersonalAccessTokensCreateData = {
68441
+ body: PersonalAccessTokenCreateRequest;
68442
+ path?: never;
68443
+ query?: never;
68444
+ url: '/api/personal-access-tokens/';
68445
+ };
68446
+ export type PersonalAccessTokensCreateResponses = {
68447
+ 201: PersonalAccessTokenCreated;
68448
+ };
68449
+ export type PersonalAccessTokensCreateResponse = PersonalAccessTokensCreateResponses[keyof PersonalAccessTokensCreateResponses];
68450
+ export type PersonalAccessTokensDestroyData = {
68451
+ body?: never;
68452
+ path: {
68453
+ uuid: string;
68454
+ };
68455
+ query?: never;
68456
+ url: '/api/personal-access-tokens/{uuid}/';
68457
+ };
68458
+ export type PersonalAccessTokensDestroyResponses = {
68459
+ /**
68460
+ * No response body
68461
+ */
68462
+ 204: void;
68463
+ };
68464
+ export type PersonalAccessTokensDestroyResponse = PersonalAccessTokensDestroyResponses[keyof PersonalAccessTokensDestroyResponses];
68465
+ export type PersonalAccessTokensRetrieveData = {
68466
+ body?: never;
68467
+ path: {
68468
+ uuid: string;
68469
+ };
68470
+ query?: never;
68471
+ url: '/api/personal-access-tokens/{uuid}/';
68472
+ };
68473
+ export type PersonalAccessTokensRetrieveResponses = {
68474
+ 200: PersonalAccessToken;
68475
+ };
68476
+ export type PersonalAccessTokensRetrieveResponse = PersonalAccessTokensRetrieveResponses[keyof PersonalAccessTokensRetrieveResponses];
68477
+ export type PersonalAccessTokensRotateData = {
68478
+ body?: never;
68479
+ path: {
68480
+ uuid: string;
68481
+ };
68482
+ query?: never;
68483
+ url: '/api/personal-access-tokens/{uuid}/rotate/';
68484
+ };
68485
+ export type PersonalAccessTokensRotateResponses = {
68486
+ 201: PersonalAccessTokenCreated;
68487
+ };
68488
+ export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
68489
+ export type PersonalAccessTokensAvailableScopesListData = {
68490
+ body?: never;
68491
+ path?: never;
68492
+ query?: {
68493
+ /**
68494
+ * A page number within the paginated result set.
68495
+ */
68496
+ page?: number;
68497
+ /**
68498
+ * Number of results to return per page.
68499
+ */
68500
+ page_size?: number;
68501
+ };
68502
+ url: '/api/personal-access-tokens/available_scopes/';
68503
+ };
68504
+ export type PersonalAccessTokensAvailableScopesListResponses = {
68505
+ 200: Array<AvailableScope>;
68506
+ };
68507
+ export type PersonalAccessTokensAvailableScopesListResponse = PersonalAccessTokensAvailableScopesListResponses[keyof PersonalAccessTokensAvailableScopesListResponses];
68508
+ export type PersonalAccessTokensAvailableScopesCountData = {
68509
+ body?: never;
68510
+ path?: never;
68511
+ query?: {
68512
+ /**
68513
+ * A page number within the paginated result set.
68514
+ */
68515
+ page?: number;
68516
+ /**
68517
+ * Number of results to return per page.
68518
+ */
68519
+ page_size?: number;
68520
+ };
68521
+ url: '/api/personal-access-tokens/available_scopes/';
68522
+ };
68523
+ export type PersonalAccessTokensAvailableScopesCountResponses = {
68524
+ /**
68525
+ * No response body
68526
+ */
68527
+ 200: unknown;
68528
+ };
66805
68529
  export type ProjectCreditsListData = {
66806
68530
  body?: never;
66807
68531
  path?: never;
@@ -66927,6 +68651,136 @@ export type ProjectCreditsUpdateResponses = {
66927
68651
  200: ProjectCredit;
66928
68652
  };
66929
68653
  export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
68654
+ export type ProjectEndDateChangeRequestsListData = {
68655
+ body?: never;
68656
+ path?: never;
68657
+ query?: {
68658
+ /**
68659
+ * Created by UUID
68660
+ */
68661
+ created_by_uuid?: string;
68662
+ /**
68663
+ * Customer UUID
68664
+ */
68665
+ customer_uuid?: string;
68666
+ /**
68667
+ * A page number within the paginated result set.
68668
+ */
68669
+ page?: number;
68670
+ /**
68671
+ * Number of results to return per page.
68672
+ */
68673
+ page_size?: number;
68674
+ /**
68675
+ * Project UUID
68676
+ */
68677
+ project_uuid?: string;
68678
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68679
+ };
68680
+ url: '/api/project-end-date-change-requests/';
68681
+ };
68682
+ export type ProjectEndDateChangeRequestsListResponses = {
68683
+ 200: Array<ProjectEndDateChangeRequest>;
68684
+ };
68685
+ export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
68686
+ export type ProjectEndDateChangeRequestsCountData = {
68687
+ body?: never;
68688
+ path?: never;
68689
+ query?: {
68690
+ /**
68691
+ * Created by UUID
68692
+ */
68693
+ created_by_uuid?: string;
68694
+ /**
68695
+ * Customer UUID
68696
+ */
68697
+ customer_uuid?: string;
68698
+ /**
68699
+ * A page number within the paginated result set.
68700
+ */
68701
+ page?: number;
68702
+ /**
68703
+ * Number of results to return per page.
68704
+ */
68705
+ page_size?: number;
68706
+ /**
68707
+ * Project UUID
68708
+ */
68709
+ project_uuid?: string;
68710
+ state?: Array<RemoteProjectUpdateRequestStateEnum>;
68711
+ };
68712
+ url: '/api/project-end-date-change-requests/';
68713
+ };
68714
+ export type ProjectEndDateChangeRequestsCountResponses = {
68715
+ /**
68716
+ * No response body
68717
+ */
68718
+ 200: unknown;
68719
+ };
68720
+ export type ProjectEndDateChangeRequestsCreateData = {
68721
+ body: ProjectEndDateChangeRequestCreateRequest;
68722
+ path?: never;
68723
+ query?: never;
68724
+ url: '/api/project-end-date-change-requests/';
68725
+ };
68726
+ export type ProjectEndDateChangeRequestsCreateResponses = {
68727
+ 201: ProjectEndDateChangeRequestCreate;
68728
+ };
68729
+ export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
68730
+ export type ProjectEndDateChangeRequestsRetrieveData = {
68731
+ body?: never;
68732
+ path: {
68733
+ uuid: string;
68734
+ };
68735
+ query?: never;
68736
+ url: '/api/project-end-date-change-requests/{uuid}/';
68737
+ };
68738
+ export type ProjectEndDateChangeRequestsRetrieveResponses = {
68739
+ 200: ProjectEndDateChangeRequest;
68740
+ };
68741
+ export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
68742
+ export type ProjectEndDateChangeRequestsApproveData = {
68743
+ body?: ReviewCommentRequest;
68744
+ path: {
68745
+ uuid: string;
68746
+ };
68747
+ query?: never;
68748
+ url: '/api/project-end-date-change-requests/{uuid}/approve/';
68749
+ };
68750
+ export type ProjectEndDateChangeRequestsApproveResponses = {
68751
+ /**
68752
+ * No response body
68753
+ */
68754
+ 200: unknown;
68755
+ };
68756
+ export type ProjectEndDateChangeRequestsCancelData = {
68757
+ body?: never;
68758
+ path: {
68759
+ uuid: string;
68760
+ };
68761
+ query?: never;
68762
+ url: '/api/project-end-date-change-requests/{uuid}/cancel/';
68763
+ };
68764
+ export type ProjectEndDateChangeRequestsCancelResponses = {
68765
+ /**
68766
+ * No response body
68767
+ */
68768
+ 200: unknown;
68769
+ };
68770
+ export type ProjectEndDateChangeRequestsRejectData = {
68771
+ body?: ReviewCommentRequest;
68772
+ path: {
68773
+ uuid: string;
68774
+ };
68775
+ query?: never;
68776
+ url: '/api/project-end-date-change-requests/{uuid}/reject/';
68777
+ };
68778
+ export type ProjectEndDateChangeRequestsRejectResponses = {
68779
+ /**
68780
+ * No response body
68781
+ */
68782
+ 200: unknown;
68783
+ };
66930
68784
  export type ProjectPermissionsReviewsListData = {
66931
68785
  body?: never;
66932
68786
  path?: never;
@@ -67172,6 +69026,10 @@ export type ProjectsListData = {
67172
69026
  * Created after
67173
69027
  */
67174
69028
  created?: string;
69029
+ /**
69030
+ * Created before
69031
+ */
69032
+ created_before?: string;
67175
69033
  /**
67176
69034
  * Multiple values may be separated by commas.
67177
69035
  */
@@ -67205,6 +69063,10 @@ export type ProjectsListData = {
67205
69063
  * Modified after
67206
69064
  */
67207
69065
  modified?: string;
69066
+ /**
69067
+ * Modified before
69068
+ */
69069
+ modified_before?: string;
67208
69070
  /**
67209
69071
  * Name
67210
69072
  */
@@ -67275,6 +69137,10 @@ export type ProjectsCountData = {
67275
69137
  * Created after
67276
69138
  */
67277
69139
  created?: string;
69140
+ /**
69141
+ * Created before
69142
+ */
69143
+ created_before?: string;
67278
69144
  /**
67279
69145
  * Multiple values may be separated by commas.
67280
69146
  */
@@ -67307,6 +69173,10 @@ export type ProjectsCountData = {
67307
69173
  * Modified after
67308
69174
  */
67309
69175
  modified?: string;
69176
+ /**
69177
+ * Modified before
69178
+ */
69179
+ modified_before?: string;
67310
69180
  /**
67311
69181
  * Name
67312
69182
  */
@@ -68004,6 +69874,10 @@ export type ProposalProposalsListData = {
68004
69874
  page_size?: number;
68005
69875
  round?: string;
68006
69876
  round_uuid?: string;
69877
+ /**
69878
+ * Slug
69879
+ */
69880
+ slug?: string;
68007
69881
  state?: Array<ProposalStates>;
68008
69882
  };
68009
69883
  url: '/api/proposal-proposals/';
@@ -68037,6 +69911,10 @@ export type ProposalProposalsCountData = {
68037
69911
  page_size?: number;
68038
69912
  round?: string;
68039
69913
  round_uuid?: string;
69914
+ /**
69915
+ * Slug
69916
+ */
69917
+ slug?: string;
68040
69918
  state?: Array<ProposalStates>;
68041
69919
  };
68042
69920
  url: '/api/proposal-proposals/';
@@ -68544,6 +70422,10 @@ export type ProposalProtectedCallsListData = {
68544
70422
  * Number of results to return per page.
68545
70423
  */
68546
70424
  page_size?: number;
70425
+ /**
70426
+ * Slug
70427
+ */
70428
+ slug?: string;
68547
70429
  state?: Array<CallStates>;
68548
70430
  };
68549
70431
  url: '/api/proposal-protected-calls/';
@@ -68577,6 +70459,10 @@ export type ProposalProtectedCallsCountData = {
68577
70459
  * Number of results to return per page.
68578
70460
  */
68579
70461
  page_size?: number;
70462
+ /**
70463
+ * Slug
70464
+ */
70465
+ slug?: string;
68580
70466
  state?: Array<CallStates>;
68581
70467
  };
68582
70468
  url: '/api/proposal-protected-calls/';
@@ -68822,6 +70708,10 @@ export type ProposalProtectedCallsConflictsListData = {
68822
70708
  * Number of results to return per page.
68823
70709
  */
68824
70710
  page_size?: number;
70711
+ /**
70712
+ * Slug
70713
+ */
70714
+ slug?: string;
68825
70715
  state?: Array<CallStates>;
68826
70716
  };
68827
70717
  url: '/api/proposal-protected-calls/{uuid}/conflicts/';
@@ -69141,6 +71031,10 @@ export type ProposalProtectedCallsProposalsComplianceAnswersListData = {
69141
71031
  * Number of results to return per page.
69142
71032
  */
69143
71033
  page_size?: number;
71034
+ /**
71035
+ * Slug
71036
+ */
71037
+ slug?: string;
69144
71038
  state?: Array<CallStates>;
69145
71039
  };
69146
71040
  url: '/api/proposal-protected-calls/{uuid}/proposals/{proposal_uuid}/compliance-answers/';
@@ -69176,6 +71070,10 @@ export type ProposalProtectedCallsProposedAssignmentsListData = {
69176
71070
  * Number of results to return per page.
69177
71071
  */
69178
71072
  page_size?: number;
71073
+ /**
71074
+ * Slug
71075
+ */
71076
+ slug?: string;
69179
71077
  state?: Array<CallStates>;
69180
71078
  };
69181
71079
  url: '/api/proposal-protected-calls/{uuid}/proposed-assignments/';
@@ -69334,6 +71232,10 @@ export type ProposalProtectedCallsInviteReviewersData = {
69334
71232
  * Number of results to return per page.
69335
71233
  */
69336
71234
  page_size?: number;
71235
+ /**
71236
+ * Slug
71237
+ */
71238
+ slug?: string;
69337
71239
  state?: Array<CallStates>;
69338
71240
  };
69339
71241
  url: '/api/proposal-protected-calls/{uuid}/reviewer-pool/';
@@ -69494,6 +71396,10 @@ export type ProposalProtectedCallsSuggestionsListData = {
69494
71396
  * Number of results to return per page.
69495
71397
  */
69496
71398
  page_size?: number;
71399
+ /**
71400
+ * Slug
71401
+ */
71402
+ slug?: string;
69497
71403
  state?: Array<CallStates>;
69498
71404
  };
69499
71405
  url: '/api/proposal-protected-calls/{uuid}/suggestions/';
@@ -69570,6 +71476,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
69570
71476
  * Number of results to return per page.
69571
71477
  */
69572
71478
  page_size?: number;
71479
+ /**
71480
+ * Slug
71481
+ */
71482
+ slug?: string;
69573
71483
  state?: Array<CallStates>;
69574
71484
  };
69575
71485
  url: '/api/proposal-protected-calls/available_compliance_checklists/';
@@ -69610,6 +71520,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsCountData = {
69610
71520
  * Number of results to return per page.
69611
71521
  */
69612
71522
  page_size?: number;
71523
+ /**
71524
+ * Slug
71525
+ */
71526
+ slug?: string;
69613
71527
  state?: Array<CallStates>;
69614
71528
  };
69615
71529
  url: '/api/proposal-protected-calls/available_compliance_checklists/';
@@ -69646,6 +71560,10 @@ export type ProposalPublicCallsListData = {
69646
71560
  * Number of results to return per page.
69647
71561
  */
69648
71562
  page_size?: number;
71563
+ /**
71564
+ * Slug
71565
+ */
71566
+ slug?: string;
69649
71567
  state?: Array<CallStates>;
69650
71568
  };
69651
71569
  url: '/api/proposal-public-calls/';
@@ -69679,6 +71597,10 @@ export type ProposalPublicCallsCountData = {
69679
71597
  * Number of results to return per page.
69680
71598
  */
69681
71599
  page_size?: number;
71600
+ /**
71601
+ * Slug
71602
+ */
71603
+ slug?: string;
69682
71604
  state?: Array<CallStates>;
69683
71605
  };
69684
71606
  url: '/api/proposal-public-calls/';
@@ -75309,7 +77231,7 @@ export type SupportCommentsListData = {
75309
77231
  *
75310
77232
  *
75311
77233
  */
75312
- o?: Array<ThreadSessionOEnum>;
77234
+ o?: Array<CommentOEnum>;
75313
77235
  /**
75314
77236
  * A page number within the paginated result set.
75315
77237
  */
@@ -75348,7 +77270,7 @@ export type SupportCommentsCountData = {
75348
77270
  *
75349
77271
  *
75350
77272
  */
75351
- o?: Array<ThreadSessionOEnum>;
77273
+ o?: Array<CommentOEnum>;
75352
77274
  /**
75353
77275
  * A page number within the paginated result set.
75354
77276
  */
@@ -77766,6 +79688,10 @@ export type UserPermissionsListData = {
77766
79688
  * Created after
77767
79689
  */
77768
79690
  created?: string;
79691
+ /**
79692
+ * Created before
79693
+ */
79694
+ created_before?: string;
77769
79695
  expiration_time?: string;
77770
79696
  /**
77771
79697
  * User full name contains
@@ -77775,6 +79701,10 @@ export type UserPermissionsListData = {
77775
79701
  * Modified after
77776
79702
  */
77777
79703
  modified?: string;
79704
+ /**
79705
+ * Modified before
79706
+ */
79707
+ modified_before?: string;
77778
79708
  native_name?: string;
77779
79709
  /**
77780
79710
  * Ordering
@@ -77832,6 +79762,10 @@ export type UserPermissionsCountData = {
77832
79762
  * Created after
77833
79763
  */
77834
79764
  created?: string;
79765
+ /**
79766
+ * Created before
79767
+ */
79768
+ created_before?: string;
77835
79769
  expiration_time?: string;
77836
79770
  /**
77837
79771
  * User full name contains
@@ -77841,6 +79775,10 @@ export type UserPermissionsCountData = {
77841
79775
  * Modified after
77842
79776
  */
77843
79777
  modified?: string;
79778
+ /**
79779
+ * Modified before
79780
+ */
79781
+ modified_before?: string;
77844
79782
  native_name?: string;
77845
79783
  /**
77846
79784
  * Ordering