waldur-js-client 7.8.8-dev.3 → 7.8.8-dev.5
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 +219 -1
- package/dist/sdk.gen.js +1606 -0
- package/dist/types.gen.d.ts +2521 -347
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -135,7 +135,73 @@ export type AgentServiceStatisticsRequest = {
|
|
|
135
135
|
};
|
|
136
136
|
export type AgentTypeEnum = 'Order processing' | 'Usage reporting' | 'Glauth sync' | 'Resource sync' | 'Event processing' | 'unknown';
|
|
137
137
|
export type AgreementTypeEnum = 'TOS' | 'PP';
|
|
138
|
+
export type Allocation = {
|
|
139
|
+
readonly url?: string;
|
|
140
|
+
readonly uuid?: string;
|
|
141
|
+
name?: string;
|
|
142
|
+
description?: string;
|
|
143
|
+
readonly service_name?: string;
|
|
144
|
+
service_settings?: string;
|
|
145
|
+
readonly service_settings_uuid?: string;
|
|
146
|
+
readonly service_settings_state?: string;
|
|
147
|
+
readonly service_settings_error_message?: string;
|
|
148
|
+
project?: string;
|
|
149
|
+
readonly project_name?: string;
|
|
150
|
+
readonly project_uuid?: string;
|
|
151
|
+
readonly customer?: string;
|
|
152
|
+
readonly customer_uuid?: string;
|
|
153
|
+
readonly customer_name?: string;
|
|
154
|
+
readonly customer_native_name?: string;
|
|
155
|
+
readonly customer_abbreviation?: string;
|
|
156
|
+
readonly error_message?: string;
|
|
157
|
+
readonly error_traceback?: string;
|
|
158
|
+
readonly resource_type?: string;
|
|
159
|
+
state?: CoreStates;
|
|
160
|
+
readonly created?: string;
|
|
161
|
+
readonly modified?: string;
|
|
162
|
+
readonly backend_id?: string;
|
|
163
|
+
readonly access_url?: string | null;
|
|
164
|
+
node_limit?: number;
|
|
165
|
+
groupname?: string | null;
|
|
166
|
+
readonly node_usage?: string;
|
|
167
|
+
readonly is_active?: boolean;
|
|
168
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
169
|
+
readonly marketplace_offering_name?: string | null;
|
|
170
|
+
readonly marketplace_offering_plugin_options?: {
|
|
171
|
+
[key: string]: unknown;
|
|
172
|
+
} | null;
|
|
173
|
+
readonly marketplace_category_uuid?: string | null;
|
|
174
|
+
readonly marketplace_category_name?: string | null;
|
|
175
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
176
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
177
|
+
readonly marketplace_resource_state?: string | null;
|
|
178
|
+
readonly is_usage_based?: boolean | null;
|
|
179
|
+
readonly is_limit_based?: boolean | null;
|
|
180
|
+
};
|
|
181
|
+
export type AllocationRequest = {
|
|
182
|
+
name: string;
|
|
183
|
+
description?: string;
|
|
184
|
+
service_settings: string;
|
|
185
|
+
project: string;
|
|
186
|
+
node_limit?: number;
|
|
187
|
+
groupname?: string | null;
|
|
188
|
+
};
|
|
189
|
+
export type AllocationSetLimits = {
|
|
190
|
+
node_limit: number;
|
|
191
|
+
};
|
|
192
|
+
export type AllocationSetLimitsRequest = {
|
|
193
|
+
node_limit: number;
|
|
194
|
+
};
|
|
138
195
|
export type AllocationTimeEnum = 'on_decision' | 'fixed_date';
|
|
196
|
+
export type AllocationUserUsage = {
|
|
197
|
+
node_usage?: string;
|
|
198
|
+
month: number;
|
|
199
|
+
year: number;
|
|
200
|
+
allocation: string;
|
|
201
|
+
user?: string | null;
|
|
202
|
+
username: string;
|
|
203
|
+
readonly full_name: string;
|
|
204
|
+
};
|
|
139
205
|
export type Answer = {
|
|
140
206
|
readonly uuid: string;
|
|
141
207
|
readonly question_description: string;
|
|
@@ -162,6 +228,13 @@ export type AnswerSubmitResponse = {
|
|
|
162
228
|
detail: string;
|
|
163
229
|
completion: ChecklistCompletion;
|
|
164
230
|
};
|
|
231
|
+
export type Association = {
|
|
232
|
+
readonly uuid: string;
|
|
233
|
+
username?: string | null;
|
|
234
|
+
groupname?: string | null;
|
|
235
|
+
useridentifier?: string | null;
|
|
236
|
+
allocation: string;
|
|
237
|
+
};
|
|
165
238
|
export type Attachment = {
|
|
166
239
|
readonly url?: string;
|
|
167
240
|
readonly uuid?: string;
|
|
@@ -2241,37 +2314,37 @@ export type Customer = {
|
|
|
2241
2314
|
*/
|
|
2242
2315
|
backend_id?: string;
|
|
2243
2316
|
image?: string | null;
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2317
|
+
blocked?: boolean;
|
|
2318
|
+
archived?: boolean;
|
|
2319
|
+
display_billing_info_in_projects?: boolean;
|
|
2320
|
+
default_tax_percent?: string;
|
|
2248
2321
|
/**
|
|
2249
2322
|
* Start date of accounting
|
|
2250
2323
|
*/
|
|
2251
|
-
|
|
2324
|
+
accounting_start_date?: string;
|
|
2252
2325
|
readonly projects_count?: number;
|
|
2253
2326
|
readonly users_count?: number;
|
|
2254
2327
|
/**
|
|
2255
2328
|
* External ID of the sponsor covering the costs
|
|
2256
2329
|
*/
|
|
2257
|
-
|
|
2330
|
+
sponsor_number?: number | null;
|
|
2258
2331
|
readonly country_name?: string;
|
|
2259
2332
|
/**
|
|
2260
2333
|
* Maximum number of service accounts allowed
|
|
2261
2334
|
*/
|
|
2262
|
-
|
|
2263
|
-
|
|
2335
|
+
max_service_accounts?: number | null;
|
|
2336
|
+
project_metadata_checklist?: string | null;
|
|
2264
2337
|
/**
|
|
2265
2338
|
* Number of extra days after project end date before resources are terminated
|
|
2266
2339
|
*/
|
|
2267
|
-
|
|
2340
|
+
grace_period_days?: number | null;
|
|
2268
2341
|
name?: string;
|
|
2269
2342
|
slug?: string;
|
|
2270
2343
|
native_name?: string;
|
|
2271
2344
|
abbreviation?: string;
|
|
2272
2345
|
description?: string;
|
|
2273
2346
|
contact_details?: string;
|
|
2274
|
-
|
|
2347
|
+
agreement_number?: string;
|
|
2275
2348
|
/**
|
|
2276
2349
|
* Email address
|
|
2277
2350
|
*/
|
|
@@ -2280,10 +2353,10 @@ export type Customer = {
|
|
|
2280
2353
|
/**
|
|
2281
2354
|
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
2282
2355
|
*/
|
|
2283
|
-
|
|
2356
|
+
access_subnets?: string;
|
|
2284
2357
|
registration_code?: string;
|
|
2285
2358
|
homepage?: string;
|
|
2286
|
-
|
|
2359
|
+
domain?: string;
|
|
2287
2360
|
/**
|
|
2288
2361
|
* VAT number
|
|
2289
2362
|
*/
|
|
@@ -2459,19 +2532,46 @@ export type CustomerRequest = {
|
|
|
2459
2532
|
*/
|
|
2460
2533
|
backend_id?: string;
|
|
2461
2534
|
image?: (Blob | File) | null;
|
|
2535
|
+
blocked?: boolean;
|
|
2536
|
+
archived?: boolean;
|
|
2537
|
+
display_billing_info_in_projects?: boolean;
|
|
2538
|
+
default_tax_percent?: string;
|
|
2539
|
+
/**
|
|
2540
|
+
* Start date of accounting
|
|
2541
|
+
*/
|
|
2542
|
+
accounting_start_date?: string;
|
|
2543
|
+
/**
|
|
2544
|
+
* External ID of the sponsor covering the costs
|
|
2545
|
+
*/
|
|
2546
|
+
sponsor_number?: number | null;
|
|
2547
|
+
/**
|
|
2548
|
+
* Maximum number of service accounts allowed
|
|
2549
|
+
*/
|
|
2550
|
+
max_service_accounts?: number | null;
|
|
2551
|
+
project_metadata_checklist?: string | null;
|
|
2552
|
+
/**
|
|
2553
|
+
* Number of extra days after project end date before resources are terminated
|
|
2554
|
+
*/
|
|
2555
|
+
grace_period_days?: number | null;
|
|
2462
2556
|
name: string;
|
|
2463
2557
|
slug?: string;
|
|
2464
2558
|
native_name?: string;
|
|
2465
2559
|
abbreviation?: string;
|
|
2466
2560
|
description?: string;
|
|
2467
2561
|
contact_details?: string;
|
|
2562
|
+
agreement_number?: string;
|
|
2468
2563
|
/**
|
|
2469
2564
|
* Email address
|
|
2470
2565
|
*/
|
|
2471
2566
|
email?: string;
|
|
2472
2567
|
phone_number?: string;
|
|
2568
|
+
/**
|
|
2569
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
2570
|
+
*/
|
|
2571
|
+
access_subnets?: string;
|
|
2473
2572
|
registration_code?: string;
|
|
2474
2573
|
homepage?: string;
|
|
2574
|
+
domain?: string;
|
|
2475
2575
|
/**
|
|
2476
2576
|
* VAT number
|
|
2477
2577
|
*/
|
|
@@ -3892,6 +3992,41 @@ export type MaintenanceAnnouncementTemplateRequest = {
|
|
|
3892
3992
|
service_provider: string;
|
|
3893
3993
|
};
|
|
3894
3994
|
export type MaintenanceTypeEnum = 1 | 2 | 3 | 4 | 5;
|
|
3995
|
+
export type ManagedProject = {
|
|
3996
|
+
readonly state: string;
|
|
3997
|
+
readonly created: string;
|
|
3998
|
+
/**
|
|
3999
|
+
* Timestamp when the review was completed
|
|
4000
|
+
*/
|
|
4001
|
+
readonly reviewed_at: string | null;
|
|
4002
|
+
readonly reviewed_by_full_name: string;
|
|
4003
|
+
readonly reviewed_by_uuid: string;
|
|
4004
|
+
/**
|
|
4005
|
+
* Optional comment provided during review
|
|
4006
|
+
*/
|
|
4007
|
+
review_comment?: string | null;
|
|
4008
|
+
/**
|
|
4009
|
+
* ID
|
|
4010
|
+
*/
|
|
4011
|
+
identifier: string;
|
|
4012
|
+
/**
|
|
4013
|
+
* The destination used to send instructions from the remote portal.
|
|
4014
|
+
*/
|
|
4015
|
+
destination: string;
|
|
4016
|
+
/**
|
|
4017
|
+
* Details of the project as provided by the remote OpenPortal.
|
|
4018
|
+
*/
|
|
4019
|
+
readonly details: unknown;
|
|
4020
|
+
project: string;
|
|
4021
|
+
project_data: Project;
|
|
4022
|
+
project_template: string;
|
|
4023
|
+
project_template_data: ProjectTemplate;
|
|
4024
|
+
/**
|
|
4025
|
+
* Local ID
|
|
4026
|
+
* The local project identifier in this portal.
|
|
4027
|
+
*/
|
|
4028
|
+
local_identifier?: string | null;
|
|
4029
|
+
};
|
|
3895
4030
|
export type ManagedRancherCreateNodeRequest = {
|
|
3896
4031
|
role: RancherNodeRoleEnum;
|
|
3897
4032
|
system_volume_size?: number;
|
|
@@ -8277,7 +8412,7 @@ export type OrderCreateRequest = {
|
|
|
8277
8412
|
/**
|
|
8278
8413
|
* Attributes structure depends on the offering type specified in the parent object. Can also be a generic object for offerings without a specific attributes schema.
|
|
8279
8414
|
*/
|
|
8280
|
-
attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
|
|
8415
|
+
attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | MarketplaceOpenPortalCreateOrderAttributes | MarketplaceOpenPortalRemoteCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
|
|
8281
8416
|
limits?: {
|
|
8282
8417
|
[key: string]: number;
|
|
8283
8418
|
};
|
|
@@ -8438,6 +8573,12 @@ export type PatchedAdminAnnouncementRequest = {
|
|
|
8438
8573
|
active_to?: string;
|
|
8439
8574
|
type?: AdminAnnouncementTypeEnum;
|
|
8440
8575
|
};
|
|
8576
|
+
export type PatchedAllocationRequest = {
|
|
8577
|
+
name?: string;
|
|
8578
|
+
description?: string;
|
|
8579
|
+
node_limit?: number;
|
|
8580
|
+
groupname?: string | null;
|
|
8581
|
+
};
|
|
8441
8582
|
export type PatchedAwsInstanceRequest = {
|
|
8442
8583
|
name?: string;
|
|
8443
8584
|
description?: string;
|
|
@@ -8593,19 +8734,46 @@ export type PatchedCustomerRequest = {
|
|
|
8593
8734
|
*/
|
|
8594
8735
|
backend_id?: string;
|
|
8595
8736
|
image?: (Blob | File) | null;
|
|
8737
|
+
blocked?: boolean;
|
|
8738
|
+
archived?: boolean;
|
|
8739
|
+
display_billing_info_in_projects?: boolean;
|
|
8740
|
+
default_tax_percent?: string;
|
|
8741
|
+
/**
|
|
8742
|
+
* Start date of accounting
|
|
8743
|
+
*/
|
|
8744
|
+
accounting_start_date?: string;
|
|
8745
|
+
/**
|
|
8746
|
+
* External ID of the sponsor covering the costs
|
|
8747
|
+
*/
|
|
8748
|
+
sponsor_number?: number | null;
|
|
8749
|
+
/**
|
|
8750
|
+
* Maximum number of service accounts allowed
|
|
8751
|
+
*/
|
|
8752
|
+
max_service_accounts?: number | null;
|
|
8753
|
+
project_metadata_checklist?: string | null;
|
|
8754
|
+
/**
|
|
8755
|
+
* Number of extra days after project end date before resources are terminated
|
|
8756
|
+
*/
|
|
8757
|
+
grace_period_days?: number | null;
|
|
8596
8758
|
name?: string;
|
|
8597
8759
|
slug?: string;
|
|
8598
8760
|
native_name?: string;
|
|
8599
8761
|
abbreviation?: string;
|
|
8600
8762
|
description?: string;
|
|
8601
8763
|
contact_details?: string;
|
|
8764
|
+
agreement_number?: string;
|
|
8602
8765
|
/**
|
|
8603
8766
|
* Email address
|
|
8604
8767
|
*/
|
|
8605
8768
|
email?: string;
|
|
8606
8769
|
phone_number?: string;
|
|
8770
|
+
/**
|
|
8771
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
8772
|
+
*/
|
|
8773
|
+
access_subnets?: string;
|
|
8607
8774
|
registration_code?: string;
|
|
8608
8775
|
homepage?: string;
|
|
8776
|
+
domain?: string;
|
|
8609
8777
|
/**
|
|
8610
8778
|
* VAT number
|
|
8611
8779
|
*/
|
|
@@ -9174,6 +9342,17 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
|
9174
9342
|
limit_cost?: number;
|
|
9175
9343
|
period?: PeriodEnum;
|
|
9176
9344
|
};
|
|
9345
|
+
export type PatchedProjectInfoRequest = {
|
|
9346
|
+
project?: string;
|
|
9347
|
+
/**
|
|
9348
|
+
* A short, unique name for the project. It will be used to form the local username of any users in the project on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
9349
|
+
*/
|
|
9350
|
+
shortname?: string | null;
|
|
9351
|
+
/**
|
|
9352
|
+
* A comma-separated list of allowable destinations of instances that can be attached to this project. For example, a project may only allow 'brics.aip1.*', meaning that only instances that start with 'brics.aip1.' can be attached to this project.
|
|
9353
|
+
*/
|
|
9354
|
+
allowed_destinations?: string | null;
|
|
9355
|
+
};
|
|
9177
9356
|
export type PatchedProjectRequest = {
|
|
9178
9357
|
name?: string;
|
|
9179
9358
|
slug?: string;
|
|
@@ -9210,6 +9389,39 @@ export type PatchedProjectServiceAccountRequest = {
|
|
|
9210
9389
|
preferred_identifier?: string;
|
|
9211
9390
|
project?: string;
|
|
9212
9391
|
};
|
|
9392
|
+
export type PatchedProjectTemplateRequest = {
|
|
9393
|
+
name?: string;
|
|
9394
|
+
/**
|
|
9395
|
+
* The offering for which this template applies.
|
|
9396
|
+
*/
|
|
9397
|
+
offering?: string | null;
|
|
9398
|
+
provider?: string;
|
|
9399
|
+
portal?: string;
|
|
9400
|
+
/**
|
|
9401
|
+
* The key that is used to authenticate requests for this class.
|
|
9402
|
+
*/
|
|
9403
|
+
key?: string | null;
|
|
9404
|
+
customer?: string;
|
|
9405
|
+
shortname?: string | null;
|
|
9406
|
+
offerings?: Array<string>;
|
|
9407
|
+
/**
|
|
9408
|
+
* The credit limit beyond which requests need to be approved by a local admin. If this is None, then no local approval is required. If this is set to 0, then all requests (including creating the project) need to be approved.
|
|
9409
|
+
*/
|
|
9410
|
+
approval_limit?: string | null;
|
|
9411
|
+
/**
|
|
9412
|
+
* Maximum credit limit
|
|
9413
|
+
* The maximum credit limit for any projects created in this class. Any requests beyond this limit are automatically rejected. If this is None, then no maximum limit is set. If this is set to 0, then no projects can be created in this class.
|
|
9414
|
+
*/
|
|
9415
|
+
max_credit_limit?: string | null;
|
|
9416
|
+
/**
|
|
9417
|
+
* The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
|
|
9418
|
+
*/
|
|
9419
|
+
allocation_units_mapping?: unknown;
|
|
9420
|
+
/**
|
|
9421
|
+
* The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
|
|
9422
|
+
*/
|
|
9423
|
+
role_mapping?: unknown;
|
|
9424
|
+
};
|
|
9213
9425
|
export type PatchedProposalProjectRoleMappingRequest = {
|
|
9214
9426
|
call?: string;
|
|
9215
9427
|
proposal_role?: string;
|
|
@@ -9435,6 +9647,15 @@ export type PatchedRancherWorkloadRequest = {
|
|
|
9435
9647
|
namespace?: string | null;
|
|
9436
9648
|
scale?: number;
|
|
9437
9649
|
};
|
|
9650
|
+
export type PatchedRemoteAllocationRequest = {
|
|
9651
|
+
name?: string;
|
|
9652
|
+
description?: string;
|
|
9653
|
+
node_limit?: number;
|
|
9654
|
+
/**
|
|
9655
|
+
* The identifier of the project in the remote OpenPortal instance.
|
|
9656
|
+
*/
|
|
9657
|
+
remote_project_identifier?: string | null;
|
|
9658
|
+
};
|
|
9438
9659
|
export type PatchedRemoteSynchronisationRequest = {
|
|
9439
9660
|
api_url?: string;
|
|
9440
9661
|
token?: string;
|
|
@@ -9650,6 +9871,13 @@ export type PatchedUserAgreementRequest = {
|
|
|
9650
9871
|
content?: string;
|
|
9651
9872
|
agreement_type?: AgreementTypeEnum;
|
|
9652
9873
|
};
|
|
9874
|
+
export type PatchedUserInfoRequest = {
|
|
9875
|
+
/**
|
|
9876
|
+
* A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
9877
|
+
*/
|
|
9878
|
+
shortname?: string | null;
|
|
9879
|
+
user?: string;
|
|
9880
|
+
};
|
|
9653
9881
|
export type PatchedUserOfferingConsentRequest = {
|
|
9654
9882
|
version?: string;
|
|
9655
9883
|
};
|
|
@@ -10002,6 +10230,12 @@ export type ProjectAnswer = {
|
|
|
10002
10230
|
*/
|
|
10003
10231
|
readonly unanswered_required_count: number;
|
|
10004
10232
|
};
|
|
10233
|
+
export type ProjectAttachRequest = {
|
|
10234
|
+
/**
|
|
10235
|
+
* UUID of the project to attach to this managed project
|
|
10236
|
+
*/
|
|
10237
|
+
project_uuid: string;
|
|
10238
|
+
};
|
|
10005
10239
|
export type ProjectCredit = {
|
|
10006
10240
|
readonly uuid: string;
|
|
10007
10241
|
readonly url: string;
|
|
@@ -10089,6 +10323,28 @@ export type ProjectEstimatedCostPolicyRequest = {
|
|
|
10089
10323
|
export type ProjectHyperlinkRequest = {
|
|
10090
10324
|
url: string;
|
|
10091
10325
|
};
|
|
10326
|
+
export type ProjectInfo = {
|
|
10327
|
+
project: string;
|
|
10328
|
+
/**
|
|
10329
|
+
* A short, unique name for the project. It will be used to form the local username of any users in the project on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
10330
|
+
*/
|
|
10331
|
+
shortname?: string | null;
|
|
10332
|
+
/**
|
|
10333
|
+
* A comma-separated list of allowable destinations of instances that can be attached to this project. For example, a project may only allow 'brics.aip1.*', meaning that only instances that start with 'brics.aip1.' can be attached to this project.
|
|
10334
|
+
*/
|
|
10335
|
+
allowed_destinations?: string | null;
|
|
10336
|
+
};
|
|
10337
|
+
export type ProjectInfoRequest = {
|
|
10338
|
+
project: string;
|
|
10339
|
+
/**
|
|
10340
|
+
* A short, unique name for the project. It will be used to form the local username of any users in the project on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
10341
|
+
*/
|
|
10342
|
+
shortname?: string | null;
|
|
10343
|
+
/**
|
|
10344
|
+
* A comma-separated list of allowable destinations of instances that can be attached to this project. For example, a project may only allow 'brics.aip1.*', meaning that only instances that start with 'brics.aip1.' can be attached to this project.
|
|
10345
|
+
*/
|
|
10346
|
+
allowed_destinations?: string | null;
|
|
10347
|
+
};
|
|
10092
10348
|
export type ProjectPermissionLog = {
|
|
10093
10349
|
readonly created?: string;
|
|
10094
10350
|
expiration_time?: string | null;
|
|
@@ -10208,6 +10464,84 @@ export type ProjectServiceAccountRequest = {
|
|
|
10208
10464
|
preferred_identifier?: string;
|
|
10209
10465
|
project: string;
|
|
10210
10466
|
};
|
|
10467
|
+
export type ProjectTemplate = {
|
|
10468
|
+
readonly uuid: string;
|
|
10469
|
+
name: string;
|
|
10470
|
+
/**
|
|
10471
|
+
* The offering for which this template applies.
|
|
10472
|
+
*/
|
|
10473
|
+
offering: string | null;
|
|
10474
|
+
provider: string;
|
|
10475
|
+
provider_data: Customer;
|
|
10476
|
+
portal: string;
|
|
10477
|
+
/**
|
|
10478
|
+
* The key that is used to authenticate requests for this class.
|
|
10479
|
+
*/
|
|
10480
|
+
key?: string | null;
|
|
10481
|
+
customer: string;
|
|
10482
|
+
customer_data: Customer;
|
|
10483
|
+
shortname?: string | null;
|
|
10484
|
+
offerings: Array<string>;
|
|
10485
|
+
readonly offerings_data: Array<ProviderOfferingDetails>;
|
|
10486
|
+
/**
|
|
10487
|
+
* The credit limit beyond which requests need to be approved by a local admin. If this is None, then no local approval is required. If this is set to 0, then all requests (including creating the project) need to be approved.
|
|
10488
|
+
*/
|
|
10489
|
+
approval_limit?: string | null;
|
|
10490
|
+
/**
|
|
10491
|
+
* Maximum credit limit
|
|
10492
|
+
* The maximum credit limit for any projects created in this class. Any requests beyond this limit are automatically rejected. If this is None, then no maximum limit is set. If this is set to 0, then no projects can be created in this class.
|
|
10493
|
+
*/
|
|
10494
|
+
max_credit_limit?: string | null;
|
|
10495
|
+
/**
|
|
10496
|
+
* The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
|
|
10497
|
+
*/
|
|
10498
|
+
allocation_units_mapping?: unknown;
|
|
10499
|
+
/**
|
|
10500
|
+
* The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
|
|
10501
|
+
*/
|
|
10502
|
+
role_mapping?: unknown;
|
|
10503
|
+
/**
|
|
10504
|
+
* Serialize the role mapping dictionary returned by get_role_mapping()
|
|
10505
|
+
*/
|
|
10506
|
+
readonly role_mapping_data: {
|
|
10507
|
+
[key: string]: {
|
|
10508
|
+
[key: string]: string;
|
|
10509
|
+
};
|
|
10510
|
+
};
|
|
10511
|
+
};
|
|
10512
|
+
export type ProjectTemplateRequest = {
|
|
10513
|
+
name: string;
|
|
10514
|
+
/**
|
|
10515
|
+
* The offering for which this template applies.
|
|
10516
|
+
*/
|
|
10517
|
+
offering: string | null;
|
|
10518
|
+
provider: string;
|
|
10519
|
+
portal: string;
|
|
10520
|
+
/**
|
|
10521
|
+
* The key that is used to authenticate requests for this class.
|
|
10522
|
+
*/
|
|
10523
|
+
key?: string | null;
|
|
10524
|
+
customer: string;
|
|
10525
|
+
shortname?: string | null;
|
|
10526
|
+
offerings: Array<string>;
|
|
10527
|
+
/**
|
|
10528
|
+
* The credit limit beyond which requests need to be approved by a local admin. If this is None, then no local approval is required. If this is set to 0, then all requests (including creating the project) need to be approved.
|
|
10529
|
+
*/
|
|
10530
|
+
approval_limit?: string | null;
|
|
10531
|
+
/**
|
|
10532
|
+
* Maximum credit limit
|
|
10533
|
+
* The maximum credit limit for any projects created in this class. Any requests beyond this limit are automatically rejected. If this is None, then no maximum limit is set. If this is set to 0, then no projects can be created in this class.
|
|
10534
|
+
*/
|
|
10535
|
+
max_credit_limit?: string | null;
|
|
10536
|
+
/**
|
|
10537
|
+
* The mapping of credits to allocation units, i.e. how many allocation units to award per credit allocated.
|
|
10538
|
+
*/
|
|
10539
|
+
allocation_units_mapping?: unknown;
|
|
10540
|
+
/**
|
|
10541
|
+
* The mapping of role names from the remote portal to role information in this portal for users in projects created in this class.
|
|
10542
|
+
*/
|
|
10543
|
+
role_mapping?: unknown;
|
|
10544
|
+
};
|
|
10211
10545
|
export type ProjectType = {
|
|
10212
10546
|
readonly uuid: string;
|
|
10213
10547
|
readonly url: string;
|
|
@@ -10652,6 +10986,43 @@ export type ProviderOfferingDetails = {
|
|
|
10652
10986
|
*/
|
|
10653
10987
|
readonly google_calendar_link?: string | null;
|
|
10654
10988
|
};
|
|
10989
|
+
export type ProviderOfferingDetailsRequest = {
|
|
10990
|
+
name: string;
|
|
10991
|
+
slug?: string;
|
|
10992
|
+
description?: string;
|
|
10993
|
+
full_description?: string;
|
|
10994
|
+
privacy_policy_link?: string;
|
|
10995
|
+
/**
|
|
10996
|
+
* Publicly accessible offering access URL
|
|
10997
|
+
*/
|
|
10998
|
+
access_url?: string;
|
|
10999
|
+
customer?: string | null;
|
|
11000
|
+
category: string;
|
|
11001
|
+
attributes?: unknown;
|
|
11002
|
+
components?: Array<OfferingComponentRequest>;
|
|
11003
|
+
vendor_details?: string;
|
|
11004
|
+
getting_started?: string;
|
|
11005
|
+
integration_guide?: string;
|
|
11006
|
+
thumbnail?: (Blob | File) | null;
|
|
11007
|
+
plans?: Array<BaseProviderPlanRequest>;
|
|
11008
|
+
type: string;
|
|
11009
|
+
/**
|
|
11010
|
+
* Accessible to all customers.
|
|
11011
|
+
*/
|
|
11012
|
+
shared?: boolean;
|
|
11013
|
+
/**
|
|
11014
|
+
* Purchase and usage is invoiced.
|
|
11015
|
+
*/
|
|
11016
|
+
billable?: boolean;
|
|
11017
|
+
datacite_doi?: string;
|
|
11018
|
+
latitude?: number | null;
|
|
11019
|
+
longitude?: number | null;
|
|
11020
|
+
country?: CountryEnum | BlankEnum;
|
|
11021
|
+
backend_id?: string;
|
|
11022
|
+
image?: (Blob | File) | null;
|
|
11023
|
+
backend_metadata?: unknown;
|
|
11024
|
+
compliance_checklist?: string | null;
|
|
11025
|
+
};
|
|
10655
11026
|
export type ProviderPlanDetails = {
|
|
10656
11027
|
readonly url: string;
|
|
10657
11028
|
readonly uuid: string;
|
|
@@ -12021,6 +12392,73 @@ export type ReferenceNumberRequest = {
|
|
|
12021
12392
|
*/
|
|
12022
12393
|
reference_number?: string;
|
|
12023
12394
|
};
|
|
12395
|
+
export type RemoteAllocation = {
|
|
12396
|
+
readonly url?: string;
|
|
12397
|
+
readonly uuid?: string;
|
|
12398
|
+
name?: string;
|
|
12399
|
+
description?: string;
|
|
12400
|
+
readonly service_name?: string;
|
|
12401
|
+
service_settings?: string;
|
|
12402
|
+
readonly service_settings_uuid?: string;
|
|
12403
|
+
readonly service_settings_state?: string;
|
|
12404
|
+
readonly service_settings_error_message?: string;
|
|
12405
|
+
project?: string;
|
|
12406
|
+
readonly project_name?: string;
|
|
12407
|
+
readonly project_uuid?: string;
|
|
12408
|
+
readonly customer?: string;
|
|
12409
|
+
readonly customer_uuid?: string;
|
|
12410
|
+
readonly customer_name?: string;
|
|
12411
|
+
readonly customer_native_name?: string;
|
|
12412
|
+
readonly customer_abbreviation?: string;
|
|
12413
|
+
readonly error_message?: string;
|
|
12414
|
+
readonly error_traceback?: string;
|
|
12415
|
+
readonly resource_type?: string;
|
|
12416
|
+
state?: CoreStates;
|
|
12417
|
+
readonly created?: string;
|
|
12418
|
+
readonly modified?: string;
|
|
12419
|
+
readonly backend_id?: string;
|
|
12420
|
+
readonly access_url?: string | null;
|
|
12421
|
+
node_limit?: number;
|
|
12422
|
+
/**
|
|
12423
|
+
* The identifier of the project in the remote OpenPortal instance.
|
|
12424
|
+
*/
|
|
12425
|
+
remote_project_identifier?: string | null;
|
|
12426
|
+
readonly node_usage?: string;
|
|
12427
|
+
readonly is_active?: boolean;
|
|
12428
|
+
readonly marketplace_offering_uuid?: string | null;
|
|
12429
|
+
readonly marketplace_offering_name?: string | null;
|
|
12430
|
+
readonly marketplace_offering_plugin_options?: {
|
|
12431
|
+
[key: string]: unknown;
|
|
12432
|
+
} | null;
|
|
12433
|
+
readonly marketplace_category_uuid?: string | null;
|
|
12434
|
+
readonly marketplace_category_name?: string | null;
|
|
12435
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
12436
|
+
readonly marketplace_plan_uuid?: string | null;
|
|
12437
|
+
readonly marketplace_resource_state?: string | null;
|
|
12438
|
+
readonly is_usage_based?: boolean | null;
|
|
12439
|
+
readonly is_limit_based?: boolean | null;
|
|
12440
|
+
};
|
|
12441
|
+
export type RemoteAllocationRequest = {
|
|
12442
|
+
name: string;
|
|
12443
|
+
description?: string;
|
|
12444
|
+
service_settings: string;
|
|
12445
|
+
project: string;
|
|
12446
|
+
node_limit?: number;
|
|
12447
|
+
/**
|
|
12448
|
+
* The identifier of the project in the remote OpenPortal instance.
|
|
12449
|
+
*/
|
|
12450
|
+
remote_project_identifier?: string | null;
|
|
12451
|
+
};
|
|
12452
|
+
export type RemoteAllocationSetLimits = {
|
|
12453
|
+
node_limit: number;
|
|
12454
|
+
};
|
|
12455
|
+
export type RemoteAllocationSetLimitsRequest = {
|
|
12456
|
+
node_limit: number;
|
|
12457
|
+
};
|
|
12458
|
+
export type RemoteAssociation = {
|
|
12459
|
+
readonly uuid: string;
|
|
12460
|
+
allocation: string;
|
|
12461
|
+
};
|
|
12024
12462
|
export type RemoteCredentialsRequest = {
|
|
12025
12463
|
api_url: string;
|
|
12026
12464
|
token: string;
|
|
@@ -13677,6 +14115,20 @@ export type UserConsentInfo = {
|
|
|
13677
14115
|
export type UserEmailChangeRequest = {
|
|
13678
14116
|
email: string;
|
|
13679
14117
|
};
|
|
14118
|
+
export type UserInfo = {
|
|
14119
|
+
/**
|
|
14120
|
+
* A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
14121
|
+
*/
|
|
14122
|
+
shortname?: string | null;
|
|
14123
|
+
user: string;
|
|
14124
|
+
};
|
|
14125
|
+
export type UserInfoRequest = {
|
|
14126
|
+
/**
|
|
14127
|
+
* A short, unique name for you. It will be used to form your local username on any systems. Should only contain lower-case letters and digits and must start with a letter.
|
|
14128
|
+
*/
|
|
14129
|
+
shortname?: string | null;
|
|
14130
|
+
user: string;
|
|
14131
|
+
};
|
|
13680
14132
|
export type UserOfferingConsent = {
|
|
13681
14133
|
readonly uuid: string;
|
|
13682
14134
|
readonly user_uuid: string;
|
|
@@ -14210,6 +14662,14 @@ export type AzureSqlServerCreateOrderAttributes = {
|
|
|
14210
14662
|
description?: string;
|
|
14211
14663
|
location: string;
|
|
14212
14664
|
};
|
|
14665
|
+
export type MarketplaceOpenPortalCreateOrderAttributes = {
|
|
14666
|
+
name: string;
|
|
14667
|
+
description?: string;
|
|
14668
|
+
};
|
|
14669
|
+
export type MarketplaceOpenPortalRemoteCreateOrderAttributes = {
|
|
14670
|
+
name: string;
|
|
14671
|
+
description?: string;
|
|
14672
|
+
};
|
|
14213
14673
|
export type OpenStackTenantCreateOrderAttributes = {
|
|
14214
14674
|
name: string;
|
|
14215
14675
|
description?: string;
|
|
@@ -14388,19 +14848,46 @@ export type CustomerRequestForm = {
|
|
|
14388
14848
|
*/
|
|
14389
14849
|
backend_id?: string;
|
|
14390
14850
|
image?: (Blob | File) | null;
|
|
14851
|
+
blocked?: boolean;
|
|
14852
|
+
archived?: boolean;
|
|
14853
|
+
display_billing_info_in_projects?: boolean;
|
|
14854
|
+
default_tax_percent?: string;
|
|
14855
|
+
/**
|
|
14856
|
+
* Start date of accounting
|
|
14857
|
+
*/
|
|
14858
|
+
accounting_start_date?: string;
|
|
14859
|
+
/**
|
|
14860
|
+
* External ID of the sponsor covering the costs
|
|
14861
|
+
*/
|
|
14862
|
+
sponsor_number?: number | null;
|
|
14863
|
+
/**
|
|
14864
|
+
* Maximum number of service accounts allowed
|
|
14865
|
+
*/
|
|
14866
|
+
max_service_accounts?: number | null;
|
|
14867
|
+
project_metadata_checklist?: string | null;
|
|
14868
|
+
/**
|
|
14869
|
+
* Number of extra days after project end date before resources are terminated
|
|
14870
|
+
*/
|
|
14871
|
+
grace_period_days?: number | null;
|
|
14391
14872
|
name: string;
|
|
14392
14873
|
slug?: string;
|
|
14393
14874
|
native_name?: string;
|
|
14394
14875
|
abbreviation?: string;
|
|
14395
14876
|
description?: string;
|
|
14396
14877
|
contact_details?: string;
|
|
14878
|
+
agreement_number?: string;
|
|
14397
14879
|
/**
|
|
14398
14880
|
* Email address
|
|
14399
14881
|
*/
|
|
14400
14882
|
email?: string;
|
|
14401
14883
|
phone_number?: string;
|
|
14884
|
+
/**
|
|
14885
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
14886
|
+
*/
|
|
14887
|
+
access_subnets?: string;
|
|
14402
14888
|
registration_code?: string;
|
|
14403
14889
|
homepage?: string;
|
|
14890
|
+
domain?: string;
|
|
14404
14891
|
/**
|
|
14405
14892
|
* VAT number
|
|
14406
14893
|
*/
|
|
@@ -14423,19 +14910,46 @@ export type CustomerRequestMultipart = {
|
|
|
14423
14910
|
*/
|
|
14424
14911
|
backend_id?: string;
|
|
14425
14912
|
image?: (Blob | File) | null;
|
|
14913
|
+
blocked?: boolean;
|
|
14914
|
+
archived?: boolean;
|
|
14915
|
+
display_billing_info_in_projects?: boolean;
|
|
14916
|
+
default_tax_percent?: string;
|
|
14917
|
+
/**
|
|
14918
|
+
* Start date of accounting
|
|
14919
|
+
*/
|
|
14920
|
+
accounting_start_date?: string;
|
|
14921
|
+
/**
|
|
14922
|
+
* External ID of the sponsor covering the costs
|
|
14923
|
+
*/
|
|
14924
|
+
sponsor_number?: number | null;
|
|
14925
|
+
/**
|
|
14926
|
+
* Maximum number of service accounts allowed
|
|
14927
|
+
*/
|
|
14928
|
+
max_service_accounts?: number | null;
|
|
14929
|
+
project_metadata_checklist?: string | null;
|
|
14930
|
+
/**
|
|
14931
|
+
* Number of extra days after project end date before resources are terminated
|
|
14932
|
+
*/
|
|
14933
|
+
grace_period_days?: number | null;
|
|
14426
14934
|
name: string;
|
|
14427
14935
|
slug?: string;
|
|
14428
14936
|
native_name?: string;
|
|
14429
14937
|
abbreviation?: string;
|
|
14430
14938
|
description?: string;
|
|
14431
14939
|
contact_details?: string;
|
|
14940
|
+
agreement_number?: string;
|
|
14432
14941
|
/**
|
|
14433
14942
|
* Email address
|
|
14434
14943
|
*/
|
|
14435
14944
|
email?: string;
|
|
14436
14945
|
phone_number?: string;
|
|
14946
|
+
/**
|
|
14947
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
14948
|
+
*/
|
|
14949
|
+
access_subnets?: string;
|
|
14437
14950
|
registration_code?: string;
|
|
14438
14951
|
homepage?: string;
|
|
14952
|
+
domain?: string;
|
|
14439
14953
|
/**
|
|
14440
14954
|
* VAT number
|
|
14441
14955
|
*/
|
|
@@ -14458,19 +14972,46 @@ export type PatchedCustomerRequestForm = {
|
|
|
14458
14972
|
*/
|
|
14459
14973
|
backend_id?: string;
|
|
14460
14974
|
image?: (Blob | File) | null;
|
|
14975
|
+
blocked?: boolean;
|
|
14976
|
+
archived?: boolean;
|
|
14977
|
+
display_billing_info_in_projects?: boolean;
|
|
14978
|
+
default_tax_percent?: string;
|
|
14979
|
+
/**
|
|
14980
|
+
* Start date of accounting
|
|
14981
|
+
*/
|
|
14982
|
+
accounting_start_date?: string;
|
|
14983
|
+
/**
|
|
14984
|
+
* External ID of the sponsor covering the costs
|
|
14985
|
+
*/
|
|
14986
|
+
sponsor_number?: number | null;
|
|
14987
|
+
/**
|
|
14988
|
+
* Maximum number of service accounts allowed
|
|
14989
|
+
*/
|
|
14990
|
+
max_service_accounts?: number | null;
|
|
14991
|
+
project_metadata_checklist?: string | null;
|
|
14992
|
+
/**
|
|
14993
|
+
* Number of extra days after project end date before resources are terminated
|
|
14994
|
+
*/
|
|
14995
|
+
grace_period_days?: number | null;
|
|
14461
14996
|
name?: string;
|
|
14462
14997
|
slug?: string;
|
|
14463
14998
|
native_name?: string;
|
|
14464
14999
|
abbreviation?: string;
|
|
14465
15000
|
description?: string;
|
|
14466
15001
|
contact_details?: string;
|
|
15002
|
+
agreement_number?: string;
|
|
14467
15003
|
/**
|
|
14468
15004
|
* Email address
|
|
14469
15005
|
*/
|
|
14470
15006
|
email?: string;
|
|
14471
15007
|
phone_number?: string;
|
|
15008
|
+
/**
|
|
15009
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
15010
|
+
*/
|
|
15011
|
+
access_subnets?: string;
|
|
14472
15012
|
registration_code?: string;
|
|
14473
15013
|
homepage?: string;
|
|
15014
|
+
domain?: string;
|
|
14474
15015
|
/**
|
|
14475
15016
|
* VAT number
|
|
14476
15017
|
*/
|
|
@@ -14493,19 +15034,46 @@ export type PatchedCustomerRequestMultipart = {
|
|
|
14493
15034
|
*/
|
|
14494
15035
|
backend_id?: string;
|
|
14495
15036
|
image?: (Blob | File) | null;
|
|
15037
|
+
blocked?: boolean;
|
|
15038
|
+
archived?: boolean;
|
|
15039
|
+
display_billing_info_in_projects?: boolean;
|
|
15040
|
+
default_tax_percent?: string;
|
|
15041
|
+
/**
|
|
15042
|
+
* Start date of accounting
|
|
15043
|
+
*/
|
|
15044
|
+
accounting_start_date?: string;
|
|
15045
|
+
/**
|
|
15046
|
+
* External ID of the sponsor covering the costs
|
|
15047
|
+
*/
|
|
15048
|
+
sponsor_number?: number | null;
|
|
15049
|
+
/**
|
|
15050
|
+
* Maximum number of service accounts allowed
|
|
15051
|
+
*/
|
|
15052
|
+
max_service_accounts?: number | null;
|
|
15053
|
+
project_metadata_checklist?: string | null;
|
|
15054
|
+
/**
|
|
15055
|
+
* Number of extra days after project end date before resources are terminated
|
|
15056
|
+
*/
|
|
15057
|
+
grace_period_days?: number | null;
|
|
14496
15058
|
name?: string;
|
|
14497
15059
|
slug?: string;
|
|
14498
15060
|
native_name?: string;
|
|
14499
15061
|
abbreviation?: string;
|
|
14500
15062
|
description?: string;
|
|
14501
15063
|
contact_details?: string;
|
|
15064
|
+
agreement_number?: string;
|
|
14502
15065
|
/**
|
|
14503
15066
|
* Email address
|
|
14504
15067
|
*/
|
|
14505
15068
|
email?: string;
|
|
14506
15069
|
phone_number?: string;
|
|
15070
|
+
/**
|
|
15071
|
+
* Enter a comma separated list of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed.
|
|
15072
|
+
*/
|
|
15073
|
+
access_subnets?: string;
|
|
14507
15074
|
registration_code?: string;
|
|
14508
15075
|
homepage?: string;
|
|
15076
|
+
domain?: string;
|
|
14509
15077
|
/**
|
|
14510
15078
|
* VAT number
|
|
14511
15079
|
*/
|
|
@@ -14804,340 +15372,6 @@ export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
|
14804
15372
|
*/
|
|
14805
15373
|
file?: (Blob | File) | null;
|
|
14806
15374
|
};
|
|
14807
|
-
export type ConstanceSettingsRequestForm = {
|
|
14808
|
-
SITE_NAME?: string;
|
|
14809
|
-
SITE_DESCRIPTION?: string;
|
|
14810
|
-
HOMEPORT_URL?: string;
|
|
14811
|
-
RANCHER_USERNAME_INPUT_LABEL?: string;
|
|
14812
|
-
SITE_ADDRESS?: string;
|
|
14813
|
-
SITE_EMAIL?: string;
|
|
14814
|
-
SITE_PHONE?: string;
|
|
14815
|
-
CURRENCY_NAME?: string;
|
|
14816
|
-
THUMBNAIL_SIZE?: string;
|
|
14817
|
-
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
14818
|
-
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
14819
|
-
NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
|
|
14820
|
-
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
14821
|
-
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
14822
|
-
MARKETPLACE_LANDING_PAGE?: string;
|
|
14823
|
-
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
14824
|
-
TELEMETRY_URL?: string;
|
|
14825
|
-
TELEMETRY_VERSION?: number;
|
|
14826
|
-
SCRIPT_RUN_MODE?: string;
|
|
14827
|
-
DOCKER_CLIENT?: string;
|
|
14828
|
-
DOCKER_RUN_OPTIONS?: string;
|
|
14829
|
-
DOCKER_SCRIPT_DIR?: string;
|
|
14830
|
-
DOCKER_REMOVE_CONTAINER?: boolean;
|
|
14831
|
-
DOCKER_IMAGES?: string;
|
|
14832
|
-
DOCKER_VOLUME_NAME?: string;
|
|
14833
|
-
K8S_NAMESPACE?: string;
|
|
14834
|
-
K8S_CONFIG_PATH?: string;
|
|
14835
|
-
K8S_JOB_TIMEOUT?: number;
|
|
14836
|
-
ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
|
|
14837
|
-
INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
|
|
14838
|
-
DEFAULT_IDP?: string;
|
|
14839
|
-
DOCS_URL?: string;
|
|
14840
|
-
SHORT_PAGE_TITLE?: string;
|
|
14841
|
-
FULL_PAGE_TITLE?: string;
|
|
14842
|
-
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
14843
|
-
ENABLE_ORDER_START_DATE?: boolean;
|
|
14844
|
-
BRAND_COLOR?: string;
|
|
14845
|
-
HERO_LINK_LABEL?: string;
|
|
14846
|
-
HERO_LINK_URL?: string;
|
|
14847
|
-
SUPPORT_PORTAL_URL?: string;
|
|
14848
|
-
COMMON_FOOTER_TEXT?: string;
|
|
14849
|
-
COMMON_FOOTER_HTML?: string;
|
|
14850
|
-
LANGUAGE_CHOICES?: string;
|
|
14851
|
-
DISABLE_DARK_THEME?: boolean;
|
|
14852
|
-
POWERED_BY_LOGO?: (Blob | File) | null;
|
|
14853
|
-
HERO_IMAGE?: (Blob | File) | null;
|
|
14854
|
-
MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
|
|
14855
|
-
CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
|
|
14856
|
-
SIDEBAR_LOGO?: (Blob | File) | null;
|
|
14857
|
-
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
14858
|
-
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
14859
|
-
SIDEBAR_STYLE?: string;
|
|
14860
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
14861
|
-
LOGIN_LOGO?: (Blob | File) | null;
|
|
14862
|
-
FAVICON?: (Blob | File) | null;
|
|
14863
|
-
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
14864
|
-
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
14865
|
-
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
14866
|
-
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
14867
|
-
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
14868
|
-
ATLASSIAN_API_URL?: string;
|
|
14869
|
-
ATLASSIAN_USERNAME?: string;
|
|
14870
|
-
ATLASSIAN_PASSWORD?: string;
|
|
14871
|
-
ATLASSIAN_EMAIL?: string;
|
|
14872
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
14873
|
-
ATLASSIAN_TOKEN?: string;
|
|
14874
|
-
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
14875
|
-
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
14876
|
-
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
14877
|
-
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
14878
|
-
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
14879
|
-
ATLASSIAN_PROJECT_ID?: string;
|
|
14880
|
-
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
14881
|
-
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
14882
|
-
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
14883
|
-
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
14884
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
14885
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
14886
|
-
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
14887
|
-
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
14888
|
-
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
14889
|
-
ATLASSIAN_IMPACT_FIELD?: string;
|
|
14890
|
-
ATLASSIAN_ORGANISATION_FIELD?: string;
|
|
14891
|
-
ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
|
|
14892
|
-
ATLASSIAN_PROJECT_FIELD?: string;
|
|
14893
|
-
ATLASSIAN_REPORTER_FIELD?: string;
|
|
14894
|
-
ATLASSIAN_CALLER_FIELD?: string;
|
|
14895
|
-
ATLASSIAN_SLA_FIELD?: string;
|
|
14896
|
-
ATLASSIAN_LINKED_ISSUE_TYPE?: string;
|
|
14897
|
-
ATLASSIAN_SATISFACTION_FIELD?: string;
|
|
14898
|
-
ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
|
|
14899
|
-
ATLASSIAN_TEMPLATE_FIELD?: string;
|
|
14900
|
-
ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
|
|
14901
|
-
ZAMMAD_API_URL?: string;
|
|
14902
|
-
ZAMMAD_TOKEN?: string;
|
|
14903
|
-
ZAMMAD_GROUP?: string;
|
|
14904
|
-
ZAMMAD_ARTICLE_TYPE?: string;
|
|
14905
|
-
ZAMMAD_COMMENT_MARKER?: string;
|
|
14906
|
-
ZAMMAD_COMMENT_PREFIX?: string;
|
|
14907
|
-
ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
|
|
14908
|
-
SMAX_API_URL?: string;
|
|
14909
|
-
SMAX_TENANT_ID?: string;
|
|
14910
|
-
SMAX_LOGIN?: string;
|
|
14911
|
-
SMAX_PASSWORD?: string;
|
|
14912
|
-
SMAX_ORGANISATION_FIELD?: string;
|
|
14913
|
-
SMAX_PROJECT_FIELD?: string;
|
|
14914
|
-
SMAX_AFFECTED_RESOURCE_FIELD?: string;
|
|
14915
|
-
SMAX_TIMES_TO_PULL?: number;
|
|
14916
|
-
SMAX_SECONDS_TO_WAIT?: number;
|
|
14917
|
-
SMAX_CREATION_SOURCE_NAME?: string;
|
|
14918
|
-
SMAX_REQUESTS_OFFERING?: string;
|
|
14919
|
-
SMAX_VERIFY_SSL?: boolean;
|
|
14920
|
-
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
14921
|
-
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
14922
|
-
PROPOSAL_REVIEW_DURATION?: number;
|
|
14923
|
-
USER_TABLE_COLUMNS?: string;
|
|
14924
|
-
AUTO_APPROVE_USER_TOS?: boolean;
|
|
14925
|
-
FREEIPA_ENABLED?: boolean;
|
|
14926
|
-
FREEIPA_HOSTNAME?: string;
|
|
14927
|
-
FREEIPA_USERNAME?: string;
|
|
14928
|
-
FREEIPA_PASSWORD?: string;
|
|
14929
|
-
FREEIPA_VERIFY_SSL?: boolean;
|
|
14930
|
-
FREEIPA_USERNAME_PREFIX?: string;
|
|
14931
|
-
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
14932
|
-
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
14933
|
-
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
14934
|
-
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
14935
|
-
COUNTRIES?: Array<string>;
|
|
14936
|
-
OIDC_AUTH_URL?: string;
|
|
14937
|
-
OIDC_INTROSPECTION_URL?: string;
|
|
14938
|
-
OIDC_CLIENT_ID?: string;
|
|
14939
|
-
OIDC_CLIENT_SECRET?: string;
|
|
14940
|
-
OIDC_USER_FIELD?: string;
|
|
14941
|
-
OIDC_CACHE_TIMEOUT?: number;
|
|
14942
|
-
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
14943
|
-
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
14944
|
-
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
14945
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
14946
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
14947
|
-
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
14948
|
-
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
14949
|
-
ONBOARDING_COUNTRY?: string;
|
|
14950
|
-
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
14951
|
-
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
14952
|
-
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
14953
|
-
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
14954
|
-
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
14955
|
-
ONBOARDING_WICO_API_URL?: string;
|
|
14956
|
-
ONBOARDING_WICO_TOKEN?: string;
|
|
14957
|
-
ONBOARDING_BOLAGSVERKET_API_URL?: string;
|
|
14958
|
-
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
14959
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
14960
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
14961
|
-
};
|
|
14962
|
-
export type ConstanceSettingsRequestMultipart = {
|
|
14963
|
-
SITE_NAME?: string;
|
|
14964
|
-
SITE_DESCRIPTION?: string;
|
|
14965
|
-
HOMEPORT_URL?: string;
|
|
14966
|
-
RANCHER_USERNAME_INPUT_LABEL?: string;
|
|
14967
|
-
SITE_ADDRESS?: string;
|
|
14968
|
-
SITE_EMAIL?: string;
|
|
14969
|
-
SITE_PHONE?: string;
|
|
14970
|
-
CURRENCY_NAME?: string;
|
|
14971
|
-
THUMBNAIL_SIZE?: string;
|
|
14972
|
-
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
14973
|
-
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
14974
|
-
NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
|
|
14975
|
-
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
14976
|
-
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
14977
|
-
MARKETPLACE_LANDING_PAGE?: string;
|
|
14978
|
-
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
14979
|
-
TELEMETRY_URL?: string;
|
|
14980
|
-
TELEMETRY_VERSION?: number;
|
|
14981
|
-
SCRIPT_RUN_MODE?: string;
|
|
14982
|
-
DOCKER_CLIENT?: string;
|
|
14983
|
-
DOCKER_RUN_OPTIONS?: string;
|
|
14984
|
-
DOCKER_SCRIPT_DIR?: string;
|
|
14985
|
-
DOCKER_REMOVE_CONTAINER?: boolean;
|
|
14986
|
-
DOCKER_IMAGES?: string;
|
|
14987
|
-
DOCKER_VOLUME_NAME?: string;
|
|
14988
|
-
K8S_NAMESPACE?: string;
|
|
14989
|
-
K8S_CONFIG_PATH?: string;
|
|
14990
|
-
K8S_JOB_TIMEOUT?: number;
|
|
14991
|
-
ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
|
|
14992
|
-
INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
|
|
14993
|
-
DEFAULT_IDP?: string;
|
|
14994
|
-
DOCS_URL?: string;
|
|
14995
|
-
SHORT_PAGE_TITLE?: string;
|
|
14996
|
-
FULL_PAGE_TITLE?: string;
|
|
14997
|
-
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
14998
|
-
ENABLE_ORDER_START_DATE?: boolean;
|
|
14999
|
-
BRAND_COLOR?: string;
|
|
15000
|
-
HERO_LINK_LABEL?: string;
|
|
15001
|
-
HERO_LINK_URL?: string;
|
|
15002
|
-
SUPPORT_PORTAL_URL?: string;
|
|
15003
|
-
COMMON_FOOTER_TEXT?: string;
|
|
15004
|
-
COMMON_FOOTER_HTML?: string;
|
|
15005
|
-
LANGUAGE_CHOICES?: string;
|
|
15006
|
-
DISABLE_DARK_THEME?: boolean;
|
|
15007
|
-
POWERED_BY_LOGO?: (Blob | File) | null;
|
|
15008
|
-
HERO_IMAGE?: (Blob | File) | null;
|
|
15009
|
-
MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
|
|
15010
|
-
CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
|
|
15011
|
-
SIDEBAR_LOGO?: (Blob | File) | null;
|
|
15012
|
-
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
15013
|
-
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
15014
|
-
SIDEBAR_STYLE?: string;
|
|
15015
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
15016
|
-
LOGIN_LOGO?: (Blob | File) | null;
|
|
15017
|
-
FAVICON?: (Blob | File) | null;
|
|
15018
|
-
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
15019
|
-
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
15020
|
-
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
15021
|
-
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
15022
|
-
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
15023
|
-
ATLASSIAN_API_URL?: string;
|
|
15024
|
-
ATLASSIAN_USERNAME?: string;
|
|
15025
|
-
ATLASSIAN_PASSWORD?: string;
|
|
15026
|
-
ATLASSIAN_EMAIL?: string;
|
|
15027
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
15028
|
-
ATLASSIAN_TOKEN?: string;
|
|
15029
|
-
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
15030
|
-
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
15031
|
-
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
15032
|
-
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
15033
|
-
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
15034
|
-
ATLASSIAN_PROJECT_ID?: string;
|
|
15035
|
-
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
15036
|
-
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
15037
|
-
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
15038
|
-
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
15039
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
15040
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
15041
|
-
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
15042
|
-
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
15043
|
-
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
15044
|
-
ATLASSIAN_IMPACT_FIELD?: string;
|
|
15045
|
-
ATLASSIAN_ORGANISATION_FIELD?: string;
|
|
15046
|
-
ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
|
|
15047
|
-
ATLASSIAN_PROJECT_FIELD?: string;
|
|
15048
|
-
ATLASSIAN_REPORTER_FIELD?: string;
|
|
15049
|
-
ATLASSIAN_CALLER_FIELD?: string;
|
|
15050
|
-
ATLASSIAN_SLA_FIELD?: string;
|
|
15051
|
-
ATLASSIAN_LINKED_ISSUE_TYPE?: string;
|
|
15052
|
-
ATLASSIAN_SATISFACTION_FIELD?: string;
|
|
15053
|
-
ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
|
|
15054
|
-
ATLASSIAN_TEMPLATE_FIELD?: string;
|
|
15055
|
-
ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
|
|
15056
|
-
ZAMMAD_API_URL?: string;
|
|
15057
|
-
ZAMMAD_TOKEN?: string;
|
|
15058
|
-
ZAMMAD_GROUP?: string;
|
|
15059
|
-
ZAMMAD_ARTICLE_TYPE?: string;
|
|
15060
|
-
ZAMMAD_COMMENT_MARKER?: string;
|
|
15061
|
-
ZAMMAD_COMMENT_PREFIX?: string;
|
|
15062
|
-
ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
|
|
15063
|
-
SMAX_API_URL?: string;
|
|
15064
|
-
SMAX_TENANT_ID?: string;
|
|
15065
|
-
SMAX_LOGIN?: string;
|
|
15066
|
-
SMAX_PASSWORD?: string;
|
|
15067
|
-
SMAX_ORGANISATION_FIELD?: string;
|
|
15068
|
-
SMAX_PROJECT_FIELD?: string;
|
|
15069
|
-
SMAX_AFFECTED_RESOURCE_FIELD?: string;
|
|
15070
|
-
SMAX_TIMES_TO_PULL?: number;
|
|
15071
|
-
SMAX_SECONDS_TO_WAIT?: number;
|
|
15072
|
-
SMAX_CREATION_SOURCE_NAME?: string;
|
|
15073
|
-
SMAX_REQUESTS_OFFERING?: string;
|
|
15074
|
-
SMAX_VERIFY_SSL?: boolean;
|
|
15075
|
-
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
15076
|
-
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
15077
|
-
PROPOSAL_REVIEW_DURATION?: number;
|
|
15078
|
-
USER_TABLE_COLUMNS?: string;
|
|
15079
|
-
AUTO_APPROVE_USER_TOS?: boolean;
|
|
15080
|
-
FREEIPA_ENABLED?: boolean;
|
|
15081
|
-
FREEIPA_HOSTNAME?: string;
|
|
15082
|
-
FREEIPA_USERNAME?: string;
|
|
15083
|
-
FREEIPA_PASSWORD?: string;
|
|
15084
|
-
FREEIPA_VERIFY_SSL?: boolean;
|
|
15085
|
-
FREEIPA_USERNAME_PREFIX?: string;
|
|
15086
|
-
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
15087
|
-
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
15088
|
-
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
15089
|
-
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
15090
|
-
COUNTRIES?: Array<string>;
|
|
15091
|
-
OIDC_AUTH_URL?: string;
|
|
15092
|
-
OIDC_INTROSPECTION_URL?: string;
|
|
15093
|
-
OIDC_CLIENT_ID?: string;
|
|
15094
|
-
OIDC_CLIENT_SECRET?: string;
|
|
15095
|
-
OIDC_USER_FIELD?: string;
|
|
15096
|
-
OIDC_CACHE_TIMEOUT?: number;
|
|
15097
|
-
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
15098
|
-
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
15099
|
-
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
15100
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
15101
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
15102
|
-
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
15103
|
-
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
15104
|
-
ONBOARDING_COUNTRY?: string;
|
|
15105
|
-
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
15106
|
-
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
15107
|
-
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
15108
|
-
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
15109
|
-
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
15110
|
-
ONBOARDING_WICO_API_URL?: string;
|
|
15111
|
-
ONBOARDING_WICO_TOKEN?: string;
|
|
15112
|
-
ONBOARDING_BOLAGSVERKET_API_URL?: string;
|
|
15113
|
-
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15114
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15115
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15116
|
-
};
|
|
15117
|
-
export type PaymentRequestForm = {
|
|
15118
|
-
profile: string;
|
|
15119
|
-
date_of_payment: string;
|
|
15120
|
-
sum?: string;
|
|
15121
|
-
proof?: (Blob | File) | null;
|
|
15122
|
-
};
|
|
15123
|
-
export type PaymentRequestMultipart = {
|
|
15124
|
-
profile: string;
|
|
15125
|
-
date_of_payment: string;
|
|
15126
|
-
sum?: string;
|
|
15127
|
-
proof?: (Blob | File) | null;
|
|
15128
|
-
};
|
|
15129
|
-
export type PatchedPaymentRequestForm = {
|
|
15130
|
-
profile?: string;
|
|
15131
|
-
date_of_payment?: string;
|
|
15132
|
-
sum?: string;
|
|
15133
|
-
proof?: (Blob | File) | null;
|
|
15134
|
-
};
|
|
15135
|
-
export type PatchedPaymentRequestMultipart = {
|
|
15136
|
-
profile?: string;
|
|
15137
|
-
date_of_payment?: string;
|
|
15138
|
-
sum?: string;
|
|
15139
|
-
proof?: (Blob | File) | null;
|
|
15140
|
-
};
|
|
15141
15375
|
export type ProjectRequestForm = {
|
|
15142
15376
|
name: string;
|
|
15143
15377
|
slug?: string;
|
|
@@ -15250,6 +15484,340 @@ export type PatchedProjectRequestMultipart = {
|
|
|
15250
15484
|
*/
|
|
15251
15485
|
grace_period_days?: number | null;
|
|
15252
15486
|
};
|
|
15487
|
+
export type ConstanceSettingsRequestForm = {
|
|
15488
|
+
SITE_NAME?: string;
|
|
15489
|
+
SITE_DESCRIPTION?: string;
|
|
15490
|
+
HOMEPORT_URL?: string;
|
|
15491
|
+
RANCHER_USERNAME_INPUT_LABEL?: string;
|
|
15492
|
+
SITE_ADDRESS?: string;
|
|
15493
|
+
SITE_EMAIL?: string;
|
|
15494
|
+
SITE_PHONE?: string;
|
|
15495
|
+
CURRENCY_NAME?: string;
|
|
15496
|
+
THUMBNAIL_SIZE?: string;
|
|
15497
|
+
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
15498
|
+
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
15499
|
+
NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
|
|
15500
|
+
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
15501
|
+
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
15502
|
+
MARKETPLACE_LANDING_PAGE?: string;
|
|
15503
|
+
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
15504
|
+
TELEMETRY_URL?: string;
|
|
15505
|
+
TELEMETRY_VERSION?: number;
|
|
15506
|
+
SCRIPT_RUN_MODE?: string;
|
|
15507
|
+
DOCKER_CLIENT?: string;
|
|
15508
|
+
DOCKER_RUN_OPTIONS?: string;
|
|
15509
|
+
DOCKER_SCRIPT_DIR?: string;
|
|
15510
|
+
DOCKER_REMOVE_CONTAINER?: boolean;
|
|
15511
|
+
DOCKER_IMAGES?: string;
|
|
15512
|
+
DOCKER_VOLUME_NAME?: string;
|
|
15513
|
+
K8S_NAMESPACE?: string;
|
|
15514
|
+
K8S_CONFIG_PATH?: string;
|
|
15515
|
+
K8S_JOB_TIMEOUT?: number;
|
|
15516
|
+
ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
|
|
15517
|
+
INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
|
|
15518
|
+
DEFAULT_IDP?: string;
|
|
15519
|
+
DOCS_URL?: string;
|
|
15520
|
+
SHORT_PAGE_TITLE?: string;
|
|
15521
|
+
FULL_PAGE_TITLE?: string;
|
|
15522
|
+
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
15523
|
+
ENABLE_ORDER_START_DATE?: boolean;
|
|
15524
|
+
BRAND_COLOR?: string;
|
|
15525
|
+
HERO_LINK_LABEL?: string;
|
|
15526
|
+
HERO_LINK_URL?: string;
|
|
15527
|
+
SUPPORT_PORTAL_URL?: string;
|
|
15528
|
+
COMMON_FOOTER_TEXT?: string;
|
|
15529
|
+
COMMON_FOOTER_HTML?: string;
|
|
15530
|
+
LANGUAGE_CHOICES?: string;
|
|
15531
|
+
DISABLE_DARK_THEME?: boolean;
|
|
15532
|
+
POWERED_BY_LOGO?: (Blob | File) | null;
|
|
15533
|
+
HERO_IMAGE?: (Blob | File) | null;
|
|
15534
|
+
MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
|
|
15535
|
+
CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
|
|
15536
|
+
SIDEBAR_LOGO?: (Blob | File) | null;
|
|
15537
|
+
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
15538
|
+
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
15539
|
+
SIDEBAR_STYLE?: string;
|
|
15540
|
+
SITE_LOGO?: (Blob | File) | null;
|
|
15541
|
+
LOGIN_LOGO?: (Blob | File) | null;
|
|
15542
|
+
FAVICON?: (Blob | File) | null;
|
|
15543
|
+
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
15544
|
+
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
15545
|
+
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
15546
|
+
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
15547
|
+
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
15548
|
+
ATLASSIAN_API_URL?: string;
|
|
15549
|
+
ATLASSIAN_USERNAME?: string;
|
|
15550
|
+
ATLASSIAN_PASSWORD?: string;
|
|
15551
|
+
ATLASSIAN_EMAIL?: string;
|
|
15552
|
+
ATLASSIAN_USE_OLD_API?: boolean;
|
|
15553
|
+
ATLASSIAN_TOKEN?: string;
|
|
15554
|
+
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
15555
|
+
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
15556
|
+
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
15557
|
+
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
15558
|
+
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
15559
|
+
ATLASSIAN_PROJECT_ID?: string;
|
|
15560
|
+
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
15561
|
+
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
15562
|
+
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
15563
|
+
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
15564
|
+
ATLASSIAN_ISSUE_TYPES?: string;
|
|
15565
|
+
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
15566
|
+
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
15567
|
+
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
15568
|
+
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
15569
|
+
ATLASSIAN_IMPACT_FIELD?: string;
|
|
15570
|
+
ATLASSIAN_ORGANISATION_FIELD?: string;
|
|
15571
|
+
ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
|
|
15572
|
+
ATLASSIAN_PROJECT_FIELD?: string;
|
|
15573
|
+
ATLASSIAN_REPORTER_FIELD?: string;
|
|
15574
|
+
ATLASSIAN_CALLER_FIELD?: string;
|
|
15575
|
+
ATLASSIAN_SLA_FIELD?: string;
|
|
15576
|
+
ATLASSIAN_LINKED_ISSUE_TYPE?: string;
|
|
15577
|
+
ATLASSIAN_SATISFACTION_FIELD?: string;
|
|
15578
|
+
ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
|
|
15579
|
+
ATLASSIAN_TEMPLATE_FIELD?: string;
|
|
15580
|
+
ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
|
|
15581
|
+
ZAMMAD_API_URL?: string;
|
|
15582
|
+
ZAMMAD_TOKEN?: string;
|
|
15583
|
+
ZAMMAD_GROUP?: string;
|
|
15584
|
+
ZAMMAD_ARTICLE_TYPE?: string;
|
|
15585
|
+
ZAMMAD_COMMENT_MARKER?: string;
|
|
15586
|
+
ZAMMAD_COMMENT_PREFIX?: string;
|
|
15587
|
+
ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
|
|
15588
|
+
SMAX_API_URL?: string;
|
|
15589
|
+
SMAX_TENANT_ID?: string;
|
|
15590
|
+
SMAX_LOGIN?: string;
|
|
15591
|
+
SMAX_PASSWORD?: string;
|
|
15592
|
+
SMAX_ORGANISATION_FIELD?: string;
|
|
15593
|
+
SMAX_PROJECT_FIELD?: string;
|
|
15594
|
+
SMAX_AFFECTED_RESOURCE_FIELD?: string;
|
|
15595
|
+
SMAX_TIMES_TO_PULL?: number;
|
|
15596
|
+
SMAX_SECONDS_TO_WAIT?: number;
|
|
15597
|
+
SMAX_CREATION_SOURCE_NAME?: string;
|
|
15598
|
+
SMAX_REQUESTS_OFFERING?: string;
|
|
15599
|
+
SMAX_VERIFY_SSL?: boolean;
|
|
15600
|
+
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
15601
|
+
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
15602
|
+
PROPOSAL_REVIEW_DURATION?: number;
|
|
15603
|
+
USER_TABLE_COLUMNS?: string;
|
|
15604
|
+
AUTO_APPROVE_USER_TOS?: boolean;
|
|
15605
|
+
FREEIPA_ENABLED?: boolean;
|
|
15606
|
+
FREEIPA_HOSTNAME?: string;
|
|
15607
|
+
FREEIPA_USERNAME?: string;
|
|
15608
|
+
FREEIPA_PASSWORD?: string;
|
|
15609
|
+
FREEIPA_VERIFY_SSL?: boolean;
|
|
15610
|
+
FREEIPA_USERNAME_PREFIX?: string;
|
|
15611
|
+
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
15612
|
+
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
15613
|
+
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
15614
|
+
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
15615
|
+
COUNTRIES?: Array<string>;
|
|
15616
|
+
OIDC_AUTH_URL?: string;
|
|
15617
|
+
OIDC_INTROSPECTION_URL?: string;
|
|
15618
|
+
OIDC_CLIENT_ID?: string;
|
|
15619
|
+
OIDC_CLIENT_SECRET?: string;
|
|
15620
|
+
OIDC_USER_FIELD?: string;
|
|
15621
|
+
OIDC_CACHE_TIMEOUT?: number;
|
|
15622
|
+
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
15623
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
15624
|
+
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
15625
|
+
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
15626
|
+
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
15627
|
+
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
15628
|
+
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
15629
|
+
ONBOARDING_COUNTRY?: string;
|
|
15630
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
15631
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
15632
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
15633
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
15634
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
15635
|
+
ONBOARDING_WICO_API_URL?: string;
|
|
15636
|
+
ONBOARDING_WICO_TOKEN?: string;
|
|
15637
|
+
ONBOARDING_BOLAGSVERKET_API_URL?: string;
|
|
15638
|
+
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15639
|
+
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15640
|
+
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15641
|
+
};
|
|
15642
|
+
export type ConstanceSettingsRequestMultipart = {
|
|
15643
|
+
SITE_NAME?: string;
|
|
15644
|
+
SITE_DESCRIPTION?: string;
|
|
15645
|
+
HOMEPORT_URL?: string;
|
|
15646
|
+
RANCHER_USERNAME_INPUT_LABEL?: string;
|
|
15647
|
+
SITE_ADDRESS?: string;
|
|
15648
|
+
SITE_EMAIL?: string;
|
|
15649
|
+
SITE_PHONE?: string;
|
|
15650
|
+
CURRENCY_NAME?: string;
|
|
15651
|
+
THUMBNAIL_SIZE?: string;
|
|
15652
|
+
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
15653
|
+
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
15654
|
+
NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
|
|
15655
|
+
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
15656
|
+
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
15657
|
+
MARKETPLACE_LANDING_PAGE?: string;
|
|
15658
|
+
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
15659
|
+
TELEMETRY_URL?: string;
|
|
15660
|
+
TELEMETRY_VERSION?: number;
|
|
15661
|
+
SCRIPT_RUN_MODE?: string;
|
|
15662
|
+
DOCKER_CLIENT?: string;
|
|
15663
|
+
DOCKER_RUN_OPTIONS?: string;
|
|
15664
|
+
DOCKER_SCRIPT_DIR?: string;
|
|
15665
|
+
DOCKER_REMOVE_CONTAINER?: boolean;
|
|
15666
|
+
DOCKER_IMAGES?: string;
|
|
15667
|
+
DOCKER_VOLUME_NAME?: string;
|
|
15668
|
+
K8S_NAMESPACE?: string;
|
|
15669
|
+
K8S_CONFIG_PATH?: string;
|
|
15670
|
+
K8S_JOB_TIMEOUT?: number;
|
|
15671
|
+
ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
|
|
15672
|
+
INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
|
|
15673
|
+
DEFAULT_IDP?: string;
|
|
15674
|
+
DOCS_URL?: string;
|
|
15675
|
+
SHORT_PAGE_TITLE?: string;
|
|
15676
|
+
FULL_PAGE_TITLE?: string;
|
|
15677
|
+
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
15678
|
+
ENABLE_ORDER_START_DATE?: boolean;
|
|
15679
|
+
BRAND_COLOR?: string;
|
|
15680
|
+
HERO_LINK_LABEL?: string;
|
|
15681
|
+
HERO_LINK_URL?: string;
|
|
15682
|
+
SUPPORT_PORTAL_URL?: string;
|
|
15683
|
+
COMMON_FOOTER_TEXT?: string;
|
|
15684
|
+
COMMON_FOOTER_HTML?: string;
|
|
15685
|
+
LANGUAGE_CHOICES?: string;
|
|
15686
|
+
DISABLE_DARK_THEME?: boolean;
|
|
15687
|
+
POWERED_BY_LOGO?: (Blob | File) | null;
|
|
15688
|
+
HERO_IMAGE?: (Blob | File) | null;
|
|
15689
|
+
MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
|
|
15690
|
+
CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
|
|
15691
|
+
SIDEBAR_LOGO?: (Blob | File) | null;
|
|
15692
|
+
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
15693
|
+
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
15694
|
+
SIDEBAR_STYLE?: string;
|
|
15695
|
+
SITE_LOGO?: (Blob | File) | null;
|
|
15696
|
+
LOGIN_LOGO?: (Blob | File) | null;
|
|
15697
|
+
FAVICON?: (Blob | File) | null;
|
|
15698
|
+
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
15699
|
+
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
15700
|
+
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
15701
|
+
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
15702
|
+
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
15703
|
+
ATLASSIAN_API_URL?: string;
|
|
15704
|
+
ATLASSIAN_USERNAME?: string;
|
|
15705
|
+
ATLASSIAN_PASSWORD?: string;
|
|
15706
|
+
ATLASSIAN_EMAIL?: string;
|
|
15707
|
+
ATLASSIAN_USE_OLD_API?: boolean;
|
|
15708
|
+
ATLASSIAN_TOKEN?: string;
|
|
15709
|
+
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
15710
|
+
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
15711
|
+
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
15712
|
+
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
15713
|
+
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
15714
|
+
ATLASSIAN_PROJECT_ID?: string;
|
|
15715
|
+
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
15716
|
+
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
15717
|
+
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
15718
|
+
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
15719
|
+
ATLASSIAN_ISSUE_TYPES?: string;
|
|
15720
|
+
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
15721
|
+
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
15722
|
+
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
15723
|
+
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
15724
|
+
ATLASSIAN_IMPACT_FIELD?: string;
|
|
15725
|
+
ATLASSIAN_ORGANISATION_FIELD?: string;
|
|
15726
|
+
ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
|
|
15727
|
+
ATLASSIAN_PROJECT_FIELD?: string;
|
|
15728
|
+
ATLASSIAN_REPORTER_FIELD?: string;
|
|
15729
|
+
ATLASSIAN_CALLER_FIELD?: string;
|
|
15730
|
+
ATLASSIAN_SLA_FIELD?: string;
|
|
15731
|
+
ATLASSIAN_LINKED_ISSUE_TYPE?: string;
|
|
15732
|
+
ATLASSIAN_SATISFACTION_FIELD?: string;
|
|
15733
|
+
ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
|
|
15734
|
+
ATLASSIAN_TEMPLATE_FIELD?: string;
|
|
15735
|
+
ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
|
|
15736
|
+
ZAMMAD_API_URL?: string;
|
|
15737
|
+
ZAMMAD_TOKEN?: string;
|
|
15738
|
+
ZAMMAD_GROUP?: string;
|
|
15739
|
+
ZAMMAD_ARTICLE_TYPE?: string;
|
|
15740
|
+
ZAMMAD_COMMENT_MARKER?: string;
|
|
15741
|
+
ZAMMAD_COMMENT_PREFIX?: string;
|
|
15742
|
+
ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
|
|
15743
|
+
SMAX_API_URL?: string;
|
|
15744
|
+
SMAX_TENANT_ID?: string;
|
|
15745
|
+
SMAX_LOGIN?: string;
|
|
15746
|
+
SMAX_PASSWORD?: string;
|
|
15747
|
+
SMAX_ORGANISATION_FIELD?: string;
|
|
15748
|
+
SMAX_PROJECT_FIELD?: string;
|
|
15749
|
+
SMAX_AFFECTED_RESOURCE_FIELD?: string;
|
|
15750
|
+
SMAX_TIMES_TO_PULL?: number;
|
|
15751
|
+
SMAX_SECONDS_TO_WAIT?: number;
|
|
15752
|
+
SMAX_CREATION_SOURCE_NAME?: string;
|
|
15753
|
+
SMAX_REQUESTS_OFFERING?: string;
|
|
15754
|
+
SMAX_VERIFY_SSL?: boolean;
|
|
15755
|
+
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
15756
|
+
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
15757
|
+
PROPOSAL_REVIEW_DURATION?: number;
|
|
15758
|
+
USER_TABLE_COLUMNS?: string;
|
|
15759
|
+
AUTO_APPROVE_USER_TOS?: boolean;
|
|
15760
|
+
FREEIPA_ENABLED?: boolean;
|
|
15761
|
+
FREEIPA_HOSTNAME?: string;
|
|
15762
|
+
FREEIPA_USERNAME?: string;
|
|
15763
|
+
FREEIPA_PASSWORD?: string;
|
|
15764
|
+
FREEIPA_VERIFY_SSL?: boolean;
|
|
15765
|
+
FREEIPA_USERNAME_PREFIX?: string;
|
|
15766
|
+
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
15767
|
+
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
15768
|
+
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
15769
|
+
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
15770
|
+
COUNTRIES?: Array<string>;
|
|
15771
|
+
OIDC_AUTH_URL?: string;
|
|
15772
|
+
OIDC_INTROSPECTION_URL?: string;
|
|
15773
|
+
OIDC_CLIENT_ID?: string;
|
|
15774
|
+
OIDC_CLIENT_SECRET?: string;
|
|
15775
|
+
OIDC_USER_FIELD?: string;
|
|
15776
|
+
OIDC_CACHE_TIMEOUT?: number;
|
|
15777
|
+
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
15778
|
+
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
15779
|
+
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
15780
|
+
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
15781
|
+
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
15782
|
+
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
15783
|
+
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
15784
|
+
ONBOARDING_COUNTRY?: string;
|
|
15785
|
+
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
15786
|
+
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
15787
|
+
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
15788
|
+
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
15789
|
+
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
15790
|
+
ONBOARDING_WICO_API_URL?: string;
|
|
15791
|
+
ONBOARDING_WICO_TOKEN?: string;
|
|
15792
|
+
ONBOARDING_BOLAGSVERKET_API_URL?: string;
|
|
15793
|
+
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15794
|
+
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15795
|
+
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15796
|
+
};
|
|
15797
|
+
export type PaymentRequestForm = {
|
|
15798
|
+
profile: string;
|
|
15799
|
+
date_of_payment: string;
|
|
15800
|
+
sum?: string;
|
|
15801
|
+
proof?: (Blob | File) | null;
|
|
15802
|
+
};
|
|
15803
|
+
export type PaymentRequestMultipart = {
|
|
15804
|
+
profile: string;
|
|
15805
|
+
date_of_payment: string;
|
|
15806
|
+
sum?: string;
|
|
15807
|
+
proof?: (Blob | File) | null;
|
|
15808
|
+
};
|
|
15809
|
+
export type PatchedPaymentRequestForm = {
|
|
15810
|
+
profile?: string;
|
|
15811
|
+
date_of_payment?: string;
|
|
15812
|
+
sum?: string;
|
|
15813
|
+
proof?: (Blob | File) | null;
|
|
15814
|
+
};
|
|
15815
|
+
export type PatchedPaymentRequestMultipart = {
|
|
15816
|
+
profile?: string;
|
|
15817
|
+
date_of_payment?: string;
|
|
15818
|
+
sum?: string;
|
|
15819
|
+
proof?: (Blob | File) | null;
|
|
15820
|
+
};
|
|
15253
15821
|
export type ProposalDocumentationRequestForm = {
|
|
15254
15822
|
/**
|
|
15255
15823
|
* Upload supporting documentation in PDF format.
|
|
@@ -35593,6 +36161,1612 @@ export type OnboardingSupportedCountriesRetrieveResponses = {
|
|
|
35593
36161
|
200: SupportedCountriesResponse;
|
|
35594
36162
|
};
|
|
35595
36163
|
export type OnboardingSupportedCountriesRetrieveResponse = OnboardingSupportedCountriesRetrieveResponses[keyof OnboardingSupportedCountriesRetrieveResponses];
|
|
36164
|
+
export type OpenportalAllocationUserUsageListData = {
|
|
36165
|
+
body?: never;
|
|
36166
|
+
path?: never;
|
|
36167
|
+
query?: {
|
|
36168
|
+
allocation?: string;
|
|
36169
|
+
allocation_uuid?: string;
|
|
36170
|
+
month?: number;
|
|
36171
|
+
/**
|
|
36172
|
+
* A page number within the paginated result set.
|
|
36173
|
+
*/
|
|
36174
|
+
page?: number;
|
|
36175
|
+
/**
|
|
36176
|
+
* Number of results to return per page.
|
|
36177
|
+
*/
|
|
36178
|
+
page_size?: number;
|
|
36179
|
+
user?: string;
|
|
36180
|
+
user_uuid?: string;
|
|
36181
|
+
year?: number;
|
|
36182
|
+
};
|
|
36183
|
+
url: '/api/openportal-allocation-user-usage/';
|
|
36184
|
+
};
|
|
36185
|
+
export type OpenportalAllocationUserUsageListResponses = {
|
|
36186
|
+
200: Array<AllocationUserUsage>;
|
|
36187
|
+
};
|
|
36188
|
+
export type OpenportalAllocationUserUsageListResponse = OpenportalAllocationUserUsageListResponses[keyof OpenportalAllocationUserUsageListResponses];
|
|
36189
|
+
export type OpenportalAllocationUserUsageCountData = {
|
|
36190
|
+
body?: never;
|
|
36191
|
+
path?: never;
|
|
36192
|
+
query?: {
|
|
36193
|
+
allocation?: string;
|
|
36194
|
+
allocation_uuid?: string;
|
|
36195
|
+
month?: number;
|
|
36196
|
+
/**
|
|
36197
|
+
* A page number within the paginated result set.
|
|
36198
|
+
*/
|
|
36199
|
+
page?: number;
|
|
36200
|
+
/**
|
|
36201
|
+
* Number of results to return per page.
|
|
36202
|
+
*/
|
|
36203
|
+
page_size?: number;
|
|
36204
|
+
user?: string;
|
|
36205
|
+
user_uuid?: string;
|
|
36206
|
+
year?: number;
|
|
36207
|
+
};
|
|
36208
|
+
url: '/api/openportal-allocation-user-usage/';
|
|
36209
|
+
};
|
|
36210
|
+
export type OpenportalAllocationUserUsageCountResponses = {
|
|
36211
|
+
/**
|
|
36212
|
+
* No response body
|
|
36213
|
+
*/
|
|
36214
|
+
200: unknown;
|
|
36215
|
+
};
|
|
36216
|
+
export type OpenportalAllocationUserUsageRetrieveData = {
|
|
36217
|
+
body?: never;
|
|
36218
|
+
path: {
|
|
36219
|
+
/**
|
|
36220
|
+
* A unique integer value identifying this allocation user usage.
|
|
36221
|
+
*/
|
|
36222
|
+
id: number;
|
|
36223
|
+
};
|
|
36224
|
+
query?: never;
|
|
36225
|
+
url: '/api/openportal-allocation-user-usage/{id}/';
|
|
36226
|
+
};
|
|
36227
|
+
export type OpenportalAllocationUserUsageRetrieveResponses = {
|
|
36228
|
+
200: AllocationUserUsage;
|
|
36229
|
+
};
|
|
36230
|
+
export type OpenportalAllocationUserUsageRetrieveResponse = OpenportalAllocationUserUsageRetrieveResponses[keyof OpenportalAllocationUserUsageRetrieveResponses];
|
|
36231
|
+
export type OpenportalAllocationsListData = {
|
|
36232
|
+
body?: never;
|
|
36233
|
+
path?: never;
|
|
36234
|
+
query?: {
|
|
36235
|
+
backend_id?: string;
|
|
36236
|
+
/**
|
|
36237
|
+
* Can manage
|
|
36238
|
+
*/
|
|
36239
|
+
can_manage?: boolean;
|
|
36240
|
+
customer?: string;
|
|
36241
|
+
customer_abbreviation?: string;
|
|
36242
|
+
customer_name?: string;
|
|
36243
|
+
customer_native_name?: string;
|
|
36244
|
+
customer_uuid?: string;
|
|
36245
|
+
description?: string;
|
|
36246
|
+
external_ip?: string;
|
|
36247
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'groupname' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid'>;
|
|
36248
|
+
is_active?: boolean;
|
|
36249
|
+
name?: string;
|
|
36250
|
+
name_exact?: string;
|
|
36251
|
+
/**
|
|
36252
|
+
* A page number within the paginated result set.
|
|
36253
|
+
*/
|
|
36254
|
+
page?: number;
|
|
36255
|
+
/**
|
|
36256
|
+
* Number of results to return per page.
|
|
36257
|
+
*/
|
|
36258
|
+
page_size?: number;
|
|
36259
|
+
project?: string;
|
|
36260
|
+
project_name?: string;
|
|
36261
|
+
project_uuid?: string;
|
|
36262
|
+
service_settings_name?: string;
|
|
36263
|
+
service_settings_uuid?: string;
|
|
36264
|
+
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|
|
36265
|
+
uuid?: string;
|
|
36266
|
+
};
|
|
36267
|
+
url: '/api/openportal-allocations/';
|
|
36268
|
+
};
|
|
36269
|
+
export type OpenportalAllocationsListResponses = {
|
|
36270
|
+
200: Array<Allocation>;
|
|
36271
|
+
};
|
|
36272
|
+
export type OpenportalAllocationsListResponse = OpenportalAllocationsListResponses[keyof OpenportalAllocationsListResponses];
|
|
36273
|
+
export type OpenportalAllocationsCountData = {
|
|
36274
|
+
body?: never;
|
|
36275
|
+
path?: never;
|
|
36276
|
+
query?: {
|
|
36277
|
+
backend_id?: string;
|
|
36278
|
+
/**
|
|
36279
|
+
* Can manage
|
|
36280
|
+
*/
|
|
36281
|
+
can_manage?: boolean;
|
|
36282
|
+
customer?: string;
|
|
36283
|
+
customer_abbreviation?: string;
|
|
36284
|
+
customer_name?: string;
|
|
36285
|
+
customer_native_name?: string;
|
|
36286
|
+
customer_uuid?: string;
|
|
36287
|
+
description?: string;
|
|
36288
|
+
external_ip?: string;
|
|
36289
|
+
is_active?: boolean;
|
|
36290
|
+
name?: string;
|
|
36291
|
+
name_exact?: string;
|
|
36292
|
+
/**
|
|
36293
|
+
* A page number within the paginated result set.
|
|
36294
|
+
*/
|
|
36295
|
+
page?: number;
|
|
36296
|
+
/**
|
|
36297
|
+
* Number of results to return per page.
|
|
36298
|
+
*/
|
|
36299
|
+
page_size?: number;
|
|
36300
|
+
project?: string;
|
|
36301
|
+
project_name?: string;
|
|
36302
|
+
project_uuid?: string;
|
|
36303
|
+
service_settings_name?: string;
|
|
36304
|
+
service_settings_uuid?: string;
|
|
36305
|
+
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|
|
36306
|
+
uuid?: string;
|
|
36307
|
+
};
|
|
36308
|
+
url: '/api/openportal-allocations/';
|
|
36309
|
+
};
|
|
36310
|
+
export type OpenportalAllocationsCountResponses = {
|
|
36311
|
+
/**
|
|
36312
|
+
* No response body
|
|
36313
|
+
*/
|
|
36314
|
+
200: unknown;
|
|
36315
|
+
};
|
|
36316
|
+
export type OpenportalAllocationsCreateData = {
|
|
36317
|
+
body: AllocationRequest;
|
|
36318
|
+
path?: never;
|
|
36319
|
+
query?: never;
|
|
36320
|
+
url: '/api/openportal-allocations/';
|
|
36321
|
+
};
|
|
36322
|
+
export type OpenportalAllocationsCreateResponses = {
|
|
36323
|
+
201: Allocation;
|
|
36324
|
+
};
|
|
36325
|
+
export type OpenportalAllocationsCreateResponse = OpenportalAllocationsCreateResponses[keyof OpenportalAllocationsCreateResponses];
|
|
36326
|
+
export type OpenportalAllocationsDestroyData = {
|
|
36327
|
+
body?: never;
|
|
36328
|
+
path: {
|
|
36329
|
+
uuid: string;
|
|
36330
|
+
};
|
|
36331
|
+
query?: never;
|
|
36332
|
+
url: '/api/openportal-allocations/{uuid}/';
|
|
36333
|
+
};
|
|
36334
|
+
export type OpenportalAllocationsDestroyResponses = {
|
|
36335
|
+
/**
|
|
36336
|
+
* No response body
|
|
36337
|
+
*/
|
|
36338
|
+
204: void;
|
|
36339
|
+
};
|
|
36340
|
+
export type OpenportalAllocationsDestroyResponse = OpenportalAllocationsDestroyResponses[keyof OpenportalAllocationsDestroyResponses];
|
|
36341
|
+
export type OpenportalAllocationsRetrieveData = {
|
|
36342
|
+
body?: never;
|
|
36343
|
+
path: {
|
|
36344
|
+
uuid: string;
|
|
36345
|
+
};
|
|
36346
|
+
query?: {
|
|
36347
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'groupname' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid'>;
|
|
36348
|
+
};
|
|
36349
|
+
url: '/api/openportal-allocations/{uuid}/';
|
|
36350
|
+
};
|
|
36351
|
+
export type OpenportalAllocationsRetrieveResponses = {
|
|
36352
|
+
200: Allocation;
|
|
36353
|
+
};
|
|
36354
|
+
export type OpenportalAllocationsRetrieveResponse = OpenportalAllocationsRetrieveResponses[keyof OpenportalAllocationsRetrieveResponses];
|
|
36355
|
+
export type OpenportalAllocationsPartialUpdateData = {
|
|
36356
|
+
body?: PatchedAllocationRequest;
|
|
36357
|
+
path: {
|
|
36358
|
+
uuid: string;
|
|
36359
|
+
};
|
|
36360
|
+
query?: never;
|
|
36361
|
+
url: '/api/openportal-allocations/{uuid}/';
|
|
36362
|
+
};
|
|
36363
|
+
export type OpenportalAllocationsPartialUpdateResponses = {
|
|
36364
|
+
200: Allocation;
|
|
36365
|
+
};
|
|
36366
|
+
export type OpenportalAllocationsPartialUpdateResponse = OpenportalAllocationsPartialUpdateResponses[keyof OpenportalAllocationsPartialUpdateResponses];
|
|
36367
|
+
export type OpenportalAllocationsUpdateData = {
|
|
36368
|
+
body: AllocationRequest;
|
|
36369
|
+
path: {
|
|
36370
|
+
uuid: string;
|
|
36371
|
+
};
|
|
36372
|
+
query?: never;
|
|
36373
|
+
url: '/api/openportal-allocations/{uuid}/';
|
|
36374
|
+
};
|
|
36375
|
+
export type OpenportalAllocationsUpdateResponses = {
|
|
36376
|
+
200: Allocation;
|
|
36377
|
+
};
|
|
36378
|
+
export type OpenportalAllocationsUpdateResponse = OpenportalAllocationsUpdateResponses[keyof OpenportalAllocationsUpdateResponses];
|
|
36379
|
+
export type OpenportalAllocationsPullData = {
|
|
36380
|
+
body?: never;
|
|
36381
|
+
path: {
|
|
36382
|
+
uuid: string;
|
|
36383
|
+
};
|
|
36384
|
+
query?: never;
|
|
36385
|
+
url: '/api/openportal-allocations/{uuid}/pull/';
|
|
36386
|
+
};
|
|
36387
|
+
export type OpenportalAllocationsPullResponses = {
|
|
36388
|
+
/**
|
|
36389
|
+
* No response body
|
|
36390
|
+
*/
|
|
36391
|
+
200: unknown;
|
|
36392
|
+
};
|
|
36393
|
+
export type OpenportalAllocationsSetLimitsData = {
|
|
36394
|
+
body: AllocationSetLimitsRequest;
|
|
36395
|
+
path: {
|
|
36396
|
+
uuid: string;
|
|
36397
|
+
};
|
|
36398
|
+
query?: never;
|
|
36399
|
+
url: '/api/openportal-allocations/{uuid}/set_limits/';
|
|
36400
|
+
};
|
|
36401
|
+
export type OpenportalAllocationsSetLimitsResponses = {
|
|
36402
|
+
200: AllocationSetLimits;
|
|
36403
|
+
};
|
|
36404
|
+
export type OpenportalAllocationsSetLimitsResponse = OpenportalAllocationsSetLimitsResponses[keyof OpenportalAllocationsSetLimitsResponses];
|
|
36405
|
+
export type OpenportalAllocationsUnlinkData = {
|
|
36406
|
+
body?: never;
|
|
36407
|
+
path: {
|
|
36408
|
+
uuid: string;
|
|
36409
|
+
};
|
|
36410
|
+
query?: never;
|
|
36411
|
+
url: '/api/openportal-allocations/{uuid}/unlink/';
|
|
36412
|
+
};
|
|
36413
|
+
export type OpenportalAllocationsUnlinkResponses = {
|
|
36414
|
+
/**
|
|
36415
|
+
* No response body
|
|
36416
|
+
*/
|
|
36417
|
+
200: unknown;
|
|
36418
|
+
};
|
|
36419
|
+
export type OpenportalAssociationsListData = {
|
|
36420
|
+
body?: never;
|
|
36421
|
+
path?: never;
|
|
36422
|
+
query?: {
|
|
36423
|
+
allocation?: string;
|
|
36424
|
+
allocation_uuid?: string;
|
|
36425
|
+
/**
|
|
36426
|
+
* A page number within the paginated result set.
|
|
36427
|
+
*/
|
|
36428
|
+
page?: number;
|
|
36429
|
+
/**
|
|
36430
|
+
* Number of results to return per page.
|
|
36431
|
+
*/
|
|
36432
|
+
page_size?: number;
|
|
36433
|
+
};
|
|
36434
|
+
url: '/api/openportal-associations/';
|
|
36435
|
+
};
|
|
36436
|
+
export type OpenportalAssociationsListResponses = {
|
|
36437
|
+
200: Array<Association>;
|
|
36438
|
+
};
|
|
36439
|
+
export type OpenportalAssociationsListResponse = OpenportalAssociationsListResponses[keyof OpenportalAssociationsListResponses];
|
|
36440
|
+
export type OpenportalAssociationsCountData = {
|
|
36441
|
+
body?: never;
|
|
36442
|
+
path?: never;
|
|
36443
|
+
query?: {
|
|
36444
|
+
allocation?: string;
|
|
36445
|
+
allocation_uuid?: string;
|
|
36446
|
+
/**
|
|
36447
|
+
* A page number within the paginated result set.
|
|
36448
|
+
*/
|
|
36449
|
+
page?: number;
|
|
36450
|
+
/**
|
|
36451
|
+
* Number of results to return per page.
|
|
36452
|
+
*/
|
|
36453
|
+
page_size?: number;
|
|
36454
|
+
};
|
|
36455
|
+
url: '/api/openportal-associations/';
|
|
36456
|
+
};
|
|
36457
|
+
export type OpenportalAssociationsCountResponses = {
|
|
36458
|
+
/**
|
|
36459
|
+
* No response body
|
|
36460
|
+
*/
|
|
36461
|
+
200: unknown;
|
|
36462
|
+
};
|
|
36463
|
+
export type OpenportalAssociationsRetrieveData = {
|
|
36464
|
+
body?: never;
|
|
36465
|
+
path: {
|
|
36466
|
+
uuid: string;
|
|
36467
|
+
};
|
|
36468
|
+
query?: never;
|
|
36469
|
+
url: '/api/openportal-associations/{uuid}/';
|
|
36470
|
+
};
|
|
36471
|
+
export type OpenportalAssociationsRetrieveResponses = {
|
|
36472
|
+
200: Association;
|
|
36473
|
+
};
|
|
36474
|
+
export type OpenportalAssociationsRetrieveResponse = OpenportalAssociationsRetrieveResponses[keyof OpenportalAssociationsRetrieveResponses];
|
|
36475
|
+
export type OpenportalManagedProjectsListData = {
|
|
36476
|
+
body?: never;
|
|
36477
|
+
path?: never;
|
|
36478
|
+
query?: {
|
|
36479
|
+
identifier?: string;
|
|
36480
|
+
local_identifier?: string;
|
|
36481
|
+
/**
|
|
36482
|
+
* A page number within the paginated result set.
|
|
36483
|
+
*/
|
|
36484
|
+
page?: number;
|
|
36485
|
+
/**
|
|
36486
|
+
* Number of results to return per page.
|
|
36487
|
+
*/
|
|
36488
|
+
page_size?: number;
|
|
36489
|
+
project?: string;
|
|
36490
|
+
project_template?: string;
|
|
36491
|
+
project_template_uuid?: string;
|
|
36492
|
+
project_uuid?: string;
|
|
36493
|
+
state?: Array<'approved' | 'canceled' | 'draft' | 'pending' | 'rejected'>;
|
|
36494
|
+
};
|
|
36495
|
+
url: '/api/openportal-managed-projects/';
|
|
36496
|
+
};
|
|
36497
|
+
export type OpenportalManagedProjectsListResponses = {
|
|
36498
|
+
200: Array<ManagedProject>;
|
|
36499
|
+
};
|
|
36500
|
+
export type OpenportalManagedProjectsListResponse = OpenportalManagedProjectsListResponses[keyof OpenportalManagedProjectsListResponses];
|
|
36501
|
+
export type OpenportalManagedProjectsCountData = {
|
|
36502
|
+
body?: never;
|
|
36503
|
+
path?: never;
|
|
36504
|
+
query?: {
|
|
36505
|
+
identifier?: string;
|
|
36506
|
+
local_identifier?: string;
|
|
36507
|
+
/**
|
|
36508
|
+
* A page number within the paginated result set.
|
|
36509
|
+
*/
|
|
36510
|
+
page?: number;
|
|
36511
|
+
/**
|
|
36512
|
+
* Number of results to return per page.
|
|
36513
|
+
*/
|
|
36514
|
+
page_size?: number;
|
|
36515
|
+
project?: string;
|
|
36516
|
+
project_template?: string;
|
|
36517
|
+
project_template_uuid?: string;
|
|
36518
|
+
project_uuid?: string;
|
|
36519
|
+
state?: Array<'approved' | 'canceled' | 'draft' | 'pending' | 'rejected'>;
|
|
36520
|
+
};
|
|
36521
|
+
url: '/api/openportal-managed-projects/';
|
|
36522
|
+
};
|
|
36523
|
+
export type OpenportalManagedProjectsCountResponses = {
|
|
36524
|
+
/**
|
|
36525
|
+
* No response body
|
|
36526
|
+
*/
|
|
36527
|
+
200: unknown;
|
|
36528
|
+
};
|
|
36529
|
+
export type OpenportalManagedProjectsRetrieveGetData = {
|
|
36530
|
+
body?: never;
|
|
36531
|
+
path: {
|
|
36532
|
+
/**
|
|
36533
|
+
* The destination of the managed project
|
|
36534
|
+
*/
|
|
36535
|
+
destination: string;
|
|
36536
|
+
/**
|
|
36537
|
+
* The identifier of the managed project
|
|
36538
|
+
*/
|
|
36539
|
+
identifier: string;
|
|
36540
|
+
};
|
|
36541
|
+
query?: never;
|
|
36542
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/';
|
|
36543
|
+
};
|
|
36544
|
+
export type OpenportalManagedProjectsRetrieveGetResponses = {
|
|
36545
|
+
200: ManagedProject;
|
|
36546
|
+
};
|
|
36547
|
+
export type OpenportalManagedProjectsRetrieveGetResponse = OpenportalManagedProjectsRetrieveGetResponses[keyof OpenportalManagedProjectsRetrieveGetResponses];
|
|
36548
|
+
export type OpenportalManagedProjectsRetrieveHeadData = {
|
|
36549
|
+
body?: never;
|
|
36550
|
+
path: {
|
|
36551
|
+
/**
|
|
36552
|
+
* The destination of the managed project
|
|
36553
|
+
*/
|
|
36554
|
+
destination: string;
|
|
36555
|
+
/**
|
|
36556
|
+
* The identifier of the managed project
|
|
36557
|
+
*/
|
|
36558
|
+
identifier: string;
|
|
36559
|
+
};
|
|
36560
|
+
query?: never;
|
|
36561
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/';
|
|
36562
|
+
};
|
|
36563
|
+
export type OpenportalManagedProjectsRetrieveHeadResponses = {
|
|
36564
|
+
/**
|
|
36565
|
+
* No response body
|
|
36566
|
+
*/
|
|
36567
|
+
200: unknown;
|
|
36568
|
+
};
|
|
36569
|
+
export type OpenportalManagedProjectsApproveData = {
|
|
36570
|
+
body?: ReviewCommentRequest;
|
|
36571
|
+
path: {
|
|
36572
|
+
/**
|
|
36573
|
+
* The destination of the managed project
|
|
36574
|
+
*/
|
|
36575
|
+
destination: string;
|
|
36576
|
+
/**
|
|
36577
|
+
* The identifier of the managed project
|
|
36578
|
+
*/
|
|
36579
|
+
identifier: string;
|
|
36580
|
+
};
|
|
36581
|
+
query?: never;
|
|
36582
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/approve/';
|
|
36583
|
+
};
|
|
36584
|
+
export type OpenportalManagedProjectsApproveResponses = {
|
|
36585
|
+
/**
|
|
36586
|
+
* No response body
|
|
36587
|
+
*/
|
|
36588
|
+
200: unknown;
|
|
36589
|
+
};
|
|
36590
|
+
export type OpenportalManagedProjectsAttachData = {
|
|
36591
|
+
body: ProjectAttachRequest;
|
|
36592
|
+
path: {
|
|
36593
|
+
/**
|
|
36594
|
+
* The destination of the managed project
|
|
36595
|
+
*/
|
|
36596
|
+
destination: string;
|
|
36597
|
+
/**
|
|
36598
|
+
* The identifier of the managed project
|
|
36599
|
+
*/
|
|
36600
|
+
identifier: string;
|
|
36601
|
+
};
|
|
36602
|
+
query?: never;
|
|
36603
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/attach/';
|
|
36604
|
+
};
|
|
36605
|
+
export type OpenportalManagedProjectsAttachResponses = {
|
|
36606
|
+
/**
|
|
36607
|
+
* No response body
|
|
36608
|
+
*/
|
|
36609
|
+
200: unknown;
|
|
36610
|
+
};
|
|
36611
|
+
export type OpenportalManagedProjectsDeleteDestroyData = {
|
|
36612
|
+
body?: never;
|
|
36613
|
+
path: {
|
|
36614
|
+
/**
|
|
36615
|
+
* The destination of the managed project
|
|
36616
|
+
*/
|
|
36617
|
+
destination: string;
|
|
36618
|
+
/**
|
|
36619
|
+
* The identifier of the managed project
|
|
36620
|
+
*/
|
|
36621
|
+
identifier: string;
|
|
36622
|
+
};
|
|
36623
|
+
query?: never;
|
|
36624
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/delete/';
|
|
36625
|
+
};
|
|
36626
|
+
export type OpenportalManagedProjectsDeleteDestroyResponses = {
|
|
36627
|
+
/**
|
|
36628
|
+
* No response body
|
|
36629
|
+
*/
|
|
36630
|
+
204: void;
|
|
36631
|
+
};
|
|
36632
|
+
export type OpenportalManagedProjectsDeleteDestroyResponse = OpenportalManagedProjectsDeleteDestroyResponses[keyof OpenportalManagedProjectsDeleteDestroyResponses];
|
|
36633
|
+
export type OpenportalManagedProjectsDetachData = {
|
|
36634
|
+
body?: never;
|
|
36635
|
+
path: {
|
|
36636
|
+
/**
|
|
36637
|
+
* The destination of the managed project
|
|
36638
|
+
*/
|
|
36639
|
+
destination: string;
|
|
36640
|
+
/**
|
|
36641
|
+
* The identifier of the managed project
|
|
36642
|
+
*/
|
|
36643
|
+
identifier: string;
|
|
36644
|
+
};
|
|
36645
|
+
query?: never;
|
|
36646
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/detach/';
|
|
36647
|
+
};
|
|
36648
|
+
export type OpenportalManagedProjectsDetachResponses = {
|
|
36649
|
+
/**
|
|
36650
|
+
* No response body
|
|
36651
|
+
*/
|
|
36652
|
+
200: unknown;
|
|
36653
|
+
};
|
|
36654
|
+
export type OpenportalManagedProjectsRejectData = {
|
|
36655
|
+
body?: ReviewCommentRequest;
|
|
36656
|
+
path: {
|
|
36657
|
+
/**
|
|
36658
|
+
* The destination of the managed project
|
|
36659
|
+
*/
|
|
36660
|
+
destination: string;
|
|
36661
|
+
/**
|
|
36662
|
+
* The identifier of the managed project
|
|
36663
|
+
*/
|
|
36664
|
+
identifier: string;
|
|
36665
|
+
};
|
|
36666
|
+
query?: never;
|
|
36667
|
+
url: '/api/openportal-managed-projects/{identifier}/{destination}/reject/';
|
|
36668
|
+
};
|
|
36669
|
+
export type OpenportalManagedProjectsRejectResponses = {
|
|
36670
|
+
/**
|
|
36671
|
+
* No response body
|
|
36672
|
+
*/
|
|
36673
|
+
200: unknown;
|
|
36674
|
+
};
|
|
36675
|
+
export type OpenportalProjectTemplateListData = {
|
|
36676
|
+
body?: never;
|
|
36677
|
+
path?: never;
|
|
36678
|
+
query?: {
|
|
36679
|
+
name?: string;
|
|
36680
|
+
/**
|
|
36681
|
+
* A page number within the paginated result set.
|
|
36682
|
+
*/
|
|
36683
|
+
page?: number;
|
|
36684
|
+
/**
|
|
36685
|
+
* Number of results to return per page.
|
|
36686
|
+
*/
|
|
36687
|
+
page_size?: number;
|
|
36688
|
+
portal?: string;
|
|
36689
|
+
uuid?: string;
|
|
36690
|
+
};
|
|
36691
|
+
url: '/api/openportal-project-template/';
|
|
36692
|
+
};
|
|
36693
|
+
export type OpenportalProjectTemplateListResponses = {
|
|
36694
|
+
200: Array<ProjectTemplate>;
|
|
36695
|
+
};
|
|
36696
|
+
export type OpenportalProjectTemplateListResponse = OpenportalProjectTemplateListResponses[keyof OpenportalProjectTemplateListResponses];
|
|
36697
|
+
export type OpenportalProjectTemplateCountData = {
|
|
36698
|
+
body?: never;
|
|
36699
|
+
path?: never;
|
|
36700
|
+
query?: {
|
|
36701
|
+
name?: string;
|
|
36702
|
+
/**
|
|
36703
|
+
* A page number within the paginated result set.
|
|
36704
|
+
*/
|
|
36705
|
+
page?: number;
|
|
36706
|
+
/**
|
|
36707
|
+
* Number of results to return per page.
|
|
36708
|
+
*/
|
|
36709
|
+
page_size?: number;
|
|
36710
|
+
portal?: string;
|
|
36711
|
+
uuid?: string;
|
|
36712
|
+
};
|
|
36713
|
+
url: '/api/openportal-project-template/';
|
|
36714
|
+
};
|
|
36715
|
+
export type OpenportalProjectTemplateCountResponses = {
|
|
36716
|
+
/**
|
|
36717
|
+
* No response body
|
|
36718
|
+
*/
|
|
36719
|
+
200: unknown;
|
|
36720
|
+
};
|
|
36721
|
+
export type OpenportalProjectTemplateCreateData = {
|
|
36722
|
+
body: ProjectTemplateRequest;
|
|
36723
|
+
path?: never;
|
|
36724
|
+
query?: never;
|
|
36725
|
+
url: '/api/openportal-project-template/';
|
|
36726
|
+
};
|
|
36727
|
+
export type OpenportalProjectTemplateCreateResponses = {
|
|
36728
|
+
201: ProjectTemplate;
|
|
36729
|
+
};
|
|
36730
|
+
export type OpenportalProjectTemplateCreateResponse = OpenportalProjectTemplateCreateResponses[keyof OpenportalProjectTemplateCreateResponses];
|
|
36731
|
+
export type OpenportalProjectTemplateDestroyData = {
|
|
36732
|
+
body?: never;
|
|
36733
|
+
path: {
|
|
36734
|
+
uuid: string;
|
|
36735
|
+
};
|
|
36736
|
+
query?: never;
|
|
36737
|
+
url: '/api/openportal-project-template/{uuid}/';
|
|
36738
|
+
};
|
|
36739
|
+
export type OpenportalProjectTemplateDestroyResponses = {
|
|
36740
|
+
/**
|
|
36741
|
+
* No response body
|
|
36742
|
+
*/
|
|
36743
|
+
204: void;
|
|
36744
|
+
};
|
|
36745
|
+
export type OpenportalProjectTemplateDestroyResponse = OpenportalProjectTemplateDestroyResponses[keyof OpenportalProjectTemplateDestroyResponses];
|
|
36746
|
+
export type OpenportalProjectTemplateRetrieveData = {
|
|
36747
|
+
body?: never;
|
|
36748
|
+
path: {
|
|
36749
|
+
uuid: string;
|
|
36750
|
+
};
|
|
36751
|
+
query?: never;
|
|
36752
|
+
url: '/api/openportal-project-template/{uuid}/';
|
|
36753
|
+
};
|
|
36754
|
+
export type OpenportalProjectTemplateRetrieveResponses = {
|
|
36755
|
+
200: ProjectTemplate;
|
|
36756
|
+
};
|
|
36757
|
+
export type OpenportalProjectTemplateRetrieveResponse = OpenportalProjectTemplateRetrieveResponses[keyof OpenportalProjectTemplateRetrieveResponses];
|
|
36758
|
+
export type OpenportalProjectTemplatePartialUpdateData = {
|
|
36759
|
+
body?: PatchedProjectTemplateRequest;
|
|
36760
|
+
path: {
|
|
36761
|
+
uuid: string;
|
|
36762
|
+
};
|
|
36763
|
+
query?: never;
|
|
36764
|
+
url: '/api/openportal-project-template/{uuid}/';
|
|
36765
|
+
};
|
|
36766
|
+
export type OpenportalProjectTemplatePartialUpdateResponses = {
|
|
36767
|
+
200: ProjectTemplate;
|
|
36768
|
+
};
|
|
36769
|
+
export type OpenportalProjectTemplatePartialUpdateResponse = OpenportalProjectTemplatePartialUpdateResponses[keyof OpenportalProjectTemplatePartialUpdateResponses];
|
|
36770
|
+
export type OpenportalProjectTemplateUpdateData = {
|
|
36771
|
+
body: ProjectTemplateRequest;
|
|
36772
|
+
path: {
|
|
36773
|
+
uuid: string;
|
|
36774
|
+
};
|
|
36775
|
+
query?: never;
|
|
36776
|
+
url: '/api/openportal-project-template/{uuid}/';
|
|
36777
|
+
};
|
|
36778
|
+
export type OpenportalProjectTemplateUpdateResponses = {
|
|
36779
|
+
200: ProjectTemplate;
|
|
36780
|
+
};
|
|
36781
|
+
export type OpenportalProjectTemplateUpdateResponse = OpenportalProjectTemplateUpdateResponses[keyof OpenportalProjectTemplateUpdateResponses];
|
|
36782
|
+
export type OpenportalProjectTemplateDeleteDestroyData = {
|
|
36783
|
+
body?: never;
|
|
36784
|
+
path: {
|
|
36785
|
+
uuid: string;
|
|
36786
|
+
};
|
|
36787
|
+
query?: never;
|
|
36788
|
+
url: '/api/openportal-project-template/{uuid}/delete/';
|
|
36789
|
+
};
|
|
36790
|
+
export type OpenportalProjectTemplateDeleteDestroyResponses = {
|
|
36791
|
+
/**
|
|
36792
|
+
* No response body
|
|
36793
|
+
*/
|
|
36794
|
+
204: void;
|
|
36795
|
+
};
|
|
36796
|
+
export type OpenportalProjectTemplateDeleteDestroyResponse = OpenportalProjectTemplateDeleteDestroyResponses[keyof OpenportalProjectTemplateDeleteDestroyResponses];
|
|
36797
|
+
export type OpenportalProjectinfoListData = {
|
|
36798
|
+
body?: never;
|
|
36799
|
+
path?: never;
|
|
36800
|
+
query?: {
|
|
36801
|
+
/**
|
|
36802
|
+
* A page number within the paginated result set.
|
|
36803
|
+
*/
|
|
36804
|
+
page?: number;
|
|
36805
|
+
/**
|
|
36806
|
+
* Number of results to return per page.
|
|
36807
|
+
*/
|
|
36808
|
+
page_size?: number;
|
|
36809
|
+
project?: string;
|
|
36810
|
+
project_uuid?: string;
|
|
36811
|
+
};
|
|
36812
|
+
url: '/api/openportal-projectinfo/';
|
|
36813
|
+
};
|
|
36814
|
+
export type OpenportalProjectinfoListResponses = {
|
|
36815
|
+
200: Array<ProjectInfo>;
|
|
36816
|
+
};
|
|
36817
|
+
export type OpenportalProjectinfoListResponse = OpenportalProjectinfoListResponses[keyof OpenportalProjectinfoListResponses];
|
|
36818
|
+
export type OpenportalProjectinfoCountData = {
|
|
36819
|
+
body?: never;
|
|
36820
|
+
path?: never;
|
|
36821
|
+
query?: {
|
|
36822
|
+
/**
|
|
36823
|
+
* A page number within the paginated result set.
|
|
36824
|
+
*/
|
|
36825
|
+
page?: number;
|
|
36826
|
+
/**
|
|
36827
|
+
* Number of results to return per page.
|
|
36828
|
+
*/
|
|
36829
|
+
page_size?: number;
|
|
36830
|
+
project?: string;
|
|
36831
|
+
project_uuid?: string;
|
|
36832
|
+
};
|
|
36833
|
+
url: '/api/openportal-projectinfo/';
|
|
36834
|
+
};
|
|
36835
|
+
export type OpenportalProjectinfoCountResponses = {
|
|
36836
|
+
/**
|
|
36837
|
+
* No response body
|
|
36838
|
+
*/
|
|
36839
|
+
200: unknown;
|
|
36840
|
+
};
|
|
36841
|
+
export type OpenportalProjectinfoCreateData = {
|
|
36842
|
+
body: ProjectInfoRequest;
|
|
36843
|
+
path?: never;
|
|
36844
|
+
query?: never;
|
|
36845
|
+
url: '/api/openportal-projectinfo/';
|
|
36846
|
+
};
|
|
36847
|
+
export type OpenportalProjectinfoCreateResponses = {
|
|
36848
|
+
201: ProjectInfo;
|
|
36849
|
+
};
|
|
36850
|
+
export type OpenportalProjectinfoCreateResponse = OpenportalProjectinfoCreateResponses[keyof OpenportalProjectinfoCreateResponses];
|
|
36851
|
+
export type OpenportalProjectinfoDestroyData = {
|
|
36852
|
+
body?: never;
|
|
36853
|
+
path: {
|
|
36854
|
+
project: number;
|
|
36855
|
+
};
|
|
36856
|
+
query?: never;
|
|
36857
|
+
url: '/api/openportal-projectinfo/{project}/';
|
|
36858
|
+
};
|
|
36859
|
+
export type OpenportalProjectinfoDestroyResponses = {
|
|
36860
|
+
/**
|
|
36861
|
+
* No response body
|
|
36862
|
+
*/
|
|
36863
|
+
204: void;
|
|
36864
|
+
};
|
|
36865
|
+
export type OpenportalProjectinfoDestroyResponse = OpenportalProjectinfoDestroyResponses[keyof OpenportalProjectinfoDestroyResponses];
|
|
36866
|
+
export type OpenportalProjectinfoRetrieveData = {
|
|
36867
|
+
body?: never;
|
|
36868
|
+
path: {
|
|
36869
|
+
project: number;
|
|
36870
|
+
};
|
|
36871
|
+
query?: never;
|
|
36872
|
+
url: '/api/openportal-projectinfo/{project}/';
|
|
36873
|
+
};
|
|
36874
|
+
export type OpenportalProjectinfoRetrieveResponses = {
|
|
36875
|
+
200: ProjectInfo;
|
|
36876
|
+
};
|
|
36877
|
+
export type OpenportalProjectinfoRetrieveResponse = OpenportalProjectinfoRetrieveResponses[keyof OpenportalProjectinfoRetrieveResponses];
|
|
36878
|
+
export type OpenportalProjectinfoPartialUpdateData = {
|
|
36879
|
+
body?: PatchedProjectInfoRequest;
|
|
36880
|
+
path: {
|
|
36881
|
+
project: number;
|
|
36882
|
+
};
|
|
36883
|
+
query?: never;
|
|
36884
|
+
url: '/api/openportal-projectinfo/{project}/';
|
|
36885
|
+
};
|
|
36886
|
+
export type OpenportalProjectinfoPartialUpdateResponses = {
|
|
36887
|
+
200: ProjectInfo;
|
|
36888
|
+
};
|
|
36889
|
+
export type OpenportalProjectinfoPartialUpdateResponse = OpenportalProjectinfoPartialUpdateResponses[keyof OpenportalProjectinfoPartialUpdateResponses];
|
|
36890
|
+
export type OpenportalProjectinfoUpdateData = {
|
|
36891
|
+
body: ProjectInfoRequest;
|
|
36892
|
+
path: {
|
|
36893
|
+
project: number;
|
|
36894
|
+
};
|
|
36895
|
+
query?: never;
|
|
36896
|
+
url: '/api/openportal-projectinfo/{project}/';
|
|
36897
|
+
};
|
|
36898
|
+
export type OpenportalProjectinfoUpdateResponses = {
|
|
36899
|
+
200: ProjectInfo;
|
|
36900
|
+
};
|
|
36901
|
+
export type OpenportalProjectinfoUpdateResponse = OpenportalProjectinfoUpdateResponses[keyof OpenportalProjectinfoUpdateResponses];
|
|
36902
|
+
export type OpenportalProjectinfoSetAllowedDestinationsUpdateData = {
|
|
36903
|
+
body: ProjectInfoRequest;
|
|
36904
|
+
path: {
|
|
36905
|
+
project: number;
|
|
36906
|
+
};
|
|
36907
|
+
query?: never;
|
|
36908
|
+
url: '/api/openportal-projectinfo/{project}/set_allowed_destinations/';
|
|
36909
|
+
};
|
|
36910
|
+
export type OpenportalProjectinfoSetAllowedDestinationsUpdateResponses = {
|
|
36911
|
+
200: ProjectInfo;
|
|
36912
|
+
};
|
|
36913
|
+
export type OpenportalProjectinfoSetAllowedDestinationsUpdateResponse = OpenportalProjectinfoSetAllowedDestinationsUpdateResponses[keyof OpenportalProjectinfoSetAllowedDestinationsUpdateResponses];
|
|
36914
|
+
export type OpenportalProjectinfoSetShortnameUpdateData = {
|
|
36915
|
+
body: ProjectInfoRequest;
|
|
36916
|
+
path: {
|
|
36917
|
+
project: number;
|
|
36918
|
+
};
|
|
36919
|
+
query?: never;
|
|
36920
|
+
url: '/api/openportal-projectinfo/{project}/set_shortname/';
|
|
36921
|
+
};
|
|
36922
|
+
export type OpenportalProjectinfoSetShortnameUpdateResponses = {
|
|
36923
|
+
200: ProjectInfo;
|
|
36924
|
+
};
|
|
36925
|
+
export type OpenportalProjectinfoSetShortnameUpdateResponse = OpenportalProjectinfoSetShortnameUpdateResponses[keyof OpenportalProjectinfoSetShortnameUpdateResponses];
|
|
36926
|
+
export type OpenportalRemoteAllocationsListData = {
|
|
36927
|
+
body?: never;
|
|
36928
|
+
path?: never;
|
|
36929
|
+
query?: {
|
|
36930
|
+
backend_id?: string;
|
|
36931
|
+
/**
|
|
36932
|
+
* Can manage
|
|
36933
|
+
*/
|
|
36934
|
+
can_manage?: boolean;
|
|
36935
|
+
customer?: string;
|
|
36936
|
+
customer_abbreviation?: string;
|
|
36937
|
+
customer_name?: string;
|
|
36938
|
+
customer_native_name?: string;
|
|
36939
|
+
customer_uuid?: string;
|
|
36940
|
+
description?: string;
|
|
36941
|
+
external_ip?: string;
|
|
36942
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'remote_project_identifier' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid'>;
|
|
36943
|
+
is_active?: boolean;
|
|
36944
|
+
name?: string;
|
|
36945
|
+
name_exact?: string;
|
|
36946
|
+
/**
|
|
36947
|
+
* A page number within the paginated result set.
|
|
36948
|
+
*/
|
|
36949
|
+
page?: number;
|
|
36950
|
+
/**
|
|
36951
|
+
* Number of results to return per page.
|
|
36952
|
+
*/
|
|
36953
|
+
page_size?: number;
|
|
36954
|
+
project?: string;
|
|
36955
|
+
project_name?: string;
|
|
36956
|
+
project_uuid?: string;
|
|
36957
|
+
service_settings_name?: string;
|
|
36958
|
+
service_settings_uuid?: string;
|
|
36959
|
+
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|
|
36960
|
+
uuid?: string;
|
|
36961
|
+
};
|
|
36962
|
+
url: '/api/openportal-remote-allocations/';
|
|
36963
|
+
};
|
|
36964
|
+
export type OpenportalRemoteAllocationsListResponses = {
|
|
36965
|
+
200: Array<RemoteAllocation>;
|
|
36966
|
+
};
|
|
36967
|
+
export type OpenportalRemoteAllocationsListResponse = OpenportalRemoteAllocationsListResponses[keyof OpenportalRemoteAllocationsListResponses];
|
|
36968
|
+
export type OpenportalRemoteAllocationsCountData = {
|
|
36969
|
+
body?: never;
|
|
36970
|
+
path?: never;
|
|
36971
|
+
query?: {
|
|
36972
|
+
backend_id?: string;
|
|
36973
|
+
/**
|
|
36974
|
+
* Can manage
|
|
36975
|
+
*/
|
|
36976
|
+
can_manage?: boolean;
|
|
36977
|
+
customer?: string;
|
|
36978
|
+
customer_abbreviation?: string;
|
|
36979
|
+
customer_name?: string;
|
|
36980
|
+
customer_native_name?: string;
|
|
36981
|
+
customer_uuid?: string;
|
|
36982
|
+
description?: string;
|
|
36983
|
+
external_ip?: string;
|
|
36984
|
+
is_active?: boolean;
|
|
36985
|
+
name?: string;
|
|
36986
|
+
name_exact?: string;
|
|
36987
|
+
/**
|
|
36988
|
+
* A page number within the paginated result set.
|
|
36989
|
+
*/
|
|
36990
|
+
page?: number;
|
|
36991
|
+
/**
|
|
36992
|
+
* Number of results to return per page.
|
|
36993
|
+
*/
|
|
36994
|
+
page_size?: number;
|
|
36995
|
+
project?: string;
|
|
36996
|
+
project_name?: string;
|
|
36997
|
+
project_uuid?: string;
|
|
36998
|
+
service_settings_name?: string;
|
|
36999
|
+
service_settings_uuid?: string;
|
|
37000
|
+
state?: Array<'CREATING' | 'CREATION_SCHEDULED' | 'DELETING' | 'DELETION_SCHEDULED' | 'ERRED' | 'OK' | 'UPDATE_SCHEDULED' | 'UPDATING'>;
|
|
37001
|
+
uuid?: string;
|
|
37002
|
+
};
|
|
37003
|
+
url: '/api/openportal-remote-allocations/';
|
|
37004
|
+
};
|
|
37005
|
+
export type OpenportalRemoteAllocationsCountResponses = {
|
|
37006
|
+
/**
|
|
37007
|
+
* No response body
|
|
37008
|
+
*/
|
|
37009
|
+
200: unknown;
|
|
37010
|
+
};
|
|
37011
|
+
export type OpenportalRemoteAllocationsCreateData = {
|
|
37012
|
+
body: RemoteAllocationRequest;
|
|
37013
|
+
path?: never;
|
|
37014
|
+
query?: never;
|
|
37015
|
+
url: '/api/openportal-remote-allocations/';
|
|
37016
|
+
};
|
|
37017
|
+
export type OpenportalRemoteAllocationsCreateResponses = {
|
|
37018
|
+
201: RemoteAllocation;
|
|
37019
|
+
};
|
|
37020
|
+
export type OpenportalRemoteAllocationsCreateResponse = OpenportalRemoteAllocationsCreateResponses[keyof OpenportalRemoteAllocationsCreateResponses];
|
|
37021
|
+
export type OpenportalRemoteAllocationsDestroyData = {
|
|
37022
|
+
body?: never;
|
|
37023
|
+
path: {
|
|
37024
|
+
uuid: string;
|
|
37025
|
+
};
|
|
37026
|
+
query?: never;
|
|
37027
|
+
url: '/api/openportal-remote-allocations/{uuid}/';
|
|
37028
|
+
};
|
|
37029
|
+
export type OpenportalRemoteAllocationsDestroyResponses = {
|
|
37030
|
+
/**
|
|
37031
|
+
* No response body
|
|
37032
|
+
*/
|
|
37033
|
+
204: void;
|
|
37034
|
+
};
|
|
37035
|
+
export type OpenportalRemoteAllocationsDestroyResponse = OpenportalRemoteAllocationsDestroyResponses[keyof OpenportalRemoteAllocationsDestroyResponses];
|
|
37036
|
+
export type OpenportalRemoteAllocationsRetrieveData = {
|
|
37037
|
+
body?: never;
|
|
37038
|
+
path: {
|
|
37039
|
+
uuid: string;
|
|
37040
|
+
};
|
|
37041
|
+
query?: {
|
|
37042
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'description' | 'error_message' | 'error_traceback' | 'is_active' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'name' | 'node_limit' | 'node_usage' | 'project' | 'project_name' | 'project_uuid' | 'remote_project_identifier' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'url' | 'uuid'>;
|
|
37043
|
+
};
|
|
37044
|
+
url: '/api/openportal-remote-allocations/{uuid}/';
|
|
37045
|
+
};
|
|
37046
|
+
export type OpenportalRemoteAllocationsRetrieveResponses = {
|
|
37047
|
+
200: RemoteAllocation;
|
|
37048
|
+
};
|
|
37049
|
+
export type OpenportalRemoteAllocationsRetrieveResponse = OpenportalRemoteAllocationsRetrieveResponses[keyof OpenportalRemoteAllocationsRetrieveResponses];
|
|
37050
|
+
export type OpenportalRemoteAllocationsPartialUpdateData = {
|
|
37051
|
+
body?: PatchedRemoteAllocationRequest;
|
|
37052
|
+
path: {
|
|
37053
|
+
uuid: string;
|
|
37054
|
+
};
|
|
37055
|
+
query?: never;
|
|
37056
|
+
url: '/api/openportal-remote-allocations/{uuid}/';
|
|
37057
|
+
};
|
|
37058
|
+
export type OpenportalRemoteAllocationsPartialUpdateResponses = {
|
|
37059
|
+
200: RemoteAllocation;
|
|
37060
|
+
};
|
|
37061
|
+
export type OpenportalRemoteAllocationsPartialUpdateResponse = OpenportalRemoteAllocationsPartialUpdateResponses[keyof OpenportalRemoteAllocationsPartialUpdateResponses];
|
|
37062
|
+
export type OpenportalRemoteAllocationsUpdateData = {
|
|
37063
|
+
body: RemoteAllocationRequest;
|
|
37064
|
+
path: {
|
|
37065
|
+
uuid: string;
|
|
37066
|
+
};
|
|
37067
|
+
query?: never;
|
|
37068
|
+
url: '/api/openportal-remote-allocations/{uuid}/';
|
|
37069
|
+
};
|
|
37070
|
+
export type OpenportalRemoteAllocationsUpdateResponses = {
|
|
37071
|
+
200: RemoteAllocation;
|
|
37072
|
+
};
|
|
37073
|
+
export type OpenportalRemoteAllocationsUpdateResponse = OpenportalRemoteAllocationsUpdateResponses[keyof OpenportalRemoteAllocationsUpdateResponses];
|
|
37074
|
+
export type OpenportalRemoteAllocationsPullData = {
|
|
37075
|
+
body?: never;
|
|
37076
|
+
path: {
|
|
37077
|
+
uuid: string;
|
|
37078
|
+
};
|
|
37079
|
+
query?: never;
|
|
37080
|
+
url: '/api/openportal-remote-allocations/{uuid}/pull/';
|
|
37081
|
+
};
|
|
37082
|
+
export type OpenportalRemoteAllocationsPullResponses = {
|
|
37083
|
+
/**
|
|
37084
|
+
* No response body
|
|
37085
|
+
*/
|
|
37086
|
+
200: unknown;
|
|
37087
|
+
};
|
|
37088
|
+
export type OpenportalRemoteAllocationsSetLimitsData = {
|
|
37089
|
+
body: RemoteAllocationSetLimitsRequest;
|
|
37090
|
+
path: {
|
|
37091
|
+
uuid: string;
|
|
37092
|
+
};
|
|
37093
|
+
query?: never;
|
|
37094
|
+
url: '/api/openportal-remote-allocations/{uuid}/set_limits/';
|
|
37095
|
+
};
|
|
37096
|
+
export type OpenportalRemoteAllocationsSetLimitsResponses = {
|
|
37097
|
+
200: RemoteAllocationSetLimits;
|
|
37098
|
+
};
|
|
37099
|
+
export type OpenportalRemoteAllocationsSetLimitsResponse = OpenportalRemoteAllocationsSetLimitsResponses[keyof OpenportalRemoteAllocationsSetLimitsResponses];
|
|
37100
|
+
export type OpenportalRemoteAllocationsUnlinkData = {
|
|
37101
|
+
body?: never;
|
|
37102
|
+
path: {
|
|
37103
|
+
uuid: string;
|
|
37104
|
+
};
|
|
37105
|
+
query?: never;
|
|
37106
|
+
url: '/api/openportal-remote-allocations/{uuid}/unlink/';
|
|
37107
|
+
};
|
|
37108
|
+
export type OpenportalRemoteAllocationsUnlinkResponses = {
|
|
37109
|
+
/**
|
|
37110
|
+
* No response body
|
|
37111
|
+
*/
|
|
37112
|
+
200: unknown;
|
|
37113
|
+
};
|
|
37114
|
+
export type OpenportalRemoteAssociationsListData = {
|
|
37115
|
+
body?: never;
|
|
37116
|
+
path?: never;
|
|
37117
|
+
query?: {
|
|
37118
|
+
allocation?: string;
|
|
37119
|
+
allocation_uuid?: string;
|
|
37120
|
+
/**
|
|
37121
|
+
* A page number within the paginated result set.
|
|
37122
|
+
*/
|
|
37123
|
+
page?: number;
|
|
37124
|
+
/**
|
|
37125
|
+
* Number of results to return per page.
|
|
37126
|
+
*/
|
|
37127
|
+
page_size?: number;
|
|
37128
|
+
};
|
|
37129
|
+
url: '/api/openportal-remote-associations/';
|
|
37130
|
+
};
|
|
37131
|
+
export type OpenportalRemoteAssociationsListResponses = {
|
|
37132
|
+
200: Array<RemoteAssociation>;
|
|
37133
|
+
};
|
|
37134
|
+
export type OpenportalRemoteAssociationsListResponse = OpenportalRemoteAssociationsListResponses[keyof OpenportalRemoteAssociationsListResponses];
|
|
37135
|
+
export type OpenportalRemoteAssociationsCountData = {
|
|
37136
|
+
body?: never;
|
|
37137
|
+
path?: never;
|
|
37138
|
+
query?: {
|
|
37139
|
+
allocation?: string;
|
|
37140
|
+
allocation_uuid?: string;
|
|
37141
|
+
/**
|
|
37142
|
+
* A page number within the paginated result set.
|
|
37143
|
+
*/
|
|
37144
|
+
page?: number;
|
|
37145
|
+
/**
|
|
37146
|
+
* Number of results to return per page.
|
|
37147
|
+
*/
|
|
37148
|
+
page_size?: number;
|
|
37149
|
+
};
|
|
37150
|
+
url: '/api/openportal-remote-associations/';
|
|
37151
|
+
};
|
|
37152
|
+
export type OpenportalRemoteAssociationsCountResponses = {
|
|
37153
|
+
/**
|
|
37154
|
+
* No response body
|
|
37155
|
+
*/
|
|
37156
|
+
200: unknown;
|
|
37157
|
+
};
|
|
37158
|
+
export type OpenportalRemoteAssociationsRetrieveData = {
|
|
37159
|
+
body?: never;
|
|
37160
|
+
path: {
|
|
37161
|
+
uuid: string;
|
|
37162
|
+
};
|
|
37163
|
+
query?: never;
|
|
37164
|
+
url: '/api/openportal-remote-associations/{uuid}/';
|
|
37165
|
+
};
|
|
37166
|
+
export type OpenportalRemoteAssociationsRetrieveResponses = {
|
|
37167
|
+
200: RemoteAssociation;
|
|
37168
|
+
};
|
|
37169
|
+
export type OpenportalRemoteAssociationsRetrieveResponse = OpenportalRemoteAssociationsRetrieveResponses[keyof OpenportalRemoteAssociationsRetrieveResponses];
|
|
37170
|
+
export type OpenportalUnmanagedProjectsListData = {
|
|
37171
|
+
body?: never;
|
|
37172
|
+
path?: never;
|
|
37173
|
+
query?: {
|
|
37174
|
+
backend_id?: string;
|
|
37175
|
+
/**
|
|
37176
|
+
* Return a list of projects where current user is admin.
|
|
37177
|
+
*/
|
|
37178
|
+
can_admin?: boolean;
|
|
37179
|
+
/**
|
|
37180
|
+
* Return a list of projects where current user is manager or a customer owner.
|
|
37181
|
+
*/
|
|
37182
|
+
can_manage?: boolean;
|
|
37183
|
+
/**
|
|
37184
|
+
* Conceal finished projects
|
|
37185
|
+
*/
|
|
37186
|
+
conceal_finished_projects?: boolean;
|
|
37187
|
+
/**
|
|
37188
|
+
* Created after
|
|
37189
|
+
*/
|
|
37190
|
+
created?: string;
|
|
37191
|
+
/**
|
|
37192
|
+
* Multiple values may be separated by commas.
|
|
37193
|
+
*/
|
|
37194
|
+
customer?: Array<string>;
|
|
37195
|
+
customer_abbreviation?: string;
|
|
37196
|
+
customer_name?: string;
|
|
37197
|
+
customer_native_name?: string;
|
|
37198
|
+
description?: string;
|
|
37199
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
37200
|
+
/**
|
|
37201
|
+
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
37202
|
+
*/
|
|
37203
|
+
include_terminated?: boolean;
|
|
37204
|
+
is_removed?: boolean;
|
|
37205
|
+
/**
|
|
37206
|
+
* Modified after
|
|
37207
|
+
*/
|
|
37208
|
+
modified?: string;
|
|
37209
|
+
name?: string;
|
|
37210
|
+
name_exact?: string;
|
|
37211
|
+
/**
|
|
37212
|
+
* Ordering
|
|
37213
|
+
*
|
|
37214
|
+
*
|
|
37215
|
+
*/
|
|
37216
|
+
o?: Array<'-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date'>;
|
|
37217
|
+
/**
|
|
37218
|
+
* A page number within the paginated result set.
|
|
37219
|
+
*/
|
|
37220
|
+
page?: number;
|
|
37221
|
+
/**
|
|
37222
|
+
* Number of results to return per page.
|
|
37223
|
+
*/
|
|
37224
|
+
page_size?: number;
|
|
37225
|
+
/**
|
|
37226
|
+
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
37227
|
+
*/
|
|
37228
|
+
query?: string;
|
|
37229
|
+
slug?: string;
|
|
37230
|
+
};
|
|
37231
|
+
url: '/api/openportal-unmanaged-projects/';
|
|
37232
|
+
};
|
|
37233
|
+
export type OpenportalUnmanagedProjectsListResponses = {
|
|
37234
|
+
200: Array<Project>;
|
|
37235
|
+
};
|
|
37236
|
+
export type OpenportalUnmanagedProjectsListResponse = OpenportalUnmanagedProjectsListResponses[keyof OpenportalUnmanagedProjectsListResponses];
|
|
37237
|
+
export type OpenportalUnmanagedProjectsCountData = {
|
|
37238
|
+
body?: never;
|
|
37239
|
+
path?: never;
|
|
37240
|
+
query?: {
|
|
37241
|
+
backend_id?: string;
|
|
37242
|
+
/**
|
|
37243
|
+
* Return a list of projects where current user is admin.
|
|
37244
|
+
*/
|
|
37245
|
+
can_admin?: boolean;
|
|
37246
|
+
/**
|
|
37247
|
+
* Return a list of projects where current user is manager or a customer owner.
|
|
37248
|
+
*/
|
|
37249
|
+
can_manage?: boolean;
|
|
37250
|
+
/**
|
|
37251
|
+
* Conceal finished projects
|
|
37252
|
+
*/
|
|
37253
|
+
conceal_finished_projects?: boolean;
|
|
37254
|
+
/**
|
|
37255
|
+
* Created after
|
|
37256
|
+
*/
|
|
37257
|
+
created?: string;
|
|
37258
|
+
/**
|
|
37259
|
+
* Multiple values may be separated by commas.
|
|
37260
|
+
*/
|
|
37261
|
+
customer?: Array<string>;
|
|
37262
|
+
customer_abbreviation?: string;
|
|
37263
|
+
customer_name?: string;
|
|
37264
|
+
customer_native_name?: string;
|
|
37265
|
+
description?: string;
|
|
37266
|
+
/**
|
|
37267
|
+
* Include soft-deleted (terminated) projects. Only available to staff and support users, or users with organizational roles who can see their terminated projects.
|
|
37268
|
+
*/
|
|
37269
|
+
include_terminated?: boolean;
|
|
37270
|
+
is_removed?: boolean;
|
|
37271
|
+
/**
|
|
37272
|
+
* Modified after
|
|
37273
|
+
*/
|
|
37274
|
+
modified?: string;
|
|
37275
|
+
name?: string;
|
|
37276
|
+
name_exact?: string;
|
|
37277
|
+
/**
|
|
37278
|
+
* Ordering
|
|
37279
|
+
*
|
|
37280
|
+
*
|
|
37281
|
+
*/
|
|
37282
|
+
o?: Array<'-created' | '-customer_abbreviation' | '-customer_name' | '-customer_native_name' | '-end_date' | '-estimated_cost' | '-name' | '-start_date' | 'created' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'end_date' | 'estimated_cost' | 'name' | 'start_date'>;
|
|
37283
|
+
/**
|
|
37284
|
+
* A page number within the paginated result set.
|
|
37285
|
+
*/
|
|
37286
|
+
page?: number;
|
|
37287
|
+
/**
|
|
37288
|
+
* Number of results to return per page.
|
|
37289
|
+
*/
|
|
37290
|
+
page_size?: number;
|
|
37291
|
+
/**
|
|
37292
|
+
* Filter by name, slug, UUID, backend ID or resource effective ID
|
|
37293
|
+
*/
|
|
37294
|
+
query?: string;
|
|
37295
|
+
slug?: string;
|
|
37296
|
+
};
|
|
37297
|
+
url: '/api/openportal-unmanaged-projects/';
|
|
37298
|
+
};
|
|
37299
|
+
export type OpenportalUnmanagedProjectsCountResponses = {
|
|
37300
|
+
/**
|
|
37301
|
+
* No response body
|
|
37302
|
+
*/
|
|
37303
|
+
200: unknown;
|
|
37304
|
+
};
|
|
37305
|
+
export type OpenportalUnmanagedProjectsCreateData = {
|
|
37306
|
+
body: ProjectRequest;
|
|
37307
|
+
path?: never;
|
|
37308
|
+
query?: never;
|
|
37309
|
+
url: '/api/openportal-unmanaged-projects/';
|
|
37310
|
+
};
|
|
37311
|
+
export type OpenportalUnmanagedProjectsCreateResponses = {
|
|
37312
|
+
201: Project;
|
|
37313
|
+
};
|
|
37314
|
+
export type OpenportalUnmanagedProjectsCreateResponse = OpenportalUnmanagedProjectsCreateResponses[keyof OpenportalUnmanagedProjectsCreateResponses];
|
|
37315
|
+
export type OpenportalUnmanagedProjectsDestroyData = {
|
|
37316
|
+
body?: never;
|
|
37317
|
+
path: {
|
|
37318
|
+
uuid: string;
|
|
37319
|
+
};
|
|
37320
|
+
query?: never;
|
|
37321
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/';
|
|
37322
|
+
};
|
|
37323
|
+
export type OpenportalUnmanagedProjectsDestroyResponses = {
|
|
37324
|
+
/**
|
|
37325
|
+
* No response body
|
|
37326
|
+
*/
|
|
37327
|
+
204: void;
|
|
37328
|
+
};
|
|
37329
|
+
export type OpenportalUnmanagedProjectsDestroyResponse = OpenportalUnmanagedProjectsDestroyResponses[keyof OpenportalUnmanagedProjectsDestroyResponses];
|
|
37330
|
+
export type OpenportalUnmanagedProjectsRetrieveData = {
|
|
37331
|
+
body?: never;
|
|
37332
|
+
path: {
|
|
37333
|
+
uuid: string;
|
|
37334
|
+
};
|
|
37335
|
+
query?: {
|
|
37336
|
+
field?: Array<'backend_id' | 'billing_price_estimate' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_display_billing_info_in_projects' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'end_date' | 'end_date_requested_by' | 'grace_period_days' | 'image' | 'is_industry' | 'is_removed' | 'kind' | 'marketplace_resource_count' | 'max_service_accounts' | 'name' | 'oecd_fos_2007_code' | 'oecd_fos_2007_label' | 'project_credit' | 'resources_count' | 'slug' | 'staff_notes' | 'start_date' | 'termination_metadata' | 'type' | 'type_name' | 'type_uuid' | 'url' | 'uuid'>;
|
|
37337
|
+
};
|
|
37338
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/';
|
|
37339
|
+
};
|
|
37340
|
+
export type OpenportalUnmanagedProjectsRetrieveResponses = {
|
|
37341
|
+
200: Project;
|
|
37342
|
+
};
|
|
37343
|
+
export type OpenportalUnmanagedProjectsRetrieveResponse = OpenportalUnmanagedProjectsRetrieveResponses[keyof OpenportalUnmanagedProjectsRetrieveResponses];
|
|
37344
|
+
export type OpenportalUnmanagedProjectsPartialUpdateData = {
|
|
37345
|
+
body?: PatchedProjectRequest;
|
|
37346
|
+
path: {
|
|
37347
|
+
uuid: string;
|
|
37348
|
+
};
|
|
37349
|
+
query?: never;
|
|
37350
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/';
|
|
37351
|
+
};
|
|
37352
|
+
export type OpenportalUnmanagedProjectsPartialUpdateResponses = {
|
|
37353
|
+
200: Project;
|
|
37354
|
+
};
|
|
37355
|
+
export type OpenportalUnmanagedProjectsPartialUpdateResponse = OpenportalUnmanagedProjectsPartialUpdateResponses[keyof OpenportalUnmanagedProjectsPartialUpdateResponses];
|
|
37356
|
+
export type OpenportalUnmanagedProjectsUpdateData = {
|
|
37357
|
+
body: ProjectRequest;
|
|
37358
|
+
path: {
|
|
37359
|
+
uuid: string;
|
|
37360
|
+
};
|
|
37361
|
+
query?: never;
|
|
37362
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/';
|
|
37363
|
+
};
|
|
37364
|
+
export type OpenportalUnmanagedProjectsUpdateResponses = {
|
|
37365
|
+
200: Project;
|
|
37366
|
+
};
|
|
37367
|
+
export type OpenportalUnmanagedProjectsUpdateResponse = OpenportalUnmanagedProjectsUpdateResponses[keyof OpenportalUnmanagedProjectsUpdateResponses];
|
|
37368
|
+
export type OpenportalUnmanagedProjectsAddUserData = {
|
|
37369
|
+
body: UserRoleCreateRequest;
|
|
37370
|
+
path: {
|
|
37371
|
+
uuid: string;
|
|
37372
|
+
};
|
|
37373
|
+
query?: never;
|
|
37374
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/add_user/';
|
|
37375
|
+
};
|
|
37376
|
+
export type OpenportalUnmanagedProjectsAddUserErrors = {
|
|
37377
|
+
/**
|
|
37378
|
+
* Validation error when trying to add user to terminated project
|
|
37379
|
+
*/
|
|
37380
|
+
400: {
|
|
37381
|
+
non_field_errors?: Array<string>;
|
|
37382
|
+
};
|
|
37383
|
+
};
|
|
37384
|
+
export type OpenportalUnmanagedProjectsAddUserError = OpenportalUnmanagedProjectsAddUserErrors[keyof OpenportalUnmanagedProjectsAddUserErrors];
|
|
37385
|
+
export type OpenportalUnmanagedProjectsAddUserResponses = {
|
|
37386
|
+
201: UserRoleExpirationTime;
|
|
37387
|
+
};
|
|
37388
|
+
export type OpenportalUnmanagedProjectsAddUserResponse = OpenportalUnmanagedProjectsAddUserResponses[keyof OpenportalUnmanagedProjectsAddUserResponses];
|
|
37389
|
+
export type OpenportalUnmanagedProjectsChecklistRetrieveData = {
|
|
37390
|
+
body?: never;
|
|
37391
|
+
path: {
|
|
37392
|
+
uuid: string;
|
|
37393
|
+
};
|
|
37394
|
+
query?: never;
|
|
37395
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/checklist/';
|
|
37396
|
+
};
|
|
37397
|
+
export type OpenportalUnmanagedProjectsChecklistRetrieveErrors = {
|
|
37398
|
+
/**
|
|
37399
|
+
* No checklist configured
|
|
37400
|
+
*/
|
|
37401
|
+
400: unknown;
|
|
37402
|
+
/**
|
|
37403
|
+
* Object not found
|
|
37404
|
+
*/
|
|
37405
|
+
404: unknown;
|
|
37406
|
+
};
|
|
37407
|
+
export type OpenportalUnmanagedProjectsChecklistRetrieveResponses = {
|
|
37408
|
+
200: ChecklistResponse;
|
|
37409
|
+
};
|
|
37410
|
+
export type OpenportalUnmanagedProjectsChecklistRetrieveResponse = OpenportalUnmanagedProjectsChecklistRetrieveResponses[keyof OpenportalUnmanagedProjectsChecklistRetrieveResponses];
|
|
37411
|
+
export type OpenportalUnmanagedProjectsCompletionStatusRetrieveData = {
|
|
37412
|
+
body?: never;
|
|
37413
|
+
path: {
|
|
37414
|
+
uuid: string;
|
|
37415
|
+
};
|
|
37416
|
+
query?: never;
|
|
37417
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/completion_status/';
|
|
37418
|
+
};
|
|
37419
|
+
export type OpenportalUnmanagedProjectsCompletionStatusRetrieveErrors = {
|
|
37420
|
+
/**
|
|
37421
|
+
* No checklist configured
|
|
37422
|
+
*/
|
|
37423
|
+
400: unknown;
|
|
37424
|
+
/**
|
|
37425
|
+
* Object not found
|
|
37426
|
+
*/
|
|
37427
|
+
404: unknown;
|
|
37428
|
+
};
|
|
37429
|
+
export type OpenportalUnmanagedProjectsCompletionStatusRetrieveResponses = {
|
|
37430
|
+
200: ChecklistCompletion;
|
|
37431
|
+
};
|
|
37432
|
+
export type OpenportalUnmanagedProjectsCompletionStatusRetrieveResponse = OpenportalUnmanagedProjectsCompletionStatusRetrieveResponses[keyof OpenportalUnmanagedProjectsCompletionStatusRetrieveResponses];
|
|
37433
|
+
export type OpenportalUnmanagedProjectsDeleteUserData = {
|
|
37434
|
+
body: UserRoleDeleteRequest;
|
|
37435
|
+
path: {
|
|
37436
|
+
uuid: string;
|
|
37437
|
+
};
|
|
37438
|
+
query?: never;
|
|
37439
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/delete_user/';
|
|
37440
|
+
};
|
|
37441
|
+
export type OpenportalUnmanagedProjectsDeleteUserResponses = {
|
|
37442
|
+
/**
|
|
37443
|
+
* No response body
|
|
37444
|
+
*/
|
|
37445
|
+
200: unknown;
|
|
37446
|
+
};
|
|
37447
|
+
export type OpenportalUnmanagedProjectsListUsersListData = {
|
|
37448
|
+
body?: never;
|
|
37449
|
+
path: {
|
|
37450
|
+
uuid: string;
|
|
37451
|
+
};
|
|
37452
|
+
query?: {
|
|
37453
|
+
/**
|
|
37454
|
+
* Fields to include in response
|
|
37455
|
+
*/
|
|
37456
|
+
field?: Array<'created' | 'created_by_full_name' | 'created_by_uuid' | 'expiration_time' | 'role_name' | 'role_uuid' | 'user_email' | 'user_full_name' | 'user_image' | 'user_username' | 'user_uuid' | 'uuid'>;
|
|
37457
|
+
/**
|
|
37458
|
+
* User full name
|
|
37459
|
+
*/
|
|
37460
|
+
full_name?: string;
|
|
37461
|
+
/**
|
|
37462
|
+
* User native name
|
|
37463
|
+
*/
|
|
37464
|
+
native_name?: string;
|
|
37465
|
+
/**
|
|
37466
|
+
* Ordering fields
|
|
37467
|
+
*/
|
|
37468
|
+
o?: Array<'created' | 'email' | 'expiration_time' | 'full_name' | 'native_name' | 'role' | 'username'>;
|
|
37469
|
+
/**
|
|
37470
|
+
* A page number within the paginated result set.
|
|
37471
|
+
*/
|
|
37472
|
+
page?: number;
|
|
37473
|
+
/**
|
|
37474
|
+
* Number of results to return per page.
|
|
37475
|
+
*/
|
|
37476
|
+
page_size?: number;
|
|
37477
|
+
/**
|
|
37478
|
+
* Role UUID or name
|
|
37479
|
+
*/
|
|
37480
|
+
role?: string;
|
|
37481
|
+
/**
|
|
37482
|
+
* Search string for user
|
|
37483
|
+
*/
|
|
37484
|
+
search_string?: string;
|
|
37485
|
+
/**
|
|
37486
|
+
* User UUID
|
|
37487
|
+
*/
|
|
37488
|
+
user?: string;
|
|
37489
|
+
/**
|
|
37490
|
+
* User slug
|
|
37491
|
+
*/
|
|
37492
|
+
user_slug?: string;
|
|
37493
|
+
/**
|
|
37494
|
+
* User URL
|
|
37495
|
+
*/
|
|
37496
|
+
user_url?: string;
|
|
37497
|
+
/**
|
|
37498
|
+
* User username
|
|
37499
|
+
*/
|
|
37500
|
+
username?: string;
|
|
37501
|
+
};
|
|
37502
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/list_users/';
|
|
37503
|
+
};
|
|
37504
|
+
export type OpenportalUnmanagedProjectsListUsersListResponses = {
|
|
37505
|
+
200: Array<UserRoleDetails>;
|
|
37506
|
+
};
|
|
37507
|
+
export type OpenportalUnmanagedProjectsListUsersListResponse = OpenportalUnmanagedProjectsListUsersListResponses[keyof OpenportalUnmanagedProjectsListUsersListResponses];
|
|
37508
|
+
export type OpenportalUnmanagedProjectsMoveProjectData = {
|
|
37509
|
+
body: MoveProjectRequest;
|
|
37510
|
+
path: {
|
|
37511
|
+
uuid: string;
|
|
37512
|
+
};
|
|
37513
|
+
query?: never;
|
|
37514
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/move_project/';
|
|
37515
|
+
};
|
|
37516
|
+
export type OpenportalUnmanagedProjectsMoveProjectErrors = {
|
|
37517
|
+
/**
|
|
37518
|
+
* Validation error when trying to move a terminated project
|
|
37519
|
+
*/
|
|
37520
|
+
400: {
|
|
37521
|
+
non_field_errors?: Array<string>;
|
|
37522
|
+
};
|
|
37523
|
+
};
|
|
37524
|
+
export type OpenportalUnmanagedProjectsMoveProjectError = OpenportalUnmanagedProjectsMoveProjectErrors[keyof OpenportalUnmanagedProjectsMoveProjectErrors];
|
|
37525
|
+
export type OpenportalUnmanagedProjectsMoveProjectResponses = {
|
|
37526
|
+
200: Project;
|
|
37527
|
+
};
|
|
37528
|
+
export type OpenportalUnmanagedProjectsMoveProjectResponse = OpenportalUnmanagedProjectsMoveProjectResponses[keyof OpenportalUnmanagedProjectsMoveProjectResponses];
|
|
37529
|
+
export type OpenportalUnmanagedProjectsRecoverData = {
|
|
37530
|
+
body?: ProjectRecoveryRequest;
|
|
37531
|
+
path: {
|
|
37532
|
+
uuid: string;
|
|
37533
|
+
};
|
|
37534
|
+
query?: never;
|
|
37535
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/recover/';
|
|
37536
|
+
};
|
|
37537
|
+
export type OpenportalUnmanagedProjectsRecoverResponses = {
|
|
37538
|
+
200: Project;
|
|
37539
|
+
};
|
|
37540
|
+
export type OpenportalUnmanagedProjectsRecoverResponse = OpenportalUnmanagedProjectsRecoverResponses[keyof OpenportalUnmanagedProjectsRecoverResponses];
|
|
37541
|
+
export type OpenportalUnmanagedProjectsStatsRetrieveData = {
|
|
37542
|
+
body?: never;
|
|
37543
|
+
path: {
|
|
37544
|
+
uuid: string;
|
|
37545
|
+
};
|
|
37546
|
+
query?: {
|
|
37547
|
+
for_current_month?: boolean;
|
|
37548
|
+
};
|
|
37549
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/stats/';
|
|
37550
|
+
};
|
|
37551
|
+
export type OpenportalUnmanagedProjectsStatsRetrieveResponses = {
|
|
37552
|
+
200: ComponentsUsageStats;
|
|
37553
|
+
};
|
|
37554
|
+
export type OpenportalUnmanagedProjectsStatsRetrieveResponse = OpenportalUnmanagedProjectsStatsRetrieveResponses[keyof OpenportalUnmanagedProjectsStatsRetrieveResponses];
|
|
37555
|
+
export type OpenportalUnmanagedProjectsSubmitAnswersData = {
|
|
37556
|
+
body: Array<AnswerSubmitRequest>;
|
|
37557
|
+
path: {
|
|
37558
|
+
uuid: string;
|
|
37559
|
+
};
|
|
37560
|
+
query?: never;
|
|
37561
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/submit_answers/';
|
|
37562
|
+
};
|
|
37563
|
+
export type OpenportalUnmanagedProjectsSubmitAnswersErrors = {
|
|
37564
|
+
/**
|
|
37565
|
+
* Validation error or no checklist configured
|
|
37566
|
+
*/
|
|
37567
|
+
400: unknown;
|
|
37568
|
+
/**
|
|
37569
|
+
* Object not found
|
|
37570
|
+
*/
|
|
37571
|
+
404: unknown;
|
|
37572
|
+
};
|
|
37573
|
+
export type OpenportalUnmanagedProjectsSubmitAnswersResponses = {
|
|
37574
|
+
200: AnswerSubmitResponse;
|
|
37575
|
+
};
|
|
37576
|
+
export type OpenportalUnmanagedProjectsSubmitAnswersResponse = OpenportalUnmanagedProjectsSubmitAnswersResponses[keyof OpenportalUnmanagedProjectsSubmitAnswersResponses];
|
|
37577
|
+
export type OpenportalUnmanagedProjectsUpdateUserData = {
|
|
37578
|
+
body: UserRoleUpdateRequest;
|
|
37579
|
+
path: {
|
|
37580
|
+
uuid: string;
|
|
37581
|
+
};
|
|
37582
|
+
query?: never;
|
|
37583
|
+
url: '/api/openportal-unmanaged-projects/{uuid}/update_user/';
|
|
37584
|
+
};
|
|
37585
|
+
export type OpenportalUnmanagedProjectsUpdateUserResponses = {
|
|
37586
|
+
200: UserRoleExpirationTime;
|
|
37587
|
+
};
|
|
37588
|
+
export type OpenportalUnmanagedProjectsUpdateUserResponse = OpenportalUnmanagedProjectsUpdateUserResponses[keyof OpenportalUnmanagedProjectsUpdateUserResponses];
|
|
37589
|
+
export type OpenportalUnmanagedProjectsChecklistTemplateRetrieveData = {
|
|
37590
|
+
body?: never;
|
|
37591
|
+
path?: never;
|
|
37592
|
+
query: {
|
|
37593
|
+
/**
|
|
37594
|
+
* UUID of the parent object (e.g., customer UUID for new projects)
|
|
37595
|
+
*/
|
|
37596
|
+
parent_uuid: string;
|
|
37597
|
+
};
|
|
37598
|
+
url: '/api/openportal-unmanaged-projects/checklist-template/';
|
|
37599
|
+
};
|
|
37600
|
+
export type OpenportalUnmanagedProjectsChecklistTemplateRetrieveErrors = {
|
|
37601
|
+
/**
|
|
37602
|
+
* No checklist configured
|
|
37603
|
+
*/
|
|
37604
|
+
400: unknown;
|
|
37605
|
+
/**
|
|
37606
|
+
* Parent object not found
|
|
37607
|
+
*/
|
|
37608
|
+
404: unknown;
|
|
37609
|
+
};
|
|
37610
|
+
export type OpenportalUnmanagedProjectsChecklistTemplateRetrieveResponses = {
|
|
37611
|
+
200: ChecklistTemplate;
|
|
37612
|
+
};
|
|
37613
|
+
export type OpenportalUnmanagedProjectsChecklistTemplateRetrieveResponse = OpenportalUnmanagedProjectsChecklistTemplateRetrieveResponses[keyof OpenportalUnmanagedProjectsChecklistTemplateRetrieveResponses];
|
|
37614
|
+
export type OpenportalUnmanagedProjectsChecklistTemplateCountData = {
|
|
37615
|
+
body?: never;
|
|
37616
|
+
path?: never;
|
|
37617
|
+
query: {
|
|
37618
|
+
/**
|
|
37619
|
+
* UUID of the parent object (e.g., customer UUID for new projects)
|
|
37620
|
+
*/
|
|
37621
|
+
parent_uuid: string;
|
|
37622
|
+
};
|
|
37623
|
+
url: '/api/openportal-unmanaged-projects/checklist-template/';
|
|
37624
|
+
};
|
|
37625
|
+
export type OpenportalUnmanagedProjectsChecklistTemplateCountResponses = {
|
|
37626
|
+
/**
|
|
37627
|
+
* No response body
|
|
37628
|
+
*/
|
|
37629
|
+
200: unknown;
|
|
37630
|
+
};
|
|
37631
|
+
export type OpenportalUserinfoListData = {
|
|
37632
|
+
body?: never;
|
|
37633
|
+
path?: never;
|
|
37634
|
+
query?: {
|
|
37635
|
+
/**
|
|
37636
|
+
* A page number within the paginated result set.
|
|
37637
|
+
*/
|
|
37638
|
+
page?: number;
|
|
37639
|
+
/**
|
|
37640
|
+
* Number of results to return per page.
|
|
37641
|
+
*/
|
|
37642
|
+
page_size?: number;
|
|
37643
|
+
user?: string;
|
|
37644
|
+
user_uuid?: string;
|
|
37645
|
+
};
|
|
37646
|
+
url: '/api/openportal-userinfo/';
|
|
37647
|
+
};
|
|
37648
|
+
export type OpenportalUserinfoListResponses = {
|
|
37649
|
+
200: Array<UserInfo>;
|
|
37650
|
+
};
|
|
37651
|
+
export type OpenportalUserinfoListResponse = OpenportalUserinfoListResponses[keyof OpenportalUserinfoListResponses];
|
|
37652
|
+
export type OpenportalUserinfoCountData = {
|
|
37653
|
+
body?: never;
|
|
37654
|
+
path?: never;
|
|
37655
|
+
query?: {
|
|
37656
|
+
/**
|
|
37657
|
+
* A page number within the paginated result set.
|
|
37658
|
+
*/
|
|
37659
|
+
page?: number;
|
|
37660
|
+
/**
|
|
37661
|
+
* Number of results to return per page.
|
|
37662
|
+
*/
|
|
37663
|
+
page_size?: number;
|
|
37664
|
+
user?: string;
|
|
37665
|
+
user_uuid?: string;
|
|
37666
|
+
};
|
|
37667
|
+
url: '/api/openportal-userinfo/';
|
|
37668
|
+
};
|
|
37669
|
+
export type OpenportalUserinfoCountResponses = {
|
|
37670
|
+
/**
|
|
37671
|
+
* No response body
|
|
37672
|
+
*/
|
|
37673
|
+
200: unknown;
|
|
37674
|
+
};
|
|
37675
|
+
export type OpenportalUserinfoCreateData = {
|
|
37676
|
+
body: UserInfoRequest;
|
|
37677
|
+
path?: never;
|
|
37678
|
+
query?: never;
|
|
37679
|
+
url: '/api/openportal-userinfo/';
|
|
37680
|
+
};
|
|
37681
|
+
export type OpenportalUserinfoCreateResponses = {
|
|
37682
|
+
201: UserInfo;
|
|
37683
|
+
};
|
|
37684
|
+
export type OpenportalUserinfoCreateResponse = OpenportalUserinfoCreateResponses[keyof OpenportalUserinfoCreateResponses];
|
|
37685
|
+
export type OpenportalUserinfoDestroyData = {
|
|
37686
|
+
body?: never;
|
|
37687
|
+
path: {
|
|
37688
|
+
user: number;
|
|
37689
|
+
};
|
|
37690
|
+
query?: never;
|
|
37691
|
+
url: '/api/openportal-userinfo/{user}/';
|
|
37692
|
+
};
|
|
37693
|
+
export type OpenportalUserinfoDestroyResponses = {
|
|
37694
|
+
/**
|
|
37695
|
+
* No response body
|
|
37696
|
+
*/
|
|
37697
|
+
204: void;
|
|
37698
|
+
};
|
|
37699
|
+
export type OpenportalUserinfoDestroyResponse = OpenportalUserinfoDestroyResponses[keyof OpenportalUserinfoDestroyResponses];
|
|
37700
|
+
export type OpenportalUserinfoRetrieveData = {
|
|
37701
|
+
body?: never;
|
|
37702
|
+
path: {
|
|
37703
|
+
user: number;
|
|
37704
|
+
};
|
|
37705
|
+
query?: never;
|
|
37706
|
+
url: '/api/openportal-userinfo/{user}/';
|
|
37707
|
+
};
|
|
37708
|
+
export type OpenportalUserinfoRetrieveResponses = {
|
|
37709
|
+
200: UserInfo;
|
|
37710
|
+
};
|
|
37711
|
+
export type OpenportalUserinfoRetrieveResponse = OpenportalUserinfoRetrieveResponses[keyof OpenportalUserinfoRetrieveResponses];
|
|
37712
|
+
export type OpenportalUserinfoPartialUpdateData = {
|
|
37713
|
+
body?: PatchedUserInfoRequest;
|
|
37714
|
+
path: {
|
|
37715
|
+
user: number;
|
|
37716
|
+
};
|
|
37717
|
+
query?: never;
|
|
37718
|
+
url: '/api/openportal-userinfo/{user}/';
|
|
37719
|
+
};
|
|
37720
|
+
export type OpenportalUserinfoPartialUpdateResponses = {
|
|
37721
|
+
200: UserInfo;
|
|
37722
|
+
};
|
|
37723
|
+
export type OpenportalUserinfoPartialUpdateResponse = OpenportalUserinfoPartialUpdateResponses[keyof OpenportalUserinfoPartialUpdateResponses];
|
|
37724
|
+
export type OpenportalUserinfoUpdateData = {
|
|
37725
|
+
body: UserInfoRequest;
|
|
37726
|
+
path: {
|
|
37727
|
+
user: number;
|
|
37728
|
+
};
|
|
37729
|
+
query?: never;
|
|
37730
|
+
url: '/api/openportal-userinfo/{user}/';
|
|
37731
|
+
};
|
|
37732
|
+
export type OpenportalUserinfoUpdateResponses = {
|
|
37733
|
+
200: UserInfo;
|
|
37734
|
+
};
|
|
37735
|
+
export type OpenportalUserinfoUpdateResponse = OpenportalUserinfoUpdateResponses[keyof OpenportalUserinfoUpdateResponses];
|
|
37736
|
+
export type OpenportalUserinfoSetShortnameUpdateData = {
|
|
37737
|
+
body: UserInfoRequest;
|
|
37738
|
+
path: {
|
|
37739
|
+
user: number;
|
|
37740
|
+
};
|
|
37741
|
+
query?: never;
|
|
37742
|
+
url: '/api/openportal-userinfo/{user}/set_shortname/';
|
|
37743
|
+
};
|
|
37744
|
+
export type OpenportalUserinfoSetShortnameUpdateResponses = {
|
|
37745
|
+
200: UserInfo;
|
|
37746
|
+
};
|
|
37747
|
+
export type OpenportalUserinfoSetShortnameUpdateResponse = OpenportalUserinfoSetShortnameUpdateResponses[keyof OpenportalUserinfoSetShortnameUpdateResponses];
|
|
37748
|
+
export type OpenportalUserinfoMeRetrieveData = {
|
|
37749
|
+
body?: never;
|
|
37750
|
+
path?: never;
|
|
37751
|
+
query?: never;
|
|
37752
|
+
url: '/api/openportal-userinfo/me/';
|
|
37753
|
+
};
|
|
37754
|
+
export type OpenportalUserinfoMeRetrieveResponses = {
|
|
37755
|
+
200: UserInfo;
|
|
37756
|
+
};
|
|
37757
|
+
export type OpenportalUserinfoMeRetrieveResponse = OpenportalUserinfoMeRetrieveResponses[keyof OpenportalUserinfoMeRetrieveResponses];
|
|
37758
|
+
export type OpenportalUserinfoMeCountData = {
|
|
37759
|
+
body?: never;
|
|
37760
|
+
path?: never;
|
|
37761
|
+
query?: never;
|
|
37762
|
+
url: '/api/openportal-userinfo/me/';
|
|
37763
|
+
};
|
|
37764
|
+
export type OpenportalUserinfoMeCountResponses = {
|
|
37765
|
+
/**
|
|
37766
|
+
* No response body
|
|
37767
|
+
*/
|
|
37768
|
+
200: unknown;
|
|
37769
|
+
};
|
|
35596
37770
|
export type OpenstackBackupsListData = {
|
|
35597
37771
|
body?: never;
|
|
35598
37772
|
path?: never;
|