waldur-js-client 7.8.8-dev.4 → 7.8.8-dev.6
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 +222 -4
- package/dist/sdk.gen.js +1609 -3
- package/dist/types.gen.d.ts +2347 -335
- 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;
|
|
@@ -3919,6 +3992,41 @@ export type MaintenanceAnnouncementTemplateRequest = {
|
|
|
3919
3992
|
service_provider: string;
|
|
3920
3993
|
};
|
|
3921
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
|
+
};
|
|
3922
4030
|
export type ManagedRancherCreateNodeRequest = {
|
|
3923
4031
|
role: RancherNodeRoleEnum;
|
|
3924
4032
|
system_volume_size?: number;
|
|
@@ -8304,7 +8412,7 @@ export type OrderCreateRequest = {
|
|
|
8304
8412
|
/**
|
|
8305
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.
|
|
8306
8414
|
*/
|
|
8307
|
-
attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
|
|
8415
|
+
attributes?: AzureVirtualMachineCreateOrderAttributes | AzureSqlServerCreateOrderAttributes | MarketplaceOpenPortalCreateOrderAttributes | MarketplaceOpenPortalRemoteCreateOrderAttributes | OpenStackTenantCreateOrderAttributes | OpenStackInstanceCreateOrderAttributes | OpenStackVolumeCreateOrderAttributes | SlurmInvoicesSlurmPackageCreateOrderAttributes | VMwareVirtualMachineCreateOrderAttributes | GenericOrderAttributes;
|
|
8308
8416
|
limits?: {
|
|
8309
8417
|
[key: string]: number;
|
|
8310
8418
|
};
|
|
@@ -8465,6 +8573,12 @@ export type PatchedAdminAnnouncementRequest = {
|
|
|
8465
8573
|
active_to?: string;
|
|
8466
8574
|
type?: AdminAnnouncementTypeEnum;
|
|
8467
8575
|
};
|
|
8576
|
+
export type PatchedAllocationRequest = {
|
|
8577
|
+
name?: string;
|
|
8578
|
+
description?: string;
|
|
8579
|
+
node_limit?: number;
|
|
8580
|
+
groupname?: string | null;
|
|
8581
|
+
};
|
|
8468
8582
|
export type PatchedAwsInstanceRequest = {
|
|
8469
8583
|
name?: string;
|
|
8470
8584
|
description?: string;
|
|
@@ -9228,6 +9342,17 @@ export type PatchedProjectEstimatedCostPolicyRequest = {
|
|
|
9228
9342
|
limit_cost?: number;
|
|
9229
9343
|
period?: PeriodEnum;
|
|
9230
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
|
+
};
|
|
9231
9356
|
export type PatchedProjectRequest = {
|
|
9232
9357
|
name?: string;
|
|
9233
9358
|
slug?: string;
|
|
@@ -9264,6 +9389,39 @@ export type PatchedProjectServiceAccountRequest = {
|
|
|
9264
9389
|
preferred_identifier?: string;
|
|
9265
9390
|
project?: string;
|
|
9266
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
|
+
};
|
|
9267
9425
|
export type PatchedProposalProjectRoleMappingRequest = {
|
|
9268
9426
|
call?: string;
|
|
9269
9427
|
proposal_role?: string;
|
|
@@ -9489,6 +9647,15 @@ export type PatchedRancherWorkloadRequest = {
|
|
|
9489
9647
|
namespace?: string | null;
|
|
9490
9648
|
scale?: number;
|
|
9491
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
|
+
};
|
|
9492
9659
|
export type PatchedRemoteSynchronisationRequest = {
|
|
9493
9660
|
api_url?: string;
|
|
9494
9661
|
token?: string;
|
|
@@ -9704,6 +9871,13 @@ export type PatchedUserAgreementRequest = {
|
|
|
9704
9871
|
content?: string;
|
|
9705
9872
|
agreement_type?: AgreementTypeEnum;
|
|
9706
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
|
+
};
|
|
9707
9881
|
export type PatchedUserOfferingConsentRequest = {
|
|
9708
9882
|
version?: string;
|
|
9709
9883
|
};
|
|
@@ -10056,6 +10230,12 @@ export type ProjectAnswer = {
|
|
|
10056
10230
|
*/
|
|
10057
10231
|
readonly unanswered_required_count: number;
|
|
10058
10232
|
};
|
|
10233
|
+
export type ProjectAttachRequest = {
|
|
10234
|
+
/**
|
|
10235
|
+
* UUID of the project to attach to this managed project
|
|
10236
|
+
*/
|
|
10237
|
+
project_uuid: string;
|
|
10238
|
+
};
|
|
10059
10239
|
export type ProjectCredit = {
|
|
10060
10240
|
readonly uuid: string;
|
|
10061
10241
|
readonly url: string;
|
|
@@ -10143,6 +10323,28 @@ export type ProjectEstimatedCostPolicyRequest = {
|
|
|
10143
10323
|
export type ProjectHyperlinkRequest = {
|
|
10144
10324
|
url: string;
|
|
10145
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
|
+
};
|
|
10146
10348
|
export type ProjectPermissionLog = {
|
|
10147
10349
|
readonly created?: string;
|
|
10148
10350
|
expiration_time?: string | null;
|
|
@@ -10262,6 +10464,84 @@ export type ProjectServiceAccountRequest = {
|
|
|
10262
10464
|
preferred_identifier?: string;
|
|
10263
10465
|
project: string;
|
|
10264
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
|
+
};
|
|
10265
10545
|
export type ProjectType = {
|
|
10266
10546
|
readonly uuid: string;
|
|
10267
10547
|
readonly url: string;
|
|
@@ -10706,6 +10986,43 @@ export type ProviderOfferingDetails = {
|
|
|
10706
10986
|
*/
|
|
10707
10987
|
readonly google_calendar_link?: string | null;
|
|
10708
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
|
+
};
|
|
10709
11026
|
export type ProviderPlanDetails = {
|
|
10710
11027
|
readonly url: string;
|
|
10711
11028
|
readonly uuid: string;
|
|
@@ -12075,6 +12392,73 @@ export type ReferenceNumberRequest = {
|
|
|
12075
12392
|
*/
|
|
12076
12393
|
reference_number?: string;
|
|
12077
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
|
+
};
|
|
12078
12462
|
export type RemoteCredentialsRequest = {
|
|
12079
12463
|
api_url: string;
|
|
12080
12464
|
token: string;
|
|
@@ -13731,6 +14115,20 @@ export type UserConsentInfo = {
|
|
|
13731
14115
|
export type UserEmailChangeRequest = {
|
|
13732
14116
|
email: string;
|
|
13733
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
|
+
};
|
|
13734
14132
|
export type UserOfferingConsent = {
|
|
13735
14133
|
readonly uuid: string;
|
|
13736
14134
|
readonly user_uuid: string;
|
|
@@ -14264,6 +14662,14 @@ export type AzureSqlServerCreateOrderAttributes = {
|
|
|
14264
14662
|
description?: string;
|
|
14265
14663
|
location: string;
|
|
14266
14664
|
};
|
|
14665
|
+
export type MarketplaceOpenPortalCreateOrderAttributes = {
|
|
14666
|
+
name: string;
|
|
14667
|
+
description?: string;
|
|
14668
|
+
};
|
|
14669
|
+
export type MarketplaceOpenPortalRemoteCreateOrderAttributes = {
|
|
14670
|
+
name: string;
|
|
14671
|
+
description?: string;
|
|
14672
|
+
};
|
|
14267
14673
|
export type OpenStackTenantCreateOrderAttributes = {
|
|
14268
14674
|
name: string;
|
|
14269
14675
|
description?: string;
|
|
@@ -14966,340 +15372,6 @@ export type OnboardingJustificationDocumentationRequestMultipart = {
|
|
|
14966
15372
|
*/
|
|
14967
15373
|
file?: (Blob | File) | null;
|
|
14968
15374
|
};
|
|
14969
|
-
export type ConstanceSettingsRequestForm = {
|
|
14970
|
-
SITE_NAME?: string;
|
|
14971
|
-
SITE_DESCRIPTION?: string;
|
|
14972
|
-
HOMEPORT_URL?: string;
|
|
14973
|
-
RANCHER_USERNAME_INPUT_LABEL?: string;
|
|
14974
|
-
SITE_ADDRESS?: string;
|
|
14975
|
-
SITE_EMAIL?: string;
|
|
14976
|
-
SITE_PHONE?: string;
|
|
14977
|
-
CURRENCY_NAME?: string;
|
|
14978
|
-
THUMBNAIL_SIZE?: string;
|
|
14979
|
-
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
14980
|
-
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
14981
|
-
NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
|
|
14982
|
-
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
14983
|
-
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
14984
|
-
MARKETPLACE_LANDING_PAGE?: string;
|
|
14985
|
-
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
14986
|
-
TELEMETRY_URL?: string;
|
|
14987
|
-
TELEMETRY_VERSION?: number;
|
|
14988
|
-
SCRIPT_RUN_MODE?: string;
|
|
14989
|
-
DOCKER_CLIENT?: string;
|
|
14990
|
-
DOCKER_RUN_OPTIONS?: string;
|
|
14991
|
-
DOCKER_SCRIPT_DIR?: string;
|
|
14992
|
-
DOCKER_REMOVE_CONTAINER?: boolean;
|
|
14993
|
-
DOCKER_IMAGES?: string;
|
|
14994
|
-
DOCKER_VOLUME_NAME?: string;
|
|
14995
|
-
K8S_NAMESPACE?: string;
|
|
14996
|
-
K8S_CONFIG_PATH?: string;
|
|
14997
|
-
K8S_JOB_TIMEOUT?: number;
|
|
14998
|
-
ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
|
|
14999
|
-
INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
|
|
15000
|
-
DEFAULT_IDP?: string;
|
|
15001
|
-
DOCS_URL?: string;
|
|
15002
|
-
SHORT_PAGE_TITLE?: string;
|
|
15003
|
-
FULL_PAGE_TITLE?: string;
|
|
15004
|
-
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
15005
|
-
ENABLE_ORDER_START_DATE?: boolean;
|
|
15006
|
-
BRAND_COLOR?: string;
|
|
15007
|
-
HERO_LINK_LABEL?: string;
|
|
15008
|
-
HERO_LINK_URL?: string;
|
|
15009
|
-
SUPPORT_PORTAL_URL?: string;
|
|
15010
|
-
COMMON_FOOTER_TEXT?: string;
|
|
15011
|
-
COMMON_FOOTER_HTML?: string;
|
|
15012
|
-
LANGUAGE_CHOICES?: string;
|
|
15013
|
-
DISABLE_DARK_THEME?: boolean;
|
|
15014
|
-
POWERED_BY_LOGO?: (Blob | File) | null;
|
|
15015
|
-
HERO_IMAGE?: (Blob | File) | null;
|
|
15016
|
-
MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
|
|
15017
|
-
CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
|
|
15018
|
-
SIDEBAR_LOGO?: (Blob | File) | null;
|
|
15019
|
-
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
15020
|
-
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
15021
|
-
SIDEBAR_STYLE?: string;
|
|
15022
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
15023
|
-
LOGIN_LOGO?: (Blob | File) | null;
|
|
15024
|
-
FAVICON?: (Blob | File) | null;
|
|
15025
|
-
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
15026
|
-
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
15027
|
-
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
15028
|
-
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
15029
|
-
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
15030
|
-
ATLASSIAN_API_URL?: string;
|
|
15031
|
-
ATLASSIAN_USERNAME?: string;
|
|
15032
|
-
ATLASSIAN_PASSWORD?: string;
|
|
15033
|
-
ATLASSIAN_EMAIL?: string;
|
|
15034
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
15035
|
-
ATLASSIAN_TOKEN?: string;
|
|
15036
|
-
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
15037
|
-
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
15038
|
-
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
15039
|
-
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
15040
|
-
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
15041
|
-
ATLASSIAN_PROJECT_ID?: string;
|
|
15042
|
-
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
15043
|
-
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
15044
|
-
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
15045
|
-
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
15046
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
15047
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
15048
|
-
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
15049
|
-
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
15050
|
-
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
15051
|
-
ATLASSIAN_IMPACT_FIELD?: string;
|
|
15052
|
-
ATLASSIAN_ORGANISATION_FIELD?: string;
|
|
15053
|
-
ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
|
|
15054
|
-
ATLASSIAN_PROJECT_FIELD?: string;
|
|
15055
|
-
ATLASSIAN_REPORTER_FIELD?: string;
|
|
15056
|
-
ATLASSIAN_CALLER_FIELD?: string;
|
|
15057
|
-
ATLASSIAN_SLA_FIELD?: string;
|
|
15058
|
-
ATLASSIAN_LINKED_ISSUE_TYPE?: string;
|
|
15059
|
-
ATLASSIAN_SATISFACTION_FIELD?: string;
|
|
15060
|
-
ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
|
|
15061
|
-
ATLASSIAN_TEMPLATE_FIELD?: string;
|
|
15062
|
-
ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
|
|
15063
|
-
ZAMMAD_API_URL?: string;
|
|
15064
|
-
ZAMMAD_TOKEN?: string;
|
|
15065
|
-
ZAMMAD_GROUP?: string;
|
|
15066
|
-
ZAMMAD_ARTICLE_TYPE?: string;
|
|
15067
|
-
ZAMMAD_COMMENT_MARKER?: string;
|
|
15068
|
-
ZAMMAD_COMMENT_PREFIX?: string;
|
|
15069
|
-
ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
|
|
15070
|
-
SMAX_API_URL?: string;
|
|
15071
|
-
SMAX_TENANT_ID?: string;
|
|
15072
|
-
SMAX_LOGIN?: string;
|
|
15073
|
-
SMAX_PASSWORD?: string;
|
|
15074
|
-
SMAX_ORGANISATION_FIELD?: string;
|
|
15075
|
-
SMAX_PROJECT_FIELD?: string;
|
|
15076
|
-
SMAX_AFFECTED_RESOURCE_FIELD?: string;
|
|
15077
|
-
SMAX_TIMES_TO_PULL?: number;
|
|
15078
|
-
SMAX_SECONDS_TO_WAIT?: number;
|
|
15079
|
-
SMAX_CREATION_SOURCE_NAME?: string;
|
|
15080
|
-
SMAX_REQUESTS_OFFERING?: string;
|
|
15081
|
-
SMAX_VERIFY_SSL?: boolean;
|
|
15082
|
-
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
15083
|
-
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
15084
|
-
PROPOSAL_REVIEW_DURATION?: number;
|
|
15085
|
-
USER_TABLE_COLUMNS?: string;
|
|
15086
|
-
AUTO_APPROVE_USER_TOS?: boolean;
|
|
15087
|
-
FREEIPA_ENABLED?: boolean;
|
|
15088
|
-
FREEIPA_HOSTNAME?: string;
|
|
15089
|
-
FREEIPA_USERNAME?: string;
|
|
15090
|
-
FREEIPA_PASSWORD?: string;
|
|
15091
|
-
FREEIPA_VERIFY_SSL?: boolean;
|
|
15092
|
-
FREEIPA_USERNAME_PREFIX?: string;
|
|
15093
|
-
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
15094
|
-
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
15095
|
-
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
15096
|
-
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
15097
|
-
COUNTRIES?: Array<string>;
|
|
15098
|
-
OIDC_AUTH_URL?: string;
|
|
15099
|
-
OIDC_INTROSPECTION_URL?: string;
|
|
15100
|
-
OIDC_CLIENT_ID?: string;
|
|
15101
|
-
OIDC_CLIENT_SECRET?: string;
|
|
15102
|
-
OIDC_USER_FIELD?: string;
|
|
15103
|
-
OIDC_CACHE_TIMEOUT?: number;
|
|
15104
|
-
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
15105
|
-
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
15106
|
-
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
15107
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
15108
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
15109
|
-
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
15110
|
-
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
15111
|
-
ONBOARDING_COUNTRY?: string;
|
|
15112
|
-
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
15113
|
-
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
15114
|
-
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
15115
|
-
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
15116
|
-
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
15117
|
-
ONBOARDING_WICO_API_URL?: string;
|
|
15118
|
-
ONBOARDING_WICO_TOKEN?: string;
|
|
15119
|
-
ONBOARDING_BOLAGSVERKET_API_URL?: string;
|
|
15120
|
-
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15121
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15122
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15123
|
-
};
|
|
15124
|
-
export type ConstanceSettingsRequestMultipart = {
|
|
15125
|
-
SITE_NAME?: string;
|
|
15126
|
-
SITE_DESCRIPTION?: string;
|
|
15127
|
-
HOMEPORT_URL?: string;
|
|
15128
|
-
RANCHER_USERNAME_INPUT_LABEL?: string;
|
|
15129
|
-
SITE_ADDRESS?: string;
|
|
15130
|
-
SITE_EMAIL?: string;
|
|
15131
|
-
SITE_PHONE?: string;
|
|
15132
|
-
CURRENCY_NAME?: string;
|
|
15133
|
-
THUMBNAIL_SIZE?: string;
|
|
15134
|
-
ANONYMOUS_USER_CAN_VIEW_OFFERINGS?: boolean;
|
|
15135
|
-
ANONYMOUS_USER_CAN_VIEW_PLANS?: boolean;
|
|
15136
|
-
NOTIFY_STAFF_ABOUT_APPROVALS?: boolean;
|
|
15137
|
-
NOTIFY_ABOUT_RESOURCE_CHANGE?: boolean;
|
|
15138
|
-
DISABLE_SENDING_NOTIFICATIONS_ABOUT_RESOURCE_UPDATE?: boolean;
|
|
15139
|
-
MARKETPLACE_LANDING_PAGE?: string;
|
|
15140
|
-
ENABLE_STALE_RESOURCE_NOTIFICATIONS?: boolean;
|
|
15141
|
-
TELEMETRY_URL?: string;
|
|
15142
|
-
TELEMETRY_VERSION?: number;
|
|
15143
|
-
SCRIPT_RUN_MODE?: string;
|
|
15144
|
-
DOCKER_CLIENT?: string;
|
|
15145
|
-
DOCKER_RUN_OPTIONS?: string;
|
|
15146
|
-
DOCKER_SCRIPT_DIR?: string;
|
|
15147
|
-
DOCKER_REMOVE_CONTAINER?: boolean;
|
|
15148
|
-
DOCKER_IMAGES?: string;
|
|
15149
|
-
DOCKER_VOLUME_NAME?: string;
|
|
15150
|
-
K8S_NAMESPACE?: string;
|
|
15151
|
-
K8S_CONFIG_PATH?: string;
|
|
15152
|
-
K8S_JOB_TIMEOUT?: number;
|
|
15153
|
-
ENABLE_STRICT_CHECK_ACCEPTING_INVITATION?: boolean;
|
|
15154
|
-
INVITATION_DISABLE_MULTIPLE_ROLES?: boolean;
|
|
15155
|
-
DEFAULT_IDP?: string;
|
|
15156
|
-
DOCS_URL?: string;
|
|
15157
|
-
SHORT_PAGE_TITLE?: string;
|
|
15158
|
-
FULL_PAGE_TITLE?: string;
|
|
15159
|
-
PROJECT_END_DATE_MANDATORY?: boolean;
|
|
15160
|
-
ENABLE_ORDER_START_DATE?: boolean;
|
|
15161
|
-
BRAND_COLOR?: string;
|
|
15162
|
-
HERO_LINK_LABEL?: string;
|
|
15163
|
-
HERO_LINK_URL?: string;
|
|
15164
|
-
SUPPORT_PORTAL_URL?: string;
|
|
15165
|
-
COMMON_FOOTER_TEXT?: string;
|
|
15166
|
-
COMMON_FOOTER_HTML?: string;
|
|
15167
|
-
LANGUAGE_CHOICES?: string;
|
|
15168
|
-
DISABLE_DARK_THEME?: boolean;
|
|
15169
|
-
POWERED_BY_LOGO?: (Blob | File) | null;
|
|
15170
|
-
HERO_IMAGE?: (Blob | File) | null;
|
|
15171
|
-
MARKETPLACE_HERO_IMAGE?: (Blob | File) | null;
|
|
15172
|
-
CALL_MANAGEMENT_HERO_IMAGE?: (Blob | File) | null;
|
|
15173
|
-
SIDEBAR_LOGO?: (Blob | File) | null;
|
|
15174
|
-
SIDEBAR_LOGO_DARK?: (Blob | File) | null;
|
|
15175
|
-
SIDEBAR_LOGO_MOBILE?: (Blob | File) | null;
|
|
15176
|
-
SIDEBAR_STYLE?: string;
|
|
15177
|
-
SITE_LOGO?: (Blob | File) | null;
|
|
15178
|
-
LOGIN_LOGO?: (Blob | File) | null;
|
|
15179
|
-
FAVICON?: (Blob | File) | null;
|
|
15180
|
-
OFFERING_LOGO_PLACEHOLDER?: (Blob | File) | null;
|
|
15181
|
-
WALDUR_SUPPORT_ENABLED?: boolean;
|
|
15182
|
-
WALDUR_SUPPORT_ACTIVE_BACKEND_TYPE?: string;
|
|
15183
|
-
WALDUR_SUPPORT_DISPLAY_REQUEST_TYPE?: boolean;
|
|
15184
|
-
ATLASSIAN_MAP_WALDUR_USERS_TO_SERVICEDESK_AGENTS?: boolean;
|
|
15185
|
-
ATLASSIAN_API_URL?: string;
|
|
15186
|
-
ATLASSIAN_USERNAME?: string;
|
|
15187
|
-
ATLASSIAN_PASSWORD?: string;
|
|
15188
|
-
ATLASSIAN_EMAIL?: string;
|
|
15189
|
-
ATLASSIAN_USE_OLD_API?: boolean;
|
|
15190
|
-
ATLASSIAN_TOKEN?: string;
|
|
15191
|
-
ATLASSIAN_PERSONAL_ACCESS_TOKEN?: string;
|
|
15192
|
-
ATLASSIAN_OAUTH2_CLIENT_ID?: string;
|
|
15193
|
-
ATLASSIAN_OAUTH2_ACCESS_TOKEN?: string;
|
|
15194
|
-
ATLASSIAN_OAUTH2_TOKEN_TYPE?: string;
|
|
15195
|
-
ATLASSIAN_VERIFY_SSL?: boolean;
|
|
15196
|
-
ATLASSIAN_PROJECT_ID?: string;
|
|
15197
|
-
ATLASSIAN_SHARED_USERNAME?: boolean;
|
|
15198
|
-
ATLASSIAN_CUSTOM_ISSUE_FIELD_MAPPING_ENABLED?: boolean;
|
|
15199
|
-
ATLASSIAN_DEFAULT_OFFERING_ISSUE_TYPE?: string;
|
|
15200
|
-
ATLASSIAN_EXCLUDED_ATTACHMENT_TYPES?: string;
|
|
15201
|
-
ATLASSIAN_ISSUE_TYPES?: string;
|
|
15202
|
-
ATLASSIAN_SUPPORT_TYPE_MAPPING?: string;
|
|
15203
|
-
ATLASSIAN_DESCRIPTION_TEMPLATE?: string;
|
|
15204
|
-
ATLASSIAN_SUMMARY_TEMPLATE?: string;
|
|
15205
|
-
ATLASSIAN_AFFECTED_RESOURCE_FIELD?: string;
|
|
15206
|
-
ATLASSIAN_IMPACT_FIELD?: string;
|
|
15207
|
-
ATLASSIAN_ORGANISATION_FIELD?: string;
|
|
15208
|
-
ATLASSIAN_RESOLUTION_SLA_FIELD?: string;
|
|
15209
|
-
ATLASSIAN_PROJECT_FIELD?: string;
|
|
15210
|
-
ATLASSIAN_REPORTER_FIELD?: string;
|
|
15211
|
-
ATLASSIAN_CALLER_FIELD?: string;
|
|
15212
|
-
ATLASSIAN_SLA_FIELD?: string;
|
|
15213
|
-
ATLASSIAN_LINKED_ISSUE_TYPE?: string;
|
|
15214
|
-
ATLASSIAN_SATISFACTION_FIELD?: string;
|
|
15215
|
-
ATLASSIAN_REQUEST_FEEDBACK_FIELD?: string;
|
|
15216
|
-
ATLASSIAN_TEMPLATE_FIELD?: string;
|
|
15217
|
-
ATLASSIAN_WALDUR_BACKEND_ID_FIELD?: string;
|
|
15218
|
-
ZAMMAD_API_URL?: string;
|
|
15219
|
-
ZAMMAD_TOKEN?: string;
|
|
15220
|
-
ZAMMAD_GROUP?: string;
|
|
15221
|
-
ZAMMAD_ARTICLE_TYPE?: string;
|
|
15222
|
-
ZAMMAD_COMMENT_MARKER?: string;
|
|
15223
|
-
ZAMMAD_COMMENT_PREFIX?: string;
|
|
15224
|
-
ZAMMAD_COMMENT_COOLDOWN_DURATION?: number;
|
|
15225
|
-
SMAX_API_URL?: string;
|
|
15226
|
-
SMAX_TENANT_ID?: string;
|
|
15227
|
-
SMAX_LOGIN?: string;
|
|
15228
|
-
SMAX_PASSWORD?: string;
|
|
15229
|
-
SMAX_ORGANISATION_FIELD?: string;
|
|
15230
|
-
SMAX_PROJECT_FIELD?: string;
|
|
15231
|
-
SMAX_AFFECTED_RESOURCE_FIELD?: string;
|
|
15232
|
-
SMAX_TIMES_TO_PULL?: number;
|
|
15233
|
-
SMAX_SECONDS_TO_WAIT?: number;
|
|
15234
|
-
SMAX_CREATION_SOURCE_NAME?: string;
|
|
15235
|
-
SMAX_REQUESTS_OFFERING?: string;
|
|
15236
|
-
SMAX_VERIFY_SSL?: boolean;
|
|
15237
|
-
ENABLE_MOCK_SERVICE_ACCOUNT_BACKEND?: boolean;
|
|
15238
|
-
ENABLE_MOCK_COURSE_ACCOUNT_BACKEND?: boolean;
|
|
15239
|
-
PROPOSAL_REVIEW_DURATION?: number;
|
|
15240
|
-
USER_TABLE_COLUMNS?: string;
|
|
15241
|
-
AUTO_APPROVE_USER_TOS?: boolean;
|
|
15242
|
-
FREEIPA_ENABLED?: boolean;
|
|
15243
|
-
FREEIPA_HOSTNAME?: string;
|
|
15244
|
-
FREEIPA_USERNAME?: string;
|
|
15245
|
-
FREEIPA_PASSWORD?: string;
|
|
15246
|
-
FREEIPA_VERIFY_SSL?: boolean;
|
|
15247
|
-
FREEIPA_USERNAME_PREFIX?: string;
|
|
15248
|
-
FREEIPA_GROUPNAME_PREFIX?: string;
|
|
15249
|
-
FREEIPA_BLACKLISTED_USERNAMES?: Array<string>;
|
|
15250
|
-
FREEIPA_GROUP_SYNCHRONIZATION_ENABLED?: boolean;
|
|
15251
|
-
KEYCLOAK_ICON?: (Blob | File) | null;
|
|
15252
|
-
COUNTRIES?: Array<string>;
|
|
15253
|
-
OIDC_AUTH_URL?: string;
|
|
15254
|
-
OIDC_INTROSPECTION_URL?: string;
|
|
15255
|
-
OIDC_CLIENT_ID?: string;
|
|
15256
|
-
OIDC_CLIENT_SECRET?: string;
|
|
15257
|
-
OIDC_USER_FIELD?: string;
|
|
15258
|
-
OIDC_CACHE_TIMEOUT?: number;
|
|
15259
|
-
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
15260
|
-
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
15261
|
-
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
15262
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_BEFORE_MINUTES?: number;
|
|
15263
|
-
MAINTENANCE_ANNOUNCEMENT_NOTIFY_SYSTEM?: Array<string>;
|
|
15264
|
-
ENFORCE_USER_CONSENT_FOR_OFFERINGS?: boolean;
|
|
15265
|
-
DISABLED_OFFERING_TYPES?: Array<string>;
|
|
15266
|
-
ONBOARDING_COUNTRY?: string;
|
|
15267
|
-
ONBOARDING_VERIFICATION_EXPIRY_HOURS?: number;
|
|
15268
|
-
ONBOARDING_ARIREGISTER_BASE_URL?: string;
|
|
15269
|
-
ONBOARDING_ARIREGISTER_USERNAME?: string;
|
|
15270
|
-
ONBOARDING_ARIREGISTER_PASSWORD?: string;
|
|
15271
|
-
ONBOARDING_ARIREGISTER_TIMEOUT?: number;
|
|
15272
|
-
ONBOARDING_WICO_API_URL?: string;
|
|
15273
|
-
ONBOARDING_WICO_TOKEN?: string;
|
|
15274
|
-
ONBOARDING_BOLAGSVERKET_API_URL?: string;
|
|
15275
|
-
ONBOARDING_BOLAGSVERKET_TOKEN_API_URL?: string;
|
|
15276
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_ID?: string;
|
|
15277
|
-
ONBOARDING_BOLAGSVERKET_CLIENT_SECRET?: string;
|
|
15278
|
-
};
|
|
15279
|
-
export type PaymentRequestForm = {
|
|
15280
|
-
profile: string;
|
|
15281
|
-
date_of_payment: string;
|
|
15282
|
-
sum?: string;
|
|
15283
|
-
proof?: (Blob | File) | null;
|
|
15284
|
-
};
|
|
15285
|
-
export type PaymentRequestMultipart = {
|
|
15286
|
-
profile: string;
|
|
15287
|
-
date_of_payment: string;
|
|
15288
|
-
sum?: string;
|
|
15289
|
-
proof?: (Blob | File) | null;
|
|
15290
|
-
};
|
|
15291
|
-
export type PatchedPaymentRequestForm = {
|
|
15292
|
-
profile?: string;
|
|
15293
|
-
date_of_payment?: string;
|
|
15294
|
-
sum?: string;
|
|
15295
|
-
proof?: (Blob | File) | null;
|
|
15296
|
-
};
|
|
15297
|
-
export type PatchedPaymentRequestMultipart = {
|
|
15298
|
-
profile?: string;
|
|
15299
|
-
date_of_payment?: string;
|
|
15300
|
-
sum?: string;
|
|
15301
|
-
proof?: (Blob | File) | null;
|
|
15302
|
-
};
|
|
15303
15375
|
export type ProjectRequestForm = {
|
|
15304
15376
|
name: string;
|
|
15305
15377
|
slug?: string;
|
|
@@ -15412,6 +15484,340 @@ export type PatchedProjectRequestMultipart = {
|
|
|
15412
15484
|
*/
|
|
15413
15485
|
grace_period_days?: number | null;
|
|
15414
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
|
+
};
|
|
15415
15821
|
export type ProposalDocumentationRequestForm = {
|
|
15416
15822
|
/**
|
|
15417
15823
|
* Upload supporting documentation in PDF format.
|
|
@@ -35755,6 +36161,1612 @@ export type OnboardingSupportedCountriesRetrieveResponses = {
|
|
|
35755
36161
|
200: SupportedCountriesResponse;
|
|
35756
36162
|
};
|
|
35757
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
|
+
};
|
|
35758
37770
|
export type OpenstackBackupsListData = {
|
|
35759
37771
|
body?: never;
|
|
35760
37772
|
path?: never;
|