waldur-js-client 8.0.7-dev.9 → 8.0.8-dev.0
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.
- package/dist/sdk.gen.d.ts +212 -7
- package/dist/sdk.gen.js +10644 -33
- package/dist/types.gen.d.ts +1976 -330
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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 = '';
|
|
@@ -2377,8 +2458,8 @@ export type BookingResource = {
|
|
|
2377
2458
|
/**
|
|
2378
2459
|
* Effective project end date including grace period. After this date, resources will be terminated.
|
|
2379
2460
|
*/
|
|
2380
|
-
readonly project_effective_end_date?: string;
|
|
2381
|
-
readonly project_end_date_requested_by?: string;
|
|
2461
|
+
readonly project_effective_end_date?: string | null;
|
|
2462
|
+
readonly project_end_date_requested_by?: string | null;
|
|
2382
2463
|
readonly customer_uuid?: string;
|
|
2383
2464
|
readonly customer_name?: string;
|
|
2384
2465
|
readonly offering_slug?: string;
|
|
@@ -2813,6 +2894,25 @@ export type CallManagingOrganisationStat = {
|
|
|
2813
2894
|
readonly calls_closing_in_one_week: number;
|
|
2814
2895
|
readonly offering_requests_pending: number;
|
|
2815
2896
|
};
|
|
2897
|
+
export type CallPerformanceStat = {
|
|
2898
|
+
readonly call_uuid: string;
|
|
2899
|
+
readonly call_name: string;
|
|
2900
|
+
readonly managing_organization_name: string;
|
|
2901
|
+
readonly state: string;
|
|
2902
|
+
readonly total_proposals: number;
|
|
2903
|
+
readonly proposals_draft: number;
|
|
2904
|
+
readonly proposals_submitted: number;
|
|
2905
|
+
readonly proposals_in_review: number;
|
|
2906
|
+
readonly proposals_accepted: number;
|
|
2907
|
+
readonly proposals_rejected: number;
|
|
2908
|
+
readonly proposals_canceled: number;
|
|
2909
|
+
readonly acceptance_rate: number;
|
|
2910
|
+
readonly total_reviews: number;
|
|
2911
|
+
readonly reviews_completed: number;
|
|
2912
|
+
readonly average_score: number | null;
|
|
2913
|
+
readonly active_rounds: number;
|
|
2914
|
+
readonly last_submission_date: string | null;
|
|
2915
|
+
};
|
|
2816
2916
|
export type CallResourceTemplate = {
|
|
2817
2917
|
readonly uuid?: string;
|
|
2818
2918
|
readonly url?: string;
|
|
@@ -2887,7 +2987,7 @@ export type CallReviewerPool = {
|
|
|
2887
2987
|
*/
|
|
2888
2988
|
expertise_match_score?: number | null;
|
|
2889
2989
|
readonly invited_by_name: string;
|
|
2890
|
-
readonly
|
|
2990
|
+
readonly invitation_link: string | null;
|
|
2891
2991
|
readonly invitation_expires_at: string | null;
|
|
2892
2992
|
readonly created: string;
|
|
2893
2993
|
/**
|
|
@@ -2916,6 +3016,12 @@ export type CallReviewerPool = {
|
|
|
2916
3016
|
* Count reviews in 'submitted' state.
|
|
2917
3017
|
*/
|
|
2918
3018
|
readonly reviews_completed: number;
|
|
3019
|
+
/**
|
|
3020
|
+
* Reason for manager override of invitation status.
|
|
3021
|
+
*/
|
|
3022
|
+
readonly override_reason: string;
|
|
3023
|
+
readonly overridden_by_name: string;
|
|
3024
|
+
readonly overridden_at: string | null;
|
|
2919
3025
|
};
|
|
2920
3026
|
export type CallReviewerPoolUpdate = {
|
|
2921
3027
|
/**
|
|
@@ -3537,6 +3643,10 @@ export type ChatResponse = {
|
|
|
3537
3643
|
* Available project options [{name, organization, uuid}]. Present when status='project_form'.
|
|
3538
3644
|
*/
|
|
3539
3645
|
projects?: Array<unknown>;
|
|
3646
|
+
/**
|
|
3647
|
+
* Available offering options [{uuid, name}]. Present when status='offering_form'.
|
|
3648
|
+
*/
|
|
3649
|
+
offerings?: Array<unknown>;
|
|
3540
3650
|
};
|
|
3541
3651
|
export type ChatSession = {
|
|
3542
3652
|
readonly uuid?: string;
|
|
@@ -4171,6 +4281,8 @@ export type ConstanceSettings = {
|
|
|
4171
4281
|
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
4172
4282
|
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
4173
4283
|
MARKETPLACE_LANDING_PAGE?: string;
|
|
4284
|
+
MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
|
|
4285
|
+
MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
|
|
4174
4286
|
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
4175
4287
|
ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
|
|
4176
4288
|
TELEMETRY_URL?: string;
|
|
@@ -4319,6 +4431,7 @@ export type ConstanceSettings = {
|
|
|
4319
4431
|
OIDC_CACHE_TIMEOUT?: number;
|
|
4320
4432
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
4321
4433
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
4434
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
4322
4435
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
4323
4436
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
4324
4437
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -4347,18 +4460,20 @@ export type ConstanceSettings = {
|
|
|
4347
4460
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
4348
4461
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
4349
4462
|
ONBOARDING_BREG_API_URL?: string;
|
|
4350
|
-
|
|
4351
|
-
|
|
4352
|
-
|
|
4353
|
-
|
|
4354
|
-
|
|
4355
|
-
|
|
4356
|
-
|
|
4357
|
-
|
|
4358
|
-
|
|
4359
|
-
|
|
4360
|
-
|
|
4361
|
-
|
|
4463
|
+
AI_ASSISTANT_ENABLED?: boolean;
|
|
4464
|
+
AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
|
|
4465
|
+
AI_ASSISTANT_BACKEND_TYPE?: string;
|
|
4466
|
+
AI_ASSISTANT_API_URL?: string;
|
|
4467
|
+
AI_ASSISTANT_API_TOKEN?: string;
|
|
4468
|
+
AI_ASSISTANT_MODEL?: string;
|
|
4469
|
+
AI_ASSISTANT_COMPLETION_KWARGS?: string;
|
|
4470
|
+
AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
|
|
4471
|
+
AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
|
|
4472
|
+
AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
|
|
4473
|
+
AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
|
|
4474
|
+
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
4475
|
+
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
4476
|
+
AI_ASSISTANT_NAME?: string;
|
|
4362
4477
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
4363
4478
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
4364
4479
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -4398,6 +4513,9 @@ export type ConstanceSettings = {
|
|
|
4398
4513
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4399
4514
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4400
4515
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
4516
|
+
PAT_ENABLED?: boolean;
|
|
4517
|
+
PAT_MAX_LIFETIME_DAYS?: number;
|
|
4518
|
+
PAT_MAX_TOKENS_PER_USER?: number;
|
|
4401
4519
|
};
|
|
4402
4520
|
export type ConstanceSettingsRequest = {
|
|
4403
4521
|
SITE_NAME?: string;
|
|
@@ -4418,6 +4536,8 @@ export type ConstanceSettingsRequest = {
|
|
|
4418
4536
|
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
4419
4537
|
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
4420
4538
|
MARKETPLACE_LANDING_PAGE?: string;
|
|
4539
|
+
MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
|
|
4540
|
+
MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
|
|
4421
4541
|
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
4422
4542
|
ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
|
|
4423
4543
|
TELEMETRY_URL?: string;
|
|
@@ -4566,6 +4686,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4566
4686
|
OIDC_CACHE_TIMEOUT?: number;
|
|
4567
4687
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
4568
4688
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
4689
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
4569
4690
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
4570
4691
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
4571
4692
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -4594,18 +4715,20 @@ export type ConstanceSettingsRequest = {
|
|
|
4594
4715
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
4595
4716
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
4596
4717
|
ONBOARDING_BREG_API_URL?: string;
|
|
4597
|
-
|
|
4598
|
-
|
|
4599
|
-
|
|
4600
|
-
|
|
4601
|
-
|
|
4602
|
-
|
|
4603
|
-
|
|
4604
|
-
|
|
4605
|
-
|
|
4606
|
-
|
|
4607
|
-
|
|
4608
|
-
|
|
4718
|
+
AI_ASSISTANT_ENABLED?: boolean;
|
|
4719
|
+
AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
|
|
4720
|
+
AI_ASSISTANT_BACKEND_TYPE?: string;
|
|
4721
|
+
AI_ASSISTANT_API_URL?: string;
|
|
4722
|
+
AI_ASSISTANT_API_TOKEN?: string;
|
|
4723
|
+
AI_ASSISTANT_MODEL?: string;
|
|
4724
|
+
AI_ASSISTANT_COMPLETION_KWARGS?: string;
|
|
4725
|
+
AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
|
|
4726
|
+
AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
|
|
4727
|
+
AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
|
|
4728
|
+
AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
|
|
4729
|
+
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
4730
|
+
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
4731
|
+
AI_ASSISTANT_NAME?: string;
|
|
4609
4732
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
4610
4733
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
4611
4734
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -4645,6 +4768,9 @@ export type ConstanceSettingsRequest = {
|
|
|
4645
4768
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
4646
4769
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
4647
4770
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
4771
|
+
PAT_ENABLED?: boolean;
|
|
4772
|
+
PAT_MAX_LIFETIME_DAYS?: number;
|
|
4773
|
+
PAT_MAX_TOKENS_PER_USER?: number;
|
|
4648
4774
|
};
|
|
4649
4775
|
export type ConsumptionStatisticsResponse = {
|
|
4650
4776
|
total_records: number;
|
|
@@ -4886,96 +5012,86 @@ export type CreateFeedbackRequest = {
|
|
|
4886
5012
|
export type CreateHealthMonitor = {
|
|
4887
5013
|
readonly url: string;
|
|
4888
5014
|
readonly uuid: string;
|
|
4889
|
-
/**
|
|
4890
|
-
* Pool this health monitor belongs to
|
|
4891
|
-
*/
|
|
4892
|
-
pool: string;
|
|
4893
5015
|
name?: string;
|
|
4894
|
-
type: LoadBalancerProtocolEnum;
|
|
4895
5016
|
/**
|
|
4896
5017
|
* Interval between health checks in seconds
|
|
4897
5018
|
*/
|
|
4898
|
-
delay
|
|
5019
|
+
delay?: number;
|
|
4899
5020
|
/**
|
|
4900
5021
|
* Time in seconds to timeout a health check
|
|
4901
5022
|
*/
|
|
4902
|
-
timeout
|
|
4903
|
-
|
|
4904
|
-
|
|
4905
|
-
*/
|
|
4906
|
-
max_retries: number;
|
|
4907
|
-
readonly project: string;
|
|
4908
|
-
readonly service_settings: string;
|
|
4909
|
-
};
|
|
4910
|
-
export type CreateHealthMonitorRequest = {
|
|
5023
|
+
timeout?: number;
|
|
5024
|
+
max_retries?: number;
|
|
5025
|
+
max_retries_down?: number;
|
|
4911
5026
|
/**
|
|
4912
5027
|
* Pool this health monitor belongs to
|
|
4913
5028
|
*/
|
|
4914
5029
|
pool: string;
|
|
4915
|
-
name?: string;
|
|
4916
5030
|
type: LoadBalancerProtocolEnum;
|
|
5031
|
+
};
|
|
5032
|
+
export type CreateHealthMonitorRequest = {
|
|
5033
|
+
name?: string;
|
|
4917
5034
|
/**
|
|
4918
5035
|
* Interval between health checks in seconds
|
|
4919
5036
|
*/
|
|
4920
|
-
delay
|
|
5037
|
+
delay?: number;
|
|
4921
5038
|
/**
|
|
4922
5039
|
* Time in seconds to timeout a health check
|
|
4923
5040
|
*/
|
|
4924
|
-
timeout
|
|
5041
|
+
timeout?: number;
|
|
5042
|
+
max_retries?: number;
|
|
5043
|
+
max_retries_down?: number;
|
|
4925
5044
|
/**
|
|
4926
|
-
*
|
|
5045
|
+
* Pool this health monitor belongs to
|
|
4927
5046
|
*/
|
|
4928
|
-
|
|
5047
|
+
pool: string;
|
|
5048
|
+
type: LoadBalancerProtocolEnum;
|
|
4929
5049
|
};
|
|
4930
5050
|
export type CreateListener = {
|
|
5051
|
+
name?: string;
|
|
5052
|
+
default_pool?: string | null;
|
|
4931
5053
|
readonly url: string;
|
|
4932
5054
|
readonly uuid: string;
|
|
4933
5055
|
/**
|
|
4934
5056
|
* Load balancer this listener belongs to
|
|
4935
5057
|
*/
|
|
4936
5058
|
load_balancer: string;
|
|
4937
|
-
name: string;
|
|
4938
5059
|
protocol: LoadBalancerProtocolEnum;
|
|
4939
5060
|
/**
|
|
4940
5061
|
* Port on which the listener listens
|
|
4941
5062
|
*/
|
|
4942
5063
|
protocol_port: number;
|
|
4943
|
-
default_pool?: string | null;
|
|
4944
|
-
readonly project: string;
|
|
4945
|
-
readonly service_settings: string;
|
|
4946
5064
|
};
|
|
4947
5065
|
export type CreateListenerRequest = {
|
|
5066
|
+
name?: string;
|
|
5067
|
+
default_pool?: string | null;
|
|
4948
5068
|
/**
|
|
4949
5069
|
* Load balancer this listener belongs to
|
|
4950
5070
|
*/
|
|
4951
5071
|
load_balancer: string;
|
|
4952
|
-
name: string;
|
|
4953
5072
|
protocol: LoadBalancerProtocolEnum;
|
|
4954
5073
|
/**
|
|
4955
5074
|
* Port on which the listener listens
|
|
4956
5075
|
*/
|
|
4957
5076
|
protocol_port: number;
|
|
4958
|
-
default_pool?: string | null;
|
|
4959
5077
|
};
|
|
4960
5078
|
export type CreateLoadBalancer = {
|
|
4961
5079
|
readonly url: string;
|
|
4962
5080
|
readonly uuid: string;
|
|
5081
|
+
name: string;
|
|
4963
5082
|
/**
|
|
4964
5083
|
* OpenStack tenant this load balancer belongs to
|
|
4965
5084
|
*/
|
|
4966
5085
|
tenant: string;
|
|
4967
|
-
|
|
4968
|
-
vip_subnet_id: string;
|
|
4969
|
-
readonly project: string;
|
|
4970
|
-
readonly service_settings: string;
|
|
5086
|
+
vip_subnet: string;
|
|
4971
5087
|
};
|
|
4972
5088
|
export type CreateLoadBalancerRequest = {
|
|
5089
|
+
name: string;
|
|
4973
5090
|
/**
|
|
4974
5091
|
* OpenStack tenant this load balancer belongs to
|
|
4975
5092
|
*/
|
|
4976
5093
|
tenant: string;
|
|
4977
|
-
|
|
4978
|
-
vip_subnet_id: string;
|
|
5094
|
+
vip_subnet: string;
|
|
4979
5095
|
};
|
|
4980
5096
|
export type CreateManualAssignmentRequest = {
|
|
4981
5097
|
/**
|
|
@@ -5004,24 +5120,22 @@ export type CreateManualAssignmentResponse = {
|
|
|
5004
5120
|
export type CreatePool = {
|
|
5005
5121
|
readonly url: string;
|
|
5006
5122
|
readonly uuid: string;
|
|
5123
|
+
name: string;
|
|
5007
5124
|
/**
|
|
5008
5125
|
* Load balancer this pool belongs to
|
|
5009
5126
|
*/
|
|
5010
5127
|
load_balancer: string;
|
|
5011
|
-
name: string;
|
|
5012
5128
|
protocol: LoadBalancerProtocolEnum;
|
|
5013
|
-
lb_algorithm?: LbAlgorithmEnum;
|
|
5014
|
-
readonly project: string;
|
|
5015
|
-
readonly service_settings: string;
|
|
5016
5129
|
};
|
|
5017
5130
|
export type CreatePoolMember = {
|
|
5018
5131
|
readonly url: string;
|
|
5019
5132
|
readonly uuid: string;
|
|
5133
|
+
name?: string;
|
|
5134
|
+
weight?: number;
|
|
5020
5135
|
/**
|
|
5021
5136
|
* Pool this member belongs to
|
|
5022
5137
|
*/
|
|
5023
5138
|
pool: string;
|
|
5024
|
-
name?: string;
|
|
5025
5139
|
/**
|
|
5026
5140
|
* An IPv4 or IPv6 address.
|
|
5027
5141
|
*/
|
|
@@ -5030,17 +5144,15 @@ export type CreatePoolMember = {
|
|
|
5030
5144
|
* Port on the backend server
|
|
5031
5145
|
*/
|
|
5032
5146
|
protocol_port: number;
|
|
5033
|
-
|
|
5034
|
-
weight?: number;
|
|
5035
|
-
readonly project: string;
|
|
5036
|
-
readonly service_settings: string;
|
|
5147
|
+
subnet: string;
|
|
5037
5148
|
};
|
|
5038
5149
|
export type CreatePoolMemberRequest = {
|
|
5150
|
+
name?: string;
|
|
5151
|
+
weight?: number;
|
|
5039
5152
|
/**
|
|
5040
5153
|
* Pool this member belongs to
|
|
5041
5154
|
*/
|
|
5042
5155
|
pool: string;
|
|
5043
|
-
name?: string;
|
|
5044
5156
|
/**
|
|
5045
5157
|
* An IPv4 or IPv6 address.
|
|
5046
5158
|
*/
|
|
@@ -5049,17 +5161,15 @@ export type CreatePoolMemberRequest = {
|
|
|
5049
5161
|
* Port on the backend server
|
|
5050
5162
|
*/
|
|
5051
5163
|
protocol_port: number;
|
|
5052
|
-
|
|
5053
|
-
weight?: number;
|
|
5164
|
+
subnet: string;
|
|
5054
5165
|
};
|
|
5055
5166
|
export type CreatePoolRequest = {
|
|
5167
|
+
name: string;
|
|
5056
5168
|
/**
|
|
5057
5169
|
* Load balancer this pool belongs to
|
|
5058
5170
|
*/
|
|
5059
5171
|
load_balancer: string;
|
|
5060
|
-
name: string;
|
|
5061
5172
|
protocol: LoadBalancerProtocolEnum;
|
|
5062
|
-
lb_algorithm?: LbAlgorithmEnum;
|
|
5063
5173
|
};
|
|
5064
5174
|
export type CreateRouter = {
|
|
5065
5175
|
readonly url: string;
|
|
@@ -5185,6 +5295,13 @@ export type Customer = {
|
|
|
5185
5295
|
* Comma-separated list of notification email addresses
|
|
5186
5296
|
*/
|
|
5187
5297
|
notification_emails?: string;
|
|
5298
|
+
city?: string;
|
|
5299
|
+
state?: string;
|
|
5300
|
+
parish?: string;
|
|
5301
|
+
street?: string;
|
|
5302
|
+
house_nr?: string;
|
|
5303
|
+
apartment_nr?: string;
|
|
5304
|
+
household?: string;
|
|
5188
5305
|
readonly payment_profiles?: Array<PaymentProfile>;
|
|
5189
5306
|
readonly customer_credit?: number | null;
|
|
5190
5307
|
readonly customer_unallocated_credit?: number | null;
|
|
@@ -5245,6 +5362,7 @@ export type CustomerComponentUsagePolicy = {
|
|
|
5245
5362
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
5246
5363
|
*/
|
|
5247
5364
|
options?: unknown;
|
|
5365
|
+
readonly affected_resources_count: number;
|
|
5248
5366
|
component_limits_set: Array<NestedCustomerUsagePolicyComponent>;
|
|
5249
5367
|
};
|
|
5250
5368
|
export type CustomerComponentUsagePolicyRequest = {
|
|
@@ -5347,6 +5465,7 @@ export type CustomerEstimatedCostPolicy = {
|
|
|
5347
5465
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
5348
5466
|
*/
|
|
5349
5467
|
options?: unknown;
|
|
5468
|
+
readonly affected_resources_count: number;
|
|
5350
5469
|
limit_cost: number;
|
|
5351
5470
|
period?: PolicyPeriodEnum;
|
|
5352
5471
|
readonly period_name: string;
|
|
@@ -5546,6 +5665,13 @@ export type CustomerRequest = {
|
|
|
5546
5665
|
* Comma-separated list of notification email addresses
|
|
5547
5666
|
*/
|
|
5548
5667
|
notification_emails?: string;
|
|
5668
|
+
city?: string;
|
|
5669
|
+
state?: string;
|
|
5670
|
+
parish?: string;
|
|
5671
|
+
street?: string;
|
|
5672
|
+
house_nr?: string;
|
|
5673
|
+
apartment_nr?: string;
|
|
5674
|
+
household?: string;
|
|
5549
5675
|
};
|
|
5550
5676
|
export type CustomerServiceAccount = {
|
|
5551
5677
|
readonly url: string;
|
|
@@ -6293,7 +6419,7 @@ export type DryRunRequest = {
|
|
|
6293
6419
|
};
|
|
6294
6420
|
export type DryRunStateEnum = 1 | 2 | 3 | 4;
|
|
6295
6421
|
export type DryRunTypeEnum = 'Create' | 'Update' | 'Terminate' | 'Restore' | 'Pull';
|
|
6296
|
-
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6422
|
+
export type EnabledreportingscreensEnum = 'resource-usage' | 'user-usage' | 'quotas' | 'usage-monitoring' | 'usage-trends' | 'organization-summary' | 'project-detail' | 'resources-geography' | 'project-classification' | 'usage-by-customer' | 'usage-by-org-type' | 'usage-by-creator' | 'call-performance' | 'review-progress' | 'resource-demand' | 'capacity' | 'provider-overview' | 'provider-revenue' | 'provider-orders' | 'provider-resources' | 'provider-customers' | 'provider-offerings' | 'openstack-instances' | 'user-analytics' | 'user-demographics' | 'user-organizations' | 'user-affiliations' | 'user-roles' | 'growth' | 'revenue' | 'pricelist' | 'orders' | 'offering-costs' | 'maintenance-overview' | 'provisioning-stats';
|
|
6297
6423
|
export type EligibilityCheck = {
|
|
6298
6424
|
is_eligible: boolean;
|
|
6299
6425
|
restrictions: Array<string>;
|
|
@@ -6365,7 +6491,7 @@ export type EventMetadataResponse = {
|
|
|
6365
6491
|
* Map of event group keys to lists of event type enums from EventType
|
|
6366
6492
|
*/
|
|
6367
6493
|
event_groups: {
|
|
6368
|
-
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task'>;
|
|
6494
|
+
[key: string]: Array<'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip'>;
|
|
6369
6495
|
};
|
|
6370
6496
|
};
|
|
6371
6497
|
export type EventStats = {
|
|
@@ -6444,7 +6570,7 @@ export type EventSubscriptionRequest = {
|
|
|
6444
6570
|
*/
|
|
6445
6571
|
observable_objects?: unknown;
|
|
6446
6572
|
};
|
|
6447
|
-
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task';
|
|
6573
|
+
export type EventTypesEnum = 'access_subnet_creation_succeeded' | 'access_subnet_deletion_succeeded' | 'access_subnet_update_succeeded' | 'allowed_offerings_have_been_updated' | 'attachment_created' | 'attachment_deleted' | 'attachment_updated' | 'auth_logged_in_with_saml2' | 'auth_logged_in_with_username' | 'auth_logged_in_with_oauth' | 'auth_logged_out' | 'auth_logged_out_with_saml2' | 'auth_login_failed_with_username' | 'block_creation_of_new_resources' | 'block_modification_of_existing_resources' | 'call_document_added' | 'call_document_removed' | 'create_of_credit_by_staff' | 'create_of_project_credit_by_staff' | 'custom_notification' | 'customer_creation_succeeded' | 'customer_deletion_succeeded' | 'customer_update_succeeded' | 'customer_permission_review_created' | 'customer_permission_review_closed' | 'droplet_resize_scheduled' | 'droplet_resize_succeeded' | 'freeipa_profile_created' | 'freeipa_profile_deleted' | 'freeipa_profile_disabled' | 'freeipa_profile_enabled' | 'invoice_canceled' | 'invoice_created' | 'invoice_item_created' | 'invoice_item_deleted' | 'invoice_item_updated' | 'invoice_paid' | 'issue_creation_succeeded' | 'issue_deletion_succeeded' | 'issue_update_succeeded' | 'marketplace_offering_component_created' | 'marketplace_offering_component_deleted' | 'marketplace_offering_component_updated' | 'marketplace_offering_created' | 'marketplace_offering_role_created' | 'marketplace_offering_role_deleted' | 'marketplace_offering_role_updated' | 'marketplace_offering_updated' | 'marketplace_offering_user_created' | 'marketplace_offering_user_updated' | 'marketplace_offering_user_deleted' | 'marketplace_offering_user_restriction_updated' | 'marketplace_order_approved' | 'marketplace_order_completed' | 'marketplace_order_created' | 'marketplace_order_failed' | 'marketplace_order_rejected' | 'marketplace_order_terminated' | 'marketplace_order_unlinked' | 'marketplace_plan_archived' | 'marketplace_plan_component_current_price_updated' | 'marketplace_plan_component_future_price_updated' | 'marketplace_plan_component_quota_updated' | 'marketplace_plan_created' | 'marketplace_plan_updated' | 'marketplace_plan_deleted' | 'marketplace_resource_create_canceled' | 'marketplace_resource_create_failed' | 'marketplace_resource_create_requested' | 'marketplace_resource_create_succeeded' | 'marketplace_resource_downscaled' | 'marketplace_resource_erred_on_backend' | 'marketplace_resource_paused' | 'marketplace_resource_terminate_canceled' | 'marketplace_resource_terminate_failed' | 'marketplace_resource_terminate_requested' | 'marketplace_resource_terminate_succeeded' | 'marketplace_resource_unlinked' | 'marketplace_resource_update_canceled' | 'marketplace_resource_update_end_date_succeeded' | 'marketplace_resource_update_failed' | 'marketplace_resource_update_limits_failed' | 'marketplace_resource_update_limits_succeeded' | 'marketplace_resource_update_requested' | 'marketplace_resource_update_succeeded' | 'marketplace_resource_user_created' | 'marketplace_resource_user_deleted' | 'notify_external_user' | 'notify_organization_owners' | 'notify_project_team' | 'openstack_floating_ip_attached' | 'openstack_floating_ip_connected' | 'openstack_floating_ip_description_updated' | 'openstack_floating_ip_detached' | 'openstack_floating_ip_disconnected' | 'openstack_network_cleaned' | 'openstack_network_created' | 'openstack_network_deleted' | 'openstack_network_imported' | 'openstack_network_pulled' | 'openstack_network_updated' | 'openstack_port_cleaned' | 'openstack_port_created' | 'openstack_port_deleted' | 'openstack_port_imported' | 'openstack_port_pulled' | 'openstack_port_updated' | 'openstack_router_updated' | 'openstack_security_group_cleaned' | 'openstack_security_group_created' | 'openstack_security_group_deleted' | 'openstack_security_group_imported' | 'openstack_security_group_pulled' | 'openstack_security_group_rule_cleaned' | 'openstack_security_group_rule_created' | 'openstack_security_group_rule_deleted' | 'openstack_security_group_rule_imported' | 'openstack_security_group_rule_updated' | 'openstack_security_group_updated' | 'openstack_security_group_added_remotely' | 'openstack_security_group_removed_remotely' | 'openstack_security_group_added_locally' | 'openstack_security_group_removed_locally' | 'openstack_server_group_cleaned' | 'openstack_server_group_created' | 'openstack_server_group_deleted' | 'openstack_server_group_imported' | 'openstack_server_group_pulled' | 'openstack_subnet_cleaned' | 'openstack_subnet_created' | 'openstack_subnet_deleted' | 'openstack_subnet_imported' | 'openstack_subnet_pulled' | 'openstack_subnet_updated' | 'openstack_tenant_quota_limit_updated' | 'payment_added' | 'payment_created' | 'payment_removed' | 'policy_notification' | 'project_creation_succeeded' | 'project_deletion_succeeded' | 'project_deletion_triggered' | 'project_update_request_approved' | 'project_update_request_created' | 'project_update_request_rejected' | 'project_end_date_change_request_approved' | 'project_end_date_change_request_created' | 'project_end_date_change_request_rejected' | 'project_update_succeeded' | 'project_permission_review_created' | 'project_permission_review_closed' | 'proposal_canceled' | 'proposal_document_added' | 'proposal_document_removed' | 'query_executed' | 'reduction_of_customer_credit' | 'reduction_of_customer_credit_due_to_minimal_consumption' | 'reduction_of_customer_expected_consumption' | 'reduction_of_project_credit' | 'reduction_of_project_credit_due_to_minimal_consumption' | 'reduction_of_project_expected_consumption' | 'request_downscaling' | 'request_pausing' | 'request_slurm_resource_downscaling' | 'request_slurm_resource_pausing' | 'reset_downscaling' | 'reset_member_restriction' | 'reset_pausing' | 'resource_assign_floating_ip_failed' | 'resource_assign_floating_ip_scheduled' | 'resource_assign_floating_ip_succeeded' | 'resource_attach_failed' | 'resource_attach_scheduled' | 'resource_attach_succeeded' | 'resource_backup_creation_failed' | 'resource_backup_creation_scheduled' | 'resource_backup_creation_succeeded' | 'resource_backup_deletion_failed' | 'resource_backup_deletion_scheduled' | 'resource_backup_deletion_succeeded' | 'resource_backup_restoration_failed' | 'resource_backup_restoration_scheduled' | 'resource_backup_restoration_succeeded' | 'resource_change_flavor_failed' | 'resource_change_flavor_scheduled' | 'resource_change_flavor_succeeded' | 'resource_creation_failed' | 'resource_creation_scheduled' | 'resource_creation_succeeded' | 'resource_deletion_failed' | 'resource_deletion_scheduled' | 'resource_deletion_succeeded' | 'resource_detach_failed' | 'resource_detach_scheduled' | 'resource_detach_succeeded' | 'resource_extend_failed' | 'resource_extend_scheduled' | 'resource_extend_succeeded' | 'resource_extend_volume_failed' | 'resource_extend_volume_scheduled' | 'resource_extend_volume_succeeded' | 'resource_import_succeeded' | 'resource_pull_failed' | 'resource_pull_scheduled' | 'resource_pull_succeeded' | 'resource_restart_failed' | 'resource_restart_scheduled' | 'resource_restart_succeeded' | 'resource_retype_failed' | 'resource_retype_scheduled' | 'resource_retype_succeeded' | 'resource_robot_account_created' | 'resource_robot_account_deleted' | 'resource_robot_account_state_changed' | 'resource_robot_account_updated' | 'resource_start_failed' | 'resource_start_scheduled' | 'resource_start_succeeded' | 'resource_stop_failed' | 'resource_stop_scheduled' | 'resource_stop_succeeded' | 'resource_unassign_floating_ip_failed' | 'resource_unassign_floating_ip_scheduled' | 'resource_unassign_floating_ip_succeeded' | 'resource_update_allowed_address_pairs_failed' | 'resource_update_allowed_address_pairs_scheduled' | 'resource_update_allowed_address_pairs_succeeded' | 'resource_update_floating_ips_failed' | 'resource_update_floating_ips_scheduled' | 'resource_update_floating_ips_succeeded' | 'resource_update_ports_failed' | 'resource_update_ports_scheduled' | 'resource_update_ports_succeeded' | 'resource_update_security_groups_failed' | 'resource_update_security_groups_scheduled' | 'resource_update_security_groups_succeeded' | 'resource_update_succeeded' | 'restrict_members' | 'review_canceled' | 'role_granted' | 'role_revoked' | 'role_updated' | 'roll_back_customer_credit' | 'roll_back_project_credit' | 'service_account_created' | 'service_account_deleted' | 'service_account_updated' | 'set_to_zero_overdue_credit' | 'slurm_policy_evaluation' | 'ssh_key_creation_succeeded' | 'ssh_key_deletion_succeeded' | 'terminate_resources' | 'token_created' | 'token_lifetime_updated' | 'update_of_credit_by_staff' | 'update_of_project_credit_by_staff' | 'automatic_credit_adjustment' | 'user_activated' | 'user_creation_succeeded' | 'user_data_accessed' | 'user_deactivated' | 'user_deactivated_no_roles' | 'user_deletion_succeeded' | 'user_details_update_succeeded' | 'user_has_been_created_by_staff' | 'user_password_updated' | 'user_password_updated_by_staff' | 'user_password_removed_by_staff' | 'user_update_succeeded' | 'user_group_invitation_updated' | 'user_invitation_updated' | 'user_invitation_deleted' | 'terms_of_service_consent_granted' | 'terms_of_service_consent_revoked' | 'chat_session_accessed' | 'chat_thread_accessed' | 'chat_injection_detected' | 'chat_pii_detected' | 'onboarding_verification_deleted' | 'onboarding_verification_deleted_by_task' | 'pat_created' | 'pat_revoked' | 'pat_rotated' | 'pat_expired' | 'pat_used_from_new_ip';
|
|
6448
6574
|
export type ExecuteActionErrorResponse = {
|
|
6449
6575
|
error: string;
|
|
6450
6576
|
};
|
|
@@ -6925,6 +7051,12 @@ export type FlavorResponse = {
|
|
|
6925
7051
|
*/
|
|
6926
7052
|
disk: number;
|
|
6927
7053
|
};
|
|
7054
|
+
export type ForceAcceptPoolRequest = {
|
|
7055
|
+
override_reason: string;
|
|
7056
|
+
};
|
|
7057
|
+
export type ForceUnblockRequest = {
|
|
7058
|
+
override_reason: string;
|
|
7059
|
+
};
|
|
6928
7060
|
export type FreeipaProfile = {
|
|
6929
7061
|
readonly uuid: string;
|
|
6930
7062
|
/**
|
|
@@ -6958,7 +7090,7 @@ export type FreeipaProfileRequest = {
|
|
|
6958
7090
|
agreement_date?: string;
|
|
6959
7091
|
};
|
|
6960
7092
|
export type FrequencyEnum = 'weekly' | 'biweekly' | 'monthly';
|
|
6961
|
-
export type GenderEnum =
|
|
7093
|
+
export type GenderEnum = 'male' | 'female' | 'unknown';
|
|
6962
7094
|
export type GenerateAssignmentsRequest = {
|
|
6963
7095
|
/**
|
|
6964
7096
|
* Specific proposal UUIDs to generate assignments for. If empty, generates for all submitted proposals needing reviewers.
|
|
@@ -7141,6 +7273,14 @@ export type GroupInvitation = {
|
|
|
7141
7273
|
* Custom description text displayed to users viewing this invitation.
|
|
7142
7274
|
*/
|
|
7143
7275
|
custom_text?: string;
|
|
7276
|
+
/**
|
|
7277
|
+
* Allow users to submit multiple permission requests for this invitation.
|
|
7278
|
+
*/
|
|
7279
|
+
allow_multiple_requests?: boolean;
|
|
7280
|
+
/**
|
|
7281
|
+
* Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
|
|
7282
|
+
*/
|
|
7283
|
+
allow_custom_project_details?: boolean;
|
|
7144
7284
|
};
|
|
7145
7285
|
export type GroupInvitationRequest = {
|
|
7146
7286
|
/**
|
|
@@ -7181,6 +7321,14 @@ export type GroupInvitationRequest = {
|
|
|
7181
7321
|
* Custom description text displayed to users viewing this invitation.
|
|
7182
7322
|
*/
|
|
7183
7323
|
custom_text?: string;
|
|
7324
|
+
/**
|
|
7325
|
+
* Allow users to submit multiple permission requests for this invitation.
|
|
7326
|
+
*/
|
|
7327
|
+
allow_multiple_requests?: boolean;
|
|
7328
|
+
/**
|
|
7329
|
+
* Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
|
|
7330
|
+
*/
|
|
7331
|
+
allow_custom_project_details?: boolean;
|
|
7184
7332
|
};
|
|
7185
7333
|
export type GroupInvitationUpdate = {
|
|
7186
7334
|
/**
|
|
@@ -7221,6 +7369,14 @@ export type GroupInvitationUpdate = {
|
|
|
7221
7369
|
* Custom description text displayed to users viewing this invitation.
|
|
7222
7370
|
*/
|
|
7223
7371
|
custom_text?: string;
|
|
7372
|
+
/**
|
|
7373
|
+
* Allow users to submit multiple permission requests for this invitation.
|
|
7374
|
+
*/
|
|
7375
|
+
allow_multiple_requests?: boolean;
|
|
7376
|
+
/**
|
|
7377
|
+
* Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
|
|
7378
|
+
*/
|
|
7379
|
+
allow_custom_project_details?: boolean;
|
|
7224
7380
|
};
|
|
7225
7381
|
export type GroupInvitationUpdateRequest = {
|
|
7226
7382
|
/**
|
|
@@ -7261,6 +7417,14 @@ export type GroupInvitationUpdateRequest = {
|
|
|
7261
7417
|
* Custom description text displayed to users viewing this invitation.
|
|
7262
7418
|
*/
|
|
7263
7419
|
custom_text?: string;
|
|
7420
|
+
/**
|
|
7421
|
+
* Allow users to submit multiple permission requests for this invitation.
|
|
7422
|
+
*/
|
|
7423
|
+
allow_multiple_requests?: boolean;
|
|
7424
|
+
/**
|
|
7425
|
+
* Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
|
|
7426
|
+
*/
|
|
7427
|
+
allow_custom_project_details?: boolean;
|
|
7264
7428
|
};
|
|
7265
7429
|
export type GrowthPeriodEnum = 'weekly' | 'monthly';
|
|
7266
7430
|
export type GuestOsEnum = 'DOS' | 'WIN_31' | 'WIN_95' | 'WIN_98' | 'WIN_ME' | 'WIN_NT' | 'WIN_2000_PRO' | 'WIN_2000_SERV' | 'WIN_2000_ADV_SERV' | 'WIN_XP_HOME' | 'WIN_XP_PRO' | 'WIN_XP_PRO_64' | 'WIN_NET_WEB' | 'WIN_NET_STANDARD' | 'WIN_NET_ENTERPRISE' | 'WIN_NET_DATACENTER' | 'WIN_NET_BUSINESS' | 'WIN_NET_STANDARD_64' | 'WIN_NET_ENTERPRISE_64' | 'WIN_LONGHORN' | 'WIN_LONGHORN_64' | 'WIN_NET_DATACENTER_64' | 'WIN_VISTA' | 'WIN_VISTA_64' | 'WINDOWS_7' | 'WINDOWS_7_64' | 'WINDOWS_7_SERVER_64' | 'WINDOWS_8' | 'WINDOWS_8_64' | 'WINDOWS_8_SERVER_64' | 'WINDOWS_9' | 'WINDOWS_9_64' | 'WINDOWS_9_SERVER_64' | 'WINDOWS_HYPERV' | 'FREEBSD' | 'FREEBSD_64' | 'REDHAT' | 'RHEL_2' | 'RHEL_3' | 'RHEL_3_64' | 'RHEL_4' | 'RHEL_4_64' | 'RHEL_5' | 'RHEL_5_64' | 'RHEL_6' | 'RHEL_6_64' | 'RHEL_7' | 'RHEL_7_64' | 'CENTOS' | 'CENTOS_64' | 'CENTOS_6' | 'CENTOS_6_64' | 'CENTOS_7' | 'CENTOS_7_64' | 'ORACLE_LINUX' | 'ORACLE_LINUX_64' | 'ORACLE_LINUX_6' | 'ORACLE_LINUX_6_64' | 'ORACLE_LINUX_7' | 'ORACLE_LINUX_7_64' | 'SUSE' | 'SUSE_64' | 'SLES' | 'SLES_64' | 'SLES_10' | 'SLES_10_64' | 'SLES_11' | 'SLES_11_64' | 'SLES_12' | 'SLES_12_64' | 'NLD_9' | 'OES' | 'SJDS' | 'MANDRAKE' | 'MANDRIVA' | 'MANDRIVA_64' | 'TURBO_LINUX' | 'TURBO_LINUX_64' | 'UBUNTU' | 'UBUNTU_64' | 'DEBIAN_4' | 'DEBIAN_4_64' | 'DEBIAN_5' | 'DEBIAN_5_64' | 'DEBIAN_6' | 'DEBIAN_6_64' | 'DEBIAN_7' | 'DEBIAN_7_64' | 'DEBIAN_8' | 'DEBIAN_8_64' | 'DEBIAN_9' | 'DEBIAN_9_64' | 'DEBIAN_10' | 'DEBIAN_10_64' | 'ASIANUX_3' | 'ASIANUX_3_64' | 'ASIANUX_4' | 'ASIANUX_4_64' | 'ASIANUX_5_64' | 'ASIANUX_7_64' | 'OPENSUSE' | 'OPENSUSE_64' | 'FEDORA' | 'FEDORA_64' | 'COREOS_64' | 'VMWARE_PHOTON_64' | 'OTHER_24X_LINUX' | 'OTHER_24X_LINUX_64' | 'OTHER_26X_LINUX' | 'OTHER_26X_LINUX_64' | 'OTHER_3X_LINUX' | 'OTHER_3X_LINUX_64' | 'OTHER_LINUX' | 'GENERIC_LINUX' | 'OTHER_LINUX_64' | 'SOLARIS_6' | 'SOLARIS_7' | 'SOLARIS_8' | 'SOLARIS_9' | 'SOLARIS_10' | 'SOLARIS_10_64' | 'SOLARIS_11_64' | 'OS2' | 'ECOMSTATION' | 'ECOMSTATION_2' | 'NETWARE_4' | 'NETWARE_5' | 'NETWARE_6' | 'OPENSERVER_5' | 'OPENSERVER_6' | 'UNIXWARE_7' | 'DARWIN' | 'DARWIN_64' | 'DARWIN_10' | 'DARWIN_10_64' | 'DARWIN_11' | 'DARWIN_11_64' | 'DARWIN_12_64' | 'DARWIN_13_64' | 'DARWIN_14_64' | 'DARWIN_15_64' | 'DARWIN_16_64' | 'VMKERNEL' | 'VMKERNEL_5' | 'VMKERNEL_6' | 'VMKERNEL_65' | 'OTHER' | 'OTHER_64';
|
|
@@ -7291,6 +7455,9 @@ export type IsdUserCount = {
|
|
|
7291
7455
|
stale_user_count: number;
|
|
7292
7456
|
oldest_sync: string | null;
|
|
7293
7457
|
};
|
|
7458
|
+
export type IdentityBridgeAllowedFields = {
|
|
7459
|
+
allowed_fields: Array<string>;
|
|
7460
|
+
};
|
|
7294
7461
|
export type IdentityBridgeRemoveRequest = {
|
|
7295
7462
|
/**
|
|
7296
7463
|
* CUID / username of the user to remove from the ISD.
|
|
@@ -8386,7 +8553,6 @@ export type KeycloakUserGroupMembershipState = 'pending' | 'active';
|
|
|
8386
8553
|
export type KeywordSearchModeEnum = 'expertise_only' | 'full_text';
|
|
8387
8554
|
export type KindEnum = 'default' | 'course' | 'public';
|
|
8388
8555
|
export type LoginpagelayoutEnum = 'split-screen' | 'centered-card' | 'minimal' | 'full-hero' | 'gradient' | 'stacked' | 'right-split' | 'glassmorphism' | 'neumorphism' | 'animated-gradient' | 'video-background' | 'bottom-sheet' | 'tabbed' | 'wizard' | 'stats' | 'news' | 'carousel' | 'logo-watermark' | 'brand-pattern' | 'duotone' | 'diagonal' | 'time-based' | 'seasonal' | 'weather';
|
|
8389
|
-
export type LbAlgorithmEnum = 'ROUND_ROBIN' | 'LEAST_CONNECTIONS' | 'SOURCE_IP' | 'SOURCE_IP_PORT';
|
|
8390
8556
|
export type LexisLink = {
|
|
8391
8557
|
readonly url: string;
|
|
8392
8558
|
readonly uuid: string;
|
|
@@ -8451,13 +8617,16 @@ export type LinkToInvoice = {
|
|
|
8451
8617
|
export type LinkToInvoiceRequest = {
|
|
8452
8618
|
invoice: string;
|
|
8453
8619
|
};
|
|
8620
|
+
export type LoadBalancerAsyncOperationResponse = {
|
|
8621
|
+
/**
|
|
8622
|
+
* Message that execution of the operation was scheduled.
|
|
8623
|
+
*/
|
|
8624
|
+
status: string;
|
|
8625
|
+
};
|
|
8454
8626
|
export type LoadBalancerAttachFloatingIpRequest = {
|
|
8455
8627
|
floating_ip: string;
|
|
8456
8628
|
};
|
|
8457
8629
|
export type LoadBalancerProtocolEnum = 'TCP' | 'UDP';
|
|
8458
|
-
export type LoadBalancerUpdateVipSecurityGroupsRequest = {
|
|
8459
|
-
security_groups: Array<string>;
|
|
8460
|
-
};
|
|
8461
8630
|
export type LockStats = {
|
|
8462
8631
|
/**
|
|
8463
8632
|
* Total number of locks currently held
|
|
@@ -8478,6 +8647,8 @@ export type Logout = {
|
|
|
8478
8647
|
*/
|
|
8479
8648
|
readonly logout_url: string;
|
|
8480
8649
|
};
|
|
8650
|
+
export type MarketplacecardstyleEnum = 'compact' | 'detailed' | 'list' | 'minimal';
|
|
8651
|
+
export type MarketplacelayoutmodeEnum = 'classic' | 'sidebar' | 'carousel';
|
|
8481
8652
|
export type MaintenanceActionResponse = {
|
|
8482
8653
|
/**
|
|
8483
8654
|
* Response message describing the action result
|
|
@@ -8923,9 +9094,9 @@ export type MarketplaceServiceProviderUser = {
|
|
|
8923
9094
|
is_active?: boolean;
|
|
8924
9095
|
job_title?: string;
|
|
8925
9096
|
/**
|
|
8926
|
-
*
|
|
9097
|
+
* User's gender (male, female, or unknown)
|
|
8927
9098
|
*/
|
|
8928
|
-
gender?: GenderEnum | NullEnum | null;
|
|
9099
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
8929
9100
|
/**
|
|
8930
9101
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
8931
9102
|
*/
|
|
@@ -9112,6 +9283,10 @@ export type MergedPluginOptions = {
|
|
|
9112
9283
|
* Default limit for snapshot size in GB
|
|
9113
9284
|
*/
|
|
9114
9285
|
snapshot_size_limit_gb?: number;
|
|
9286
|
+
/**
|
|
9287
|
+
* If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
|
|
9288
|
+
*/
|
|
9289
|
+
lbaas_enabled?: boolean;
|
|
9115
9290
|
/**
|
|
9116
9291
|
* HEAppE cluster id
|
|
9117
9292
|
*/
|
|
@@ -9410,6 +9585,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
9410
9585
|
* Default limit for snapshot size in GB
|
|
9411
9586
|
*/
|
|
9412
9587
|
snapshot_size_limit_gb?: number;
|
|
9588
|
+
/**
|
|
9589
|
+
* If True, Octavia LBaaS (load balancers) is intended to be available for tenants from this offering.
|
|
9590
|
+
*/
|
|
9591
|
+
lbaas_enabled?: boolean;
|
|
9413
9592
|
/**
|
|
9414
9593
|
* HEAppE cluster id
|
|
9415
9594
|
*/
|
|
@@ -9911,11 +10090,14 @@ export type Message = {
|
|
|
9911
10090
|
readonly uuid: string;
|
|
9912
10091
|
readonly thread: string;
|
|
9913
10092
|
role: MessageRoleEnum;
|
|
9914
|
-
content
|
|
10093
|
+
content?: string;
|
|
10094
|
+
readonly content_display: string;
|
|
9915
10095
|
readonly tool_calls: unknown;
|
|
9916
10096
|
readonly sequence_index: number;
|
|
9917
10097
|
readonly replaces: string | null;
|
|
9918
10098
|
readonly created: string;
|
|
10099
|
+
readonly input_tokens: number | null;
|
|
10100
|
+
readonly output_tokens: number | null;
|
|
9919
10101
|
readonly is_flagged: boolean;
|
|
9920
10102
|
severity: InjectionSeverityEnum;
|
|
9921
10103
|
readonly injection_categories: unknown;
|
|
@@ -10478,6 +10660,8 @@ export type NestedPlanComponent = {
|
|
|
10478
10660
|
* Discount rate in percentage.
|
|
10479
10661
|
*/
|
|
10480
10662
|
discount_rate?: number | null;
|
|
10663
|
+
readonly discounted_price?: string | null;
|
|
10664
|
+
readonly discount_description?: string | null;
|
|
10481
10665
|
};
|
|
10482
10666
|
export type NestedPlanComponentRequest = {
|
|
10483
10667
|
amount?: number;
|
|
@@ -10967,6 +11151,7 @@ export type Offering = {
|
|
|
10967
11151
|
* Returns 'limit_only', 'usage_only', or 'mixed'.
|
|
10968
11152
|
*/
|
|
10969
11153
|
readonly billing_type_classification?: string;
|
|
11154
|
+
readonly effective_available_limits?: Array<string>;
|
|
10970
11155
|
compliance_checklist?: string | null;
|
|
10971
11156
|
readonly user_has_consent?: boolean;
|
|
10972
11157
|
readonly is_accessible?: boolean;
|
|
@@ -11018,6 +11203,22 @@ export type OfferingComponent = {
|
|
|
11018
11203
|
overage_component?: string | null;
|
|
11019
11204
|
min_prepaid_duration?: number | null;
|
|
11020
11205
|
max_prepaid_duration?: number | null;
|
|
11206
|
+
/**
|
|
11207
|
+
* Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
|
|
11208
|
+
*/
|
|
11209
|
+
prepaid_duration_step?: number | null;
|
|
11210
|
+
/**
|
|
11211
|
+
* Minimum number of months allowed for a renewal.
|
|
11212
|
+
*/
|
|
11213
|
+
min_renewal_duration?: number | null;
|
|
11214
|
+
/**
|
|
11215
|
+
* Maximum number of months allowed for a renewal.
|
|
11216
|
+
*/
|
|
11217
|
+
max_renewal_duration?: number | null;
|
|
11218
|
+
/**
|
|
11219
|
+
* Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
|
|
11220
|
+
*/
|
|
11221
|
+
renewal_duration_step?: number | null;
|
|
11021
11222
|
};
|
|
11022
11223
|
export type OfferingComponentLimitRequest = {
|
|
11023
11224
|
/**
|
|
@@ -11064,6 +11265,22 @@ export type OfferingComponentRequest = {
|
|
|
11064
11265
|
overage_component?: string | null;
|
|
11065
11266
|
min_prepaid_duration?: number | null;
|
|
11066
11267
|
max_prepaid_duration?: number | null;
|
|
11268
|
+
/**
|
|
11269
|
+
* Step size in months for the initial prepaid duration at order creation. If set, only multiples of this value (starting from min_prepaid_duration) are valid. Defaults to 1 (any value between min and max).
|
|
11270
|
+
*/
|
|
11271
|
+
prepaid_duration_step?: number | null;
|
|
11272
|
+
/**
|
|
11273
|
+
* Minimum number of months allowed for a renewal.
|
|
11274
|
+
*/
|
|
11275
|
+
min_renewal_duration?: number | null;
|
|
11276
|
+
/**
|
|
11277
|
+
* Maximum number of months allowed for a renewal.
|
|
11278
|
+
*/
|
|
11279
|
+
max_renewal_duration?: number | null;
|
|
11280
|
+
/**
|
|
11281
|
+
* Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
|
|
11282
|
+
*/
|
|
11283
|
+
renewal_duration_step?: number | null;
|
|
11067
11284
|
};
|
|
11068
11285
|
export type OfferingComponentStat = {
|
|
11069
11286
|
readonly period: string;
|
|
@@ -11187,6 +11404,7 @@ export type OfferingEstimatedCostPolicy = {
|
|
|
11187
11404
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
11188
11405
|
*/
|
|
11189
11406
|
options?: unknown;
|
|
11407
|
+
readonly affected_resources_count: number;
|
|
11190
11408
|
limit_cost: number;
|
|
11191
11409
|
period?: PolicyPeriodEnum;
|
|
11192
11410
|
readonly period_name: string;
|
|
@@ -11813,6 +12031,14 @@ export type OfferingSoftwareCatalogRequest = {
|
|
|
11813
12031
|
partition?: string | null;
|
|
11814
12032
|
};
|
|
11815
12033
|
export type OfferingState = 'Draft' | 'Active' | 'Paused' | 'Archived' | 'Unavailable';
|
|
12034
|
+
export type OfferingStateCounter = {
|
|
12035
|
+
state: string;
|
|
12036
|
+
count: number;
|
|
12037
|
+
};
|
|
12038
|
+
export type OfferingStateCounters = {
|
|
12039
|
+
resources: Array<OfferingStateCounter>;
|
|
12040
|
+
users: Array<OfferingStateCounter>;
|
|
12041
|
+
};
|
|
11816
12042
|
export type OfferingStats = {
|
|
11817
12043
|
/**
|
|
11818
12044
|
* Number of resources for the offering
|
|
@@ -11936,6 +12162,7 @@ export type OfferingUsagePolicy = {
|
|
|
11936
12162
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
11937
12163
|
*/
|
|
11938
12164
|
options?: unknown;
|
|
12165
|
+
readonly affected_resources_count: number;
|
|
11939
12166
|
organization_groups?: Array<string>;
|
|
11940
12167
|
/**
|
|
11941
12168
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -11988,9 +12215,9 @@ export type OfferingUser = {
|
|
|
11988
12215
|
*/
|
|
11989
12216
|
readonly user_affiliations?: unknown;
|
|
11990
12217
|
/**
|
|
11991
|
-
*
|
|
12218
|
+
* User's gender (male, female, or unknown)
|
|
11992
12219
|
*/
|
|
11993
|
-
user_gender?: GenderEnum | NullEnum | null;
|
|
12220
|
+
user_gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
11994
12221
|
/**
|
|
11995
12222
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
11996
12223
|
*/
|
|
@@ -13236,8 +13463,8 @@ export type OpenStackLoadBalancer = {
|
|
|
13236
13463
|
* An IPv4 or IPv6 address.
|
|
13237
13464
|
*/
|
|
13238
13465
|
vip_address?: string;
|
|
13239
|
-
readonly
|
|
13240
|
-
readonly
|
|
13466
|
+
readonly vip_subnet?: string | null;
|
|
13467
|
+
readonly vip_port?: string | null;
|
|
13241
13468
|
/**
|
|
13242
13469
|
* Floating IP attached to the VIP port
|
|
13243
13470
|
*/
|
|
@@ -13259,26 +13486,6 @@ export type OpenStackLoadBalancer = {
|
|
|
13259
13486
|
readonly is_usage_based?: boolean | null;
|
|
13260
13487
|
readonly is_limit_based?: boolean | null;
|
|
13261
13488
|
};
|
|
13262
|
-
export type OpenStackLoadBalancerRequest = {
|
|
13263
|
-
name: string;
|
|
13264
|
-
description?: string;
|
|
13265
|
-
service_settings: string;
|
|
13266
|
-
project: string;
|
|
13267
|
-
error_message?: string;
|
|
13268
|
-
error_traceback?: string;
|
|
13269
|
-
/**
|
|
13270
|
-
* Load balancer ID in Octavia
|
|
13271
|
-
*/
|
|
13272
|
-
backend_id?: string | null;
|
|
13273
|
-
/**
|
|
13274
|
-
* OpenStack tenant this load balancer belongs to
|
|
13275
|
-
*/
|
|
13276
|
-
tenant: string;
|
|
13277
|
-
/**
|
|
13278
|
-
* Floating IP attached to the VIP port
|
|
13279
|
-
*/
|
|
13280
|
-
attached_floating_ip?: string | null;
|
|
13281
|
-
};
|
|
13282
13489
|
export type OpenStackNestedFloatingIp = {
|
|
13283
13490
|
readonly url?: string;
|
|
13284
13491
|
readonly uuid?: string;
|
|
@@ -13618,10 +13825,7 @@ export type OpenStackPoolMember = {
|
|
|
13618
13825
|
*/
|
|
13619
13826
|
address?: string;
|
|
13620
13827
|
readonly protocol_port?: number;
|
|
13621
|
-
|
|
13622
|
-
* Subnet ID for the member (required for creation)
|
|
13623
|
-
*/
|
|
13624
|
-
subnet_id?: string;
|
|
13828
|
+
readonly subnet?: string | null;
|
|
13625
13829
|
readonly weight?: number;
|
|
13626
13830
|
readonly provisioning_status?: string;
|
|
13627
13831
|
readonly operating_status?: string;
|
|
@@ -13639,22 +13843,6 @@ export type OpenStackPoolMember = {
|
|
|
13639
13843
|
readonly is_usage_based?: boolean | null;
|
|
13640
13844
|
readonly is_limit_based?: boolean | null;
|
|
13641
13845
|
};
|
|
13642
|
-
export type OpenStackPoolRequest = {
|
|
13643
|
-
name: string;
|
|
13644
|
-
description?: string;
|
|
13645
|
-
service_settings: string;
|
|
13646
|
-
project: string;
|
|
13647
|
-
error_message?: string;
|
|
13648
|
-
error_traceback?: string;
|
|
13649
|
-
/**
|
|
13650
|
-
* Pool ID in Octavia
|
|
13651
|
-
*/
|
|
13652
|
-
backend_id?: string | null;
|
|
13653
|
-
/**
|
|
13654
|
-
* Load balancer this pool belongs to
|
|
13655
|
-
*/
|
|
13656
|
-
load_balancer: string;
|
|
13657
|
-
};
|
|
13658
13846
|
export type OpenStackPort = {
|
|
13659
13847
|
readonly url?: string;
|
|
13660
13848
|
readonly uuid?: string;
|
|
@@ -14709,9 +14897,11 @@ export type OrderDetails = {
|
|
|
14709
14897
|
readonly cost?: string | null;
|
|
14710
14898
|
state?: OrderState;
|
|
14711
14899
|
readonly output?: string;
|
|
14900
|
+
readonly output_updated_at?: string | null;
|
|
14712
14901
|
readonly marketplace_resource_uuid?: string;
|
|
14713
14902
|
readonly error_message?: string;
|
|
14714
14903
|
readonly error_traceback?: string;
|
|
14904
|
+
readonly error_updated_at?: string | null;
|
|
14715
14905
|
callback_url?: string | null;
|
|
14716
14906
|
/**
|
|
14717
14907
|
* Completion time
|
|
@@ -15404,6 +15594,13 @@ export type PatchedCustomerRequest = {
|
|
|
15404
15594
|
* Comma-separated list of notification email addresses
|
|
15405
15595
|
*/
|
|
15406
15596
|
notification_emails?: string;
|
|
15597
|
+
city?: string;
|
|
15598
|
+
state?: string;
|
|
15599
|
+
parish?: string;
|
|
15600
|
+
street?: string;
|
|
15601
|
+
house_nr?: string;
|
|
15602
|
+
apartment_nr?: string;
|
|
15603
|
+
household?: string;
|
|
15407
15604
|
};
|
|
15408
15605
|
export type PatchedCustomerServiceAccountRequest = {
|
|
15409
15606
|
username?: string;
|
|
@@ -15473,6 +15670,14 @@ export type PatchedGroupInvitationUpdateRequest = {
|
|
|
15473
15670
|
* Custom description text displayed to users viewing this invitation.
|
|
15474
15671
|
*/
|
|
15475
15672
|
custom_text?: string;
|
|
15673
|
+
/**
|
|
15674
|
+
* Allow users to submit multiple permission requests for this invitation.
|
|
15675
|
+
*/
|
|
15676
|
+
allow_multiple_requests?: boolean;
|
|
15677
|
+
/**
|
|
15678
|
+
* Allow users to provide custom project name and description when accepting the invitation. If disabled, the project name is auto-generated from the template.
|
|
15679
|
+
*/
|
|
15680
|
+
allow_custom_project_details?: boolean;
|
|
15476
15681
|
};
|
|
15477
15682
|
export type PatchedIdentityProviderRequest = {
|
|
15478
15683
|
provider?: string;
|
|
@@ -15948,46 +16153,10 @@ export type PatchedOpenStackInstanceRequest = {
|
|
|
15948
16153
|
name?: string;
|
|
15949
16154
|
description?: string;
|
|
15950
16155
|
};
|
|
15951
|
-
export type PatchedOpenStackLoadBalancerRequest = {
|
|
15952
|
-
name?: string;
|
|
15953
|
-
description?: string;
|
|
15954
|
-
service_settings?: string;
|
|
15955
|
-
project?: string;
|
|
15956
|
-
error_message?: string;
|
|
15957
|
-
error_traceback?: string;
|
|
15958
|
-
/**
|
|
15959
|
-
* Load balancer ID in Octavia
|
|
15960
|
-
*/
|
|
15961
|
-
backend_id?: string | null;
|
|
15962
|
-
/**
|
|
15963
|
-
* OpenStack tenant this load balancer belongs to
|
|
15964
|
-
*/
|
|
15965
|
-
tenant?: string;
|
|
15966
|
-
/**
|
|
15967
|
-
* Floating IP attached to the VIP port
|
|
15968
|
-
*/
|
|
15969
|
-
attached_floating_ip?: string | null;
|
|
15970
|
-
};
|
|
15971
16156
|
export type PatchedOpenStackNetworkRequest = {
|
|
15972
16157
|
name?: string;
|
|
15973
16158
|
description?: string;
|
|
15974
16159
|
};
|
|
15975
|
-
export type PatchedOpenStackPoolRequest = {
|
|
15976
|
-
name?: string;
|
|
15977
|
-
description?: string;
|
|
15978
|
-
service_settings?: string;
|
|
15979
|
-
project?: string;
|
|
15980
|
-
error_message?: string;
|
|
15981
|
-
error_traceback?: string;
|
|
15982
|
-
/**
|
|
15983
|
-
* Pool ID in Octavia
|
|
15984
|
-
*/
|
|
15985
|
-
backend_id?: string | null;
|
|
15986
|
-
/**
|
|
15987
|
-
* Load balancer this pool belongs to
|
|
15988
|
-
*/
|
|
15989
|
-
load_balancer?: string;
|
|
15990
|
-
};
|
|
15991
16160
|
export type PatchedOpenStackPortRequest = {
|
|
15992
16161
|
name?: string;
|
|
15993
16162
|
description?: string;
|
|
@@ -16850,18 +17019,31 @@ export type PatchedTemplateRequest = {
|
|
|
16850
17019
|
};
|
|
16851
17020
|
export type PatchedUpdateHealthMonitorRequest = {
|
|
16852
17021
|
name?: string;
|
|
17022
|
+
/**
|
|
17023
|
+
* Interval between health checks in seconds
|
|
17024
|
+
*/
|
|
16853
17025
|
delay?: number;
|
|
17026
|
+
/**
|
|
17027
|
+
* Time in seconds to timeout a health check
|
|
17028
|
+
*/
|
|
16854
17029
|
timeout?: number;
|
|
16855
17030
|
max_retries?: number;
|
|
17031
|
+
max_retries_down?: number;
|
|
16856
17032
|
};
|
|
16857
17033
|
export type PatchedUpdateListenerRequest = {
|
|
16858
17034
|
name?: string;
|
|
16859
17035
|
default_pool?: string | null;
|
|
16860
17036
|
};
|
|
17037
|
+
export type PatchedUpdateLoadBalancerRequest = {
|
|
17038
|
+
name?: string;
|
|
17039
|
+
};
|
|
16861
17040
|
export type PatchedUpdatePoolMemberRequest = {
|
|
16862
17041
|
name?: string;
|
|
16863
17042
|
weight?: number;
|
|
16864
17043
|
};
|
|
17044
|
+
export type PatchedUpdatePoolRequest = {
|
|
17045
|
+
name?: string;
|
|
17046
|
+
};
|
|
16865
17047
|
export type PatchedUserAgreementRequest = {
|
|
16866
17048
|
content?: string;
|
|
16867
17049
|
agreement_type?: AgreementTypeEnum;
|
|
@@ -16927,9 +17109,9 @@ export type PatchedUserRequest = {
|
|
|
16927
17109
|
birth_date?: string | null;
|
|
16928
17110
|
image?: (Blob | File) | null;
|
|
16929
17111
|
/**
|
|
16930
|
-
*
|
|
17112
|
+
* User's gender (male, female, or unknown)
|
|
16931
17113
|
*/
|
|
16932
|
-
gender?: GenderEnum | NullEnum | null;
|
|
17114
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
16933
17115
|
/**
|
|
16934
17116
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
16935
17117
|
*/
|
|
@@ -16965,6 +17147,10 @@ export type PatchedUserRequest = {
|
|
|
16965
17147
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
16966
17148
|
*/
|
|
16967
17149
|
managed_isds?: unknown;
|
|
17150
|
+
/**
|
|
17151
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
17152
|
+
*/
|
|
17153
|
+
deactivation_reason?: string;
|
|
16968
17154
|
};
|
|
16969
17155
|
export type PatchedVmwareVirtualMachineRequest = {
|
|
16970
17156
|
description?: string;
|
|
@@ -17079,19 +17265,19 @@ export type PermissionMetadataResponse = {
|
|
|
17079
17265
|
* Map of role keys to role enum values from RoleEnum
|
|
17080
17266
|
*/
|
|
17081
17267
|
roles: {
|
|
17082
|
-
[key: string]: 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | 'CUSTOMER.MANAGER' | 'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | 'OFFERING.MANAGER' | 'CALL.REVIEWER' | 'CALL.MANAGER' | 'PROPOSAL.MEMBER' | 'PROPOSAL.MANAGER';
|
|
17268
|
+
[key: string]: 'CUSTOMER.OWNER' | 'CUSTOMER.SUPPORT' | 'CUSTOMER.MANAGER' | 'CUSTOMER.READER' | 'PROJECT.ADMIN' | 'PROJECT.MANAGER' | 'PROJECT.MEMBER' | 'OFFERING.MANAGER' | 'CALL.REVIEWER' | 'CALL.MANAGER' | 'PROPOSAL.MEMBER' | 'PROPOSAL.MANAGER';
|
|
17083
17269
|
};
|
|
17084
17270
|
/**
|
|
17085
17271
|
* Map of permission keys to permission enum values from PermissionEnum
|
|
17086
17272
|
*/
|
|
17087
17273
|
permissions: {
|
|
17088
|
-
[key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE';
|
|
17274
|
+
[key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
|
|
17089
17275
|
};
|
|
17090
17276
|
/**
|
|
17091
17277
|
* Map of resource types to create permission enums
|
|
17092
17278
|
*/
|
|
17093
17279
|
permission_map: {
|
|
17094
|
-
[key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE';
|
|
17280
|
+
[key: string]: 'SERVICE_PROVIDER.REGISTER' | 'OFFERING.CREATE' | 'OFFERING.DELETE' | 'OFFERING.UPDATE_THUMBNAIL' | 'OFFERING.UPDATE' | 'OFFERING.UPDATE_ATTRIBUTES' | 'OFFERING.UPDATE_LOCATION' | 'OFFERING.UPDATE_DESCRIPTION' | 'OFFERING.UPDATE_OPTIONS' | 'OFFERING.UPDATE_INTEGRATION' | 'OFFERING.ADD_ENDPOINT' | 'OFFERING.DELETE_ENDPOINT' | 'OFFERING.UPDATE_COMPONENTS' | 'OFFERING.PAUSE' | 'OFFERING.UNPAUSE' | 'OFFERING.ARCHIVE' | 'OFFERING.DRY_RUN_SCRIPT' | 'OFFERING.MANAGE_CAMPAIGN' | 'OFFERING.MANAGE_USER_GROUP' | 'OFFERING.CREATE_PLAN' | 'OFFERING.UPDATE_PLAN' | 'OFFERING.ARCHIVE_PLAN' | 'OFFERING.CREATE_SCREENSHOT' | 'OFFERING.UPDATE_SCREENSHOT' | 'OFFERING.DELETE_SCREENSHOT' | 'OFFERING.CREATE_USER' | 'OFFERING.UPDATE_USER' | 'OFFERING.DELETE_USER' | 'OFFERING.MANAGE_USER_ROLE' | 'RESOURCE.CREATE_ROBOT_ACCOUNT' | 'RESOURCE.UPDATE_ROBOT_ACCOUNT' | 'RESOURCE.DELETE_ROBOT_ACCOUNT' | 'ORDER.LIST' | 'ORDER.CREATE' | 'ORDER.APPROVE_PRIVATE' | 'ORDER.APPROVE' | 'ORDER.REJECT' | 'ORDER.DESTROY' | 'ORDER.CANCEL' | 'RESOURCE.LIST' | 'RESOURCE.UPDATE' | 'RESOURCE.TERMINATE' | 'RESOURCE.LIST_IMPORTABLE' | 'RESOURCE.SET_END_DATE' | 'RESOURCE.SET_USAGE' | 'RESOURCE.SET_PLAN' | 'RESOURCE.SET_LIMITS' | 'RESOURCE.SET_BACKEND_ID' | 'RESOURCE.SUBMIT_REPORT' | 'RESOURCE.SET_BACKEND_METADATA' | 'RESOURCE.SET_STATE' | 'RESOURCE.UPDATE_OPTIONS' | 'RESOURCE.ACCEPT_BOOKING_REQUEST' | 'RESOURCE.REJECT_BOOKING_REQUEST' | 'RESOURCE.MANAGE_USERS' | 'RESOURCE.CONSUMPTION_LIMITATION' | 'OFFERING.MANAGE_BACKEND_RESOURCES' | 'SERVICE_PROVIDER.GET_API_SECRET_CODE' | 'SERVICE_PROVIDER.GENERATE_API_SECRET_CODE' | 'SERVICE_PROVIDER.LIST_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_CUSTOMER_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECTS' | 'SERVICE_PROVIDER.LIST_PROJECT_PERMISSIONS' | 'SERVICE_PROVIDER.LIST_KEYS' | 'SERVICE_PROVIDER.LIST_USERS' | 'SERVICE_PROVIDER.LIST_USER_CUSTOMERS' | 'SERVICE_PROVIDER.LIST_SERVICE_ACCOUNTS' | 'SERVICE_PROVIDER.LIST_COURSE_ACCOUNTS' | 'SERVICE_PROVIDER.SET_OFFERINGS_USERNAME' | 'SERVICE_PROVIDER.GET_STATISTICS' | 'SERVICE_PROVIDER.GET_REVENUE' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_CUSTOMERS' | 'SERVICE_PROVIDER.GET_ROBOT_ACCOUNT_PROJECTS' | 'PROJECT.CREATE_PERMISSION' | 'CUSTOMER.CREATE_PERMISSION' | 'OFFERING.CREATE_PERMISSION' | 'CALL.CREATE_PERMISSION' | 'PROPOSAL.MANAGE' | 'PROPOSAL.MANAGE_REVIEW' | 'PROJECT.UPDATE_PERMISSION' | 'CUSTOMER.UPDATE_PERMISSION' | 'OFFERING.UPDATE_PERMISSION' | 'CALL.UPDATE_PERMISSION' | 'PROPOSAL.UPDATE_PERMISSION' | 'PROJECT.DELETE_PERMISSION' | 'CUSTOMER.DELETE_PERMISSION' | 'OFFERING.DELETE_PERMISSION' | 'CALL.DELETE_PERMISSION' | 'PROPOSAL.DELETE_PERMISSION' | 'LEXIS_LINK.CREATE' | 'LEXIS_LINK.DELETE' | 'PROJECT.LIST' | 'PROJECT.CREATE' | 'PROJECT.DELETE' | 'PROJECT.UPDATE' | 'PROJECT.UPDATE_METADATA' | 'PROJECT.REVIEW_MEMBERSHIP' | 'CUSTOMER.UPDATE' | 'CUSTOMER.CONTACT_UPDATE' | 'CUSTOMER.LIST_USERS' | 'OFFERING.ACCEPT_CALL_REQUEST' | 'CALL.APPROVE_AND_REJECT_PROPOSALS' | 'CALL.CLOSE_ROUNDS' | 'ACCESS_SUBNET.CREATE' | 'ACCESS_SUBNET.UPDATE' | 'ACCESS_SUBNET.DELETE' | 'OFFERINGUSER.UPDATE_RESTRICTION' | 'INVITATION.LIST' | 'CUSTOMER.LIST_PERMISSION_REVIEWS' | 'CALL.LIST' | 'CALL.CREATE' | 'CALL.UPDATE' | 'ROUND.LIST' | 'PROPOSAL.LIST' | 'SERVICE_ACCOUNT.MANAGE' | 'PROJECT.COURSE_ACCOUNT_MANAGE' | 'SERVICE_PROVIDER.OPENSTACK_IMAGE_MANAGEMENT' | 'OPENSTACK_INSTANCE.CONSOLE_ACCESS' | 'OPENSTACK_INSTANCE.MANAGE_POWER' | 'OPENSTACK_INSTANCE.MANAGE' | 'STAFF.ACCESS' | 'SUPPORT.ACCESS';
|
|
17095
17281
|
};
|
|
17096
17282
|
/**
|
|
17097
17283
|
* Grouped permission descriptions for UI
|
|
@@ -17126,6 +17312,14 @@ export type PermissionRequest = {
|
|
|
17126
17312
|
readonly role_name: string;
|
|
17127
17313
|
readonly role_description: string;
|
|
17128
17314
|
readonly project_name_template: string;
|
|
17315
|
+
/**
|
|
17316
|
+
* Custom project name provided by user during invitation acceptance.
|
|
17317
|
+
*/
|
|
17318
|
+
project_name?: string;
|
|
17319
|
+
/**
|
|
17320
|
+
* Custom project description provided by user during invitation acceptance.
|
|
17321
|
+
*/
|
|
17322
|
+
project_description?: string;
|
|
17129
17323
|
};
|
|
17130
17324
|
export type PersonIdentifierFieldsResponse = {
|
|
17131
17325
|
/**
|
|
@@ -17139,6 +17333,37 @@ export type PersonIdentifierFieldsResponse = {
|
|
|
17139
17333
|
[key: string]: unknown;
|
|
17140
17334
|
};
|
|
17141
17335
|
};
|
|
17336
|
+
export type PersonalAccessToken = {
|
|
17337
|
+
uuid: string;
|
|
17338
|
+
name: string;
|
|
17339
|
+
token_prefix: string;
|
|
17340
|
+
scopes: Array<string>;
|
|
17341
|
+
expires_at: string;
|
|
17342
|
+
is_active: boolean;
|
|
17343
|
+
last_used_at: string;
|
|
17344
|
+
/**
|
|
17345
|
+
* An IPv4 or IPv6 address.
|
|
17346
|
+
*/
|
|
17347
|
+
last_used_ip: string;
|
|
17348
|
+
use_count: number;
|
|
17349
|
+
created: string;
|
|
17350
|
+
};
|
|
17351
|
+
export type PersonalAccessTokenCreateRequest = {
|
|
17352
|
+
name: string;
|
|
17353
|
+
scopes: Array<string>;
|
|
17354
|
+
expires_at: string;
|
|
17355
|
+
};
|
|
17356
|
+
export type PersonalAccessTokenCreated = {
|
|
17357
|
+
uuid: string;
|
|
17358
|
+
name: string;
|
|
17359
|
+
/**
|
|
17360
|
+
* Plaintext token — shown only once.
|
|
17361
|
+
*/
|
|
17362
|
+
token: string;
|
|
17363
|
+
scopes: Array<string>;
|
|
17364
|
+
expires_at: string;
|
|
17365
|
+
created: string;
|
|
17366
|
+
};
|
|
17142
17367
|
export type PlanComponent = {
|
|
17143
17368
|
readonly offering_uuid: string;
|
|
17144
17369
|
readonly offering_name: string;
|
|
@@ -17356,6 +17581,10 @@ export type Project = {
|
|
|
17356
17581
|
*/
|
|
17357
17582
|
end_date?: string | null;
|
|
17358
17583
|
readonly end_date_requested_by?: string | null;
|
|
17584
|
+
/**
|
|
17585
|
+
* Timestamp of the last end_date change.
|
|
17586
|
+
*/
|
|
17587
|
+
readonly end_date_updated_at?: string | null;
|
|
17359
17588
|
oecd_fos_2007_code?: OecdFos2007CodeEnum | BlankEnum | NullEnum | null;
|
|
17360
17589
|
/**
|
|
17361
17590
|
* Human-readable label for the OECD FOS 2007 classification code
|
|
@@ -17388,10 +17617,14 @@ export type Project = {
|
|
|
17388
17617
|
* Number of extra days after project end date before resources are terminated. Overrides customer-level setting.
|
|
17389
17618
|
*/
|
|
17390
17619
|
grace_period_days?: number | null;
|
|
17620
|
+
/**
|
|
17621
|
+
* Grace period days set at the customer (organization) level. Used as default when project-level is not set.
|
|
17622
|
+
*/
|
|
17623
|
+
readonly customer_grace_period_days?: number | null;
|
|
17391
17624
|
/**
|
|
17392
17625
|
* Effective end date including grace period. After this date, project resources will be terminated.
|
|
17393
17626
|
*/
|
|
17394
|
-
readonly effective_end_date?: string;
|
|
17627
|
+
readonly effective_end_date?: string | null;
|
|
17395
17628
|
/**
|
|
17396
17629
|
* True if the project is past its end date but still within the grace period.
|
|
17397
17630
|
*/
|
|
@@ -17456,6 +17689,16 @@ export type ProjectClassificationSummary = {
|
|
|
17456
17689
|
*/
|
|
17457
17690
|
industry_projects: number;
|
|
17458
17691
|
};
|
|
17692
|
+
export type ProjectCreationTrend = {
|
|
17693
|
+
/**
|
|
17694
|
+
* Month in YYYY-MM format
|
|
17695
|
+
*/
|
|
17696
|
+
month: string;
|
|
17697
|
+
/**
|
|
17698
|
+
* Number of items created
|
|
17699
|
+
*/
|
|
17700
|
+
count: number;
|
|
17701
|
+
};
|
|
17459
17702
|
export type ProjectCredit = {
|
|
17460
17703
|
readonly uuid: string;
|
|
17461
17704
|
readonly url: string;
|
|
@@ -17546,6 +17789,61 @@ export type ProjectDigestPreviewResponse = {
|
|
|
17546
17789
|
html_body: string;
|
|
17547
17790
|
text_body: string;
|
|
17548
17791
|
};
|
|
17792
|
+
export type ProjectEndDateChangeRequest = {
|
|
17793
|
+
readonly url: string;
|
|
17794
|
+
readonly uuid: string;
|
|
17795
|
+
readonly state: string;
|
|
17796
|
+
project: string;
|
|
17797
|
+
readonly project_uuid: string;
|
|
17798
|
+
readonly project_name: string;
|
|
17799
|
+
readonly customer_uuid: string;
|
|
17800
|
+
readonly customer_name: string;
|
|
17801
|
+
/**
|
|
17802
|
+
* The requested new end date for the project
|
|
17803
|
+
*/
|
|
17804
|
+
requested_end_date: string;
|
|
17805
|
+
/**
|
|
17806
|
+
* Optional comment from the requester
|
|
17807
|
+
*/
|
|
17808
|
+
comment?: string | null;
|
|
17809
|
+
readonly created: string;
|
|
17810
|
+
readonly created_by_uuid: string | null;
|
|
17811
|
+
readonly created_by_full_name: string | null;
|
|
17812
|
+
/**
|
|
17813
|
+
* Timestamp when the review was completed
|
|
17814
|
+
*/
|
|
17815
|
+
readonly reviewed_at: string | null;
|
|
17816
|
+
readonly reviewed_by_uuid: string | null;
|
|
17817
|
+
readonly reviewed_by_full_name: string | null;
|
|
17818
|
+
/**
|
|
17819
|
+
* Optional comment provided during review
|
|
17820
|
+
*/
|
|
17821
|
+
review_comment?: string | null;
|
|
17822
|
+
};
|
|
17823
|
+
export type ProjectEndDateChangeRequestCreate = {
|
|
17824
|
+
project: string;
|
|
17825
|
+
/**
|
|
17826
|
+
* The requested new end date for the project
|
|
17827
|
+
*/
|
|
17828
|
+
requested_end_date: string;
|
|
17829
|
+
/**
|
|
17830
|
+
* Optional comment from the requester
|
|
17831
|
+
*/
|
|
17832
|
+
comment?: string | null;
|
|
17833
|
+
readonly uuid: string;
|
|
17834
|
+
readonly state: string;
|
|
17835
|
+
};
|
|
17836
|
+
export type ProjectEndDateChangeRequestCreateRequest = {
|
|
17837
|
+
project: string;
|
|
17838
|
+
/**
|
|
17839
|
+
* The requested new end date for the project
|
|
17840
|
+
*/
|
|
17841
|
+
requested_end_date: string;
|
|
17842
|
+
/**
|
|
17843
|
+
* Optional comment from the requester
|
|
17844
|
+
*/
|
|
17845
|
+
comment?: string | null;
|
|
17846
|
+
};
|
|
17549
17847
|
export type ProjectEstimatedCostPolicy = {
|
|
17550
17848
|
readonly uuid: string;
|
|
17551
17849
|
readonly url: string;
|
|
@@ -17562,6 +17860,7 @@ export type ProjectEstimatedCostPolicy = {
|
|
|
17562
17860
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
17563
17861
|
*/
|
|
17564
17862
|
options?: unknown;
|
|
17863
|
+
readonly affected_resources_count: number;
|
|
17565
17864
|
limit_cost: number;
|
|
17566
17865
|
period?: PolicyPeriodEnum;
|
|
17567
17866
|
readonly period_name: string;
|
|
@@ -18422,6 +18721,7 @@ export type ProviderOfferingDetails = {
|
|
|
18422
18721
|
* Returns 'limit_only', 'usage_only', or 'mixed'.
|
|
18423
18722
|
*/
|
|
18424
18723
|
readonly billing_type_classification?: string;
|
|
18724
|
+
readonly effective_available_limits?: Array<string>;
|
|
18425
18725
|
compliance_checklist?: string | null;
|
|
18426
18726
|
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
18427
18727
|
readonly google_calendar_is_public?: boolean | null;
|
|
@@ -18824,6 +19124,7 @@ export type PublicOfferingDetails = {
|
|
|
18824
19124
|
* Returns 'limit_only', 'usage_only', or 'mixed'.
|
|
18825
19125
|
*/
|
|
18826
19126
|
readonly billing_type_classification?: string;
|
|
19127
|
+
readonly effective_available_limits?: Array<string>;
|
|
18827
19128
|
compliance_checklist?: string | null;
|
|
18828
19129
|
readonly user_has_consent?: boolean;
|
|
18829
19130
|
readonly is_accessible?: boolean;
|
|
@@ -20626,8 +20927,8 @@ export type Resource = {
|
|
|
20626
20927
|
/**
|
|
20627
20928
|
* Effective project end date including grace period. After this date, resources will be terminated.
|
|
20628
20929
|
*/
|
|
20629
|
-
readonly project_effective_end_date?: string;
|
|
20630
|
-
readonly project_end_date_requested_by?: string;
|
|
20930
|
+
readonly project_effective_end_date?: string | null;
|
|
20931
|
+
readonly project_end_date_requested_by?: string | null;
|
|
20631
20932
|
readonly customer_uuid?: string;
|
|
20632
20933
|
readonly customer_name?: string;
|
|
20633
20934
|
readonly offering_slug?: string;
|
|
@@ -20701,15 +21002,40 @@ export type ResourceBackendIdRequest = {
|
|
|
20701
21002
|
export type ResourceBackendMetadataRequest = {
|
|
20702
21003
|
backend_metadata: unknown;
|
|
20703
21004
|
};
|
|
21005
|
+
export type ResourceDemandStat = {
|
|
21006
|
+
readonly offering_uuid: string;
|
|
21007
|
+
readonly offering_name: string;
|
|
21008
|
+
readonly offering_type: string;
|
|
21009
|
+
readonly provider_name: string;
|
|
21010
|
+
readonly proposal_count: number;
|
|
21011
|
+
readonly request_count: number;
|
|
21012
|
+
readonly approved_count: number;
|
|
21013
|
+
readonly pending_count: number;
|
|
21014
|
+
readonly total_requested_limits: {
|
|
21015
|
+
[key: string]: number;
|
|
21016
|
+
};
|
|
21017
|
+
readonly total_approved_limits: {
|
|
21018
|
+
[key: string]: number;
|
|
21019
|
+
};
|
|
21020
|
+
};
|
|
20704
21021
|
export type ResourceDownscaledRequest = {
|
|
20705
21022
|
downscaled?: boolean;
|
|
20706
21023
|
};
|
|
21024
|
+
export type ResourceEffectiveIdRequest = {
|
|
21025
|
+
effective_id?: string;
|
|
21026
|
+
};
|
|
20707
21027
|
export type ResourceEndDateByProviderRequest = {
|
|
20708
21028
|
/**
|
|
20709
21029
|
* The date is inclusive. Once reached, a resource will be scheduled for termination.
|
|
20710
21030
|
*/
|
|
20711
21031
|
end_date?: string | null;
|
|
20712
21032
|
};
|
|
21033
|
+
export type ResourceEndDateRequest = {
|
|
21034
|
+
/**
|
|
21035
|
+
* The date is inclusive. Once reached, a resource will be scheduled for termination.
|
|
21036
|
+
*/
|
|
21037
|
+
end_date?: string | null;
|
|
21038
|
+
};
|
|
20713
21039
|
export type ResourceKeycloakScopesRequest = {
|
|
20714
21040
|
/**
|
|
20715
21041
|
* Pre-configured scope options for this resource.
|
|
@@ -21134,6 +21460,19 @@ export type ReviewCommentRequest = {
|
|
|
21134
21460
|
*/
|
|
21135
21461
|
comment?: string;
|
|
21136
21462
|
};
|
|
21463
|
+
export type ReviewProgressStat = {
|
|
21464
|
+
readonly reviewer_uuid: string;
|
|
21465
|
+
readonly reviewer_name: string;
|
|
21466
|
+
readonly reviewer_email: string;
|
|
21467
|
+
readonly total_assigned: number;
|
|
21468
|
+
readonly pending: number;
|
|
21469
|
+
readonly in_progress: number;
|
|
21470
|
+
readonly completed: number;
|
|
21471
|
+
readonly declined: number;
|
|
21472
|
+
readonly average_score: number | null;
|
|
21473
|
+
readonly average_review_time_days: number | null;
|
|
21474
|
+
readonly completion_rate: number;
|
|
21475
|
+
};
|
|
21137
21476
|
export type ReviewStrategyEnum = 'after_round' | 'after_proposal';
|
|
21138
21477
|
export type ReviewSubmitRequest = {
|
|
21139
21478
|
summary_score?: number;
|
|
@@ -22803,6 +23142,7 @@ export type SlurmPeriodicUsagePolicy = {
|
|
|
22803
23142
|
* Fields for saving actions extra data. Keys are name of actions.
|
|
22804
23143
|
*/
|
|
22805
23144
|
options?: unknown;
|
|
23145
|
+
readonly affected_resources_count: number;
|
|
22806
23146
|
organization_groups?: Array<string>;
|
|
22807
23147
|
/**
|
|
22808
23148
|
* If True, policy applies to all customers. Mutually exclusive with organization_groups.
|
|
@@ -23172,6 +23512,7 @@ export type SoftwarePackage = {
|
|
|
23172
23512
|
*/
|
|
23173
23513
|
is_extension?: boolean;
|
|
23174
23514
|
readonly parent_softwares: Array<NestedParentSoftware>;
|
|
23515
|
+
readonly extensions: Array<NestedParentSoftware>;
|
|
23175
23516
|
readonly catalog_name: string;
|
|
23176
23517
|
readonly catalog_version: string;
|
|
23177
23518
|
readonly catalog_type: string;
|
|
@@ -23322,6 +23663,16 @@ export type SubNetMappingRequest = {
|
|
|
23322
23663
|
src_cidr: string;
|
|
23323
23664
|
dst_cidr: string;
|
|
23324
23665
|
};
|
|
23666
|
+
export type SubmitRequestRequest = {
|
|
23667
|
+
/**
|
|
23668
|
+
* Custom project name to use instead of auto-generated one
|
|
23669
|
+
*/
|
|
23670
|
+
project_name?: string;
|
|
23671
|
+
/**
|
|
23672
|
+
* Custom project description
|
|
23673
|
+
*/
|
|
23674
|
+
project_description?: string;
|
|
23675
|
+
};
|
|
23325
23676
|
export type SubmitRequestResponse = {
|
|
23326
23677
|
/**
|
|
23327
23678
|
* UUID of the created permission request
|
|
@@ -23380,6 +23731,12 @@ export type SupportUser = {
|
|
|
23380
23731
|
export type SupportedCountriesResponse = {
|
|
23381
23732
|
supported_countries: Array<string>;
|
|
23382
23733
|
};
|
|
23734
|
+
export type SwitchBillingModeRequest = {
|
|
23735
|
+
/**
|
|
23736
|
+
* Switch all builtin components to monthly (LIMIT), prepaid (ONE_TIME + is_prepaid), or usage-based billing.
|
|
23737
|
+
*/
|
|
23738
|
+
billing_mode: BillingModeEnum;
|
|
23739
|
+
};
|
|
23383
23740
|
export type SyncFromArrowRequestRequest = {
|
|
23384
23741
|
settings_uuid?: string;
|
|
23385
23742
|
};
|
|
@@ -23709,6 +24066,11 @@ export type ThreadSession = {
|
|
|
23709
24066
|
readonly flags?: unknown;
|
|
23710
24067
|
is_archived?: boolean;
|
|
23711
24068
|
readonly message_count?: number;
|
|
24069
|
+
readonly input_tokens?: number | null;
|
|
24070
|
+
readonly output_tokens?: number | null;
|
|
24071
|
+
readonly total_tokens?: number | null;
|
|
24072
|
+
readonly title_gen_input_tokens?: number | null;
|
|
24073
|
+
readonly title_gen_output_tokens?: number | null;
|
|
23712
24074
|
readonly is_flagged?: boolean;
|
|
23713
24075
|
max_severity?: InjectionSeverityEnum;
|
|
23714
24076
|
readonly user_username?: string;
|
|
@@ -23847,6 +24209,24 @@ export type TopQueue = {
|
|
|
23847
24209
|
*/
|
|
23848
24210
|
readonly consumers: number;
|
|
23849
24211
|
};
|
|
24212
|
+
export type TopServiceProviderByResources = {
|
|
24213
|
+
/**
|
|
24214
|
+
* UUID of the service provider
|
|
24215
|
+
*/
|
|
24216
|
+
customer_uuid: string;
|
|
24217
|
+
/**
|
|
24218
|
+
* Name of the service provider
|
|
24219
|
+
*/
|
|
24220
|
+
customer_name: string;
|
|
24221
|
+
/**
|
|
24222
|
+
* Number of active resources
|
|
24223
|
+
*/
|
|
24224
|
+
resources_count: number;
|
|
24225
|
+
/**
|
|
24226
|
+
* Number of distinct projects
|
|
24227
|
+
*/
|
|
24228
|
+
projects_count: number;
|
|
24229
|
+
};
|
|
23850
24230
|
export type TotalCustomerCost = {
|
|
23851
24231
|
readonly total: number;
|
|
23852
24232
|
readonly price: number;
|
|
@@ -23906,16 +24286,32 @@ export type UpdateActionsResponse = {
|
|
|
23906
24286
|
provider_action_type?: string | null;
|
|
23907
24287
|
};
|
|
23908
24288
|
export type UpdateHealthMonitor = {
|
|
24289
|
+
readonly url: string;
|
|
24290
|
+
readonly uuid: string;
|
|
23909
24291
|
name?: string;
|
|
24292
|
+
/**
|
|
24293
|
+
* Interval between health checks in seconds
|
|
24294
|
+
*/
|
|
23910
24295
|
delay?: number;
|
|
24296
|
+
/**
|
|
24297
|
+
* Time in seconds to timeout a health check
|
|
24298
|
+
*/
|
|
23911
24299
|
timeout?: number;
|
|
23912
24300
|
max_retries?: number;
|
|
24301
|
+
max_retries_down?: number;
|
|
23913
24302
|
};
|
|
23914
24303
|
export type UpdateHealthMonitorRequest = {
|
|
23915
24304
|
name?: string;
|
|
24305
|
+
/**
|
|
24306
|
+
* Interval between health checks in seconds
|
|
24307
|
+
*/
|
|
23916
24308
|
delay?: number;
|
|
24309
|
+
/**
|
|
24310
|
+
* Time in seconds to timeout a health check
|
|
24311
|
+
*/
|
|
23917
24312
|
timeout?: number;
|
|
23918
24313
|
max_retries?: number;
|
|
24314
|
+
max_retries_down?: number;
|
|
23919
24315
|
};
|
|
23920
24316
|
export type UpdateListener = {
|
|
23921
24317
|
name?: string;
|
|
@@ -23925,6 +24321,14 @@ export type UpdateListenerRequest = {
|
|
|
23925
24321
|
name?: string;
|
|
23926
24322
|
default_pool?: string | null;
|
|
23927
24323
|
};
|
|
24324
|
+
export type UpdateLoadBalancer = {
|
|
24325
|
+
readonly url: string;
|
|
24326
|
+
readonly uuid: string;
|
|
24327
|
+
name: string;
|
|
24328
|
+
};
|
|
24329
|
+
export type UpdateLoadBalancerRequest = {
|
|
24330
|
+
name: string;
|
|
24331
|
+
};
|
|
23928
24332
|
export type UpdateOfferingComponentRequest = {
|
|
23929
24333
|
uuid: string;
|
|
23930
24334
|
billing_type: BillingTypeEnum;
|
|
@@ -23957,8 +24361,31 @@ export type UpdateOfferingComponentRequest = {
|
|
|
23957
24361
|
overage_component?: string | null;
|
|
23958
24362
|
min_prepaid_duration?: number | null;
|
|
23959
24363
|
max_prepaid_duration?: number | null;
|
|
24364
|
+
/**
|
|
24365
|
+
* 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).
|
|
24366
|
+
*/
|
|
24367
|
+
prepaid_duration_step?: number | null;
|
|
24368
|
+
/**
|
|
24369
|
+
* Minimum number of months allowed for a renewal.
|
|
24370
|
+
*/
|
|
24371
|
+
min_renewal_duration?: number | null;
|
|
24372
|
+
/**
|
|
24373
|
+
* Maximum number of months allowed for a renewal.
|
|
24374
|
+
*/
|
|
24375
|
+
max_renewal_duration?: number | null;
|
|
24376
|
+
/**
|
|
24377
|
+
* Step size in months for renewal. Only multiples of this value (starting from min_renewal_duration) are valid. Defaults to 1.
|
|
24378
|
+
*/
|
|
24379
|
+
renewal_duration_step?: number | null;
|
|
24380
|
+
};
|
|
24381
|
+
export type UpdatePool = {
|
|
24382
|
+
readonly url: string;
|
|
24383
|
+
readonly uuid: string;
|
|
24384
|
+
name: string;
|
|
23960
24385
|
};
|
|
23961
24386
|
export type UpdatePoolMember = {
|
|
24387
|
+
readonly url: string;
|
|
24388
|
+
readonly uuid: string;
|
|
23962
24389
|
name?: string;
|
|
23963
24390
|
weight?: number;
|
|
23964
24391
|
};
|
|
@@ -23966,6 +24393,9 @@ export type UpdatePoolMemberRequest = {
|
|
|
23966
24393
|
name?: string;
|
|
23967
24394
|
weight?: number;
|
|
23968
24395
|
};
|
|
24396
|
+
export type UpdatePoolRequest = {
|
|
24397
|
+
name: string;
|
|
24398
|
+
};
|
|
23969
24399
|
export type UrgencyEnum = 'low' | 'medium' | 'high';
|
|
23970
24400
|
export type User = {
|
|
23971
24401
|
readonly url?: string;
|
|
@@ -24044,9 +24474,9 @@ export type User = {
|
|
|
24044
24474
|
readonly has_usable_password?: boolean;
|
|
24045
24475
|
readonly ip_address?: string | null;
|
|
24046
24476
|
/**
|
|
24047
|
-
*
|
|
24477
|
+
* User's gender (male, female, or unknown)
|
|
24048
24478
|
*/
|
|
24049
|
-
gender?: GenderEnum | NullEnum | null;
|
|
24479
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
24050
24480
|
/**
|
|
24051
24481
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
24052
24482
|
*/
|
|
@@ -24090,6 +24520,10 @@ export type User = {
|
|
|
24090
24520
|
* List of ISDs that have asserted this user exists. User is deactivated when this becomes empty.
|
|
24091
24521
|
*/
|
|
24092
24522
|
readonly active_isds?: unknown;
|
|
24523
|
+
/**
|
|
24524
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
24525
|
+
*/
|
|
24526
|
+
deactivation_reason?: string;
|
|
24093
24527
|
};
|
|
24094
24528
|
export type UserAction = {
|
|
24095
24529
|
readonly uuid: string;
|
|
@@ -24322,6 +24756,16 @@ export type UserLanguageCount = {
|
|
|
24322
24756
|
language: string;
|
|
24323
24757
|
count: number;
|
|
24324
24758
|
};
|
|
24759
|
+
export type UserNationalityStats = {
|
|
24760
|
+
/**
|
|
24761
|
+
* Nationality code
|
|
24762
|
+
*/
|
|
24763
|
+
nationality: string;
|
|
24764
|
+
/**
|
|
24765
|
+
* Number of users
|
|
24766
|
+
*/
|
|
24767
|
+
count: number;
|
|
24768
|
+
};
|
|
24325
24769
|
export type UserOfferingConsent = {
|
|
24326
24770
|
readonly uuid: string;
|
|
24327
24771
|
readonly user_uuid: string;
|
|
@@ -24431,9 +24875,9 @@ export type UserRequest = {
|
|
|
24431
24875
|
birth_date?: string | null;
|
|
24432
24876
|
image?: (Blob | File) | null;
|
|
24433
24877
|
/**
|
|
24434
|
-
*
|
|
24878
|
+
* User's gender (male, female, or unknown)
|
|
24435
24879
|
*/
|
|
24436
|
-
gender?: GenderEnum | NullEnum | null;
|
|
24880
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
24437
24881
|
/**
|
|
24438
24882
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
24439
24883
|
*/
|
|
@@ -24469,6 +24913,20 @@ export type UserRequest = {
|
|
|
24469
24913
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
24470
24914
|
*/
|
|
24471
24915
|
managed_isds?: unknown;
|
|
24916
|
+
/**
|
|
24917
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
24918
|
+
*/
|
|
24919
|
+
deactivation_reason?: string;
|
|
24920
|
+
};
|
|
24921
|
+
export type UserResidenceCountryStats = {
|
|
24922
|
+
/**
|
|
24923
|
+
* Country of residence code
|
|
24924
|
+
*/
|
|
24925
|
+
country_of_residence: string;
|
|
24926
|
+
/**
|
|
24927
|
+
* Number of users
|
|
24928
|
+
*/
|
|
24929
|
+
count: number;
|
|
24472
24930
|
};
|
|
24473
24931
|
export type UserRoleCreateRequest = {
|
|
24474
24932
|
role: string;
|
|
@@ -25279,6 +25737,13 @@ export type CustomerRequestForm = {
|
|
|
25279
25737
|
* Comma-separated list of notification email addresses
|
|
25280
25738
|
*/
|
|
25281
25739
|
notification_emails?: string;
|
|
25740
|
+
city?: string;
|
|
25741
|
+
state?: string;
|
|
25742
|
+
parish?: string;
|
|
25743
|
+
street?: string;
|
|
25744
|
+
house_nr?: string;
|
|
25745
|
+
apartment_nr?: string;
|
|
25746
|
+
household?: string;
|
|
25282
25747
|
};
|
|
25283
25748
|
export type CustomerRequestMultipart = {
|
|
25284
25749
|
/**
|
|
@@ -25356,6 +25821,13 @@ export type CustomerRequestMultipart = {
|
|
|
25356
25821
|
* Comma-separated list of notification email addresses
|
|
25357
25822
|
*/
|
|
25358
25823
|
notification_emails?: string;
|
|
25824
|
+
city?: string;
|
|
25825
|
+
state?: string;
|
|
25826
|
+
parish?: string;
|
|
25827
|
+
street?: string;
|
|
25828
|
+
house_nr?: string;
|
|
25829
|
+
apartment_nr?: string;
|
|
25830
|
+
household?: string;
|
|
25359
25831
|
};
|
|
25360
25832
|
export type PatchedCustomerRequestForm = {
|
|
25361
25833
|
/**
|
|
@@ -25433,6 +25905,13 @@ export type PatchedCustomerRequestForm = {
|
|
|
25433
25905
|
* Comma-separated list of notification email addresses
|
|
25434
25906
|
*/
|
|
25435
25907
|
notification_emails?: string;
|
|
25908
|
+
city?: string;
|
|
25909
|
+
state?: string;
|
|
25910
|
+
parish?: string;
|
|
25911
|
+
street?: string;
|
|
25912
|
+
house_nr?: string;
|
|
25913
|
+
apartment_nr?: string;
|
|
25914
|
+
household?: string;
|
|
25436
25915
|
};
|
|
25437
25916
|
export type PatchedCustomerRequestMultipart = {
|
|
25438
25917
|
/**
|
|
@@ -25510,6 +25989,13 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
25510
25989
|
* Comma-separated list of notification email addresses
|
|
25511
25990
|
*/
|
|
25512
25991
|
notification_emails?: string;
|
|
25992
|
+
city?: string;
|
|
25993
|
+
state?: string;
|
|
25994
|
+
parish?: string;
|
|
25995
|
+
street?: string;
|
|
25996
|
+
house_nr?: string;
|
|
25997
|
+
apartment_nr?: string;
|
|
25998
|
+
household?: string;
|
|
25513
25999
|
};
|
|
25514
26000
|
export type ExternalLinkRequestForm = {
|
|
25515
26001
|
name: string;
|
|
@@ -26108,6 +26594,8 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26108
26594
|
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
26109
26595
|
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
26110
26596
|
MARKETPLACE_LANDING_PAGE?: string;
|
|
26597
|
+
MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
|
|
26598
|
+
MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
|
|
26111
26599
|
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
26112
26600
|
ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
|
|
26113
26601
|
TELEMETRY_URL?: string;
|
|
@@ -26256,6 +26744,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26256
26744
|
OIDC_CACHE_TIMEOUT?: number;
|
|
26257
26745
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
26258
26746
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
26747
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
26259
26748
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
26260
26749
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
26261
26750
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -26284,18 +26773,20 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26284
26773
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
26285
26774
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
26286
26775
|
ONBOARDING_BREG_API_URL?: string;
|
|
26287
|
-
|
|
26288
|
-
|
|
26289
|
-
|
|
26290
|
-
|
|
26291
|
-
|
|
26292
|
-
|
|
26293
|
-
|
|
26294
|
-
|
|
26295
|
-
|
|
26296
|
-
|
|
26297
|
-
|
|
26298
|
-
|
|
26776
|
+
AI_ASSISTANT_ENABLED?: boolean;
|
|
26777
|
+
AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
|
|
26778
|
+
AI_ASSISTANT_BACKEND_TYPE?: string;
|
|
26779
|
+
AI_ASSISTANT_API_URL?: string;
|
|
26780
|
+
AI_ASSISTANT_API_TOKEN?: string;
|
|
26781
|
+
AI_ASSISTANT_MODEL?: string;
|
|
26782
|
+
AI_ASSISTANT_COMPLETION_KWARGS?: string;
|
|
26783
|
+
AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
|
|
26784
|
+
AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
|
|
26785
|
+
AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
|
|
26786
|
+
AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
|
|
26787
|
+
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
26788
|
+
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
26789
|
+
AI_ASSISTANT_NAME?: string;
|
|
26299
26790
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
26300
26791
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
26301
26792
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -26335,6 +26826,9 @@ export type ConstanceSettingsRequestForm = {
|
|
|
26335
26826
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
26336
26827
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
26337
26828
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
26829
|
+
PAT_ENABLED?: boolean;
|
|
26830
|
+
PAT_MAX_LIFETIME_DAYS?: number;
|
|
26831
|
+
PAT_MAX_TOKENS_PER_USER?: number;
|
|
26338
26832
|
};
|
|
26339
26833
|
export type ConstanceSettingsRequestMultipart = {
|
|
26340
26834
|
SITE_NAME?: string;
|
|
@@ -26355,6 +26849,8 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26355
26849
|
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
26356
26850
|
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
26357
26851
|
MARKETPLACE_LANDING_PAGE?: string;
|
|
26852
|
+
MARKETPLACE_LAYOUT_MODE?: MarketplacelayoutmodeEnum;
|
|
26853
|
+
MARKETPLACE_CARD_STYLE?: MarketplacecardstyleEnum;
|
|
26358
26854
|
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
26359
26855
|
ENABLE_ISSUES_FOR_USER_SSH_KEY_CHANGES?: boolean;
|
|
26360
26856
|
TELEMETRY_URL?: string;
|
|
@@ -26503,6 +26999,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26503
26999
|
OIDC_CACHE_TIMEOUT?: number;
|
|
26504
27000
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
26505
27001
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
27002
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS_RESPONSE_MESSAGE?: string;
|
|
26506
27003
|
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
26507
27004
|
OIDC_DEFAULT_LOGOUT_URL?: string;
|
|
26508
27005
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
@@ -26531,18 +27028,20 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26531
27028
|
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
26532
27029
|
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
26533
27030
|
ONBOARDING_BREG_API_URL?: string;
|
|
26534
|
-
|
|
26535
|
-
|
|
26536
|
-
|
|
26537
|
-
|
|
26538
|
-
|
|
26539
|
-
|
|
26540
|
-
|
|
26541
|
-
|
|
26542
|
-
|
|
26543
|
-
|
|
26544
|
-
|
|
26545
|
-
|
|
27031
|
+
AI_ASSISTANT_ENABLED?: boolean;
|
|
27032
|
+
AI_ASSISTANT_ENABLED_ROLES?: AiassistantenabledrolesEnum;
|
|
27033
|
+
AI_ASSISTANT_BACKEND_TYPE?: string;
|
|
27034
|
+
AI_ASSISTANT_API_URL?: string;
|
|
27035
|
+
AI_ASSISTANT_API_TOKEN?: string;
|
|
27036
|
+
AI_ASSISTANT_MODEL?: string;
|
|
27037
|
+
AI_ASSISTANT_COMPLETION_KWARGS?: string;
|
|
27038
|
+
AI_ASSISTANT_TOKEN_LIMIT_DAILY?: number;
|
|
27039
|
+
AI_ASSISTANT_TOKEN_LIMIT_WEEKLY?: number;
|
|
27040
|
+
AI_ASSISTANT_TOKEN_LIMIT_MONTHLY?: number;
|
|
27041
|
+
AI_ASSISTANT_SESSION_RETENTION_DAYS?: number;
|
|
27042
|
+
AI_ASSISTANT_HISTORY_LIMIT?: number;
|
|
27043
|
+
AI_ASSISTANT_INJECTION_ALLOWLIST?: string;
|
|
27044
|
+
AI_ASSISTANT_NAME?: string;
|
|
26546
27045
|
SOFTWARE_CATALOG_EESSI_UPDATE_ENABLED?: boolean;
|
|
26547
27046
|
SOFTWARE_CATALOG_EESSI_VERSION?: string;
|
|
26548
27047
|
SOFTWARE_CATALOG_EESSI_API_URL?: string;
|
|
@@ -26582,6 +27081,9 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
26582
27081
|
SSH_KEY_ALLOWED_TYPES?: Array<SshkeyallowedtypesEnum | BlankEnum>;
|
|
26583
27082
|
SSH_KEY_MIN_RSA_KEY_SIZE?: number;
|
|
26584
27083
|
ENABLED_REPORTING_SCREENS?: Array<EnabledreportingscreensEnum | BlankEnum>;
|
|
27084
|
+
PAT_ENABLED?: boolean;
|
|
27085
|
+
PAT_MAX_LIFETIME_DAYS?: number;
|
|
27086
|
+
PAT_MAX_TOKENS_PER_USER?: number;
|
|
26585
27087
|
};
|
|
26586
27088
|
export type PaymentRequestForm = {
|
|
26587
27089
|
profile: string;
|
|
@@ -26697,9 +27199,9 @@ export type UserRequestForm = {
|
|
|
26697
27199
|
birth_date?: string | null;
|
|
26698
27200
|
image?: (Blob | File) | null;
|
|
26699
27201
|
/**
|
|
26700
|
-
*
|
|
27202
|
+
* User's gender (male, female, or unknown)
|
|
26701
27203
|
*/
|
|
26702
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27204
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
26703
27205
|
/**
|
|
26704
27206
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
26705
27207
|
*/
|
|
@@ -26735,6 +27237,10 @@ export type UserRequestForm = {
|
|
|
26735
27237
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26736
27238
|
*/
|
|
26737
27239
|
managed_isds?: unknown;
|
|
27240
|
+
/**
|
|
27241
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27242
|
+
*/
|
|
27243
|
+
deactivation_reason?: string;
|
|
26738
27244
|
};
|
|
26739
27245
|
export type UserRequestMultipart = {
|
|
26740
27246
|
/**
|
|
@@ -26784,9 +27290,9 @@ export type UserRequestMultipart = {
|
|
|
26784
27290
|
birth_date?: string | null;
|
|
26785
27291
|
image?: (Blob | File) | null;
|
|
26786
27292
|
/**
|
|
26787
|
-
*
|
|
27293
|
+
* User's gender (male, female, or unknown)
|
|
26788
27294
|
*/
|
|
26789
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27295
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
26790
27296
|
/**
|
|
26791
27297
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
26792
27298
|
*/
|
|
@@ -26822,6 +27328,10 @@ export type UserRequestMultipart = {
|
|
|
26822
27328
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26823
27329
|
*/
|
|
26824
27330
|
managed_isds?: unknown;
|
|
27331
|
+
/**
|
|
27332
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27333
|
+
*/
|
|
27334
|
+
deactivation_reason?: string;
|
|
26825
27335
|
};
|
|
26826
27336
|
export type PatchedUserRequestForm = {
|
|
26827
27337
|
/**
|
|
@@ -26870,9 +27380,9 @@ export type PatchedUserRequestForm = {
|
|
|
26870
27380
|
birth_date?: string | null;
|
|
26871
27381
|
image?: (Blob | File) | null;
|
|
26872
27382
|
/**
|
|
26873
|
-
*
|
|
27383
|
+
* User's gender (male, female, or unknown)
|
|
26874
27384
|
*/
|
|
26875
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27385
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
26876
27386
|
/**
|
|
26877
27387
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
26878
27388
|
*/
|
|
@@ -26908,6 +27418,10 @@ export type PatchedUserRequestForm = {
|
|
|
26908
27418
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26909
27419
|
*/
|
|
26910
27420
|
managed_isds?: unknown;
|
|
27421
|
+
/**
|
|
27422
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27423
|
+
*/
|
|
27424
|
+
deactivation_reason?: string;
|
|
26911
27425
|
};
|
|
26912
27426
|
export type PatchedUserRequestMultipart = {
|
|
26913
27427
|
/**
|
|
@@ -26956,9 +27470,9 @@ export type PatchedUserRequestMultipart = {
|
|
|
26956
27470
|
birth_date?: string | null;
|
|
26957
27471
|
image?: (Blob | File) | null;
|
|
26958
27472
|
/**
|
|
26959
|
-
*
|
|
27473
|
+
* User's gender (male, female, or unknown)
|
|
26960
27474
|
*/
|
|
26961
|
-
gender?: GenderEnum | NullEnum | null;
|
|
27475
|
+
gender?: GenderEnum | BlankEnum | NullEnum | null;
|
|
26962
27476
|
/**
|
|
26963
27477
|
* Honorific title (Mr, Ms, Dr, Prof, etc.)
|
|
26964
27478
|
*/
|
|
@@ -26994,6 +27508,10 @@ export type PatchedUserRequestMultipart = {
|
|
|
26994
27508
|
* List of ISD source identifiers this user can manage via Identity Bridge. E.g., ['isd:puhuri', 'isd:fenix']. Non-empty list implies identity manager role.
|
|
26995
27509
|
*/
|
|
26996
27510
|
managed_isds?: unknown;
|
|
27511
|
+
/**
|
|
27512
|
+
* Reason why the user was deactivated. Visible to staff and support.
|
|
27513
|
+
*/
|
|
27514
|
+
deactivation_reason?: string;
|
|
26997
27515
|
};
|
|
26998
27516
|
export type AdminAnnouncementFieldEnum = 'active_from' | 'active_to' | 'created' | 'description' | 'is_active' | 'maintenance_affected_offerings' | 'maintenance_external_reference_url' | 'maintenance_name' | 'maintenance_scheduled_end' | 'maintenance_scheduled_start' | 'maintenance_service_provider' | 'maintenance_state' | 'maintenance_type' | 'maintenance_uuid' | 'type' | 'uuid';
|
|
26999
27517
|
export type AdminAnnouncementOEnum = '-active_from' | '-active_to' | '-created' | '-name' | '-type' | 'active_from' | 'active_to' | 'created' | 'name' | 'type';
|
|
@@ -27007,7 +27525,7 @@ export type AzureSqlDatabaseFieldEnum = 'access_url' | 'backend_id' | 'charset'
|
|
|
27007
27525
|
export type AzureSqlServerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fqdn' | 'is_limit_based' | 'is_usage_based' | 'location' | 'location_name' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'storage_mb' | 'url' | 'username' | 'uuid';
|
|
27008
27526
|
export type AzureVirtualMachineFieldEnum = 'access_url' | 'backend_id' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_ips' | 'image' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'location' | 'location_name' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'password' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'resource_group' | 'resource_group_name' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'size' | 'size_name' | 'ssh_public_key' | 'start_time' | 'state' | 'url' | 'user_data' | 'username' | 'uuid';
|
|
27009
27527
|
export type BackendResourceReqOEnum = '-created' | 'created';
|
|
27010
|
-
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27528
|
+
export type OfferingFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'googlecalendar' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27011
27529
|
export type BookingResourceFieldEnum = 'attributes' | 'available_actions' | 'backend_id' | 'backend_metadata' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'created' | 'created_by' | 'created_by_full_name' | 'created_by_username' | 'creation_order' | 'current_usages' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'downscaled' | 'effective_id' | 'end_date' | 'end_date_requested_by' | 'endpoints' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'last_sync' | 'limit_usage' | 'limits' | 'modified' | 'name' | 'offering' | 'offering_backend_id' | 'offering_billable' | 'offering_components' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_slug' | 'offering_state' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'options' | 'order_in_progress' | 'parent_name' | 'parent_offering_name' | 'parent_offering_slug' | 'parent_offering_uuid' | 'parent_uuid' | 'paused' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project' | 'project_description' | 'project_effective_end_date' | 'project_end_date' | 'project_end_date_requested_by' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_name' | 'provider_slug' | 'provider_uuid' | 'renewal_date' | 'report' | 'resource_type' | 'resource_uuid' | 'restrict_member_access' | 'scope' | 'service_settings_uuid' | 'slots' | 'slug' | 'state' | 'url' | 'user_requires_reconsent' | 'username' | 'uuid';
|
|
27012
27530
|
export type BookingResourceOEnum = '-created' | '-name' | '-schedules' | '-type' | 'created' | 'name' | 'schedules' | 'type';
|
|
27013
27531
|
export type BroadcastMessageFieldEnum = 'author_full_name' | 'body' | 'created' | 'emails' | 'query' | 'send_at' | 'state' | 'subject' | 'uuid';
|
|
@@ -27017,15 +27535,15 @@ export type UserRoleDetailsFieldEnum = 'created' | 'created_by_full_name' | 'cre
|
|
|
27017
27535
|
export type UserRoleDetailsOEnum = 'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username';
|
|
27018
27536
|
export type CallReviewerPoolOEnum = '-created' | '-current_assignments' | '-expertise_match_score' | '-invited_at' | 'created' | 'current_assignments' | 'expertise_match_score' | 'invited_at';
|
|
27019
27537
|
export type ChatSessionFieldEnum = 'created' | 'modified' | 'user' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27020
|
-
export type ThreadSessionFieldEnum = 'chat_session' | 'created' | 'flags' | 'is_archived' | 'is_flagged' | 'max_severity' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid';
|
|
27021
|
-
export type ThreadSessionOEnum = '-created' | '-modified' | 'created' | 'modified';
|
|
27538
|
+
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';
|
|
27539
|
+
export type ThreadSessionOEnum = '-created' | '-input_tokens' | '-modified' | '-output_tokens' | '-total_tokens' | 'created' | 'input_tokens' | 'modified' | 'output_tokens' | 'total_tokens';
|
|
27022
27540
|
export type CoiDetectionJobOEnum = '-completed_at' | '-created' | '-started_at' | '-state' | 'completed_at' | 'created' | 'started_at' | 'state';
|
|
27023
27541
|
export type CoiDisclosureFormOEnum = '-certification_date' | '-created' | '-valid_until' | 'certification_date' | 'created' | 'valid_until';
|
|
27024
27542
|
export type ConflictOfInterestOEnum = '-created' | '-detected_at' | '-severity' | '-status' | 'created' | 'detected_at' | 'severity' | 'status';
|
|
27025
27543
|
export type CustomerCreditOEnum = '-customer_name' | '-end_date' | '-expected_consumption' | '-value' | 'customer_name' | 'end_date' | 'expected_consumption' | 'value';
|
|
27026
27544
|
export type CustomerPermissionReviewOEnum = '-closed' | '-created' | 'closed' | 'created';
|
|
27027
27545
|
export type CustomerQuotasQuotaNameEnum = 'estimated_price' | 'nc_resource_count' | 'os_cpu_count' | 'os_ram_size' | 'os_storage_size' | 'vpc_cpu_count' | 'vpc_floating_ip_count' | 'vpc_instance_count' | 'vpc_ram_size' | 'vpc_storage_size';
|
|
27028
|
-
export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
|
|
27546
|
+
export type CustomerFieldEnum = 'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'apartment_nr' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'city' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'house_nr' | 'household' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'parish' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'state' | 'street' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code';
|
|
27029
27547
|
export type CustomerUserFieldEnum = 'email' | 'expiration_time' | 'full_name' | 'image' | 'projects' | 'role_name' | 'url' | 'username' | 'uuid';
|
|
27030
27548
|
export type CustomerUserOEnum = 'concatenated_name' | '-concatenated_name';
|
|
27031
27549
|
export type GlobalUserDataAccessLogOEnum = '-accessor_type' | '-accessor_username' | '-timestamp' | '-user_username' | 'accessor_type' | 'accessor_username' | 'timestamp' | 'user_username';
|
|
@@ -27061,16 +27579,16 @@ export type OfferingTermsOfServiceOEnum = '-created' | '-modified' | '-version'
|
|
|
27061
27579
|
export type UserChecklistCompletionOEnum = '-is_completed' | '-modified' | 'is_completed' | 'modified';
|
|
27062
27580
|
export type OfferingUserFieldEnum = 'consent_data' | 'created' | 'customer_name' | 'customer_uuid' | 'has_compliance_checklist' | 'has_consent' | 'is_profile_complete' | 'is_restricted' | 'missing_profile_attributes' | 'modified' | 'offering' | 'offering_name' | 'offering_uuid' | 'requires_reconsent' | 'service_provider_comment' | 'service_provider_comment_url' | 'state' | 'url' | 'user' | 'user_active_isds' | 'user_affiliations' | 'user_birth_date' | 'user_civil_number' | 'user_country_of_residence' | 'user_eduperson_assurance' | 'user_email' | 'user_first_name' | 'user_full_name' | 'user_gender' | 'user_identity_source' | 'user_job_title' | 'user_last_name' | 'user_nationalities' | 'user_nationality' | 'user_organization' | 'user_organization_country' | 'user_organization_registry_code' | 'user_organization_type' | 'user_personal_title' | 'user_phone_number' | 'user_place_of_birth' | 'user_username' | 'user_uuid' | 'username' | 'uuid';
|
|
27063
27581
|
export type OfferingUserOEnum = '-created' | '-modified' | '-username' | 'created' | 'modified' | 'username';
|
|
27064
|
-
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';
|
|
27582
|
+
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' | 'error_updated_at' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'output_updated_at' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_description' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid';
|
|
27065
27583
|
export type OrderDetailsOEnum = '-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state';
|
|
27066
27584
|
export type RemoteProjectUpdateRequestStateEnum = 'approved' | 'canceled' | 'draft' | 'pending' | 'rejected';
|
|
27067
|
-
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
27585
|
+
export type ProviderOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_id_rules' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'integration_status' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'uuid' | 'vendor_details';
|
|
27068
27586
|
export type ProviderOfferingDetailsOEnum = '-created' | '-name' | '-state' | '-total_cost' | '-total_cost_estimated' | '-total_customers' | '-type' | 'created' | 'name' | 'state' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type';
|
|
27069
27587
|
export type ProviderOfferingCustomerFieldEnum = 'abbreviation' | 'email' | 'name' | 'phone_number' | 'slug' | 'uuid';
|
|
27070
|
-
export type ProjectFieldEnum = 'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'effective_end_date' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_in_grace_period' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'uuid';
|
|
27071
|
-
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
27588
|
+
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';
|
|
27589
|
+
export type UserFieldEnum = 'active_isds' | 'affiliations' | 'agree_with_policy' | 'agreement_date' | 'attribute_sources' | 'birth_date' | 'civil_number' | 'country_of_residence' | 'date_joined' | 'deactivation_reason' | 'description' | 'eduperson_assurance' | 'email' | 'first_name' | 'full_name' | 'gender' | 'has_active_session' | 'has_usable_password' | 'identity_provider_fields' | 'identity_provider_label' | 'identity_provider_management_url' | 'identity_provider_name' | 'identity_source' | 'image' | 'ip_address' | 'is_active' | 'is_identity_manager' | 'is_staff' | 'is_support' | 'job_title' | 'last_name' | 'managed_isds' | 'nationalities' | 'nationality' | 'native_name' | 'notifications_enabled' | 'organization' | 'organization_country' | 'organization_registry_code' | 'organization_type' | 'permissions' | 'personal_title' | 'phone_number' | 'place_of_birth' | 'preferred_language' | 'registration_method' | 'requested_email' | 'slug' | 'token' | 'token_expires_at' | 'token_lifetime' | 'url' | 'username' | 'uuid';
|
|
27072
27590
|
export type ResourceOEnum = '-created' | '-end_date' | '-name' | '-project_name' | '-state' | 'created' | 'end_date' | 'name' | 'project_name' | 'state';
|
|
27073
|
-
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27591
|
+
export type PublicOfferingDetailsFieldEnum = 'access_url' | 'attributes' | 'backend_id' | 'backend_metadata' | 'billable' | 'billing_type_classification' | 'category' | 'category_title' | 'category_uuid' | 'citation_count' | 'compliance_checklist' | 'components' | 'country' | 'created' | 'customer' | 'customer_name' | 'customer_uuid' | 'datacite_doi' | 'description' | 'documentation_url' | 'effective_available_limits' | 'endpoints' | 'files' | 'full_description' | 'getting_started' | 'google_calendar_is_public' | 'google_calendar_link' | 'has_compliance_requirements' | 'helpdesk_url' | 'image' | 'integration_guide' | 'is_accessible' | 'latitude' | 'longitude' | 'name' | 'options' | 'order_count' | 'organization_groups' | 'parent_description' | 'parent_name' | 'parent_uuid' | 'partitions' | 'paused_reason' | 'plans' | 'plugin_options' | 'privacy_policy_link' | 'project' | 'project_name' | 'project_uuid' | 'promotion_campaigns' | 'quotas' | 'resource_options' | 'roles' | 'scope' | 'scope_error_message' | 'scope_name' | 'scope_state' | 'scope_uuid' | 'screenshots' | 'secret_options' | 'service_attributes' | 'shared' | 'slug' | 'software_catalogs' | 'state' | 'tags' | 'thumbnail' | 'total_cost' | 'total_cost_estimated' | 'total_customers' | 'type' | 'url' | 'user_has_consent' | 'uuid' | 'vendor_details';
|
|
27074
27592
|
export type RobotAccountDetailsFieldEnum = 'backend_id' | 'created' | 'customer_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'fingerprints' | 'keys' | 'modified' | 'offering_plugin_options' | 'project_name' | 'project_uuid' | 'provider_name' | 'provider_uuid' | 'resource' | 'resource_name' | 'resource_uuid' | 'responsible_user' | 'state' | 'type' | 'url' | 'user_keys' | 'username' | 'users' | 'uuid';
|
|
27075
27593
|
export type ServiceProviderFieldEnum = 'allowed_domains' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid';
|
|
27076
27594
|
export type MarketplaceProviderCustomerProjectFieldEnum = 'billing_price_estimate' | 'description' | 'end_date' | 'name' | 'resources_count' | 'users_count' | 'uuid';
|
|
@@ -27083,7 +27601,7 @@ export type MarketplaceServiceProviderUserOEnum = '-description' | '-email' | '-
|
|
|
27083
27601
|
export type AgentServiceStateEnum = 1 | 2 | 3;
|
|
27084
27602
|
export type SoftwareCatalogOEnum = '-catalog_type' | '-created' | '-modified' | '-name' | '-version' | 'catalog_type' | 'created' | 'modified' | 'name' | 'version';
|
|
27085
27603
|
export type SoftwarePackageOEnum = '-catalog_name' | '-catalog_version' | '-created' | '-modified' | '-name' | 'catalog_name' | 'catalog_version' | 'created' | 'modified' | 'name';
|
|
27086
|
-
export type SoftwareTargetOEnum = '-
|
|
27604
|
+
export type SoftwareTargetOEnum = '-cpu_microarchitecture' | '-created' | '-package_name' | '-target_name' | '-target_type' | 'cpu_microarchitecture' | 'created' | 'package_name' | 'target_name' | 'target_type';
|
|
27087
27605
|
export type SoftwareVersionOEnum = '-created' | '-package_name' | '-release_date' | '-version' | 'created' | 'package_name' | 'release_date' | 'version';
|
|
27088
27606
|
export type OpenStackInstanceAggregateGroupByEnum = 'availability_zone' | 'customer' | 'flavor_name' | 'hypervisor_hostname' | 'image_name' | 'runtime_state' | 'service_settings';
|
|
27089
27607
|
export type UserOfferingConsentOEnum = '-agreement_date' | '-created' | '-modified' | '-revocation_date' | 'agreement_date' | 'created' | 'modified' | 'revocation_date';
|
|
@@ -27105,9 +27623,9 @@ export type OpenStackHealthMonitorFieldEnum = 'access_url' | 'backend_id' | 'cre
|
|
|
27105
27623
|
export type OpenStackInstanceFieldEnum = 'access_url' | 'action' | 'action_details' | 'availability_zone' | 'availability_zone_name' | 'backend_id' | 'connect_directly_to_external_network' | 'cores' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'disk' | 'error_message' | 'error_traceback' | 'external_address' | 'external_ips' | 'flavor_disk' | 'flavor_name' | 'floating_ips' | 'hypervisor_hostname' | 'image_name' | 'internal_ips' | 'is_limit_based' | 'is_usage_based' | 'key_fingerprint' | 'key_name' | 'latitude' | 'longitude' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'min_disk' | 'min_ram' | 'modified' | 'name' | 'ports' | 'project' | 'project_name' | 'project_uuid' | 'ram' | 'rancher_cluster' | 'resource_type' | 'runtime_state' | 'security_groups' | 'server_group' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'ssh_public_key' | 'start_time' | 'state' | 'tenant' | 'tenant_uuid' | 'url' | 'user_data' | 'uuid' | 'volumes';
|
|
27106
27624
|
export type OpenStackInstanceOEnum = 'start_time' | '-start_time';
|
|
27107
27625
|
export type OpenStackListenerFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_pool' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
|
|
27108
|
-
export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | '
|
|
27626
|
+
export type OpenStackLoadBalancerFieldEnum = 'access_url' | 'attached_floating_ip' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'provider' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid' | 'vip_address' | 'vip_port' | 'vip_subnet';
|
|
27109
27627
|
export type OpenStackNetworkFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid';
|
|
27110
|
-
export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | '
|
|
27628
|
+
export type OpenStackPoolMemberFieldEnum = 'access_url' | 'address' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'pool' | 'pool_name' | 'pool_uuid' | 'project' | 'project_name' | 'project_uuid' | 'protocol_port' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet' | 'url' | 'uuid' | 'weight';
|
|
27111
27629
|
export type OpenStackPoolFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_limit_based' | 'is_usage_based' | 'lb_algorithm' | 'load_balancer' | 'load_balancer_name' | 'load_balancer_uuid' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'operating_status' | 'project' | 'project_name' | 'project_uuid' | 'protocol' | 'provisioning_status' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid';
|
|
27112
27630
|
export type OpenStackPortFieldEnum = 'access_url' | 'admin_state_up' | 'allowed_address_pairs' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'device_id' | 'device_owner' | 'error_message' | 'error_traceback' | 'fixed_ips' | 'floating_ips' | 'is_limit_based' | 'is_usage_based' | 'mac_address' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'network' | 'network_name' | 'network_uuid' | 'port_security_enabled' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'status' | 'target_tenant' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'url' | 'uuid';
|
|
27113
27631
|
export type OpenStackPortOEnum = '-admin_state_up' | '-created' | '-device_owner' | '-instance_name' | '-mac_address' | '-name' | '-network_name' | '-status' | '-subnet_name' | 'admin_state_up' | 'created' | 'device_owner' | 'instance_name' | 'mac_address' | 'name' | 'network_name' | 'status' | 'subnet_name';
|
|
@@ -27147,6 +27665,7 @@ export type ServiceSettingsFieldEnum = 'customer' | 'customer_name' | 'customer_
|
|
|
27147
27665
|
export type SlurmAllocationFieldEnum = 'access_url' | 'backend_id' | 'cpu_limit' | 'cpu_usage' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'gateway' | 'gpu_limit' | 'gpu_usage' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_type' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'ram_limit' | 'ram_usage' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'username' | 'uuid';
|
|
27148
27666
|
export type FirecrestJobFieldEnum = 'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'file' | 'modified' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'report' | 'resource_type' | 'runtime_state' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'user' | 'user_username' | 'user_uuid' | 'uuid';
|
|
27149
27667
|
export type AttachmentFieldEnum = 'backend_id' | 'created' | 'destroy_is_available' | 'file' | 'file_name' | 'file_size' | 'issue' | 'issue_key' | 'mime_type' | 'url' | 'uuid';
|
|
27668
|
+
export type CommentOEnum = '-created' | '-modified' | 'created' | 'modified';
|
|
27150
27669
|
export type IssueOEnum = '-assignee_name' | '-caller_first_name' | '-caller_last_name' | '-created' | '-customer_name' | '-key' | '-modified' | '-priority' | '-project_name' | '-remote_id' | '-reporter_name' | '-status' | '-summary' | '-type' | 'assignee_name' | 'caller_first_name' | 'caller_last_name' | 'created' | 'customer_name' | 'key' | 'modified' | 'priority' | 'project_name' | 'remote_id' | 'reporter_name' | 'status' | 'summary' | 'type';
|
|
27151
27670
|
export type SystemLogLevelEnum = 'CRITICAL' | 'ERROR' | 'INFO' | 'WARNING';
|
|
27152
27671
|
export type SystemLogOEnum = '-created' | '-instance' | '-level_number' | 'created' | 'instance' | 'level_number';
|
|
@@ -28873,6 +29392,18 @@ export type AssignmentItemsDeclineResponses = {
|
|
|
28873
29392
|
200: AssignmentItemResponse;
|
|
28874
29393
|
};
|
|
28875
29394
|
export type AssignmentItemsDeclineResponse = AssignmentItemsDeclineResponses[keyof AssignmentItemsDeclineResponses];
|
|
29395
|
+
export type AssignmentItemsForceUnblockData = {
|
|
29396
|
+
body: ForceUnblockRequest;
|
|
29397
|
+
path: {
|
|
29398
|
+
uuid: string;
|
|
29399
|
+
};
|
|
29400
|
+
query?: never;
|
|
29401
|
+
url: '/api/assignment-items/{uuid}/force-unblock/';
|
|
29402
|
+
};
|
|
29403
|
+
export type AssignmentItemsForceUnblockResponses = {
|
|
29404
|
+
200: AssignmentItem;
|
|
29405
|
+
};
|
|
29406
|
+
export type AssignmentItemsForceUnblockResponse = AssignmentItemsForceUnblockResponses[keyof AssignmentItemsForceUnblockResponses];
|
|
28876
29407
|
export type AssignmentItemsReassignData = {
|
|
28877
29408
|
body: ReassignItemRequest;
|
|
28878
29409
|
path: {
|
|
@@ -32072,6 +32603,10 @@ export type BookingResourcesListData = {
|
|
|
32072
32603
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
32073
32604
|
*/
|
|
32074
32605
|
query?: string;
|
|
32606
|
+
/**
|
|
32607
|
+
* Resource attributes (JSON)
|
|
32608
|
+
*/
|
|
32609
|
+
resource_attributes?: string;
|
|
32075
32610
|
/**
|
|
32076
32611
|
* Restrict member access
|
|
32077
32612
|
*/
|
|
@@ -32084,6 +32619,10 @@ export type BookingResourcesListData = {
|
|
|
32084
32619
|
* Service manager UUID
|
|
32085
32620
|
*/
|
|
32086
32621
|
service_manager_uuid?: string;
|
|
32622
|
+
/**
|
|
32623
|
+
* Slug
|
|
32624
|
+
*/
|
|
32625
|
+
slug?: string;
|
|
32087
32626
|
/**
|
|
32088
32627
|
* Resource state
|
|
32089
32628
|
*
|
|
@@ -32256,6 +32795,10 @@ export type BookingResourcesCountData = {
|
|
|
32256
32795
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
32257
32796
|
*/
|
|
32258
32797
|
query?: string;
|
|
32798
|
+
/**
|
|
32799
|
+
* Resource attributes (JSON)
|
|
32800
|
+
*/
|
|
32801
|
+
resource_attributes?: string;
|
|
32259
32802
|
/**
|
|
32260
32803
|
* Restrict member access
|
|
32261
32804
|
*/
|
|
@@ -32268,6 +32811,10 @@ export type BookingResourcesCountData = {
|
|
|
32268
32811
|
* Service manager UUID
|
|
32269
32812
|
*/
|
|
32270
32813
|
service_manager_uuid?: string;
|
|
32814
|
+
/**
|
|
32815
|
+
* Slug
|
|
32816
|
+
*/
|
|
32817
|
+
slug?: string;
|
|
32271
32818
|
/**
|
|
32272
32819
|
* Resource state
|
|
32273
32820
|
*
|
|
@@ -32949,6 +33496,180 @@ export type CallManagingOrganisationsUpdateUserResponses = {
|
|
|
32949
33496
|
200: UserRoleExpirationTime;
|
|
32950
33497
|
};
|
|
32951
33498
|
export type CallManagingOrganisationsUpdateUserResponse = CallManagingOrganisationsUpdateUserResponses[keyof CallManagingOrganisationsUpdateUserResponses];
|
|
33499
|
+
export type CallManagingOrganisationsGlobalStatsPerformanceListData = {
|
|
33500
|
+
body?: never;
|
|
33501
|
+
path?: never;
|
|
33502
|
+
query?: {
|
|
33503
|
+
customer?: string;
|
|
33504
|
+
customer_keyword?: string;
|
|
33505
|
+
customer_uuid?: string;
|
|
33506
|
+
/**
|
|
33507
|
+
* Ordering
|
|
33508
|
+
*
|
|
33509
|
+
*
|
|
33510
|
+
*/
|
|
33511
|
+
o?: Array<CallManagingOrganisationOEnum>;
|
|
33512
|
+
/**
|
|
33513
|
+
* A page number within the paginated result set.
|
|
33514
|
+
*/
|
|
33515
|
+
page?: number;
|
|
33516
|
+
/**
|
|
33517
|
+
* Number of results to return per page.
|
|
33518
|
+
*/
|
|
33519
|
+
page_size?: number;
|
|
33520
|
+
};
|
|
33521
|
+
url: '/api/call-managing-organisations/global_stats_performance/';
|
|
33522
|
+
};
|
|
33523
|
+
export type CallManagingOrganisationsGlobalStatsPerformanceListResponses = {
|
|
33524
|
+
200: Array<CallPerformanceStat>;
|
|
33525
|
+
};
|
|
33526
|
+
export type CallManagingOrganisationsGlobalStatsPerformanceListResponse = CallManagingOrganisationsGlobalStatsPerformanceListResponses[keyof CallManagingOrganisationsGlobalStatsPerformanceListResponses];
|
|
33527
|
+
export type CallManagingOrganisationsGlobalStatsPerformanceCountData = {
|
|
33528
|
+
body?: never;
|
|
33529
|
+
path?: never;
|
|
33530
|
+
query?: {
|
|
33531
|
+
customer?: string;
|
|
33532
|
+
customer_keyword?: string;
|
|
33533
|
+
customer_uuid?: string;
|
|
33534
|
+
/**
|
|
33535
|
+
* Ordering
|
|
33536
|
+
*
|
|
33537
|
+
*
|
|
33538
|
+
*/
|
|
33539
|
+
o?: Array<CallManagingOrganisationOEnum>;
|
|
33540
|
+
/**
|
|
33541
|
+
* A page number within the paginated result set.
|
|
33542
|
+
*/
|
|
33543
|
+
page?: number;
|
|
33544
|
+
/**
|
|
33545
|
+
* Number of results to return per page.
|
|
33546
|
+
*/
|
|
33547
|
+
page_size?: number;
|
|
33548
|
+
};
|
|
33549
|
+
url: '/api/call-managing-organisations/global_stats_performance/';
|
|
33550
|
+
};
|
|
33551
|
+
export type CallManagingOrganisationsGlobalStatsPerformanceCountResponses = {
|
|
33552
|
+
/**
|
|
33553
|
+
* No response body
|
|
33554
|
+
*/
|
|
33555
|
+
200: unknown;
|
|
33556
|
+
};
|
|
33557
|
+
export type CallManagingOrganisationsGlobalStatsResourceDemandListData = {
|
|
33558
|
+
body?: never;
|
|
33559
|
+
path?: never;
|
|
33560
|
+
query?: {
|
|
33561
|
+
customer?: string;
|
|
33562
|
+
customer_keyword?: string;
|
|
33563
|
+
customer_uuid?: string;
|
|
33564
|
+
/**
|
|
33565
|
+
* Ordering
|
|
33566
|
+
*
|
|
33567
|
+
*
|
|
33568
|
+
*/
|
|
33569
|
+
o?: Array<CallManagingOrganisationOEnum>;
|
|
33570
|
+
/**
|
|
33571
|
+
* A page number within the paginated result set.
|
|
33572
|
+
*/
|
|
33573
|
+
page?: number;
|
|
33574
|
+
/**
|
|
33575
|
+
* Number of results to return per page.
|
|
33576
|
+
*/
|
|
33577
|
+
page_size?: number;
|
|
33578
|
+
};
|
|
33579
|
+
url: '/api/call-managing-organisations/global_stats_resource_demand/';
|
|
33580
|
+
};
|
|
33581
|
+
export type CallManagingOrganisationsGlobalStatsResourceDemandListResponses = {
|
|
33582
|
+
200: Array<ResourceDemandStat>;
|
|
33583
|
+
};
|
|
33584
|
+
export type CallManagingOrganisationsGlobalStatsResourceDemandListResponse = CallManagingOrganisationsGlobalStatsResourceDemandListResponses[keyof CallManagingOrganisationsGlobalStatsResourceDemandListResponses];
|
|
33585
|
+
export type CallManagingOrganisationsGlobalStatsResourceDemandCountData = {
|
|
33586
|
+
body?: never;
|
|
33587
|
+
path?: never;
|
|
33588
|
+
query?: {
|
|
33589
|
+
customer?: string;
|
|
33590
|
+
customer_keyword?: string;
|
|
33591
|
+
customer_uuid?: string;
|
|
33592
|
+
/**
|
|
33593
|
+
* Ordering
|
|
33594
|
+
*
|
|
33595
|
+
*
|
|
33596
|
+
*/
|
|
33597
|
+
o?: Array<CallManagingOrganisationOEnum>;
|
|
33598
|
+
/**
|
|
33599
|
+
* A page number within the paginated result set.
|
|
33600
|
+
*/
|
|
33601
|
+
page?: number;
|
|
33602
|
+
/**
|
|
33603
|
+
* Number of results to return per page.
|
|
33604
|
+
*/
|
|
33605
|
+
page_size?: number;
|
|
33606
|
+
};
|
|
33607
|
+
url: '/api/call-managing-organisations/global_stats_resource_demand/';
|
|
33608
|
+
};
|
|
33609
|
+
export type CallManagingOrganisationsGlobalStatsResourceDemandCountResponses = {
|
|
33610
|
+
/**
|
|
33611
|
+
* No response body
|
|
33612
|
+
*/
|
|
33613
|
+
200: unknown;
|
|
33614
|
+
};
|
|
33615
|
+
export type CallManagingOrganisationsGlobalStatsReviewProgressListData = {
|
|
33616
|
+
body?: never;
|
|
33617
|
+
path?: never;
|
|
33618
|
+
query?: {
|
|
33619
|
+
customer?: string;
|
|
33620
|
+
customer_keyword?: string;
|
|
33621
|
+
customer_uuid?: string;
|
|
33622
|
+
/**
|
|
33623
|
+
* Ordering
|
|
33624
|
+
*
|
|
33625
|
+
*
|
|
33626
|
+
*/
|
|
33627
|
+
o?: Array<CallManagingOrganisationOEnum>;
|
|
33628
|
+
/**
|
|
33629
|
+
* A page number within the paginated result set.
|
|
33630
|
+
*/
|
|
33631
|
+
page?: number;
|
|
33632
|
+
/**
|
|
33633
|
+
* Number of results to return per page.
|
|
33634
|
+
*/
|
|
33635
|
+
page_size?: number;
|
|
33636
|
+
};
|
|
33637
|
+
url: '/api/call-managing-organisations/global_stats_review_progress/';
|
|
33638
|
+
};
|
|
33639
|
+
export type CallManagingOrganisationsGlobalStatsReviewProgressListResponses = {
|
|
33640
|
+
200: Array<ReviewProgressStat>;
|
|
33641
|
+
};
|
|
33642
|
+
export type CallManagingOrganisationsGlobalStatsReviewProgressListResponse = CallManagingOrganisationsGlobalStatsReviewProgressListResponses[keyof CallManagingOrganisationsGlobalStatsReviewProgressListResponses];
|
|
33643
|
+
export type CallManagingOrganisationsGlobalStatsReviewProgressCountData = {
|
|
33644
|
+
body?: never;
|
|
33645
|
+
path?: never;
|
|
33646
|
+
query?: {
|
|
33647
|
+
customer?: string;
|
|
33648
|
+
customer_keyword?: string;
|
|
33649
|
+
customer_uuid?: string;
|
|
33650
|
+
/**
|
|
33651
|
+
* Ordering
|
|
33652
|
+
*
|
|
33653
|
+
*
|
|
33654
|
+
*/
|
|
33655
|
+
o?: Array<CallManagingOrganisationOEnum>;
|
|
33656
|
+
/**
|
|
33657
|
+
* A page number within the paginated result set.
|
|
33658
|
+
*/
|
|
33659
|
+
page?: number;
|
|
33660
|
+
/**
|
|
33661
|
+
* Number of results to return per page.
|
|
33662
|
+
*/
|
|
33663
|
+
page_size?: number;
|
|
33664
|
+
};
|
|
33665
|
+
url: '/api/call-managing-organisations/global_stats_review_progress/';
|
|
33666
|
+
};
|
|
33667
|
+
export type CallManagingOrganisationsGlobalStatsReviewProgressCountResponses = {
|
|
33668
|
+
/**
|
|
33669
|
+
* No response body
|
|
33670
|
+
*/
|
|
33671
|
+
200: unknown;
|
|
33672
|
+
};
|
|
32952
33673
|
export type CallProposalProjectRoleMappingsListData = {
|
|
32953
33674
|
body?: never;
|
|
32954
33675
|
path?: never;
|
|
@@ -33164,6 +33885,18 @@ export type CallReviewerPoolsDeclineResponses = {
|
|
|
33164
33885
|
200: InvitationDeclineResponse;
|
|
33165
33886
|
};
|
|
33166
33887
|
export type CallReviewerPoolsDeclineResponse = CallReviewerPoolsDeclineResponses[keyof CallReviewerPoolsDeclineResponses];
|
|
33888
|
+
export type CallReviewerPoolsForceAcceptData = {
|
|
33889
|
+
body: ForceAcceptPoolRequest;
|
|
33890
|
+
path: {
|
|
33891
|
+
uuid: string;
|
|
33892
|
+
};
|
|
33893
|
+
query?: never;
|
|
33894
|
+
url: '/api/call-reviewer-pools/{uuid}/force-accept/';
|
|
33895
|
+
};
|
|
33896
|
+
export type CallReviewerPoolsForceAcceptResponses = {
|
|
33897
|
+
200: CallReviewerPool;
|
|
33898
|
+
};
|
|
33899
|
+
export type CallReviewerPoolsForceAcceptResponse = CallReviewerPoolsForceAcceptResponses[keyof CallReviewerPoolsForceAcceptResponses];
|
|
33167
33900
|
export type CallRoundsListData = {
|
|
33168
33901
|
body?: never;
|
|
33169
33902
|
path?: never;
|
|
@@ -33338,6 +34071,8 @@ export type ChatThreadsListData = {
|
|
|
33338
34071
|
query?: {
|
|
33339
34072
|
created?: string;
|
|
33340
34073
|
field?: Array<ThreadSessionFieldEnum>;
|
|
34074
|
+
input_tokens_max?: number;
|
|
34075
|
+
input_tokens_min?: number;
|
|
33341
34076
|
is_archived?: boolean;
|
|
33342
34077
|
is_flagged?: boolean;
|
|
33343
34078
|
max_severity?: InjectionSeverityEnum;
|
|
@@ -33348,6 +34083,8 @@ export type ChatThreadsListData = {
|
|
|
33348
34083
|
*
|
|
33349
34084
|
*/
|
|
33350
34085
|
o?: Array<ThreadSessionOEnum>;
|
|
34086
|
+
output_tokens_max?: number;
|
|
34087
|
+
output_tokens_min?: number;
|
|
33351
34088
|
/**
|
|
33352
34089
|
* A page number within the paginated result set.
|
|
33353
34090
|
*/
|
|
@@ -33357,6 +34094,8 @@ export type ChatThreadsListData = {
|
|
|
33357
34094
|
*/
|
|
33358
34095
|
page_size?: number;
|
|
33359
34096
|
query?: string;
|
|
34097
|
+
total_tokens_max?: number;
|
|
34098
|
+
total_tokens_min?: number;
|
|
33360
34099
|
user?: string;
|
|
33361
34100
|
};
|
|
33362
34101
|
url: '/api/chat-threads/';
|
|
@@ -33394,6 +34133,20 @@ export type ChatThreadsArchiveResponses = {
|
|
|
33394
34133
|
204: void;
|
|
33395
34134
|
};
|
|
33396
34135
|
export type ChatThreadsArchiveResponse = ChatThreadsArchiveResponses[keyof ChatThreadsArchiveResponses];
|
|
34136
|
+
export type ChatThreadsCancelData = {
|
|
34137
|
+
body?: ThreadSessionRequest;
|
|
34138
|
+
path: {
|
|
34139
|
+
uuid: string;
|
|
34140
|
+
};
|
|
34141
|
+
query?: never;
|
|
34142
|
+
url: '/api/chat-threads/{uuid}/cancel/';
|
|
34143
|
+
};
|
|
34144
|
+
export type ChatThreadsCancelResponses = {
|
|
34145
|
+
/**
|
|
34146
|
+
* No response body
|
|
34147
|
+
*/
|
|
34148
|
+
200: unknown;
|
|
34149
|
+
};
|
|
33397
34150
|
export type ChatThreadsUnarchiveData = {
|
|
33398
34151
|
body?: ThreadSessionRequest;
|
|
33399
34152
|
path: {
|
|
@@ -34776,6 +35529,10 @@ export type CustomersListData = {
|
|
|
34776
35529
|
* Filter by service provider UUID.
|
|
34777
35530
|
*/
|
|
34778
35531
|
service_provider_uuid?: string;
|
|
35532
|
+
/**
|
|
35533
|
+
* Slug
|
|
35534
|
+
*/
|
|
35535
|
+
slug?: string;
|
|
34779
35536
|
/**
|
|
34780
35537
|
* Filter by user UUID.
|
|
34781
35538
|
*/
|
|
@@ -34867,6 +35624,10 @@ export type CustomersCountData = {
|
|
|
34867
35624
|
* Filter by service provider UUID.
|
|
34868
35625
|
*/
|
|
34869
35626
|
service_provider_uuid?: string;
|
|
35627
|
+
/**
|
|
35628
|
+
* Slug
|
|
35629
|
+
*/
|
|
35630
|
+
slug?: string;
|
|
34870
35631
|
/**
|
|
34871
35632
|
* Filter by user UUID.
|
|
34872
35633
|
*/
|
|
@@ -35258,6 +36019,10 @@ export type CustomersHistoryListData = {
|
|
|
35258
36019
|
* Filter by service provider UUID.
|
|
35259
36020
|
*/
|
|
35260
36021
|
service_provider_uuid?: string;
|
|
36022
|
+
/**
|
|
36023
|
+
* Slug
|
|
36024
|
+
*/
|
|
36025
|
+
slug?: string;
|
|
35261
36026
|
/**
|
|
35262
36027
|
* Filter by user UUID.
|
|
35263
36028
|
*/
|
|
@@ -35542,96 +36307,104 @@ export type CustomersCountriesListData = {
|
|
|
35542
36307
|
*/
|
|
35543
36308
|
service_provider_uuid?: string;
|
|
35544
36309
|
/**
|
|
35545
|
-
*
|
|
35546
|
-
*/
|
|
35547
|
-
|
|
35548
|
-
|
|
35549
|
-
|
|
35550
|
-
|
|
35551
|
-
|
|
35552
|
-
|
|
35553
|
-
|
|
35554
|
-
|
|
35555
|
-
export type
|
|
35556
|
-
|
|
35557
|
-
|
|
35558
|
-
|
|
35559
|
-
|
|
35560
|
-
|
|
35561
|
-
|
|
35562
|
-
|
|
35563
|
-
/**
|
|
35564
|
-
*
|
|
35565
|
-
*/
|
|
35566
|
-
|
|
35567
|
-
|
|
35568
|
-
|
|
35569
|
-
|
|
35570
|
-
|
|
35571
|
-
|
|
35572
|
-
|
|
35573
|
-
|
|
35574
|
-
/**
|
|
35575
|
-
*
|
|
35576
|
-
*/
|
|
35577
|
-
|
|
35578
|
-
/**
|
|
35579
|
-
*
|
|
35580
|
-
*/
|
|
35581
|
-
|
|
35582
|
-
/**
|
|
35583
|
-
* Filter by customers
|
|
35584
|
-
*/
|
|
35585
|
-
|
|
35586
|
-
/**
|
|
35587
|
-
* Filter by customers that are
|
|
35588
|
-
*/
|
|
35589
|
-
|
|
35590
|
-
/**
|
|
35591
|
-
*
|
|
35592
|
-
*/
|
|
35593
|
-
|
|
35594
|
-
/**
|
|
35595
|
-
* Name
|
|
35596
|
-
*/
|
|
35597
|
-
|
|
35598
|
-
/**
|
|
35599
|
-
*
|
|
35600
|
-
*/
|
|
35601
|
-
|
|
35602
|
-
/**
|
|
35603
|
-
*
|
|
35604
|
-
*/
|
|
35605
|
-
|
|
35606
|
-
/**
|
|
35607
|
-
*
|
|
35608
|
-
*/
|
|
35609
|
-
|
|
35610
|
-
/**
|
|
35611
|
-
* Organization group
|
|
35612
|
-
*/
|
|
35613
|
-
|
|
35614
|
-
/**
|
|
35615
|
-
*
|
|
35616
|
-
*/
|
|
35617
|
-
|
|
35618
|
-
/**
|
|
35619
|
-
*
|
|
35620
|
-
*/
|
|
35621
|
-
|
|
35622
|
-
/**
|
|
35623
|
-
*
|
|
35624
|
-
*/
|
|
35625
|
-
|
|
35626
|
-
/**
|
|
35627
|
-
*
|
|
35628
|
-
*/
|
|
35629
|
-
|
|
35630
|
-
|
|
35631
|
-
|
|
35632
|
-
|
|
36310
|
+
* Slug
|
|
36311
|
+
*/
|
|
36312
|
+
slug?: string;
|
|
36313
|
+
/**
|
|
36314
|
+
* Filter by user UUID.
|
|
36315
|
+
*/
|
|
36316
|
+
user_uuid?: string;
|
|
36317
|
+
};
|
|
36318
|
+
url: '/api/customers/countries/';
|
|
36319
|
+
};
|
|
36320
|
+
export type CustomersCountriesListResponses = {
|
|
36321
|
+
200: Array<Country>;
|
|
36322
|
+
};
|
|
36323
|
+
export type CustomersCountriesListResponse = CustomersCountriesListResponses[keyof CustomersCountriesListResponses];
|
|
36324
|
+
export type CustomersCountriesCountData = {
|
|
36325
|
+
body?: never;
|
|
36326
|
+
path?: never;
|
|
36327
|
+
query?: {
|
|
36328
|
+
/**
|
|
36329
|
+
* Abbreviation
|
|
36330
|
+
*/
|
|
36331
|
+
abbreviation?: string;
|
|
36332
|
+
/**
|
|
36333
|
+
* Filter by whether accounting is running.
|
|
36334
|
+
*/
|
|
36335
|
+
accounting_is_running?: boolean;
|
|
36336
|
+
agreement_number?: string;
|
|
36337
|
+
archived?: boolean;
|
|
36338
|
+
backend_id?: string;
|
|
36339
|
+
/**
|
|
36340
|
+
* Contact details
|
|
36341
|
+
*/
|
|
36342
|
+
contact_details?: string;
|
|
36343
|
+
/**
|
|
36344
|
+
* Return a list of customers where current user has project create permission.
|
|
36345
|
+
*/
|
|
36346
|
+
current_user_has_project_create_permission?: boolean;
|
|
36347
|
+
/**
|
|
36348
|
+
* Filter by customers with resources.
|
|
36349
|
+
*/
|
|
36350
|
+
has_resources?: string;
|
|
36351
|
+
/**
|
|
36352
|
+
* Filter by customers that are call managing organizations.
|
|
36353
|
+
*/
|
|
36354
|
+
is_call_managing_organization?: boolean;
|
|
36355
|
+
/**
|
|
36356
|
+
* Filter by customers that are service providers.
|
|
36357
|
+
*/
|
|
36358
|
+
is_service_provider?: boolean;
|
|
36359
|
+
/**
|
|
36360
|
+
* Name
|
|
36361
|
+
*/
|
|
36362
|
+
name?: string;
|
|
36363
|
+
/**
|
|
36364
|
+
* Name (exact)
|
|
36365
|
+
*/
|
|
36366
|
+
name_exact?: string;
|
|
36367
|
+
/**
|
|
36368
|
+
* Native name
|
|
36369
|
+
*/
|
|
36370
|
+
native_name?: string;
|
|
36371
|
+
/**
|
|
36372
|
+
* Which field to use when ordering the results.
|
|
36373
|
+
*/
|
|
36374
|
+
o?: string;
|
|
36375
|
+
/**
|
|
36376
|
+
* Organization group name
|
|
36377
|
+
*/
|
|
36378
|
+
organization_group_name?: string;
|
|
36379
|
+
/**
|
|
36380
|
+
* Organization group UUID
|
|
36381
|
+
*/
|
|
36382
|
+
organization_group_uuid?: Array<string>;
|
|
36383
|
+
/**
|
|
36384
|
+
* Return a list of customers where current user is owner.
|
|
36385
|
+
*/
|
|
36386
|
+
owned_by_current_user?: boolean;
|
|
36387
|
+
/**
|
|
36388
|
+
* A page number within the paginated result set.
|
|
36389
|
+
*/
|
|
36390
|
+
page?: number;
|
|
36391
|
+
/**
|
|
36392
|
+
* Number of results to return per page.
|
|
36393
|
+
*/
|
|
36394
|
+
page_size?: number;
|
|
36395
|
+
/**
|
|
36396
|
+
* Filter by name, native name, abbreviation, domain, UUID, registration code or agreement number
|
|
36397
|
+
*/
|
|
36398
|
+
query?: string;
|
|
36399
|
+
registration_code?: string;
|
|
36400
|
+
/**
|
|
36401
|
+
* Filter by service provider UUID.
|
|
36402
|
+
*/
|
|
36403
|
+
service_provider_uuid?: string;
|
|
36404
|
+
/**
|
|
36405
|
+
* Slug
|
|
35633
36406
|
*/
|
|
35634
|
-
|
|
36407
|
+
slug?: string;
|
|
35635
36408
|
/**
|
|
35636
36409
|
* Filter by user UUID.
|
|
35637
36410
|
*/
|
|
@@ -37250,6 +38023,10 @@ export type FinancialReportsListData = {
|
|
|
37250
38023
|
*/
|
|
37251
38024
|
query?: string;
|
|
37252
38025
|
registration_code?: string;
|
|
38026
|
+
/**
|
|
38027
|
+
* Slug
|
|
38028
|
+
*/
|
|
38029
|
+
slug?: string;
|
|
37253
38030
|
/**
|
|
37254
38031
|
* Filter by year.
|
|
37255
38032
|
*/
|
|
@@ -37333,6 +38110,10 @@ export type FinancialReportsCountData = {
|
|
|
37333
38110
|
*/
|
|
37334
38111
|
query?: string;
|
|
37335
38112
|
registration_code?: string;
|
|
38113
|
+
/**
|
|
38114
|
+
* Slug
|
|
38115
|
+
*/
|
|
38116
|
+
slug?: string;
|
|
37336
38117
|
/**
|
|
37337
38118
|
* Filter by year.
|
|
37338
38119
|
*/
|
|
@@ -37915,6 +38696,16 @@ export type IdentityBridgeResponses = {
|
|
|
37915
38696
|
200: IdentityBridgeResult;
|
|
37916
38697
|
};
|
|
37917
38698
|
export type IdentityBridgeResponse = IdentityBridgeResponses[keyof IdentityBridgeResponses];
|
|
38699
|
+
export type IdentityBridgeAllowedFieldsRetrieveData = {
|
|
38700
|
+
body?: never;
|
|
38701
|
+
path?: never;
|
|
38702
|
+
query?: never;
|
|
38703
|
+
url: '/api/identity-bridge/allowed-fields/';
|
|
38704
|
+
};
|
|
38705
|
+
export type IdentityBridgeAllowedFieldsRetrieveResponses = {
|
|
38706
|
+
200: IdentityBridgeAllowedFields;
|
|
38707
|
+
};
|
|
38708
|
+
export type IdentityBridgeAllowedFieldsRetrieveResponse = IdentityBridgeAllowedFieldsRetrieveResponses[keyof IdentityBridgeAllowedFieldsRetrieveResponses];
|
|
37918
38709
|
export type IdentityBridgeRemoveData = {
|
|
37919
38710
|
body: IdentityBridgeRemoveRequest;
|
|
37920
38711
|
path?: never;
|
|
@@ -40031,6 +40822,35 @@ export type ManagedRancherClusterResourcesAddNodeResponses = {
|
|
|
40031
40822
|
200: RancherNode;
|
|
40032
40823
|
};
|
|
40033
40824
|
export type ManagedRancherClusterResourcesAddNodeResponse = ManagedRancherClusterResourcesAddNodeResponses[keyof ManagedRancherClusterResourcesAddNodeResponses];
|
|
40825
|
+
export type MarketplaceArticleCodeUpdateApplyData = {
|
|
40826
|
+
body: ArticleCodeUpdateApplyRequest;
|
|
40827
|
+
path?: never;
|
|
40828
|
+
query?: never;
|
|
40829
|
+
url: '/api/marketplace-article-code-update/apply/';
|
|
40830
|
+
};
|
|
40831
|
+
export type MarketplaceArticleCodeUpdateApplyResponses = {
|
|
40832
|
+
200: ArticleCodeUpdateApplyResponse;
|
|
40833
|
+
};
|
|
40834
|
+
export type MarketplaceArticleCodeUpdateApplyResponse = MarketplaceArticleCodeUpdateApplyResponses[keyof MarketplaceArticleCodeUpdateApplyResponses];
|
|
40835
|
+
export type MarketplaceArticleCodeUpdatePreviewData = {
|
|
40836
|
+
body: ArticleCodeUpdatePreviewRequest;
|
|
40837
|
+
path?: never;
|
|
40838
|
+
query?: {
|
|
40839
|
+
/**
|
|
40840
|
+
* A page number within the paginated result set.
|
|
40841
|
+
*/
|
|
40842
|
+
page?: number;
|
|
40843
|
+
/**
|
|
40844
|
+
* Number of results to return per page.
|
|
40845
|
+
*/
|
|
40846
|
+
page_size?: number;
|
|
40847
|
+
};
|
|
40848
|
+
url: '/api/marketplace-article-code-update/preview/';
|
|
40849
|
+
};
|
|
40850
|
+
export type MarketplaceArticleCodeUpdatePreviewResponses = {
|
|
40851
|
+
200: Array<ArticleCodeUpdatePreviewItem>;
|
|
40852
|
+
};
|
|
40853
|
+
export type MarketplaceArticleCodeUpdatePreviewResponse = MarketplaceArticleCodeUpdatePreviewResponses[keyof MarketplaceArticleCodeUpdatePreviewResponses];
|
|
40034
40854
|
export type MarketplaceAttributeOptionsListData = {
|
|
40035
40855
|
body?: never;
|
|
40036
40856
|
path?: never;
|
|
@@ -41467,6 +42287,18 @@ export type MarketplaceCourseAccountsRetrieveResponses = {
|
|
|
41467
42287
|
200: CourseAccount;
|
|
41468
42288
|
};
|
|
41469
42289
|
export type MarketplaceCourseAccountsRetrieveResponse = MarketplaceCourseAccountsRetrieveResponses[keyof MarketplaceCourseAccountsRetrieveResponses];
|
|
42290
|
+
export type MarketplaceCourseAccountsRetryData = {
|
|
42291
|
+
body?: never;
|
|
42292
|
+
path: {
|
|
42293
|
+
uuid: string;
|
|
42294
|
+
};
|
|
42295
|
+
query?: never;
|
|
42296
|
+
url: '/api/marketplace-course-accounts/{uuid}/retry/';
|
|
42297
|
+
};
|
|
42298
|
+
export type MarketplaceCourseAccountsRetryResponses = {
|
|
42299
|
+
202: CourseAccount;
|
|
42300
|
+
};
|
|
42301
|
+
export type MarketplaceCourseAccountsRetryResponse = MarketplaceCourseAccountsRetryResponses[keyof MarketplaceCourseAccountsRetryResponses];
|
|
41470
42302
|
export type MarketplaceCourseAccountsCreateBulkData = {
|
|
41471
42303
|
body: CourseAccountsBulkCreateRequest;
|
|
41472
42304
|
path?: never;
|
|
@@ -44020,6 +44852,10 @@ export type MarketplaceOrdersListData = {
|
|
|
44020
44852
|
* Service manager UUID
|
|
44021
44853
|
*/
|
|
44022
44854
|
service_manager_uuid?: string;
|
|
44855
|
+
/**
|
|
44856
|
+
* Slug
|
|
44857
|
+
*/
|
|
44858
|
+
slug?: string;
|
|
44023
44859
|
/**
|
|
44024
44860
|
* Order state
|
|
44025
44861
|
*
|
|
@@ -44131,6 +44967,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
44131
44967
|
* Service manager UUID
|
|
44132
44968
|
*/
|
|
44133
44969
|
service_manager_uuid?: string;
|
|
44970
|
+
/**
|
|
44971
|
+
* Slug
|
|
44972
|
+
*/
|
|
44973
|
+
slug?: string;
|
|
44134
44974
|
/**
|
|
44135
44975
|
* Order state
|
|
44136
44976
|
*
|
|
@@ -44308,6 +45148,32 @@ export type MarketplaceOrdersRejectByProviderResponses = {
|
|
|
44308
45148
|
*/
|
|
44309
45149
|
200: unknown;
|
|
44310
45150
|
};
|
|
45151
|
+
export type MarketplaceOrdersResourceRetrieveData = {
|
|
45152
|
+
body?: never;
|
|
45153
|
+
path: {
|
|
45154
|
+
uuid: string;
|
|
45155
|
+
};
|
|
45156
|
+
query?: never;
|
|
45157
|
+
url: '/api/marketplace-orders/{uuid}/resource/';
|
|
45158
|
+
};
|
|
45159
|
+
export type MarketplaceOrdersResourceRetrieveResponses = {
|
|
45160
|
+
200: Resource;
|
|
45161
|
+
};
|
|
45162
|
+
export type MarketplaceOrdersResourceRetrieveResponse = MarketplaceOrdersResourceRetrieveResponses[keyof MarketplaceOrdersResourceRetrieveResponses];
|
|
45163
|
+
export type MarketplaceOrdersRetryData = {
|
|
45164
|
+
body?: never;
|
|
45165
|
+
path: {
|
|
45166
|
+
uuid: string;
|
|
45167
|
+
};
|
|
45168
|
+
query?: never;
|
|
45169
|
+
url: '/api/marketplace-orders/{uuid}/retry/';
|
|
45170
|
+
};
|
|
45171
|
+
export type MarketplaceOrdersRetryResponses = {
|
|
45172
|
+
/**
|
|
45173
|
+
* No response body
|
|
45174
|
+
*/
|
|
45175
|
+
200: unknown;
|
|
45176
|
+
};
|
|
44311
45177
|
export type MarketplaceOrdersSetBackendIdData = {
|
|
44312
45178
|
body: OrderBackendIdRequest;
|
|
44313
45179
|
path: {
|
|
@@ -44881,6 +45747,7 @@ export type MarketplaceProjectEstimatedCostPoliciesListData = {
|
|
|
44881
45747
|
page_size?: number;
|
|
44882
45748
|
project?: string;
|
|
44883
45749
|
project_uuid?: string;
|
|
45750
|
+
query?: string;
|
|
44884
45751
|
scope?: string;
|
|
44885
45752
|
scope_uuid?: string;
|
|
44886
45753
|
};
|
|
@@ -44906,6 +45773,7 @@ export type MarketplaceProjectEstimatedCostPoliciesCountData = {
|
|
|
44906
45773
|
page_size?: number;
|
|
44907
45774
|
project?: string;
|
|
44908
45775
|
project_uuid?: string;
|
|
45776
|
+
query?: string;
|
|
44909
45777
|
scope?: string;
|
|
44910
45778
|
scope_uuid?: string;
|
|
44911
45779
|
};
|
|
@@ -45379,6 +46247,10 @@ export type MarketplaceProviderOfferingsListData = {
|
|
|
45379
46247
|
* Shared
|
|
45380
46248
|
*/
|
|
45381
46249
|
shared?: boolean;
|
|
46250
|
+
/**
|
|
46251
|
+
* Slug
|
|
46252
|
+
*/
|
|
46253
|
+
slug?: string;
|
|
45382
46254
|
/**
|
|
45383
46255
|
* Offering state
|
|
45384
46256
|
*
|
|
@@ -45555,6 +46427,10 @@ export type MarketplaceProviderOfferingsCountData = {
|
|
|
45555
46427
|
* Shared
|
|
45556
46428
|
*/
|
|
45557
46429
|
shared?: boolean;
|
|
46430
|
+
/**
|
|
46431
|
+
* Slug
|
|
46432
|
+
*/
|
|
46433
|
+
slug?: string;
|
|
45558
46434
|
/**
|
|
45559
46435
|
* Offering state
|
|
45560
46436
|
*
|
|
@@ -45868,6 +46744,10 @@ export type MarketplaceProviderOfferingsComponentStatsListData = {
|
|
|
45868
46744
|
* Shared
|
|
45869
46745
|
*/
|
|
45870
46746
|
shared?: boolean;
|
|
46747
|
+
/**
|
|
46748
|
+
* Slug
|
|
46749
|
+
*/
|
|
46750
|
+
slug?: string;
|
|
45871
46751
|
/**
|
|
45872
46752
|
* Start date in format YYYY-MM.
|
|
45873
46753
|
*/
|
|
@@ -46055,6 +46935,10 @@ export type MarketplaceProviderOfferingsCostsListData = {
|
|
|
46055
46935
|
* Shared
|
|
46056
46936
|
*/
|
|
46057
46937
|
shared?: boolean;
|
|
46938
|
+
/**
|
|
46939
|
+
* Slug
|
|
46940
|
+
*/
|
|
46941
|
+
slug?: string;
|
|
46058
46942
|
/**
|
|
46059
46943
|
* Start date in format YYYY-MM.
|
|
46060
46944
|
*/
|
|
@@ -46252,6 +47136,10 @@ export type MarketplaceProviderOfferingsCustomersListData = {
|
|
|
46252
47136
|
* Shared
|
|
46253
47137
|
*/
|
|
46254
47138
|
shared?: boolean;
|
|
47139
|
+
/**
|
|
47140
|
+
* Slug
|
|
47141
|
+
*/
|
|
47142
|
+
slug?: string;
|
|
46255
47143
|
/**
|
|
46256
47144
|
* Offering state
|
|
46257
47145
|
*
|
|
@@ -46574,6 +47462,10 @@ export type MarketplaceProviderOfferingsHistoryListData = {
|
|
|
46574
47462
|
* Shared
|
|
46575
47463
|
*/
|
|
46576
47464
|
shared?: boolean;
|
|
47465
|
+
/**
|
|
47466
|
+
* Slug
|
|
47467
|
+
*/
|
|
47468
|
+
slug?: string;
|
|
46577
47469
|
/**
|
|
46578
47470
|
* Offering state
|
|
46579
47471
|
*
|
|
@@ -46811,6 +47703,10 @@ export type MarketplaceProviderOfferingsListCourseAccountsListData = {
|
|
|
46811
47703
|
* Shared
|
|
46812
47704
|
*/
|
|
46813
47705
|
shared?: boolean;
|
|
47706
|
+
/**
|
|
47707
|
+
* Slug
|
|
47708
|
+
*/
|
|
47709
|
+
slug?: string;
|
|
46814
47710
|
/**
|
|
46815
47711
|
* Offering state
|
|
46816
47712
|
*
|
|
@@ -47011,6 +47907,10 @@ export type MarketplaceProviderOfferingsListCustomerServiceAccountsListData = {
|
|
|
47011
47907
|
* Shared
|
|
47012
47908
|
*/
|
|
47013
47909
|
shared?: boolean;
|
|
47910
|
+
/**
|
|
47911
|
+
* Slug
|
|
47912
|
+
*/
|
|
47913
|
+
slug?: string;
|
|
47014
47914
|
/**
|
|
47015
47915
|
* Offering state
|
|
47016
47916
|
*
|
|
@@ -47211,6 +48111,10 @@ export type MarketplaceProviderOfferingsListProjectServiceAccountsListData = {
|
|
|
47211
48111
|
* Shared
|
|
47212
48112
|
*/
|
|
47213
48113
|
shared?: boolean;
|
|
48114
|
+
/**
|
|
48115
|
+
* Slug
|
|
48116
|
+
*/
|
|
48117
|
+
slug?: string;
|
|
47214
48118
|
/**
|
|
47215
48119
|
* Offering state
|
|
47216
48120
|
*
|
|
@@ -47470,6 +48374,18 @@ export type MarketplaceProviderOfferingsSetBackendMetadataResponses = {
|
|
|
47470
48374
|
*/
|
|
47471
48375
|
200: unknown;
|
|
47472
48376
|
};
|
|
48377
|
+
export type MarketplaceProviderOfferingsStateCountersRetrieveData = {
|
|
48378
|
+
body?: never;
|
|
48379
|
+
path: {
|
|
48380
|
+
uuid: string;
|
|
48381
|
+
};
|
|
48382
|
+
query?: never;
|
|
48383
|
+
url: '/api/marketplace-provider-offerings/{uuid}/state_counters/';
|
|
48384
|
+
};
|
|
48385
|
+
export type MarketplaceProviderOfferingsStateCountersRetrieveResponses = {
|
|
48386
|
+
200: OfferingStateCounters;
|
|
48387
|
+
};
|
|
48388
|
+
export type MarketplaceProviderOfferingsStateCountersRetrieveResponse = MarketplaceProviderOfferingsStateCountersRetrieveResponses[keyof MarketplaceProviderOfferingsStateCountersRetrieveResponses];
|
|
47473
48389
|
export type MarketplaceProviderOfferingsStatsRetrieveData = {
|
|
47474
48390
|
body?: never;
|
|
47475
48391
|
path: {
|
|
@@ -47485,6 +48401,20 @@ export type MarketplaceProviderOfferingsStatsRetrieveResponses = {
|
|
|
47485
48401
|
};
|
|
47486
48402
|
};
|
|
47487
48403
|
export type MarketplaceProviderOfferingsStatsRetrieveResponse = MarketplaceProviderOfferingsStatsRetrieveResponses[keyof MarketplaceProviderOfferingsStatsRetrieveResponses];
|
|
48404
|
+
export type MarketplaceProviderOfferingsSwitchBillingModeData = {
|
|
48405
|
+
body: SwitchBillingModeRequest;
|
|
48406
|
+
path: {
|
|
48407
|
+
uuid: string;
|
|
48408
|
+
};
|
|
48409
|
+
query?: never;
|
|
48410
|
+
url: '/api/marketplace-provider-offerings/{uuid}/switch_billing_mode/';
|
|
48411
|
+
};
|
|
48412
|
+
export type MarketplaceProviderOfferingsSwitchBillingModeResponses = {
|
|
48413
|
+
/**
|
|
48414
|
+
* No response body
|
|
48415
|
+
*/
|
|
48416
|
+
200: unknown;
|
|
48417
|
+
};
|
|
47488
48418
|
export type MarketplaceProviderOfferingsSyncData = {
|
|
47489
48419
|
body?: never;
|
|
47490
48420
|
path: {
|
|
@@ -47950,6 +48880,10 @@ export type MarketplaceProviderOfferingsGroupsListData = {
|
|
|
47950
48880
|
* Shared
|
|
47951
48881
|
*/
|
|
47952
48882
|
shared?: boolean;
|
|
48883
|
+
/**
|
|
48884
|
+
* Slug
|
|
48885
|
+
*/
|
|
48886
|
+
slug?: string;
|
|
47953
48887
|
/**
|
|
47954
48888
|
* Offering state
|
|
47955
48889
|
*
|
|
@@ -48122,6 +49056,10 @@ export type MarketplaceProviderOfferingsGroupsCountData = {
|
|
|
48122
49056
|
* Shared
|
|
48123
49057
|
*/
|
|
48124
49058
|
shared?: boolean;
|
|
49059
|
+
/**
|
|
49060
|
+
* Slug
|
|
49061
|
+
*/
|
|
49062
|
+
slug?: string;
|
|
48125
49063
|
/**
|
|
48126
49064
|
* Offering state
|
|
48127
49065
|
*
|
|
@@ -48326,6 +49264,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
48326
49264
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
48327
49265
|
*/
|
|
48328
49266
|
query?: string;
|
|
49267
|
+
/**
|
|
49268
|
+
* Resource attributes (JSON)
|
|
49269
|
+
*/
|
|
49270
|
+
resource_attributes?: string;
|
|
48329
49271
|
/**
|
|
48330
49272
|
* Restrict member access
|
|
48331
49273
|
*/
|
|
@@ -48342,6 +49284,10 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
48342
49284
|
* Service manager UUID
|
|
48343
49285
|
*/
|
|
48344
49286
|
service_manager_uuid?: string;
|
|
49287
|
+
/**
|
|
49288
|
+
* Slug
|
|
49289
|
+
*/
|
|
49290
|
+
slug?: string;
|
|
48345
49291
|
/**
|
|
48346
49292
|
* Resource state
|
|
48347
49293
|
*
|
|
@@ -48513,6 +49459,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
48513
49459
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
48514
49460
|
*/
|
|
48515
49461
|
query?: string;
|
|
49462
|
+
/**
|
|
49463
|
+
* Resource attributes (JSON)
|
|
49464
|
+
*/
|
|
49465
|
+
resource_attributes?: string;
|
|
48516
49466
|
/**
|
|
48517
49467
|
* Restrict member access
|
|
48518
49468
|
*/
|
|
@@ -48529,6 +49479,10 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
48529
49479
|
* Service manager UUID
|
|
48530
49480
|
*/
|
|
48531
49481
|
service_manager_uuid?: string;
|
|
49482
|
+
/**
|
|
49483
|
+
* Slug
|
|
49484
|
+
*/
|
|
49485
|
+
slug?: string;
|
|
48532
49486
|
/**
|
|
48533
49487
|
* Resource state
|
|
48534
49488
|
*
|
|
@@ -48776,6 +49730,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
48776
49730
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
48777
49731
|
*/
|
|
48778
49732
|
query?: string;
|
|
49733
|
+
/**
|
|
49734
|
+
* Resource attributes (JSON)
|
|
49735
|
+
*/
|
|
49736
|
+
resource_attributes?: string;
|
|
48779
49737
|
/**
|
|
48780
49738
|
* Restrict member access
|
|
48781
49739
|
*/
|
|
@@ -48792,6 +49750,10 @@ export type MarketplaceProviderResourcesHistoryListData = {
|
|
|
48792
49750
|
* Service manager UUID
|
|
48793
49751
|
*/
|
|
48794
49752
|
service_manager_uuid?: string;
|
|
49753
|
+
/**
|
|
49754
|
+
* Slug
|
|
49755
|
+
*/
|
|
49756
|
+
slug?: string;
|
|
48795
49757
|
/**
|
|
48796
49758
|
* Resource state
|
|
48797
49759
|
*
|
|
@@ -48997,6 +49959,32 @@ export type MarketplaceProviderResourcesSetDownscaledResponses = {
|
|
|
48997
49959
|
};
|
|
48998
49960
|
};
|
|
48999
49961
|
export type MarketplaceProviderResourcesSetDownscaledResponse = MarketplaceProviderResourcesSetDownscaledResponses[keyof MarketplaceProviderResourcesSetDownscaledResponses];
|
|
49962
|
+
export type MarketplaceProviderResourcesSetEffectiveIdData = {
|
|
49963
|
+
body?: ResourceEffectiveIdRequest;
|
|
49964
|
+
path: {
|
|
49965
|
+
uuid: string;
|
|
49966
|
+
};
|
|
49967
|
+
query?: never;
|
|
49968
|
+
url: '/api/marketplace-provider-resources/{uuid}/set_effective_id/';
|
|
49969
|
+
};
|
|
49970
|
+
export type MarketplaceProviderResourcesSetEffectiveIdResponses = {
|
|
49971
|
+
200: ResourceResponseStatus;
|
|
49972
|
+
};
|
|
49973
|
+
export type MarketplaceProviderResourcesSetEffectiveIdResponse = MarketplaceProviderResourcesSetEffectiveIdResponses[keyof MarketplaceProviderResourcesSetEffectiveIdResponses];
|
|
49974
|
+
export type MarketplaceProviderResourcesSetEndDateData = {
|
|
49975
|
+
body?: ResourceEndDateRequest;
|
|
49976
|
+
path: {
|
|
49977
|
+
uuid: string;
|
|
49978
|
+
};
|
|
49979
|
+
query?: never;
|
|
49980
|
+
url: '/api/marketplace-provider-resources/{uuid}/set_end_date/';
|
|
49981
|
+
};
|
|
49982
|
+
export type MarketplaceProviderResourcesSetEndDateResponses = {
|
|
49983
|
+
/**
|
|
49984
|
+
* No response body
|
|
49985
|
+
*/
|
|
49986
|
+
200: unknown;
|
|
49987
|
+
};
|
|
49000
49988
|
export type MarketplaceProviderResourcesSetEndDateByProviderData = {
|
|
49001
49989
|
body?: ResourceEndDateByProviderRequest;
|
|
49002
49990
|
path: {
|
|
@@ -49343,6 +50331,10 @@ export type MarketplacePublicOfferingsListData = {
|
|
|
49343
50331
|
* Shared
|
|
49344
50332
|
*/
|
|
49345
50333
|
shared?: boolean;
|
|
50334
|
+
/**
|
|
50335
|
+
* Slug
|
|
50336
|
+
*/
|
|
50337
|
+
slug?: string;
|
|
49346
50338
|
/**
|
|
49347
50339
|
* Offering state
|
|
49348
50340
|
*
|
|
@@ -49515,6 +50507,10 @@ export type MarketplacePublicOfferingsCountData = {
|
|
|
49515
50507
|
* Shared
|
|
49516
50508
|
*/
|
|
49517
50509
|
shared?: boolean;
|
|
50510
|
+
/**
|
|
50511
|
+
* Slug
|
|
50512
|
+
*/
|
|
50513
|
+
slug?: string;
|
|
49518
50514
|
/**
|
|
49519
50515
|
* Offering state
|
|
49520
50516
|
*
|
|
@@ -50036,6 +51032,10 @@ export type MarketplaceResourcesListData = {
|
|
|
50036
51032
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
50037
51033
|
*/
|
|
50038
51034
|
query?: string;
|
|
51035
|
+
/**
|
|
51036
|
+
* Resource attributes (JSON)
|
|
51037
|
+
*/
|
|
51038
|
+
resource_attributes?: string;
|
|
50039
51039
|
/**
|
|
50040
51040
|
* Restrict member access
|
|
50041
51041
|
*/
|
|
@@ -50052,6 +51052,10 @@ export type MarketplaceResourcesListData = {
|
|
|
50052
51052
|
* Service manager UUID
|
|
50053
51053
|
*/
|
|
50054
51054
|
service_manager_uuid?: string;
|
|
51055
|
+
/**
|
|
51056
|
+
* Slug
|
|
51057
|
+
*/
|
|
51058
|
+
slug?: string;
|
|
50055
51059
|
/**
|
|
50056
51060
|
* Resource state
|
|
50057
51061
|
*
|
|
@@ -50223,6 +51227,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
50223
51227
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
50224
51228
|
*/
|
|
50225
51229
|
query?: string;
|
|
51230
|
+
/**
|
|
51231
|
+
* Resource attributes (JSON)
|
|
51232
|
+
*/
|
|
51233
|
+
resource_attributes?: string;
|
|
50226
51234
|
/**
|
|
50227
51235
|
* Restrict member access
|
|
50228
51236
|
*/
|
|
@@ -50239,6 +51247,10 @@ export type MarketplaceResourcesCountData = {
|
|
|
50239
51247
|
* Service manager UUID
|
|
50240
51248
|
*/
|
|
50241
51249
|
service_manager_uuid?: string;
|
|
51250
|
+
/**
|
|
51251
|
+
* Slug
|
|
51252
|
+
*/
|
|
51253
|
+
slug?: string;
|
|
50242
51254
|
/**
|
|
50243
51255
|
* Resource state
|
|
50244
51256
|
*
|
|
@@ -50498,6 +51510,10 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
50498
51510
|
* Search by resource UUID, name, slug, backend ID, effective ID, IPs or hypervisor
|
|
50499
51511
|
*/
|
|
50500
51512
|
query?: string;
|
|
51513
|
+
/**
|
|
51514
|
+
* Resource attributes (JSON)
|
|
51515
|
+
*/
|
|
51516
|
+
resource_attributes?: string;
|
|
50501
51517
|
/**
|
|
50502
51518
|
* Restrict member access
|
|
50503
51519
|
*/
|
|
@@ -50514,6 +51530,10 @@ export type MarketplaceResourcesHistoryListData = {
|
|
|
50514
51530
|
* Service manager UUID
|
|
50515
51531
|
*/
|
|
50516
51532
|
service_manager_uuid?: string;
|
|
51533
|
+
/**
|
|
51534
|
+
* Slug
|
|
51535
|
+
*/
|
|
51536
|
+
slug?: string;
|
|
50517
51537
|
/**
|
|
50518
51538
|
* Resource state
|
|
50519
51539
|
*
|
|
@@ -50677,6 +51697,20 @@ export type MarketplaceResourcesSetDownscaledResponses = {
|
|
|
50677
51697
|
};
|
|
50678
51698
|
};
|
|
50679
51699
|
export type MarketplaceResourcesSetDownscaledResponse = MarketplaceResourcesSetDownscaledResponses[keyof MarketplaceResourcesSetDownscaledResponses];
|
|
51700
|
+
export type MarketplaceResourcesSetEndDateData = {
|
|
51701
|
+
body?: ResourceEndDateRequest;
|
|
51702
|
+
path: {
|
|
51703
|
+
uuid: string;
|
|
51704
|
+
};
|
|
51705
|
+
query?: never;
|
|
51706
|
+
url: '/api/marketplace-resources/{uuid}/set_end_date/';
|
|
51707
|
+
};
|
|
51708
|
+
export type MarketplaceResourcesSetEndDateResponses = {
|
|
51709
|
+
/**
|
|
51710
|
+
* No response body
|
|
51711
|
+
*/
|
|
51712
|
+
200: unknown;
|
|
51713
|
+
};
|
|
50680
51714
|
export type MarketplaceResourcesSetEndDateByStaffData = {
|
|
50681
51715
|
body?: ResourceEndDateByProviderRequest;
|
|
50682
51716
|
path: {
|
|
@@ -51869,6 +52903,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
|
|
|
51869
52903
|
*/
|
|
51870
52904
|
query?: string;
|
|
51871
52905
|
registration_code?: string;
|
|
52906
|
+
/**
|
|
52907
|
+
* Slug
|
|
52908
|
+
*/
|
|
52909
|
+
slug?: string;
|
|
51872
52910
|
};
|
|
51873
52911
|
url: '/api/marketplace-service-providers/{service_provider_uuid}/customers/';
|
|
51874
52912
|
};
|
|
@@ -52070,6 +53108,10 @@ export type MarketplaceServiceProvidersOfferingsListData = {
|
|
|
52070
53108
|
* Shared
|
|
52071
53109
|
*/
|
|
52072
53110
|
shared?: boolean;
|
|
53111
|
+
/**
|
|
53112
|
+
* Slug
|
|
53113
|
+
*/
|
|
53114
|
+
slug?: string;
|
|
52073
53115
|
/**
|
|
52074
53116
|
* Offering state
|
|
52075
53117
|
*
|
|
@@ -52395,6 +53437,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
52395
53437
|
*/
|
|
52396
53438
|
query?: string;
|
|
52397
53439
|
registration_code?: string;
|
|
53440
|
+
/**
|
|
53441
|
+
* Slug
|
|
53442
|
+
*/
|
|
53443
|
+
slug?: string;
|
|
52398
53444
|
/**
|
|
52399
53445
|
* UUID of the user to get related customers for.
|
|
52400
53446
|
*/
|
|
@@ -54029,6 +55075,9 @@ export type MarketplaceSoftwareTargetsListData = {
|
|
|
54029
55075
|
* Number of results to return per page.
|
|
54030
55076
|
*/
|
|
54031
55077
|
page_size?: number;
|
|
55078
|
+
/**
|
|
55079
|
+
* Filter targets by location/path (case-insensitive partial match)
|
|
55080
|
+
*/
|
|
54032
55081
|
path?: string;
|
|
54033
55082
|
/**
|
|
54034
55083
|
* Filter targets by name (e.g., x86_64, aarch64)
|
|
@@ -54081,6 +55130,9 @@ export type MarketplaceSoftwareTargetsCountData = {
|
|
|
54081
55130
|
* Number of results to return per page.
|
|
54082
55131
|
*/
|
|
54083
55132
|
page_size?: number;
|
|
55133
|
+
/**
|
|
55134
|
+
* Filter targets by location/path (case-insensitive partial match)
|
|
55135
|
+
*/
|
|
54084
55136
|
path?: string;
|
|
54085
55137
|
/**
|
|
54086
55138
|
* Filter targets by name (e.g., x86_64, aarch64)
|
|
@@ -54532,6 +55584,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingListData = {
|
|
|
54532
55584
|
body?: never;
|
|
54533
55585
|
path?: never;
|
|
54534
55586
|
query?: {
|
|
55587
|
+
/**
|
|
55588
|
+
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55589
|
+
*/
|
|
55590
|
+
limit?: number;
|
|
54535
55591
|
/**
|
|
54536
55592
|
* A page number within the paginated result set.
|
|
54537
55593
|
*/
|
|
@@ -54551,6 +55607,10 @@ export type MarketplaceStatsCountActiveResourcesGroupedByOfferingCountData = {
|
|
|
54551
55607
|
body?: never;
|
|
54552
55608
|
path?: never;
|
|
54553
55609
|
query?: {
|
|
55610
|
+
/**
|
|
55611
|
+
* Limit number of results (e.g. top N offerings). No limit by default.
|
|
55612
|
+
*/
|
|
55613
|
+
limit?: number;
|
|
54554
55614
|
/**
|
|
54555
55615
|
* A page number within the paginated result set.
|
|
54556
55616
|
*/
|
|
@@ -55482,6 +56542,46 @@ export type MarketplaceStatsProjectClassificationSummaryCountResponses = {
|
|
|
55482
56542
|
*/
|
|
55483
56543
|
200: unknown;
|
|
55484
56544
|
};
|
|
56545
|
+
export type MarketplaceStatsProjectCreationTrendListData = {
|
|
56546
|
+
body?: never;
|
|
56547
|
+
path?: never;
|
|
56548
|
+
query?: {
|
|
56549
|
+
/**
|
|
56550
|
+
* A page number within the paginated result set.
|
|
56551
|
+
*/
|
|
56552
|
+
page?: number;
|
|
56553
|
+
/**
|
|
56554
|
+
* Number of results to return per page.
|
|
56555
|
+
*/
|
|
56556
|
+
page_size?: number;
|
|
56557
|
+
};
|
|
56558
|
+
url: '/api/marketplace-stats/project_creation_trend/';
|
|
56559
|
+
};
|
|
56560
|
+
export type MarketplaceStatsProjectCreationTrendListResponses = {
|
|
56561
|
+
200: Array<ProjectCreationTrend>;
|
|
56562
|
+
};
|
|
56563
|
+
export type MarketplaceStatsProjectCreationTrendListResponse = MarketplaceStatsProjectCreationTrendListResponses[keyof MarketplaceStatsProjectCreationTrendListResponses];
|
|
56564
|
+
export type MarketplaceStatsProjectCreationTrendCountData = {
|
|
56565
|
+
body?: never;
|
|
56566
|
+
path?: never;
|
|
56567
|
+
query?: {
|
|
56568
|
+
/**
|
|
56569
|
+
* A page number within the paginated result set.
|
|
56570
|
+
*/
|
|
56571
|
+
page?: number;
|
|
56572
|
+
/**
|
|
56573
|
+
* Number of results to return per page.
|
|
56574
|
+
*/
|
|
56575
|
+
page_size?: number;
|
|
56576
|
+
};
|
|
56577
|
+
url: '/api/marketplace-stats/project_creation_trend/';
|
|
56578
|
+
};
|
|
56579
|
+
export type MarketplaceStatsProjectCreationTrendCountResponses = {
|
|
56580
|
+
/**
|
|
56581
|
+
* No response body
|
|
56582
|
+
*/
|
|
56583
|
+
200: unknown;
|
|
56584
|
+
};
|
|
55485
56585
|
export type MarketplaceStatsProjectsLimitsGroupedByIndustryFlagRetrieveData = {
|
|
55486
56586
|
body?: never;
|
|
55487
56587
|
path?: never;
|
|
@@ -55666,6 +56766,46 @@ export type MarketplaceStatsProviderResourcesCountResponses = {
|
|
|
55666
56766
|
*/
|
|
55667
56767
|
200: unknown;
|
|
55668
56768
|
};
|
|
56769
|
+
export type MarketplaceStatsResourceCreationTrendListData = {
|
|
56770
|
+
body?: never;
|
|
56771
|
+
path?: never;
|
|
56772
|
+
query?: {
|
|
56773
|
+
/**
|
|
56774
|
+
* A page number within the paginated result set.
|
|
56775
|
+
*/
|
|
56776
|
+
page?: number;
|
|
56777
|
+
/**
|
|
56778
|
+
* Number of results to return per page.
|
|
56779
|
+
*/
|
|
56780
|
+
page_size?: number;
|
|
56781
|
+
};
|
|
56782
|
+
url: '/api/marketplace-stats/resource_creation_trend/';
|
|
56783
|
+
};
|
|
56784
|
+
export type MarketplaceStatsResourceCreationTrendListResponses = {
|
|
56785
|
+
200: Array<ProjectCreationTrend>;
|
|
56786
|
+
};
|
|
56787
|
+
export type MarketplaceStatsResourceCreationTrendListResponse = MarketplaceStatsResourceCreationTrendListResponses[keyof MarketplaceStatsResourceCreationTrendListResponses];
|
|
56788
|
+
export type MarketplaceStatsResourceCreationTrendCountData = {
|
|
56789
|
+
body?: never;
|
|
56790
|
+
path?: never;
|
|
56791
|
+
query?: {
|
|
56792
|
+
/**
|
|
56793
|
+
* A page number within the paginated result set.
|
|
56794
|
+
*/
|
|
56795
|
+
page?: number;
|
|
56796
|
+
/**
|
|
56797
|
+
* Number of results to return per page.
|
|
56798
|
+
*/
|
|
56799
|
+
page_size?: number;
|
|
56800
|
+
};
|
|
56801
|
+
url: '/api/marketplace-stats/resource_creation_trend/';
|
|
56802
|
+
};
|
|
56803
|
+
export type MarketplaceStatsResourceCreationTrendCountResponses = {
|
|
56804
|
+
/**
|
|
56805
|
+
* No response body
|
|
56806
|
+
*/
|
|
56807
|
+
200: unknown;
|
|
56808
|
+
};
|
|
55669
56809
|
export type MarketplaceStatsResourceProvisioningStatsListData = {
|
|
55670
56810
|
body?: never;
|
|
55671
56811
|
path?: never;
|
|
@@ -55952,6 +57092,54 @@ export type MarketplaceStatsResourcesMissingUsageCountResponses = {
|
|
|
55952
57092
|
*/
|
|
55953
57093
|
200: unknown;
|
|
55954
57094
|
};
|
|
57095
|
+
export type MarketplaceStatsTopServiceProvidersByResourcesListData = {
|
|
57096
|
+
body?: never;
|
|
57097
|
+
path?: never;
|
|
57098
|
+
query?: {
|
|
57099
|
+
/**
|
|
57100
|
+
* Number of top providers to return. Default is 5.
|
|
57101
|
+
*/
|
|
57102
|
+
limit?: number;
|
|
57103
|
+
/**
|
|
57104
|
+
* A page number within the paginated result set.
|
|
57105
|
+
*/
|
|
57106
|
+
page?: number;
|
|
57107
|
+
/**
|
|
57108
|
+
* Number of results to return per page.
|
|
57109
|
+
*/
|
|
57110
|
+
page_size?: number;
|
|
57111
|
+
};
|
|
57112
|
+
url: '/api/marketplace-stats/top_service_providers_by_resources/';
|
|
57113
|
+
};
|
|
57114
|
+
export type MarketplaceStatsTopServiceProvidersByResourcesListResponses = {
|
|
57115
|
+
200: Array<TopServiceProviderByResources>;
|
|
57116
|
+
};
|
|
57117
|
+
export type MarketplaceStatsTopServiceProvidersByResourcesListResponse = MarketplaceStatsTopServiceProvidersByResourcesListResponses[keyof MarketplaceStatsTopServiceProvidersByResourcesListResponses];
|
|
57118
|
+
export type MarketplaceStatsTopServiceProvidersByResourcesCountData = {
|
|
57119
|
+
body?: never;
|
|
57120
|
+
path?: never;
|
|
57121
|
+
query?: {
|
|
57122
|
+
/**
|
|
57123
|
+
* Number of top providers to return. Default is 5.
|
|
57124
|
+
*/
|
|
57125
|
+
limit?: number;
|
|
57126
|
+
/**
|
|
57127
|
+
* A page number within the paginated result set.
|
|
57128
|
+
*/
|
|
57129
|
+
page?: number;
|
|
57130
|
+
/**
|
|
57131
|
+
* Number of results to return per page.
|
|
57132
|
+
*/
|
|
57133
|
+
page_size?: number;
|
|
57134
|
+
};
|
|
57135
|
+
url: '/api/marketplace-stats/top_service_providers_by_resources/';
|
|
57136
|
+
};
|
|
57137
|
+
export type MarketplaceStatsTopServiceProvidersByResourcesCountResponses = {
|
|
57138
|
+
/**
|
|
57139
|
+
* No response body
|
|
57140
|
+
*/
|
|
57141
|
+
200: unknown;
|
|
57142
|
+
};
|
|
55955
57143
|
export type MarketplaceStatsTotalCostOfActiveResourcesPerOfferingListData = {
|
|
55956
57144
|
body?: never;
|
|
55957
57145
|
path?: never;
|
|
@@ -56152,6 +57340,46 @@ export type MarketplaceStatsUserJobTitleCountCountResponses = {
|
|
|
56152
57340
|
*/
|
|
56153
57341
|
200: unknown;
|
|
56154
57342
|
};
|
|
57343
|
+
export type MarketplaceStatsUserNationalityListData = {
|
|
57344
|
+
body?: never;
|
|
57345
|
+
path?: never;
|
|
57346
|
+
query?: {
|
|
57347
|
+
/**
|
|
57348
|
+
* A page number within the paginated result set.
|
|
57349
|
+
*/
|
|
57350
|
+
page?: number;
|
|
57351
|
+
/**
|
|
57352
|
+
* Number of results to return per page.
|
|
57353
|
+
*/
|
|
57354
|
+
page_size?: number;
|
|
57355
|
+
};
|
|
57356
|
+
url: '/api/marketplace-stats/user_nationality/';
|
|
57357
|
+
};
|
|
57358
|
+
export type MarketplaceStatsUserNationalityListResponses = {
|
|
57359
|
+
200: Array<UserNationalityStats>;
|
|
57360
|
+
};
|
|
57361
|
+
export type MarketplaceStatsUserNationalityListResponse = MarketplaceStatsUserNationalityListResponses[keyof MarketplaceStatsUserNationalityListResponses];
|
|
57362
|
+
export type MarketplaceStatsUserNationalityCountData = {
|
|
57363
|
+
body?: never;
|
|
57364
|
+
path?: never;
|
|
57365
|
+
query?: {
|
|
57366
|
+
/**
|
|
57367
|
+
* A page number within the paginated result set.
|
|
57368
|
+
*/
|
|
57369
|
+
page?: number;
|
|
57370
|
+
/**
|
|
57371
|
+
* Number of results to return per page.
|
|
57372
|
+
*/
|
|
57373
|
+
page_size?: number;
|
|
57374
|
+
};
|
|
57375
|
+
url: '/api/marketplace-stats/user_nationality/';
|
|
57376
|
+
};
|
|
57377
|
+
export type MarketplaceStatsUserNationalityCountResponses = {
|
|
57378
|
+
/**
|
|
57379
|
+
* No response body
|
|
57380
|
+
*/
|
|
57381
|
+
200: unknown;
|
|
57382
|
+
};
|
|
56155
57383
|
export type MarketplaceStatsUserOrganizationCountListData = {
|
|
56156
57384
|
body?: never;
|
|
56157
57385
|
path?: never;
|
|
@@ -56232,6 +57460,46 @@ export type MarketplaceStatsUserOrganizationTypeCountCountResponses = {
|
|
|
56232
57460
|
*/
|
|
56233
57461
|
200: unknown;
|
|
56234
57462
|
};
|
|
57463
|
+
export type MarketplaceStatsUserResidenceCountryListData = {
|
|
57464
|
+
body?: never;
|
|
57465
|
+
path?: never;
|
|
57466
|
+
query?: {
|
|
57467
|
+
/**
|
|
57468
|
+
* A page number within the paginated result set.
|
|
57469
|
+
*/
|
|
57470
|
+
page?: number;
|
|
57471
|
+
/**
|
|
57472
|
+
* Number of results to return per page.
|
|
57473
|
+
*/
|
|
57474
|
+
page_size?: number;
|
|
57475
|
+
};
|
|
57476
|
+
url: '/api/marketplace-stats/user_residence_country/';
|
|
57477
|
+
};
|
|
57478
|
+
export type MarketplaceStatsUserResidenceCountryListResponses = {
|
|
57479
|
+
200: Array<UserResidenceCountryStats>;
|
|
57480
|
+
};
|
|
57481
|
+
export type MarketplaceStatsUserResidenceCountryListResponse = MarketplaceStatsUserResidenceCountryListResponses[keyof MarketplaceStatsUserResidenceCountryListResponses];
|
|
57482
|
+
export type MarketplaceStatsUserResidenceCountryCountData = {
|
|
57483
|
+
body?: never;
|
|
57484
|
+
path?: never;
|
|
57485
|
+
query?: {
|
|
57486
|
+
/**
|
|
57487
|
+
* A page number within the paginated result set.
|
|
57488
|
+
*/
|
|
57489
|
+
page?: number;
|
|
57490
|
+
/**
|
|
57491
|
+
* Number of results to return per page.
|
|
57492
|
+
*/
|
|
57493
|
+
page_size?: number;
|
|
57494
|
+
};
|
|
57495
|
+
url: '/api/marketplace-stats/user_residence_country/';
|
|
57496
|
+
};
|
|
57497
|
+
export type MarketplaceStatsUserResidenceCountryCountResponses = {
|
|
57498
|
+
/**
|
|
57499
|
+
* No response body
|
|
57500
|
+
*/
|
|
57501
|
+
200: unknown;
|
|
57502
|
+
};
|
|
56235
57503
|
export type MarketplaceTagsListData = {
|
|
56236
57504
|
body?: never;
|
|
56237
57505
|
path?: never;
|
|
@@ -61061,6 +62329,20 @@ export type OpenstackHealthMonitorsUpdateResponses = {
|
|
|
61061
62329
|
200: UpdateHealthMonitor;
|
|
61062
62330
|
};
|
|
61063
62331
|
export type OpenstackHealthMonitorsUpdateResponse = OpenstackHealthMonitorsUpdateResponses[keyof OpenstackHealthMonitorsUpdateResponses];
|
|
62332
|
+
export type OpenstackHealthMonitorsPullData = {
|
|
62333
|
+
body?: never;
|
|
62334
|
+
path: {
|
|
62335
|
+
uuid: string;
|
|
62336
|
+
};
|
|
62337
|
+
query?: never;
|
|
62338
|
+
url: '/api/openstack-health-monitors/{uuid}/pull/';
|
|
62339
|
+
};
|
|
62340
|
+
export type OpenstackHealthMonitorsPullResponses = {
|
|
62341
|
+
/**
|
|
62342
|
+
* No response body
|
|
62343
|
+
*/
|
|
62344
|
+
202: unknown;
|
|
62345
|
+
};
|
|
61064
62346
|
export type OpenstackImagesListData = {
|
|
61065
62347
|
body?: never;
|
|
61066
62348
|
path?: never;
|
|
@@ -61979,6 +63261,20 @@ export type OpenstackListenersUpdateResponses = {
|
|
|
61979
63261
|
200: UpdateListener;
|
|
61980
63262
|
};
|
|
61981
63263
|
export type OpenstackListenersUpdateResponse = OpenstackListenersUpdateResponses[keyof OpenstackListenersUpdateResponses];
|
|
63264
|
+
export type OpenstackListenersPullData = {
|
|
63265
|
+
body?: never;
|
|
63266
|
+
path: {
|
|
63267
|
+
uuid: string;
|
|
63268
|
+
};
|
|
63269
|
+
query?: never;
|
|
63270
|
+
url: '/api/openstack-listeners/{uuid}/pull/';
|
|
63271
|
+
};
|
|
63272
|
+
export type OpenstackListenersPullResponses = {
|
|
63273
|
+
/**
|
|
63274
|
+
* No response body
|
|
63275
|
+
*/
|
|
63276
|
+
202: unknown;
|
|
63277
|
+
};
|
|
61982
63278
|
export type OpenstackLoadbalancersListData = {
|
|
61983
63279
|
body?: never;
|
|
61984
63280
|
path?: never;
|
|
@@ -62104,7 +63400,7 @@ export type OpenstackLoadbalancersRetrieveResponses = {
|
|
|
62104
63400
|
};
|
|
62105
63401
|
export type OpenstackLoadbalancersRetrieveResponse = OpenstackLoadbalancersRetrieveResponses[keyof OpenstackLoadbalancersRetrieveResponses];
|
|
62106
63402
|
export type OpenstackLoadbalancersPartialUpdateData = {
|
|
62107
|
-
body?:
|
|
63403
|
+
body?: PatchedUpdateLoadBalancerRequest;
|
|
62108
63404
|
path: {
|
|
62109
63405
|
uuid: string;
|
|
62110
63406
|
};
|
|
@@ -62112,11 +63408,11 @@ export type OpenstackLoadbalancersPartialUpdateData = {
|
|
|
62112
63408
|
url: '/api/openstack-loadbalancers/{uuid}/';
|
|
62113
63409
|
};
|
|
62114
63410
|
export type OpenstackLoadbalancersPartialUpdateResponses = {
|
|
62115
|
-
200:
|
|
63411
|
+
200: UpdateLoadBalancer;
|
|
62116
63412
|
};
|
|
62117
63413
|
export type OpenstackLoadbalancersPartialUpdateResponse = OpenstackLoadbalancersPartialUpdateResponses[keyof OpenstackLoadbalancersPartialUpdateResponses];
|
|
62118
63414
|
export type OpenstackLoadbalancersUpdateData = {
|
|
62119
|
-
body:
|
|
63415
|
+
body: UpdateLoadBalancerRequest;
|
|
62120
63416
|
path: {
|
|
62121
63417
|
uuid: string;
|
|
62122
63418
|
};
|
|
@@ -62124,7 +63420,7 @@ export type OpenstackLoadbalancersUpdateData = {
|
|
|
62124
63420
|
url: '/api/openstack-loadbalancers/{uuid}/';
|
|
62125
63421
|
};
|
|
62126
63422
|
export type OpenstackLoadbalancersUpdateResponses = {
|
|
62127
|
-
200:
|
|
63423
|
+
200: UpdateLoadBalancer;
|
|
62128
63424
|
};
|
|
62129
63425
|
export type OpenstackLoadbalancersUpdateResponse = OpenstackLoadbalancersUpdateResponses[keyof OpenstackLoadbalancersUpdateResponses];
|
|
62130
63426
|
export type OpenstackLoadbalancersAttachFloatingIpData = {
|
|
@@ -62136,11 +63432,9 @@ export type OpenstackLoadbalancersAttachFloatingIpData = {
|
|
|
62136
63432
|
url: '/api/openstack-loadbalancers/{uuid}/attach_floating_ip/';
|
|
62137
63433
|
};
|
|
62138
63434
|
export type OpenstackLoadbalancersAttachFloatingIpResponses = {
|
|
62139
|
-
|
|
62140
|
-
* No response body
|
|
62141
|
-
*/
|
|
62142
|
-
200: unknown;
|
|
63435
|
+
202: LoadBalancerAsyncOperationResponse;
|
|
62143
63436
|
};
|
|
63437
|
+
export type OpenstackLoadbalancersAttachFloatingIpResponse = OpenstackLoadbalancersAttachFloatingIpResponses[keyof OpenstackLoadbalancersAttachFloatingIpResponses];
|
|
62144
63438
|
export type OpenstackLoadbalancersDetachFloatingIpData = {
|
|
62145
63439
|
body?: never;
|
|
62146
63440
|
path: {
|
|
@@ -62150,25 +63444,38 @@ export type OpenstackLoadbalancersDetachFloatingIpData = {
|
|
|
62150
63444
|
url: '/api/openstack-loadbalancers/{uuid}/detach_floating_ip/';
|
|
62151
63445
|
};
|
|
62152
63446
|
export type OpenstackLoadbalancersDetachFloatingIpResponses = {
|
|
63447
|
+
202: LoadBalancerAsyncOperationResponse;
|
|
63448
|
+
};
|
|
63449
|
+
export type OpenstackLoadbalancersDetachFloatingIpResponse = OpenstackLoadbalancersDetachFloatingIpResponses[keyof OpenstackLoadbalancersDetachFloatingIpResponses];
|
|
63450
|
+
export type OpenstackLoadbalancersPullData = {
|
|
63451
|
+
body?: never;
|
|
63452
|
+
path: {
|
|
63453
|
+
uuid: string;
|
|
63454
|
+
};
|
|
63455
|
+
query?: never;
|
|
63456
|
+
url: '/api/openstack-loadbalancers/{uuid}/pull/';
|
|
63457
|
+
};
|
|
63458
|
+
export type OpenstackLoadbalancersPullResponses = {
|
|
62153
63459
|
/**
|
|
62154
63460
|
* No response body
|
|
62155
63461
|
*/
|
|
62156
|
-
|
|
63462
|
+
202: unknown;
|
|
62157
63463
|
};
|
|
62158
|
-
export type
|
|
62159
|
-
body
|
|
63464
|
+
export type OpenstackLoadbalancersUnlinkData = {
|
|
63465
|
+
body?: never;
|
|
62160
63466
|
path: {
|
|
62161
63467
|
uuid: string;
|
|
62162
63468
|
};
|
|
62163
63469
|
query?: never;
|
|
62164
|
-
url: '/api/openstack-loadbalancers/{uuid}/
|
|
63470
|
+
url: '/api/openstack-loadbalancers/{uuid}/unlink/';
|
|
62165
63471
|
};
|
|
62166
|
-
export type
|
|
63472
|
+
export type OpenstackLoadbalancersUnlinkResponses = {
|
|
62167
63473
|
/**
|
|
62168
63474
|
* No response body
|
|
62169
63475
|
*/
|
|
62170
|
-
|
|
63476
|
+
204: void;
|
|
62171
63477
|
};
|
|
63478
|
+
export type OpenstackLoadbalancersUnlinkResponse = OpenstackLoadbalancersUnlinkResponses[keyof OpenstackLoadbalancersUnlinkResponses];
|
|
62172
63479
|
export type OpenstackMarketplaceTenantsListData = {
|
|
62173
63480
|
body?: never;
|
|
62174
63481
|
path?: never;
|
|
@@ -63212,6 +64519,20 @@ export type OpenstackPoolMembersUpdateResponses = {
|
|
|
63212
64519
|
200: UpdatePoolMember;
|
|
63213
64520
|
};
|
|
63214
64521
|
export type OpenstackPoolMembersUpdateResponse = OpenstackPoolMembersUpdateResponses[keyof OpenstackPoolMembersUpdateResponses];
|
|
64522
|
+
export type OpenstackPoolMembersPullData = {
|
|
64523
|
+
body?: never;
|
|
64524
|
+
path: {
|
|
64525
|
+
uuid: string;
|
|
64526
|
+
};
|
|
64527
|
+
query?: never;
|
|
64528
|
+
url: '/api/openstack-pool-members/{uuid}/pull/';
|
|
64529
|
+
};
|
|
64530
|
+
export type OpenstackPoolMembersPullResponses = {
|
|
64531
|
+
/**
|
|
64532
|
+
* No response body
|
|
64533
|
+
*/
|
|
64534
|
+
202: unknown;
|
|
64535
|
+
};
|
|
63215
64536
|
export type OpenstackPoolsListData = {
|
|
63216
64537
|
body?: never;
|
|
63217
64538
|
path?: never;
|
|
@@ -63345,7 +64666,7 @@ export type OpenstackPoolsRetrieveResponses = {
|
|
|
63345
64666
|
};
|
|
63346
64667
|
export type OpenstackPoolsRetrieveResponse = OpenstackPoolsRetrieveResponses[keyof OpenstackPoolsRetrieveResponses];
|
|
63347
64668
|
export type OpenstackPoolsPartialUpdateData = {
|
|
63348
|
-
body?:
|
|
64669
|
+
body?: PatchedUpdatePoolRequest;
|
|
63349
64670
|
path: {
|
|
63350
64671
|
uuid: string;
|
|
63351
64672
|
};
|
|
@@ -63353,11 +64674,11 @@ export type OpenstackPoolsPartialUpdateData = {
|
|
|
63353
64674
|
url: '/api/openstack-pools/{uuid}/';
|
|
63354
64675
|
};
|
|
63355
64676
|
export type OpenstackPoolsPartialUpdateResponses = {
|
|
63356
|
-
200:
|
|
64677
|
+
200: UpdatePool;
|
|
63357
64678
|
};
|
|
63358
64679
|
export type OpenstackPoolsPartialUpdateResponse = OpenstackPoolsPartialUpdateResponses[keyof OpenstackPoolsPartialUpdateResponses];
|
|
63359
64680
|
export type OpenstackPoolsUpdateData = {
|
|
63360
|
-
body:
|
|
64681
|
+
body: UpdatePoolRequest;
|
|
63361
64682
|
path: {
|
|
63362
64683
|
uuid: string;
|
|
63363
64684
|
};
|
|
@@ -63365,9 +64686,23 @@ export type OpenstackPoolsUpdateData = {
|
|
|
63365
64686
|
url: '/api/openstack-pools/{uuid}/';
|
|
63366
64687
|
};
|
|
63367
64688
|
export type OpenstackPoolsUpdateResponses = {
|
|
63368
|
-
200:
|
|
64689
|
+
200: UpdatePool;
|
|
63369
64690
|
};
|
|
63370
64691
|
export type OpenstackPoolsUpdateResponse = OpenstackPoolsUpdateResponses[keyof OpenstackPoolsUpdateResponses];
|
|
64692
|
+
export type OpenstackPoolsPullData = {
|
|
64693
|
+
body?: never;
|
|
64694
|
+
path: {
|
|
64695
|
+
uuid: string;
|
|
64696
|
+
};
|
|
64697
|
+
query?: never;
|
|
64698
|
+
url: '/api/openstack-pools/{uuid}/pull/';
|
|
64699
|
+
};
|
|
64700
|
+
export type OpenstackPoolsPullResponses = {
|
|
64701
|
+
/**
|
|
64702
|
+
* No response body
|
|
64703
|
+
*/
|
|
64704
|
+
202: unknown;
|
|
64705
|
+
};
|
|
63371
64706
|
export type OpenstackPortsListData = {
|
|
63372
64707
|
body?: never;
|
|
63373
64708
|
path?: never;
|
|
@@ -67192,6 +68527,135 @@ export type PaymentsUnlinkFromInvoiceResponses = {
|
|
|
67192
68527
|
*/
|
|
67193
68528
|
200: unknown;
|
|
67194
68529
|
};
|
|
68530
|
+
export type PersonalAccessTokensListData = {
|
|
68531
|
+
body?: never;
|
|
68532
|
+
path?: never;
|
|
68533
|
+
query?: {
|
|
68534
|
+
/**
|
|
68535
|
+
* A page number within the paginated result set.
|
|
68536
|
+
*/
|
|
68537
|
+
page?: number;
|
|
68538
|
+
/**
|
|
68539
|
+
* Number of results to return per page.
|
|
68540
|
+
*/
|
|
68541
|
+
page_size?: number;
|
|
68542
|
+
};
|
|
68543
|
+
url: '/api/personal-access-tokens/';
|
|
68544
|
+
};
|
|
68545
|
+
export type PersonalAccessTokensListResponses = {
|
|
68546
|
+
200: Array<PersonalAccessToken>;
|
|
68547
|
+
};
|
|
68548
|
+
export type PersonalAccessTokensListResponse = PersonalAccessTokensListResponses[keyof PersonalAccessTokensListResponses];
|
|
68549
|
+
export type PersonalAccessTokensCountData = {
|
|
68550
|
+
body?: never;
|
|
68551
|
+
path?: never;
|
|
68552
|
+
query?: {
|
|
68553
|
+
/**
|
|
68554
|
+
* A page number within the paginated result set.
|
|
68555
|
+
*/
|
|
68556
|
+
page?: number;
|
|
68557
|
+
/**
|
|
68558
|
+
* Number of results to return per page.
|
|
68559
|
+
*/
|
|
68560
|
+
page_size?: number;
|
|
68561
|
+
};
|
|
68562
|
+
url: '/api/personal-access-tokens/';
|
|
68563
|
+
};
|
|
68564
|
+
export type PersonalAccessTokensCountResponses = {
|
|
68565
|
+
/**
|
|
68566
|
+
* No response body
|
|
68567
|
+
*/
|
|
68568
|
+
200: unknown;
|
|
68569
|
+
};
|
|
68570
|
+
export type PersonalAccessTokensCreateData = {
|
|
68571
|
+
body: PersonalAccessTokenCreateRequest;
|
|
68572
|
+
path?: never;
|
|
68573
|
+
query?: never;
|
|
68574
|
+
url: '/api/personal-access-tokens/';
|
|
68575
|
+
};
|
|
68576
|
+
export type PersonalAccessTokensCreateResponses = {
|
|
68577
|
+
201: PersonalAccessTokenCreated;
|
|
68578
|
+
};
|
|
68579
|
+
export type PersonalAccessTokensCreateResponse = PersonalAccessTokensCreateResponses[keyof PersonalAccessTokensCreateResponses];
|
|
68580
|
+
export type PersonalAccessTokensDestroyData = {
|
|
68581
|
+
body?: never;
|
|
68582
|
+
path: {
|
|
68583
|
+
uuid: string;
|
|
68584
|
+
};
|
|
68585
|
+
query?: never;
|
|
68586
|
+
url: '/api/personal-access-tokens/{uuid}/';
|
|
68587
|
+
};
|
|
68588
|
+
export type PersonalAccessTokensDestroyResponses = {
|
|
68589
|
+
/**
|
|
68590
|
+
* No response body
|
|
68591
|
+
*/
|
|
68592
|
+
204: void;
|
|
68593
|
+
};
|
|
68594
|
+
export type PersonalAccessTokensDestroyResponse = PersonalAccessTokensDestroyResponses[keyof PersonalAccessTokensDestroyResponses];
|
|
68595
|
+
export type PersonalAccessTokensRetrieveData = {
|
|
68596
|
+
body?: never;
|
|
68597
|
+
path: {
|
|
68598
|
+
uuid: string;
|
|
68599
|
+
};
|
|
68600
|
+
query?: never;
|
|
68601
|
+
url: '/api/personal-access-tokens/{uuid}/';
|
|
68602
|
+
};
|
|
68603
|
+
export type PersonalAccessTokensRetrieveResponses = {
|
|
68604
|
+
200: PersonalAccessToken;
|
|
68605
|
+
};
|
|
68606
|
+
export type PersonalAccessTokensRetrieveResponse = PersonalAccessTokensRetrieveResponses[keyof PersonalAccessTokensRetrieveResponses];
|
|
68607
|
+
export type PersonalAccessTokensRotateData = {
|
|
68608
|
+
body?: never;
|
|
68609
|
+
path: {
|
|
68610
|
+
uuid: string;
|
|
68611
|
+
};
|
|
68612
|
+
query?: never;
|
|
68613
|
+
url: '/api/personal-access-tokens/{uuid}/rotate/';
|
|
68614
|
+
};
|
|
68615
|
+
export type PersonalAccessTokensRotateResponses = {
|
|
68616
|
+
201: PersonalAccessTokenCreated;
|
|
68617
|
+
};
|
|
68618
|
+
export type PersonalAccessTokensRotateResponse = PersonalAccessTokensRotateResponses[keyof PersonalAccessTokensRotateResponses];
|
|
68619
|
+
export type PersonalAccessTokensAvailableScopesListData = {
|
|
68620
|
+
body?: never;
|
|
68621
|
+
path?: never;
|
|
68622
|
+
query?: {
|
|
68623
|
+
/**
|
|
68624
|
+
* A page number within the paginated result set.
|
|
68625
|
+
*/
|
|
68626
|
+
page?: number;
|
|
68627
|
+
/**
|
|
68628
|
+
* Number of results to return per page.
|
|
68629
|
+
*/
|
|
68630
|
+
page_size?: number;
|
|
68631
|
+
};
|
|
68632
|
+
url: '/api/personal-access-tokens/available_scopes/';
|
|
68633
|
+
};
|
|
68634
|
+
export type PersonalAccessTokensAvailableScopesListResponses = {
|
|
68635
|
+
200: Array<AvailableScope>;
|
|
68636
|
+
};
|
|
68637
|
+
export type PersonalAccessTokensAvailableScopesListResponse = PersonalAccessTokensAvailableScopesListResponses[keyof PersonalAccessTokensAvailableScopesListResponses];
|
|
68638
|
+
export type PersonalAccessTokensAvailableScopesCountData = {
|
|
68639
|
+
body?: never;
|
|
68640
|
+
path?: never;
|
|
68641
|
+
query?: {
|
|
68642
|
+
/**
|
|
68643
|
+
* A page number within the paginated result set.
|
|
68644
|
+
*/
|
|
68645
|
+
page?: number;
|
|
68646
|
+
/**
|
|
68647
|
+
* Number of results to return per page.
|
|
68648
|
+
*/
|
|
68649
|
+
page_size?: number;
|
|
68650
|
+
};
|
|
68651
|
+
url: '/api/personal-access-tokens/available_scopes/';
|
|
68652
|
+
};
|
|
68653
|
+
export type PersonalAccessTokensAvailableScopesCountResponses = {
|
|
68654
|
+
/**
|
|
68655
|
+
* No response body
|
|
68656
|
+
*/
|
|
68657
|
+
200: unknown;
|
|
68658
|
+
};
|
|
67195
68659
|
export type ProjectCreditsListData = {
|
|
67196
68660
|
body?: never;
|
|
67197
68661
|
path?: never;
|
|
@@ -67317,6 +68781,136 @@ export type ProjectCreditsUpdateResponses = {
|
|
|
67317
68781
|
200: ProjectCredit;
|
|
67318
68782
|
};
|
|
67319
68783
|
export type ProjectCreditsUpdateResponse = ProjectCreditsUpdateResponses[keyof ProjectCreditsUpdateResponses];
|
|
68784
|
+
export type ProjectEndDateChangeRequestsListData = {
|
|
68785
|
+
body?: never;
|
|
68786
|
+
path?: never;
|
|
68787
|
+
query?: {
|
|
68788
|
+
/**
|
|
68789
|
+
* Created by UUID
|
|
68790
|
+
*/
|
|
68791
|
+
created_by_uuid?: string;
|
|
68792
|
+
/**
|
|
68793
|
+
* Customer UUID
|
|
68794
|
+
*/
|
|
68795
|
+
customer_uuid?: string;
|
|
68796
|
+
/**
|
|
68797
|
+
* A page number within the paginated result set.
|
|
68798
|
+
*/
|
|
68799
|
+
page?: number;
|
|
68800
|
+
/**
|
|
68801
|
+
* Number of results to return per page.
|
|
68802
|
+
*/
|
|
68803
|
+
page_size?: number;
|
|
68804
|
+
/**
|
|
68805
|
+
* Project UUID
|
|
68806
|
+
*/
|
|
68807
|
+
project_uuid?: string;
|
|
68808
|
+
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
68809
|
+
};
|
|
68810
|
+
url: '/api/project-end-date-change-requests/';
|
|
68811
|
+
};
|
|
68812
|
+
export type ProjectEndDateChangeRequestsListResponses = {
|
|
68813
|
+
200: Array<ProjectEndDateChangeRequest>;
|
|
68814
|
+
};
|
|
68815
|
+
export type ProjectEndDateChangeRequestsListResponse = ProjectEndDateChangeRequestsListResponses[keyof ProjectEndDateChangeRequestsListResponses];
|
|
68816
|
+
export type ProjectEndDateChangeRequestsCountData = {
|
|
68817
|
+
body?: never;
|
|
68818
|
+
path?: never;
|
|
68819
|
+
query?: {
|
|
68820
|
+
/**
|
|
68821
|
+
* Created by UUID
|
|
68822
|
+
*/
|
|
68823
|
+
created_by_uuid?: string;
|
|
68824
|
+
/**
|
|
68825
|
+
* Customer UUID
|
|
68826
|
+
*/
|
|
68827
|
+
customer_uuid?: string;
|
|
68828
|
+
/**
|
|
68829
|
+
* A page number within the paginated result set.
|
|
68830
|
+
*/
|
|
68831
|
+
page?: number;
|
|
68832
|
+
/**
|
|
68833
|
+
* Number of results to return per page.
|
|
68834
|
+
*/
|
|
68835
|
+
page_size?: number;
|
|
68836
|
+
/**
|
|
68837
|
+
* Project UUID
|
|
68838
|
+
*/
|
|
68839
|
+
project_uuid?: string;
|
|
68840
|
+
state?: Array<RemoteProjectUpdateRequestStateEnum>;
|
|
68841
|
+
};
|
|
68842
|
+
url: '/api/project-end-date-change-requests/';
|
|
68843
|
+
};
|
|
68844
|
+
export type ProjectEndDateChangeRequestsCountResponses = {
|
|
68845
|
+
/**
|
|
68846
|
+
* No response body
|
|
68847
|
+
*/
|
|
68848
|
+
200: unknown;
|
|
68849
|
+
};
|
|
68850
|
+
export type ProjectEndDateChangeRequestsCreateData = {
|
|
68851
|
+
body: ProjectEndDateChangeRequestCreateRequest;
|
|
68852
|
+
path?: never;
|
|
68853
|
+
query?: never;
|
|
68854
|
+
url: '/api/project-end-date-change-requests/';
|
|
68855
|
+
};
|
|
68856
|
+
export type ProjectEndDateChangeRequestsCreateResponses = {
|
|
68857
|
+
201: ProjectEndDateChangeRequestCreate;
|
|
68858
|
+
};
|
|
68859
|
+
export type ProjectEndDateChangeRequestsCreateResponse = ProjectEndDateChangeRequestsCreateResponses[keyof ProjectEndDateChangeRequestsCreateResponses];
|
|
68860
|
+
export type ProjectEndDateChangeRequestsRetrieveData = {
|
|
68861
|
+
body?: never;
|
|
68862
|
+
path: {
|
|
68863
|
+
uuid: string;
|
|
68864
|
+
};
|
|
68865
|
+
query?: never;
|
|
68866
|
+
url: '/api/project-end-date-change-requests/{uuid}/';
|
|
68867
|
+
};
|
|
68868
|
+
export type ProjectEndDateChangeRequestsRetrieveResponses = {
|
|
68869
|
+
200: ProjectEndDateChangeRequest;
|
|
68870
|
+
};
|
|
68871
|
+
export type ProjectEndDateChangeRequestsRetrieveResponse = ProjectEndDateChangeRequestsRetrieveResponses[keyof ProjectEndDateChangeRequestsRetrieveResponses];
|
|
68872
|
+
export type ProjectEndDateChangeRequestsApproveData = {
|
|
68873
|
+
body?: ReviewCommentRequest;
|
|
68874
|
+
path: {
|
|
68875
|
+
uuid: string;
|
|
68876
|
+
};
|
|
68877
|
+
query?: never;
|
|
68878
|
+
url: '/api/project-end-date-change-requests/{uuid}/approve/';
|
|
68879
|
+
};
|
|
68880
|
+
export type ProjectEndDateChangeRequestsApproveResponses = {
|
|
68881
|
+
/**
|
|
68882
|
+
* No response body
|
|
68883
|
+
*/
|
|
68884
|
+
200: unknown;
|
|
68885
|
+
};
|
|
68886
|
+
export type ProjectEndDateChangeRequestsCancelData = {
|
|
68887
|
+
body?: never;
|
|
68888
|
+
path: {
|
|
68889
|
+
uuid: string;
|
|
68890
|
+
};
|
|
68891
|
+
query?: never;
|
|
68892
|
+
url: '/api/project-end-date-change-requests/{uuid}/cancel/';
|
|
68893
|
+
};
|
|
68894
|
+
export type ProjectEndDateChangeRequestsCancelResponses = {
|
|
68895
|
+
/**
|
|
68896
|
+
* No response body
|
|
68897
|
+
*/
|
|
68898
|
+
200: unknown;
|
|
68899
|
+
};
|
|
68900
|
+
export type ProjectEndDateChangeRequestsRejectData = {
|
|
68901
|
+
body?: ReviewCommentRequest;
|
|
68902
|
+
path: {
|
|
68903
|
+
uuid: string;
|
|
68904
|
+
};
|
|
68905
|
+
query?: never;
|
|
68906
|
+
url: '/api/project-end-date-change-requests/{uuid}/reject/';
|
|
68907
|
+
};
|
|
68908
|
+
export type ProjectEndDateChangeRequestsRejectResponses = {
|
|
68909
|
+
/**
|
|
68910
|
+
* No response body
|
|
68911
|
+
*/
|
|
68912
|
+
200: unknown;
|
|
68913
|
+
};
|
|
67320
68914
|
export type ProjectPermissionsReviewsListData = {
|
|
67321
68915
|
body?: never;
|
|
67322
68916
|
path?: never;
|
|
@@ -68410,6 +70004,10 @@ export type ProposalProposalsListData = {
|
|
|
68410
70004
|
page_size?: number;
|
|
68411
70005
|
round?: string;
|
|
68412
70006
|
round_uuid?: string;
|
|
70007
|
+
/**
|
|
70008
|
+
* Slug
|
|
70009
|
+
*/
|
|
70010
|
+
slug?: string;
|
|
68413
70011
|
state?: Array<ProposalStates>;
|
|
68414
70012
|
};
|
|
68415
70013
|
url: '/api/proposal-proposals/';
|
|
@@ -68443,6 +70041,10 @@ export type ProposalProposalsCountData = {
|
|
|
68443
70041
|
page_size?: number;
|
|
68444
70042
|
round?: string;
|
|
68445
70043
|
round_uuid?: string;
|
|
70044
|
+
/**
|
|
70045
|
+
* Slug
|
|
70046
|
+
*/
|
|
70047
|
+
slug?: string;
|
|
68446
70048
|
state?: Array<ProposalStates>;
|
|
68447
70049
|
};
|
|
68448
70050
|
url: '/api/proposal-proposals/';
|
|
@@ -68950,6 +70552,10 @@ export type ProposalProtectedCallsListData = {
|
|
|
68950
70552
|
* Number of results to return per page.
|
|
68951
70553
|
*/
|
|
68952
70554
|
page_size?: number;
|
|
70555
|
+
/**
|
|
70556
|
+
* Slug
|
|
70557
|
+
*/
|
|
70558
|
+
slug?: string;
|
|
68953
70559
|
state?: Array<CallStates>;
|
|
68954
70560
|
};
|
|
68955
70561
|
url: '/api/proposal-protected-calls/';
|
|
@@ -68983,6 +70589,10 @@ export type ProposalProtectedCallsCountData = {
|
|
|
68983
70589
|
* Number of results to return per page.
|
|
68984
70590
|
*/
|
|
68985
70591
|
page_size?: number;
|
|
70592
|
+
/**
|
|
70593
|
+
* Slug
|
|
70594
|
+
*/
|
|
70595
|
+
slug?: string;
|
|
68986
70596
|
state?: Array<CallStates>;
|
|
68987
70597
|
};
|
|
68988
70598
|
url: '/api/proposal-protected-calls/';
|
|
@@ -69228,6 +70838,10 @@ export type ProposalProtectedCallsConflictsListData = {
|
|
|
69228
70838
|
* Number of results to return per page.
|
|
69229
70839
|
*/
|
|
69230
70840
|
page_size?: number;
|
|
70841
|
+
/**
|
|
70842
|
+
* Slug
|
|
70843
|
+
*/
|
|
70844
|
+
slug?: string;
|
|
69231
70845
|
state?: Array<CallStates>;
|
|
69232
70846
|
};
|
|
69233
70847
|
url: '/api/proposal-protected-calls/{uuid}/conflicts/';
|
|
@@ -69547,6 +71161,10 @@ export type ProposalProtectedCallsProposalsComplianceAnswersListData = {
|
|
|
69547
71161
|
* Number of results to return per page.
|
|
69548
71162
|
*/
|
|
69549
71163
|
page_size?: number;
|
|
71164
|
+
/**
|
|
71165
|
+
* Slug
|
|
71166
|
+
*/
|
|
71167
|
+
slug?: string;
|
|
69550
71168
|
state?: Array<CallStates>;
|
|
69551
71169
|
};
|
|
69552
71170
|
url: '/api/proposal-protected-calls/{uuid}/proposals/{proposal_uuid}/compliance-answers/';
|
|
@@ -69582,6 +71200,10 @@ export type ProposalProtectedCallsProposedAssignmentsListData = {
|
|
|
69582
71200
|
* Number of results to return per page.
|
|
69583
71201
|
*/
|
|
69584
71202
|
page_size?: number;
|
|
71203
|
+
/**
|
|
71204
|
+
* Slug
|
|
71205
|
+
*/
|
|
71206
|
+
slug?: string;
|
|
69585
71207
|
state?: Array<CallStates>;
|
|
69586
71208
|
};
|
|
69587
71209
|
url: '/api/proposal-protected-calls/{uuid}/proposed-assignments/';
|
|
@@ -69740,6 +71362,10 @@ export type ProposalProtectedCallsInviteReviewersData = {
|
|
|
69740
71362
|
* Number of results to return per page.
|
|
69741
71363
|
*/
|
|
69742
71364
|
page_size?: number;
|
|
71365
|
+
/**
|
|
71366
|
+
* Slug
|
|
71367
|
+
*/
|
|
71368
|
+
slug?: string;
|
|
69743
71369
|
state?: Array<CallStates>;
|
|
69744
71370
|
};
|
|
69745
71371
|
url: '/api/proposal-protected-calls/{uuid}/reviewer-pool/';
|
|
@@ -69900,6 +71526,10 @@ export type ProposalProtectedCallsSuggestionsListData = {
|
|
|
69900
71526
|
* Number of results to return per page.
|
|
69901
71527
|
*/
|
|
69902
71528
|
page_size?: number;
|
|
71529
|
+
/**
|
|
71530
|
+
* Slug
|
|
71531
|
+
*/
|
|
71532
|
+
slug?: string;
|
|
69903
71533
|
state?: Array<CallStates>;
|
|
69904
71534
|
};
|
|
69905
71535
|
url: '/api/proposal-protected-calls/{uuid}/suggestions/';
|
|
@@ -69976,6 +71606,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsListData = {
|
|
|
69976
71606
|
* Number of results to return per page.
|
|
69977
71607
|
*/
|
|
69978
71608
|
page_size?: number;
|
|
71609
|
+
/**
|
|
71610
|
+
* Slug
|
|
71611
|
+
*/
|
|
71612
|
+
slug?: string;
|
|
69979
71613
|
state?: Array<CallStates>;
|
|
69980
71614
|
};
|
|
69981
71615
|
url: '/api/proposal-protected-calls/available_compliance_checklists/';
|
|
@@ -70016,6 +71650,10 @@ export type ProposalProtectedCallsAvailableComplianceChecklistsCountData = {
|
|
|
70016
71650
|
* Number of results to return per page.
|
|
70017
71651
|
*/
|
|
70018
71652
|
page_size?: number;
|
|
71653
|
+
/**
|
|
71654
|
+
* Slug
|
|
71655
|
+
*/
|
|
71656
|
+
slug?: string;
|
|
70019
71657
|
state?: Array<CallStates>;
|
|
70020
71658
|
};
|
|
70021
71659
|
url: '/api/proposal-protected-calls/available_compliance_checklists/';
|
|
@@ -70052,6 +71690,10 @@ export type ProposalPublicCallsListData = {
|
|
|
70052
71690
|
* Number of results to return per page.
|
|
70053
71691
|
*/
|
|
70054
71692
|
page_size?: number;
|
|
71693
|
+
/**
|
|
71694
|
+
* Slug
|
|
71695
|
+
*/
|
|
71696
|
+
slug?: string;
|
|
70055
71697
|
state?: Array<CallStates>;
|
|
70056
71698
|
};
|
|
70057
71699
|
url: '/api/proposal-public-calls/';
|
|
@@ -70085,6 +71727,10 @@ export type ProposalPublicCallsCountData = {
|
|
|
70085
71727
|
* Number of results to return per page.
|
|
70086
71728
|
*/
|
|
70087
71729
|
page_size?: number;
|
|
71730
|
+
/**
|
|
71731
|
+
* Slug
|
|
71732
|
+
*/
|
|
71733
|
+
slug?: string;
|
|
70088
71734
|
state?: Array<CallStates>;
|
|
70089
71735
|
};
|
|
70090
71736
|
url: '/api/proposal-public-calls/';
|
|
@@ -75715,7 +77361,7 @@ export type SupportCommentsListData = {
|
|
|
75715
77361
|
*
|
|
75716
77362
|
*
|
|
75717
77363
|
*/
|
|
75718
|
-
o?: Array<
|
|
77364
|
+
o?: Array<CommentOEnum>;
|
|
75719
77365
|
/**
|
|
75720
77366
|
* A page number within the paginated result set.
|
|
75721
77367
|
*/
|
|
@@ -75754,7 +77400,7 @@ export type SupportCommentsCountData = {
|
|
|
75754
77400
|
*
|
|
75755
77401
|
*
|
|
75756
77402
|
*/
|
|
75757
|
-
o?: Array<
|
|
77403
|
+
o?: Array<CommentOEnum>;
|
|
75758
77404
|
/**
|
|
75759
77405
|
* A page number within the paginated result set.
|
|
75760
77406
|
*/
|
|
@@ -77763,7 +79409,7 @@ export type UserGroupInvitationsProjectsListResponses = {
|
|
|
77763
79409
|
};
|
|
77764
79410
|
export type UserGroupInvitationsProjectsListResponse = UserGroupInvitationsProjectsListResponses[keyof UserGroupInvitationsProjectsListResponses];
|
|
77765
79411
|
export type UserGroupInvitationsSubmitRequestData = {
|
|
77766
|
-
body?:
|
|
79412
|
+
body?: SubmitRequestRequest;
|
|
77767
79413
|
path: {
|
|
77768
79414
|
uuid: string;
|
|
77769
79415
|
};
|