waldur-js-client 8.0.1 → 8.0.2-dev.1
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 +72 -3
- package/dist/sdk.gen.js +407 -2
- package/dist/types.gen.d.ts +714 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1462,6 +1462,10 @@ export type AuthToken = {
|
|
|
1462
1462
|
*/
|
|
1463
1463
|
readonly user_token_lifetime: number | null;
|
|
1464
1464
|
};
|
|
1465
|
+
export type AvailabilityZoneResponse = {
|
|
1466
|
+
name: string;
|
|
1467
|
+
state: string;
|
|
1468
|
+
};
|
|
1465
1469
|
export type AvailableArrowCustomersResponse = {
|
|
1466
1470
|
settings_uuid: string;
|
|
1467
1471
|
arrow_customers: Array<ArrowCustomerDiscovery>;
|
|
@@ -4662,6 +4666,12 @@ export type CreateRouterRequest = {
|
|
|
4662
4666
|
tenant: string;
|
|
4663
4667
|
name: string;
|
|
4664
4668
|
};
|
|
4669
|
+
export type CredentialsValidationResponse = {
|
|
4670
|
+
valid: boolean;
|
|
4671
|
+
message?: string;
|
|
4672
|
+
error?: string;
|
|
4673
|
+
server_info?: ServerInfo | null;
|
|
4674
|
+
};
|
|
4665
4675
|
export type CurrentQosStatusEnum = 'normal' | 'notification' | 'slowdown' | 'blocked';
|
|
4666
4676
|
export type Customer = {
|
|
4667
4677
|
readonly url?: string;
|
|
@@ -5572,6 +5582,81 @@ export type DiscoverCustomersResponse = {
|
|
|
5572
5582
|
waldur_customers: Array<WaldurCustomerBrief>;
|
|
5573
5583
|
suggestions: Array<CustomerMappingSuggestion>;
|
|
5574
5584
|
};
|
|
5585
|
+
export type DiscoverExternalNetworksRequestRequest = {
|
|
5586
|
+
/**
|
|
5587
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
5588
|
+
*/
|
|
5589
|
+
auth_url: string;
|
|
5590
|
+
username: string;
|
|
5591
|
+
password: string;
|
|
5592
|
+
/**
|
|
5593
|
+
* Keystone user domain name
|
|
5594
|
+
*/
|
|
5595
|
+
user_domain_name?: string;
|
|
5596
|
+
/**
|
|
5597
|
+
* Keystone project domain name
|
|
5598
|
+
*/
|
|
5599
|
+
project_domain_name?: string;
|
|
5600
|
+
/**
|
|
5601
|
+
* Keystone project (tenant) name
|
|
5602
|
+
*/
|
|
5603
|
+
project_name?: string;
|
|
5604
|
+
verify_ssl?: boolean;
|
|
5605
|
+
/**
|
|
5606
|
+
* PEM-encoded CA certificate for SSL verification
|
|
5607
|
+
*/
|
|
5608
|
+
certificate?: string;
|
|
5609
|
+
};
|
|
5610
|
+
export type DiscoverFlavorsRequestRequest = {
|
|
5611
|
+
/**
|
|
5612
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
5613
|
+
*/
|
|
5614
|
+
auth_url: string;
|
|
5615
|
+
username: string;
|
|
5616
|
+
password: string;
|
|
5617
|
+
/**
|
|
5618
|
+
* Keystone user domain name
|
|
5619
|
+
*/
|
|
5620
|
+
user_domain_name?: string;
|
|
5621
|
+
/**
|
|
5622
|
+
* Keystone project domain name
|
|
5623
|
+
*/
|
|
5624
|
+
project_domain_name?: string;
|
|
5625
|
+
/**
|
|
5626
|
+
* Keystone project (tenant) name
|
|
5627
|
+
*/
|
|
5628
|
+
project_name?: string;
|
|
5629
|
+
verify_ssl?: boolean;
|
|
5630
|
+
/**
|
|
5631
|
+
* PEM-encoded CA certificate for SSL verification
|
|
5632
|
+
*/
|
|
5633
|
+
certificate?: string;
|
|
5634
|
+
};
|
|
5635
|
+
export type DiscoverInstanceAvailabilityZonesRequestRequest = {
|
|
5636
|
+
/**
|
|
5637
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
5638
|
+
*/
|
|
5639
|
+
auth_url: string;
|
|
5640
|
+
username: string;
|
|
5641
|
+
password: string;
|
|
5642
|
+
/**
|
|
5643
|
+
* Keystone user domain name
|
|
5644
|
+
*/
|
|
5645
|
+
user_domain_name?: string;
|
|
5646
|
+
/**
|
|
5647
|
+
* Keystone project domain name
|
|
5648
|
+
*/
|
|
5649
|
+
project_domain_name?: string;
|
|
5650
|
+
/**
|
|
5651
|
+
* Keystone project (tenant) name
|
|
5652
|
+
*/
|
|
5653
|
+
project_name?: string;
|
|
5654
|
+
verify_ssl?: boolean;
|
|
5655
|
+
/**
|
|
5656
|
+
* PEM-encoded CA certificate for SSL verification
|
|
5657
|
+
*/
|
|
5658
|
+
certificate?: string;
|
|
5659
|
+
};
|
|
5575
5660
|
export type DiscoverLicensesResponse = {
|
|
5576
5661
|
customer_mapping_uuid: string;
|
|
5577
5662
|
arrow_reference: string;
|
|
@@ -5676,6 +5761,56 @@ export type DiscoverRequestTypesRequestRequest = {
|
|
|
5676
5761
|
*/
|
|
5677
5762
|
project_id: string;
|
|
5678
5763
|
};
|
|
5764
|
+
export type DiscoverVolumeAvailabilityZonesRequestRequest = {
|
|
5765
|
+
/**
|
|
5766
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
5767
|
+
*/
|
|
5768
|
+
auth_url: string;
|
|
5769
|
+
username: string;
|
|
5770
|
+
password: string;
|
|
5771
|
+
/**
|
|
5772
|
+
* Keystone user domain name
|
|
5773
|
+
*/
|
|
5774
|
+
user_domain_name?: string;
|
|
5775
|
+
/**
|
|
5776
|
+
* Keystone project domain name
|
|
5777
|
+
*/
|
|
5778
|
+
project_domain_name?: string;
|
|
5779
|
+
/**
|
|
5780
|
+
* Keystone project (tenant) name
|
|
5781
|
+
*/
|
|
5782
|
+
project_name?: string;
|
|
5783
|
+
verify_ssl?: boolean;
|
|
5784
|
+
/**
|
|
5785
|
+
* PEM-encoded CA certificate for SSL verification
|
|
5786
|
+
*/
|
|
5787
|
+
certificate?: string;
|
|
5788
|
+
};
|
|
5789
|
+
export type DiscoverVolumeTypesRequestRequest = {
|
|
5790
|
+
/**
|
|
5791
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
5792
|
+
*/
|
|
5793
|
+
auth_url: string;
|
|
5794
|
+
username: string;
|
|
5795
|
+
password: string;
|
|
5796
|
+
/**
|
|
5797
|
+
* Keystone user domain name
|
|
5798
|
+
*/
|
|
5799
|
+
user_domain_name?: string;
|
|
5800
|
+
/**
|
|
5801
|
+
* Keystone project domain name
|
|
5802
|
+
*/
|
|
5803
|
+
project_domain_name?: string;
|
|
5804
|
+
/**
|
|
5805
|
+
* Keystone project (tenant) name
|
|
5806
|
+
*/
|
|
5807
|
+
project_name?: string;
|
|
5808
|
+
verify_ssl?: boolean;
|
|
5809
|
+
/**
|
|
5810
|
+
* PEM-encoded CA certificate for SSL verification
|
|
5811
|
+
*/
|
|
5812
|
+
certificate?: string;
|
|
5813
|
+
};
|
|
5679
5814
|
export type DiskFormatEnum = 'qcow2' | 'raw' | 'vhd' | 'vmdk' | 'vdi' | 'iso' | 'aki' | 'ami' | 'ari';
|
|
5680
5815
|
export type DryRun = {
|
|
5681
5816
|
readonly url: string;
|
|
@@ -6066,6 +6201,50 @@ export type ExternalLinkRequest = {
|
|
|
6066
6201
|
link: string;
|
|
6067
6202
|
image?: (Blob | File) | null;
|
|
6068
6203
|
};
|
|
6204
|
+
export type ExternalNetwork = {
|
|
6205
|
+
readonly url?: string;
|
|
6206
|
+
readonly uuid?: string;
|
|
6207
|
+
name?: string;
|
|
6208
|
+
settings?: string;
|
|
6209
|
+
backend_id?: string;
|
|
6210
|
+
is_shared?: boolean;
|
|
6211
|
+
is_default?: boolean;
|
|
6212
|
+
status?: string;
|
|
6213
|
+
description?: string;
|
|
6214
|
+
readonly subnets?: Array<ExternalSubnet>;
|
|
6215
|
+
};
|
|
6216
|
+
export type ExternalNetworkResponse = {
|
|
6217
|
+
id: string;
|
|
6218
|
+
name: string;
|
|
6219
|
+
is_shared: boolean;
|
|
6220
|
+
subnets: Array<ExternalNetworkSubnetResponse>;
|
|
6221
|
+
};
|
|
6222
|
+
export type ExternalNetworkSubnetResponse = {
|
|
6223
|
+
id: string;
|
|
6224
|
+
name: string;
|
|
6225
|
+
cidr: string;
|
|
6226
|
+
gateway_ip: string;
|
|
6227
|
+
ip_version: number;
|
|
6228
|
+
};
|
|
6229
|
+
export type ExternalSubnet = {
|
|
6230
|
+
readonly uuid?: string;
|
|
6231
|
+
name?: string;
|
|
6232
|
+
backend_id?: string;
|
|
6233
|
+
cidr?: string;
|
|
6234
|
+
/**
|
|
6235
|
+
* An IPv4 or IPv6 address.
|
|
6236
|
+
*/
|
|
6237
|
+
gateway_ip?: string | null;
|
|
6238
|
+
ip_version?: number;
|
|
6239
|
+
enable_dhcp?: boolean;
|
|
6240
|
+
allocation_pools?: unknown;
|
|
6241
|
+
dns_nameservers?: unknown;
|
|
6242
|
+
/**
|
|
6243
|
+
* Public CIDR mapped to this subnet (for carrier-grade NAT overlay)
|
|
6244
|
+
*/
|
|
6245
|
+
public_ip_range?: string;
|
|
6246
|
+
description?: string;
|
|
6247
|
+
};
|
|
6069
6248
|
export type FeatureMetadataResponse = {
|
|
6070
6249
|
/**
|
|
6071
6250
|
* List of feature sections with descriptions
|
|
@@ -6256,6 +6435,19 @@ export type FirecrestJobRequest = {
|
|
|
6256
6435
|
*/
|
|
6257
6436
|
file: Blob | File;
|
|
6258
6437
|
};
|
|
6438
|
+
export type FlavorResponse = {
|
|
6439
|
+
id: string;
|
|
6440
|
+
name: string;
|
|
6441
|
+
vcpus: number;
|
|
6442
|
+
/**
|
|
6443
|
+
* RAM in MB
|
|
6444
|
+
*/
|
|
6445
|
+
ram: number;
|
|
6446
|
+
/**
|
|
6447
|
+
* Disk in GB
|
|
6448
|
+
*/
|
|
6449
|
+
disk: number;
|
|
6450
|
+
};
|
|
6259
6451
|
export type FreeipaProfile = {
|
|
6260
6452
|
readonly uuid: string;
|
|
6261
6453
|
/**
|
|
@@ -9016,6 +9208,7 @@ export type MyAssignmentItem = {
|
|
|
9016
9208
|
affinity_score: number | null;
|
|
9017
9209
|
has_coi: boolean;
|
|
9018
9210
|
};
|
|
9211
|
+
export type NameEnum = 'EESSI' | 'Spack';
|
|
9019
9212
|
export type NameUuid = {
|
|
9020
9213
|
/**
|
|
9021
9214
|
* Name of the entity
|
|
@@ -11377,6 +11570,31 @@ export type OpenStackCreatePortRequest = {
|
|
|
11377
11570
|
*/
|
|
11378
11571
|
tenant?: string;
|
|
11379
11572
|
};
|
|
11573
|
+
export type OpenStackCredentialsRequest = {
|
|
11574
|
+
/**
|
|
11575
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
11576
|
+
*/
|
|
11577
|
+
auth_url: string;
|
|
11578
|
+
username: string;
|
|
11579
|
+
password: string;
|
|
11580
|
+
/**
|
|
11581
|
+
* Keystone user domain name
|
|
11582
|
+
*/
|
|
11583
|
+
user_domain_name?: string;
|
|
11584
|
+
/**
|
|
11585
|
+
* Keystone project domain name
|
|
11586
|
+
*/
|
|
11587
|
+
project_domain_name?: string;
|
|
11588
|
+
/**
|
|
11589
|
+
* Keystone project (tenant) name
|
|
11590
|
+
*/
|
|
11591
|
+
project_name?: string;
|
|
11592
|
+
verify_ssl?: boolean;
|
|
11593
|
+
/**
|
|
11594
|
+
* PEM-encoded CA certificate for SSL verification
|
|
11595
|
+
*/
|
|
11596
|
+
certificate?: string;
|
|
11597
|
+
};
|
|
11380
11598
|
export type OpenStackFixedIp = {
|
|
11381
11599
|
/**
|
|
11382
11600
|
* IP address to assign to the port
|
|
@@ -12617,6 +12835,8 @@ export type OpenStackTenant = {
|
|
|
12617
12835
|
* ID of external network connected to OpenStack tenant
|
|
12618
12836
|
*/
|
|
12619
12837
|
readonly external_network_id?: string;
|
|
12838
|
+
readonly external_network_ref_uuid?: string;
|
|
12839
|
+
readonly external_network_ref_name?: string;
|
|
12620
12840
|
/**
|
|
12621
12841
|
* Username of the tenant user
|
|
12622
12842
|
*/
|
|
@@ -15264,6 +15484,43 @@ export type PluginOfferingType = {
|
|
|
15264
15484
|
export type PolicyEnum = 'affinity';
|
|
15265
15485
|
export type PolicyPeriodEnum = 1 | 2 | 3 | 4;
|
|
15266
15486
|
export type PolicyTypeEnum = 'access_as_shared' | 'access_as_external';
|
|
15487
|
+
export type PreviewServiceAttributesRequestRequest = {
|
|
15488
|
+
/**
|
|
15489
|
+
* Keystone auth URL (e.g., https://cloud.example.com:5000/v3)
|
|
15490
|
+
*/
|
|
15491
|
+
auth_url: string;
|
|
15492
|
+
username: string;
|
|
15493
|
+
password: string;
|
|
15494
|
+
/**
|
|
15495
|
+
* Keystone user domain name
|
|
15496
|
+
*/
|
|
15497
|
+
user_domain_name?: string;
|
|
15498
|
+
/**
|
|
15499
|
+
* Keystone project domain name
|
|
15500
|
+
*/
|
|
15501
|
+
project_domain_name?: string;
|
|
15502
|
+
/**
|
|
15503
|
+
* Keystone project (tenant) name
|
|
15504
|
+
*/
|
|
15505
|
+
project_name?: string;
|
|
15506
|
+
verify_ssl?: boolean;
|
|
15507
|
+
/**
|
|
15508
|
+
* PEM-encoded CA certificate for SSL verification
|
|
15509
|
+
*/
|
|
15510
|
+
certificate?: string;
|
|
15511
|
+
/**
|
|
15512
|
+
* Selected external network ID
|
|
15513
|
+
*/
|
|
15514
|
+
external_network_id?: string;
|
|
15515
|
+
/**
|
|
15516
|
+
* Selected instance availability zone name
|
|
15517
|
+
*/
|
|
15518
|
+
instance_availability_zone?: string;
|
|
15519
|
+
/**
|
|
15520
|
+
* Selected volume availability zone name
|
|
15521
|
+
*/
|
|
15522
|
+
volume_availability_zone?: string;
|
|
15523
|
+
};
|
|
15267
15524
|
export type PreviewSettingsRequestRequest = {
|
|
15268
15525
|
/**
|
|
15269
15526
|
* Arrow API base URL
|
|
@@ -20255,7 +20512,22 @@ export type SendAssignmentBatchResponse = {
|
|
|
20255
20512
|
export type SendInvitationsResponse = {
|
|
20256
20513
|
invitations_sent: number;
|
|
20257
20514
|
};
|
|
20515
|
+
export type ServerInfo = {
|
|
20516
|
+
auth_url: string;
|
|
20517
|
+
identity_api_version: string;
|
|
20518
|
+
user_domain_name: string;
|
|
20519
|
+
project_name: string;
|
|
20520
|
+
project_id: string;
|
|
20521
|
+
};
|
|
20258
20522
|
export type ServiceAccountState = 'OK' | 'Closed' | 'Erred';
|
|
20523
|
+
export type ServiceAttributesPreview = {
|
|
20524
|
+
service_attributes: {
|
|
20525
|
+
[key: string]: unknown;
|
|
20526
|
+
};
|
|
20527
|
+
plugin_options: {
|
|
20528
|
+
[key: string]: unknown;
|
|
20529
|
+
};
|
|
20530
|
+
};
|
|
20259
20531
|
export type ServiceProvider = {
|
|
20260
20532
|
readonly url?: string;
|
|
20261
20533
|
readonly uuid?: string;
|
|
@@ -20958,6 +21230,19 @@ export type SoftwareCatalog = {
|
|
|
20958
21230
|
readonly last_successful_update: string | null;
|
|
20959
21231
|
update_errors?: string;
|
|
20960
21232
|
readonly package_count: number;
|
|
21233
|
+
readonly version_count: number;
|
|
21234
|
+
readonly target_count: number;
|
|
21235
|
+
};
|
|
21236
|
+
export type SoftwareCatalogDiscover = {
|
|
21237
|
+
name: string;
|
|
21238
|
+
catalog_type: string;
|
|
21239
|
+
latest_version: string;
|
|
21240
|
+
existing: boolean;
|
|
21241
|
+
existing_version: string | null;
|
|
21242
|
+
update_available: boolean;
|
|
21243
|
+
};
|
|
21244
|
+
export type SoftwareCatalogImportRequest = {
|
|
21245
|
+
name: NameEnum;
|
|
20961
21246
|
};
|
|
20962
21247
|
export type SoftwareCatalogRequest = {
|
|
20963
21248
|
/**
|
|
@@ -22643,6 +22928,11 @@ export type VolumeTypeMappingRequest = {
|
|
|
22643
22928
|
src_type_uuid: string;
|
|
22644
22929
|
dst_type_uuid: string;
|
|
22645
22930
|
};
|
|
22931
|
+
export type VolumeTypeResponse = {
|
|
22932
|
+
id: string;
|
|
22933
|
+
name: string;
|
|
22934
|
+
description?: string;
|
|
22935
|
+
};
|
|
22646
22936
|
export type WaldurCustomerBrief = {
|
|
22647
22937
|
uuid: string;
|
|
22648
22938
|
name: string;
|
|
@@ -31911,6 +32201,10 @@ export type CustomersListData = {
|
|
|
31911
32201
|
* Contact details
|
|
31912
32202
|
*/
|
|
31913
32203
|
contact_details?: string;
|
|
32204
|
+
/**
|
|
32205
|
+
* Return a list of customers where current user has project create permission.
|
|
32206
|
+
*/
|
|
32207
|
+
current_user_has_project_create_permission?: boolean;
|
|
31914
32208
|
field?: Array<'abbreviation' | 'access_subnets' | 'accounting_start_date' | 'address' | 'agreement_number' | 'archived' | 'backend_id' | 'bank_account' | 'bank_name' | 'billing_price_estimate' | 'blocked' | 'call_managing_organization_uuid' | 'contact_details' | 'country' | 'country_name' | 'created' | 'customer_credit' | 'customer_unallocated_credit' | 'default_tax_percent' | 'description' | 'display_billing_info_in_projects' | 'display_name' | 'domain' | 'email' | 'grace_period_days' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'notification_emails' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'user_affiliations' | 'user_email_patterns' | 'user_identity_sources' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
31915
32209
|
/**
|
|
31916
32210
|
* Name
|
|
@@ -31975,6 +32269,10 @@ export type CustomersCountData = {
|
|
|
31975
32269
|
* Contact details
|
|
31976
32270
|
*/
|
|
31977
32271
|
contact_details?: string;
|
|
32272
|
+
/**
|
|
32273
|
+
* Return a list of customers where current user has project create permission.
|
|
32274
|
+
*/
|
|
32275
|
+
current_user_has_project_create_permission?: boolean;
|
|
31978
32276
|
/**
|
|
31979
32277
|
* Name
|
|
31980
32278
|
*/
|
|
@@ -32326,6 +32624,10 @@ export type CustomersHistoryListData = {
|
|
|
32326
32624
|
* Filter versions created before this timestamp (ISO 8601)
|
|
32327
32625
|
*/
|
|
32328
32626
|
created_before?: string;
|
|
32627
|
+
/**
|
|
32628
|
+
* Return a list of customers where current user has project create permission.
|
|
32629
|
+
*/
|
|
32630
|
+
current_user_has_project_create_permission?: boolean;
|
|
32329
32631
|
/**
|
|
32330
32632
|
* Name
|
|
32331
32633
|
*/
|
|
@@ -32581,6 +32883,10 @@ export type CustomersCountriesListData = {
|
|
|
32581
32883
|
* Contact details
|
|
32582
32884
|
*/
|
|
32583
32885
|
contact_details?: string;
|
|
32886
|
+
/**
|
|
32887
|
+
* Return a list of customers where current user has project create permission.
|
|
32888
|
+
*/
|
|
32889
|
+
current_user_has_project_create_permission?: boolean;
|
|
32584
32890
|
/**
|
|
32585
32891
|
* Name
|
|
32586
32892
|
*/
|
|
@@ -32644,6 +32950,10 @@ export type CustomersCountriesCountData = {
|
|
|
32644
32950
|
* Contact details
|
|
32645
32951
|
*/
|
|
32646
32952
|
contact_details?: string;
|
|
32953
|
+
/**
|
|
32954
|
+
* Return a list of customers where current user has project create permission.
|
|
32955
|
+
*/
|
|
32956
|
+
current_user_has_project_create_permission?: boolean;
|
|
32647
32957
|
/**
|
|
32648
32958
|
* Name
|
|
32649
32959
|
*/
|
|
@@ -34194,6 +34504,10 @@ export type FinancialReportsListData = {
|
|
|
34194
34504
|
* Contact details
|
|
34195
34505
|
*/
|
|
34196
34506
|
contact_details?: string;
|
|
34507
|
+
/**
|
|
34508
|
+
* Return a list of customers where current user has project create permission.
|
|
34509
|
+
*/
|
|
34510
|
+
current_user_has_project_create_permission?: boolean;
|
|
34197
34511
|
/**
|
|
34198
34512
|
* Name
|
|
34199
34513
|
*/
|
|
@@ -34257,6 +34571,10 @@ export type FinancialReportsCountData = {
|
|
|
34257
34571
|
* Contact details
|
|
34258
34572
|
*/
|
|
34259
34573
|
contact_details?: string;
|
|
34574
|
+
/**
|
|
34575
|
+
* Return a list of customers where current user has project create permission.
|
|
34576
|
+
*/
|
|
34577
|
+
current_user_has_project_create_permission?: boolean;
|
|
34260
34578
|
/**
|
|
34261
34579
|
* Name
|
|
34262
34580
|
*/
|
|
@@ -48008,6 +48326,10 @@ export type MarketplaceServiceProvidersCustomersListData = {
|
|
|
48008
48326
|
* Contact details
|
|
48009
48327
|
*/
|
|
48010
48328
|
contact_details?: string;
|
|
48329
|
+
/**
|
|
48330
|
+
* Return a list of customers where current user has project create permission.
|
|
48331
|
+
*/
|
|
48332
|
+
current_user_has_project_create_permission?: boolean;
|
|
48011
48333
|
field?: Array<'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid'>;
|
|
48012
48334
|
/**
|
|
48013
48335
|
* Name
|
|
@@ -48494,6 +48816,10 @@ export type MarketplaceServiceProvidersUserCustomersListData = {
|
|
|
48494
48816
|
* Contact details
|
|
48495
48817
|
*/
|
|
48496
48818
|
contact_details?: string;
|
|
48819
|
+
/**
|
|
48820
|
+
* Return a list of customers where current user has project create permission.
|
|
48821
|
+
*/
|
|
48822
|
+
current_user_has_project_create_permission?: boolean;
|
|
48497
48823
|
field?: Array<'abbreviation' | 'billing_price_estimate' | 'email' | 'name' | 'payment_profiles' | 'phone_number' | 'projects' | 'projects_count' | 'slug' | 'users' | 'users_count' | 'uuid'>;
|
|
48498
48824
|
/**
|
|
48499
48825
|
* Name
|
|
@@ -49692,6 +50018,88 @@ export type MarketplaceSoftwareCatalogsUpdateResponses = {
|
|
|
49692
50018
|
200: SoftwareCatalog;
|
|
49693
50019
|
};
|
|
49694
50020
|
export type MarketplaceSoftwareCatalogsUpdateResponse = MarketplaceSoftwareCatalogsUpdateResponses[keyof MarketplaceSoftwareCatalogsUpdateResponses];
|
|
50021
|
+
export type MarketplaceSoftwareCatalogsUpdateCatalogData = {
|
|
50022
|
+
body: SoftwareCatalogRequest;
|
|
50023
|
+
path: {
|
|
50024
|
+
uuid: string;
|
|
50025
|
+
};
|
|
50026
|
+
query?: never;
|
|
50027
|
+
url: '/api/marketplace-software-catalogs/{uuid}/update_catalog/';
|
|
50028
|
+
};
|
|
50029
|
+
export type MarketplaceSoftwareCatalogsUpdateCatalogResponses = {
|
|
50030
|
+
/**
|
|
50031
|
+
* No response body
|
|
50032
|
+
*/
|
|
50033
|
+
202: unknown;
|
|
50034
|
+
};
|
|
50035
|
+
export type MarketplaceSoftwareCatalogsDiscoverListData = {
|
|
50036
|
+
body?: never;
|
|
50037
|
+
path?: never;
|
|
50038
|
+
query?: {
|
|
50039
|
+
name?: string;
|
|
50040
|
+
/**
|
|
50041
|
+
* Ordering
|
|
50042
|
+
*
|
|
50043
|
+
*
|
|
50044
|
+
*/
|
|
50045
|
+
o?: Array<'-created' | '-modified' | '-name' | '-version' | 'created' | 'modified' | 'name' | 'version'>;
|
|
50046
|
+
/**
|
|
50047
|
+
* A page number within the paginated result set.
|
|
50048
|
+
*/
|
|
50049
|
+
page?: number;
|
|
50050
|
+
/**
|
|
50051
|
+
* Number of results to return per page.
|
|
50052
|
+
*/
|
|
50053
|
+
page_size?: number;
|
|
50054
|
+
version?: string;
|
|
50055
|
+
};
|
|
50056
|
+
url: '/api/marketplace-software-catalogs/discover/';
|
|
50057
|
+
};
|
|
50058
|
+
export type MarketplaceSoftwareCatalogsDiscoverListResponses = {
|
|
50059
|
+
200: Array<SoftwareCatalogDiscover>;
|
|
50060
|
+
};
|
|
50061
|
+
export type MarketplaceSoftwareCatalogsDiscoverListResponse = MarketplaceSoftwareCatalogsDiscoverListResponses[keyof MarketplaceSoftwareCatalogsDiscoverListResponses];
|
|
50062
|
+
export type MarketplaceSoftwareCatalogsDiscoverCountData = {
|
|
50063
|
+
body?: never;
|
|
50064
|
+
path?: never;
|
|
50065
|
+
query?: {
|
|
50066
|
+
name?: string;
|
|
50067
|
+
/**
|
|
50068
|
+
* Ordering
|
|
50069
|
+
*
|
|
50070
|
+
*
|
|
50071
|
+
*/
|
|
50072
|
+
o?: Array<'-created' | '-modified' | '-name' | '-version' | 'created' | 'modified' | 'name' | 'version'>;
|
|
50073
|
+
/**
|
|
50074
|
+
* A page number within the paginated result set.
|
|
50075
|
+
*/
|
|
50076
|
+
page?: number;
|
|
50077
|
+
/**
|
|
50078
|
+
* Number of results to return per page.
|
|
50079
|
+
*/
|
|
50080
|
+
page_size?: number;
|
|
50081
|
+
version?: string;
|
|
50082
|
+
};
|
|
50083
|
+
url: '/api/marketplace-software-catalogs/discover/';
|
|
50084
|
+
};
|
|
50085
|
+
export type MarketplaceSoftwareCatalogsDiscoverCountResponses = {
|
|
50086
|
+
/**
|
|
50087
|
+
* No response body
|
|
50088
|
+
*/
|
|
50089
|
+
200: unknown;
|
|
50090
|
+
};
|
|
50091
|
+
export type MarketplaceSoftwareCatalogsImportCatalogData = {
|
|
50092
|
+
body: SoftwareCatalogImportRequest;
|
|
50093
|
+
path?: never;
|
|
50094
|
+
query?: never;
|
|
50095
|
+
url: '/api/marketplace-software-catalogs/import_catalog/';
|
|
50096
|
+
};
|
|
50097
|
+
export type MarketplaceSoftwareCatalogsImportCatalogResponses = {
|
|
50098
|
+
/**
|
|
50099
|
+
* No response body
|
|
50100
|
+
*/
|
|
50101
|
+
202: unknown;
|
|
50102
|
+
};
|
|
49695
50103
|
export type MarketplaceSoftwarePackagesListData = {
|
|
49696
50104
|
body?: never;
|
|
49697
50105
|
path?: never;
|
|
@@ -55239,6 +55647,93 @@ export type OpenstackBackupsUnlinkResponses = {
|
|
|
55239
55647
|
204: void;
|
|
55240
55648
|
};
|
|
55241
55649
|
export type OpenstackBackupsUnlinkResponse = OpenstackBackupsUnlinkResponses[keyof OpenstackBackupsUnlinkResponses];
|
|
55650
|
+
export type OpenstackExternalNetworksListData = {
|
|
55651
|
+
body?: never;
|
|
55652
|
+
path?: never;
|
|
55653
|
+
query?: {
|
|
55654
|
+
field?: Array<'backend_id' | 'description' | 'is_default' | 'is_shared' | 'name' | 'settings' | 'status' | 'subnets' | 'url' | 'uuid'>;
|
|
55655
|
+
/**
|
|
55656
|
+
* Name
|
|
55657
|
+
*/
|
|
55658
|
+
name?: string;
|
|
55659
|
+
/**
|
|
55660
|
+
* Name (exact)
|
|
55661
|
+
*/
|
|
55662
|
+
name_exact?: string;
|
|
55663
|
+
/**
|
|
55664
|
+
* A page number within the paginated result set.
|
|
55665
|
+
*/
|
|
55666
|
+
page?: number;
|
|
55667
|
+
/**
|
|
55668
|
+
* Number of results to return per page.
|
|
55669
|
+
*/
|
|
55670
|
+
page_size?: number;
|
|
55671
|
+
/**
|
|
55672
|
+
* Settings URL
|
|
55673
|
+
*/
|
|
55674
|
+
settings?: string;
|
|
55675
|
+
/**
|
|
55676
|
+
* Settings UUID
|
|
55677
|
+
*/
|
|
55678
|
+
settings_uuid?: string;
|
|
55679
|
+
};
|
|
55680
|
+
url: '/api/openstack-external-networks/';
|
|
55681
|
+
};
|
|
55682
|
+
export type OpenstackExternalNetworksListResponses = {
|
|
55683
|
+
200: Array<ExternalNetwork>;
|
|
55684
|
+
};
|
|
55685
|
+
export type OpenstackExternalNetworksListResponse = OpenstackExternalNetworksListResponses[keyof OpenstackExternalNetworksListResponses];
|
|
55686
|
+
export type OpenstackExternalNetworksCountData = {
|
|
55687
|
+
body?: never;
|
|
55688
|
+
path?: never;
|
|
55689
|
+
query?: {
|
|
55690
|
+
/**
|
|
55691
|
+
* Name
|
|
55692
|
+
*/
|
|
55693
|
+
name?: string;
|
|
55694
|
+
/**
|
|
55695
|
+
* Name (exact)
|
|
55696
|
+
*/
|
|
55697
|
+
name_exact?: string;
|
|
55698
|
+
/**
|
|
55699
|
+
* A page number within the paginated result set.
|
|
55700
|
+
*/
|
|
55701
|
+
page?: number;
|
|
55702
|
+
/**
|
|
55703
|
+
* Number of results to return per page.
|
|
55704
|
+
*/
|
|
55705
|
+
page_size?: number;
|
|
55706
|
+
/**
|
|
55707
|
+
* Settings URL
|
|
55708
|
+
*/
|
|
55709
|
+
settings?: string;
|
|
55710
|
+
/**
|
|
55711
|
+
* Settings UUID
|
|
55712
|
+
*/
|
|
55713
|
+
settings_uuid?: string;
|
|
55714
|
+
};
|
|
55715
|
+
url: '/api/openstack-external-networks/';
|
|
55716
|
+
};
|
|
55717
|
+
export type OpenstackExternalNetworksCountResponses = {
|
|
55718
|
+
/**
|
|
55719
|
+
* No response body
|
|
55720
|
+
*/
|
|
55721
|
+
200: unknown;
|
|
55722
|
+
};
|
|
55723
|
+
export type OpenstackExternalNetworksRetrieveData = {
|
|
55724
|
+
body?: never;
|
|
55725
|
+
path: {
|
|
55726
|
+
uuid: string;
|
|
55727
|
+
};
|
|
55728
|
+
query?: {
|
|
55729
|
+
field?: Array<'backend_id' | 'description' | 'is_default' | 'is_shared' | 'name' | 'settings' | 'status' | 'subnets' | 'url' | 'uuid'>;
|
|
55730
|
+
};
|
|
55731
|
+
url: '/api/openstack-external-networks/{uuid}/';
|
|
55732
|
+
};
|
|
55733
|
+
export type OpenstackExternalNetworksRetrieveResponses = {
|
|
55734
|
+
200: ExternalNetwork;
|
|
55735
|
+
};
|
|
55736
|
+
export type OpenstackExternalNetworksRetrieveResponse = OpenstackExternalNetworksRetrieveResponses[keyof OpenstackExternalNetworksRetrieveResponses];
|
|
55242
55737
|
export type OpenstackFlavorsListData = {
|
|
55243
55738
|
body?: never;
|
|
55244
55739
|
path?: never;
|
|
@@ -59378,7 +59873,7 @@ export type OpenstackTenantsListData = {
|
|
|
59378
59873
|
* External IP
|
|
59379
59874
|
*/
|
|
59380
59875
|
external_ip?: string;
|
|
59381
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
59876
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'external_network_ref_name' | 'external_network_ref_uuid' | 'internal_network_id' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
59382
59877
|
/**
|
|
59383
59878
|
* Name
|
|
59384
59879
|
*/
|
|
@@ -59533,7 +60028,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
59533
60028
|
uuid: string;
|
|
59534
60029
|
};
|
|
59535
60030
|
query?: {
|
|
59536
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'internal_network_id' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
60031
|
+
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'customer_uuid' | 'default_volume_type_name' | 'description' | 'error_message' | 'error_traceback' | 'external_network_id' | 'external_network_ref_name' | 'external_network_ref_uuid' | 'internal_network_id' | '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' | 'project' | 'project_name' | 'project_uuid' | 'quotas' | 'resource_type' | 'security_groups' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'skip_creation_of_default_router' | 'skip_creation_of_default_subnet' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
59537
60032
|
};
|
|
59538
60033
|
url: '/api/openstack-tenants/{uuid}/';
|
|
59539
60034
|
};
|
|
@@ -60596,6 +61091,223 @@ export type OpenstackVolumesUnlinkResponses = {
|
|
|
60596
61091
|
204: void;
|
|
60597
61092
|
};
|
|
60598
61093
|
export type OpenstackVolumesUnlinkResponse = OpenstackVolumesUnlinkResponses[keyof OpenstackVolumesUnlinkResponses];
|
|
61094
|
+
export type OpenstackDiscoveryListData = {
|
|
61095
|
+
body?: never;
|
|
61096
|
+
path?: never;
|
|
61097
|
+
query?: {
|
|
61098
|
+
/**
|
|
61099
|
+
* A page number within the paginated result set.
|
|
61100
|
+
*/
|
|
61101
|
+
page?: number;
|
|
61102
|
+
/**
|
|
61103
|
+
* Number of results to return per page.
|
|
61104
|
+
*/
|
|
61105
|
+
page_size?: number;
|
|
61106
|
+
};
|
|
61107
|
+
url: '/api/openstack/discovery/';
|
|
61108
|
+
};
|
|
61109
|
+
export type OpenstackDiscoveryListResponses = {
|
|
61110
|
+
/**
|
|
61111
|
+
* No response body
|
|
61112
|
+
*/
|
|
61113
|
+
200: unknown;
|
|
61114
|
+
};
|
|
61115
|
+
export type OpenstackDiscoveryCreateData = {
|
|
61116
|
+
body?: never;
|
|
61117
|
+
path?: never;
|
|
61118
|
+
query?: never;
|
|
61119
|
+
url: '/api/openstack/discovery/';
|
|
61120
|
+
};
|
|
61121
|
+
export type OpenstackDiscoveryCreateResponses = {
|
|
61122
|
+
/**
|
|
61123
|
+
* No response body
|
|
61124
|
+
*/
|
|
61125
|
+
201: unknown;
|
|
61126
|
+
};
|
|
61127
|
+
export type OpenstackDiscoveryDestroyData = {
|
|
61128
|
+
body?: never;
|
|
61129
|
+
path: {
|
|
61130
|
+
/**
|
|
61131
|
+
* A unique integer value identifying this Service provider.
|
|
61132
|
+
*/
|
|
61133
|
+
id: number;
|
|
61134
|
+
};
|
|
61135
|
+
query?: never;
|
|
61136
|
+
url: '/api/openstack/discovery/{id}/';
|
|
61137
|
+
};
|
|
61138
|
+
export type OpenstackDiscoveryDestroyResponses = {
|
|
61139
|
+
/**
|
|
61140
|
+
* No response body
|
|
61141
|
+
*/
|
|
61142
|
+
204: void;
|
|
61143
|
+
};
|
|
61144
|
+
export type OpenstackDiscoveryDestroyResponse = OpenstackDiscoveryDestroyResponses[keyof OpenstackDiscoveryDestroyResponses];
|
|
61145
|
+
export type OpenstackDiscoveryRetrieveData = {
|
|
61146
|
+
body?: never;
|
|
61147
|
+
path: {
|
|
61148
|
+
/**
|
|
61149
|
+
* A unique integer value identifying this Service provider.
|
|
61150
|
+
*/
|
|
61151
|
+
id: number;
|
|
61152
|
+
};
|
|
61153
|
+
query?: never;
|
|
61154
|
+
url: '/api/openstack/discovery/{id}/';
|
|
61155
|
+
};
|
|
61156
|
+
export type OpenstackDiscoveryRetrieveResponses = {
|
|
61157
|
+
/**
|
|
61158
|
+
* No response body
|
|
61159
|
+
*/
|
|
61160
|
+
200: unknown;
|
|
61161
|
+
};
|
|
61162
|
+
export type OpenstackDiscoveryPartialUpdateData = {
|
|
61163
|
+
body?: never;
|
|
61164
|
+
path: {
|
|
61165
|
+
/**
|
|
61166
|
+
* A unique integer value identifying this Service provider.
|
|
61167
|
+
*/
|
|
61168
|
+
id: number;
|
|
61169
|
+
};
|
|
61170
|
+
query?: never;
|
|
61171
|
+
url: '/api/openstack/discovery/{id}/';
|
|
61172
|
+
};
|
|
61173
|
+
export type OpenstackDiscoveryPartialUpdateResponses = {
|
|
61174
|
+
/**
|
|
61175
|
+
* No response body
|
|
61176
|
+
*/
|
|
61177
|
+
200: unknown;
|
|
61178
|
+
};
|
|
61179
|
+
export type OpenstackDiscoveryUpdateData = {
|
|
61180
|
+
body?: never;
|
|
61181
|
+
path: {
|
|
61182
|
+
/**
|
|
61183
|
+
* A unique integer value identifying this Service provider.
|
|
61184
|
+
*/
|
|
61185
|
+
id: number;
|
|
61186
|
+
};
|
|
61187
|
+
query?: never;
|
|
61188
|
+
url: '/api/openstack/discovery/{id}/';
|
|
61189
|
+
};
|
|
61190
|
+
export type OpenstackDiscoveryUpdateResponses = {
|
|
61191
|
+
/**
|
|
61192
|
+
* No response body
|
|
61193
|
+
*/
|
|
61194
|
+
200: unknown;
|
|
61195
|
+
};
|
|
61196
|
+
export type OpenstackDiscoveryDiscoverExternalNetworksData = {
|
|
61197
|
+
body: DiscoverExternalNetworksRequestRequest;
|
|
61198
|
+
path?: never;
|
|
61199
|
+
query?: {
|
|
61200
|
+
/**
|
|
61201
|
+
* A page number within the paginated result set.
|
|
61202
|
+
*/
|
|
61203
|
+
page?: number;
|
|
61204
|
+
/**
|
|
61205
|
+
* Number of results to return per page.
|
|
61206
|
+
*/
|
|
61207
|
+
page_size?: number;
|
|
61208
|
+
};
|
|
61209
|
+
url: '/api/openstack/discovery/discover_external_networks/';
|
|
61210
|
+
};
|
|
61211
|
+
export type OpenstackDiscoveryDiscoverExternalNetworksResponses = {
|
|
61212
|
+
200: Array<ExternalNetworkResponse>;
|
|
61213
|
+
};
|
|
61214
|
+
export type OpenstackDiscoveryDiscoverExternalNetworksResponse = OpenstackDiscoveryDiscoverExternalNetworksResponses[keyof OpenstackDiscoveryDiscoverExternalNetworksResponses];
|
|
61215
|
+
export type OpenstackDiscoveryDiscoverFlavorsData = {
|
|
61216
|
+
body: DiscoverFlavorsRequestRequest;
|
|
61217
|
+
path?: never;
|
|
61218
|
+
query?: {
|
|
61219
|
+
/**
|
|
61220
|
+
* A page number within the paginated result set.
|
|
61221
|
+
*/
|
|
61222
|
+
page?: number;
|
|
61223
|
+
/**
|
|
61224
|
+
* Number of results to return per page.
|
|
61225
|
+
*/
|
|
61226
|
+
page_size?: number;
|
|
61227
|
+
};
|
|
61228
|
+
url: '/api/openstack/discovery/discover_flavors/';
|
|
61229
|
+
};
|
|
61230
|
+
export type OpenstackDiscoveryDiscoverFlavorsResponses = {
|
|
61231
|
+
200: Array<FlavorResponse>;
|
|
61232
|
+
};
|
|
61233
|
+
export type OpenstackDiscoveryDiscoverFlavorsResponse = OpenstackDiscoveryDiscoverFlavorsResponses[keyof OpenstackDiscoveryDiscoverFlavorsResponses];
|
|
61234
|
+
export type OpenstackDiscoveryDiscoverInstanceAvailabilityZonesData = {
|
|
61235
|
+
body: DiscoverInstanceAvailabilityZonesRequestRequest;
|
|
61236
|
+
path?: never;
|
|
61237
|
+
query?: {
|
|
61238
|
+
/**
|
|
61239
|
+
* A page number within the paginated result set.
|
|
61240
|
+
*/
|
|
61241
|
+
page?: number;
|
|
61242
|
+
/**
|
|
61243
|
+
* Number of results to return per page.
|
|
61244
|
+
*/
|
|
61245
|
+
page_size?: number;
|
|
61246
|
+
};
|
|
61247
|
+
url: '/api/openstack/discovery/discover_instance_availability_zones/';
|
|
61248
|
+
};
|
|
61249
|
+
export type OpenstackDiscoveryDiscoverInstanceAvailabilityZonesResponses = {
|
|
61250
|
+
200: Array<AvailabilityZoneResponse>;
|
|
61251
|
+
};
|
|
61252
|
+
export type OpenstackDiscoveryDiscoverInstanceAvailabilityZonesResponse = OpenstackDiscoveryDiscoverInstanceAvailabilityZonesResponses[keyof OpenstackDiscoveryDiscoverInstanceAvailabilityZonesResponses];
|
|
61253
|
+
export type OpenstackDiscoveryDiscoverVolumeAvailabilityZonesData = {
|
|
61254
|
+
body: DiscoverVolumeAvailabilityZonesRequestRequest;
|
|
61255
|
+
path?: never;
|
|
61256
|
+
query?: {
|
|
61257
|
+
/**
|
|
61258
|
+
* A page number within the paginated result set.
|
|
61259
|
+
*/
|
|
61260
|
+
page?: number;
|
|
61261
|
+
/**
|
|
61262
|
+
* Number of results to return per page.
|
|
61263
|
+
*/
|
|
61264
|
+
page_size?: number;
|
|
61265
|
+
};
|
|
61266
|
+
url: '/api/openstack/discovery/discover_volume_availability_zones/';
|
|
61267
|
+
};
|
|
61268
|
+
export type OpenstackDiscoveryDiscoverVolumeAvailabilityZonesResponses = {
|
|
61269
|
+
200: Array<AvailabilityZoneResponse>;
|
|
61270
|
+
};
|
|
61271
|
+
export type OpenstackDiscoveryDiscoverVolumeAvailabilityZonesResponse = OpenstackDiscoveryDiscoverVolumeAvailabilityZonesResponses[keyof OpenstackDiscoveryDiscoverVolumeAvailabilityZonesResponses];
|
|
61272
|
+
export type OpenstackDiscoveryDiscoverVolumeTypesData = {
|
|
61273
|
+
body: DiscoverVolumeTypesRequestRequest;
|
|
61274
|
+
path?: never;
|
|
61275
|
+
query?: {
|
|
61276
|
+
/**
|
|
61277
|
+
* A page number within the paginated result set.
|
|
61278
|
+
*/
|
|
61279
|
+
page?: number;
|
|
61280
|
+
/**
|
|
61281
|
+
* Number of results to return per page.
|
|
61282
|
+
*/
|
|
61283
|
+
page_size?: number;
|
|
61284
|
+
};
|
|
61285
|
+
url: '/api/openstack/discovery/discover_volume_types/';
|
|
61286
|
+
};
|
|
61287
|
+
export type OpenstackDiscoveryDiscoverVolumeTypesResponses = {
|
|
61288
|
+
200: Array<VolumeTypeResponse>;
|
|
61289
|
+
};
|
|
61290
|
+
export type OpenstackDiscoveryDiscoverVolumeTypesResponse = OpenstackDiscoveryDiscoverVolumeTypesResponses[keyof OpenstackDiscoveryDiscoverVolumeTypesResponses];
|
|
61291
|
+
export type OpenstackDiscoveryPreviewServiceAttributesData = {
|
|
61292
|
+
body: PreviewServiceAttributesRequestRequest;
|
|
61293
|
+
path?: never;
|
|
61294
|
+
query?: never;
|
|
61295
|
+
url: '/api/openstack/discovery/preview_service_attributes/';
|
|
61296
|
+
};
|
|
61297
|
+
export type OpenstackDiscoveryPreviewServiceAttributesResponses = {
|
|
61298
|
+
200: ServiceAttributesPreview;
|
|
61299
|
+
};
|
|
61300
|
+
export type OpenstackDiscoveryPreviewServiceAttributesResponse = OpenstackDiscoveryPreviewServiceAttributesResponses[keyof OpenstackDiscoveryPreviewServiceAttributesResponses];
|
|
61301
|
+
export type OpenstackDiscoveryValidateCredentialsData = {
|
|
61302
|
+
body: OpenStackCredentialsRequest;
|
|
61303
|
+
path?: never;
|
|
61304
|
+
query?: never;
|
|
61305
|
+
url: '/api/openstack/discovery/validate_credentials/';
|
|
61306
|
+
};
|
|
61307
|
+
export type OpenstackDiscoveryValidateCredentialsResponses = {
|
|
61308
|
+
200: CredentialsValidationResponse;
|
|
61309
|
+
};
|
|
61310
|
+
export type OpenstackDiscoveryValidateCredentialsResponse = OpenstackDiscoveryValidateCredentialsResponses[keyof OpenstackDiscoveryValidateCredentialsResponses];
|
|
60599
61311
|
export type OrganizationGroupsListData = {
|
|
60600
61312
|
body?: never;
|
|
60601
61313
|
path?: never;
|