waldur-js-client 7.7.7-dev.6 → 7.7.7-dev.8
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/types.gen.d.ts +233 -36
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -924,7 +924,7 @@ export type BookingResource = {
|
|
|
924
924
|
readonly is_usage_based?: boolean;
|
|
925
925
|
readonly is_limit_based?: boolean;
|
|
926
926
|
name?: string;
|
|
927
|
-
|
|
927
|
+
slug?: string;
|
|
928
928
|
readonly current_usages?: {
|
|
929
929
|
[key: string]: number;
|
|
930
930
|
};
|
|
@@ -1986,7 +1986,9 @@ export type Customer = {
|
|
|
1986
1986
|
readonly url?: string;
|
|
1987
1987
|
readonly uuid?: string;
|
|
1988
1988
|
readonly created?: string;
|
|
1989
|
+
readonly organization_groups?: Array<OrganizationGroup>;
|
|
1989
1990
|
readonly display_name?: string;
|
|
1991
|
+
readonly projects?: Array<PermissionProject>;
|
|
1990
1992
|
/**
|
|
1991
1993
|
* Organization identifier in another application.
|
|
1992
1994
|
*/
|
|
@@ -2000,6 +2002,7 @@ export type Customer = {
|
|
|
2000
2002
|
*/
|
|
2001
2003
|
readonly accounting_start_date?: string;
|
|
2002
2004
|
readonly projects_count?: number;
|
|
2005
|
+
readonly users_count?: number;
|
|
2003
2006
|
/**
|
|
2004
2007
|
* External ID of the sponsor covering the costs
|
|
2005
2008
|
*/
|
|
@@ -2011,7 +2014,7 @@ export type Customer = {
|
|
|
2011
2014
|
readonly max_service_accounts?: number | null;
|
|
2012
2015
|
readonly project_metadata_checklist?: string | null;
|
|
2013
2016
|
name?: string;
|
|
2014
|
-
|
|
2017
|
+
slug?: string;
|
|
2015
2018
|
native_name?: string;
|
|
2016
2019
|
abbreviation?: string;
|
|
2017
2020
|
contact_details?: string;
|
|
@@ -2636,6 +2639,7 @@ export type GoogleCredentials = {
|
|
|
2636
2639
|
readonly uuid?: string;
|
|
2637
2640
|
readonly created?: string;
|
|
2638
2641
|
description?: string;
|
|
2642
|
+
enable_notifications?: boolean;
|
|
2639
2643
|
customer?: string;
|
|
2640
2644
|
readonly customer_name?: string;
|
|
2641
2645
|
readonly customer_uuid?: string;
|
|
@@ -4567,7 +4571,7 @@ export type Offering = {
|
|
|
4567
4571
|
readonly uuid?: string;
|
|
4568
4572
|
readonly created?: string;
|
|
4569
4573
|
name?: string;
|
|
4570
|
-
|
|
4574
|
+
slug?: string;
|
|
4571
4575
|
description?: string;
|
|
4572
4576
|
full_description?: string;
|
|
4573
4577
|
privacy_policy_link?: string;
|
|
@@ -5851,6 +5855,10 @@ export type OpenStackNetwork = {
|
|
|
5851
5855
|
* Network type, such as local, flat, vlan, vxlan, or gre
|
|
5852
5856
|
*/
|
|
5853
5857
|
readonly type?: string;
|
|
5858
|
+
/**
|
|
5859
|
+
* VLAN ID for VLAN networks or tunnel ID for VXLAN/GRE networks
|
|
5860
|
+
*/
|
|
5861
|
+
readonly segmentation_id?: number | null;
|
|
5854
5862
|
readonly subnets?: Array<OpenStackNestedSubNet>;
|
|
5855
5863
|
/**
|
|
5856
5864
|
* The maximum transmission unit (MTU) value to address fragmentation.
|
|
@@ -6495,6 +6503,7 @@ export type OpenStackTenant = {
|
|
|
6495
6503
|
* ID of tenant in the OpenStack backend
|
|
6496
6504
|
*/
|
|
6497
6505
|
readonly backend_id?: string | null;
|
|
6506
|
+
readonly access_url?: string | null;
|
|
6498
6507
|
/**
|
|
6499
6508
|
* Optional availability group. Will be used for all instances provisioned in this tenant
|
|
6500
6509
|
*/
|
|
@@ -6507,6 +6516,14 @@ export type OpenStackTenant = {
|
|
|
6507
6516
|
* ID of external network connected to OpenStack tenant
|
|
6508
6517
|
*/
|
|
6509
6518
|
readonly external_network_id?: string;
|
|
6519
|
+
/**
|
|
6520
|
+
* Username of the tenant user
|
|
6521
|
+
*/
|
|
6522
|
+
user_username?: string;
|
|
6523
|
+
/**
|
|
6524
|
+
* Password of the tenant user
|
|
6525
|
+
*/
|
|
6526
|
+
user_password?: string;
|
|
6510
6527
|
readonly quotas?: Array<Quota>;
|
|
6511
6528
|
/**
|
|
6512
6529
|
* Volume type name to use when creating volumes.
|
|
@@ -7990,6 +8007,17 @@ export type Permission = {
|
|
|
7990
8007
|
readonly customer_uuid?: string;
|
|
7991
8008
|
readonly customer_name?: string;
|
|
7992
8009
|
};
|
|
8010
|
+
export type PermissionProject = {
|
|
8011
|
+
readonly url?: string;
|
|
8012
|
+
readonly uuid?: string;
|
|
8013
|
+
name?: string;
|
|
8014
|
+
image?: string | null;
|
|
8015
|
+
readonly resource_count?: number;
|
|
8016
|
+
/**
|
|
8017
|
+
* The date is inclusive. Once reached, all project resource will be scheduled for termination.
|
|
8018
|
+
*/
|
|
8019
|
+
end_date?: string | null;
|
|
8020
|
+
};
|
|
7993
8021
|
export type PermissionRequest = {
|
|
7994
8022
|
readonly url: string;
|
|
7995
8023
|
readonly uuid: string;
|
|
@@ -8514,7 +8542,7 @@ export type ProtectedCall = {
|
|
|
8514
8542
|
readonly created?: string;
|
|
8515
8543
|
readonly start_date?: string;
|
|
8516
8544
|
readonly end_date?: string;
|
|
8517
|
-
|
|
8545
|
+
slug?: string;
|
|
8518
8546
|
name?: string;
|
|
8519
8547
|
description?: string;
|
|
8520
8548
|
state?: CallStates;
|
|
@@ -8616,7 +8644,7 @@ export type ProviderOffering = {
|
|
|
8616
8644
|
readonly uuid?: string;
|
|
8617
8645
|
readonly customer_uuid?: string;
|
|
8618
8646
|
name?: string;
|
|
8619
|
-
|
|
8647
|
+
slug?: string;
|
|
8620
8648
|
readonly category_title?: string;
|
|
8621
8649
|
type?: string;
|
|
8622
8650
|
state?: OfferingState;
|
|
@@ -8656,7 +8684,7 @@ export type ProviderOfferingDetails = {
|
|
|
8656
8684
|
readonly uuid?: string;
|
|
8657
8685
|
readonly created?: string;
|
|
8658
8686
|
name?: string;
|
|
8659
|
-
|
|
8687
|
+
slug?: string;
|
|
8660
8688
|
description?: string;
|
|
8661
8689
|
full_description?: string;
|
|
8662
8690
|
privacy_policy_link?: string;
|
|
@@ -8886,7 +8914,7 @@ export type PublicCall = {
|
|
|
8886
8914
|
readonly created?: string;
|
|
8887
8915
|
readonly start_date?: string;
|
|
8888
8916
|
readonly end_date?: string;
|
|
8889
|
-
|
|
8917
|
+
slug?: string;
|
|
8890
8918
|
name?: string;
|
|
8891
8919
|
description?: string;
|
|
8892
8920
|
state?: CallStates;
|
|
@@ -10893,6 +10921,7 @@ export type ServiceProvider = {
|
|
|
10893
10921
|
readonly uuid?: string;
|
|
10894
10922
|
readonly created?: string;
|
|
10895
10923
|
description?: string;
|
|
10924
|
+
enable_notifications?: boolean;
|
|
10896
10925
|
customer?: string;
|
|
10897
10926
|
readonly customer_name?: string;
|
|
10898
10927
|
readonly customer_uuid?: string;
|
|
@@ -11830,6 +11859,9 @@ export type WidgetEnum = 'csv' | 'filesize' | 'attached_instance';
|
|
|
11830
11859
|
/**
|
|
11831
11860
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11832
11861
|
* It expects that request is available in serializer's context.
|
|
11862
|
+
*
|
|
11863
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
11864
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11833
11865
|
*/
|
|
11834
11866
|
export type AzureVirtualMachineCreateOrderAttributes = {
|
|
11835
11867
|
name: string;
|
|
@@ -11841,6 +11873,9 @@ export type AzureVirtualMachineCreateOrderAttributes = {
|
|
|
11841
11873
|
/**
|
|
11842
11874
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11843
11875
|
* It expects that request is available in serializer's context.
|
|
11876
|
+
*
|
|
11877
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
11878
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11844
11879
|
*/
|
|
11845
11880
|
export type AzureSqlServerCreateOrderAttributes = {
|
|
11846
11881
|
name: string;
|
|
@@ -11850,10 +11885,21 @@ export type AzureSqlServerCreateOrderAttributes = {
|
|
|
11850
11885
|
/**
|
|
11851
11886
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11852
11887
|
* It expects that request is available in serializer's context.
|
|
11888
|
+
*
|
|
11889
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
11890
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11853
11891
|
*/
|
|
11854
11892
|
export type OpenStackTenantCreateOrderAttributes = {
|
|
11855
11893
|
name: string;
|
|
11856
11894
|
description?: string;
|
|
11895
|
+
/**
|
|
11896
|
+
* Username of the tenant user
|
|
11897
|
+
*/
|
|
11898
|
+
user_username?: string;
|
|
11899
|
+
/**
|
|
11900
|
+
* Password of the tenant user
|
|
11901
|
+
*/
|
|
11902
|
+
user_password?: string;
|
|
11857
11903
|
subnet_cidr?: string;
|
|
11858
11904
|
skip_connection_extnet?: boolean;
|
|
11859
11905
|
skip_creation_of_default_router?: boolean;
|
|
@@ -11865,6 +11911,9 @@ export type OpenStackTenantCreateOrderAttributes = {
|
|
|
11865
11911
|
/**
|
|
11866
11912
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11867
11913
|
* It expects that request is available in serializer's context.
|
|
11914
|
+
*
|
|
11915
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
11916
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11868
11917
|
*/
|
|
11869
11918
|
export type OpenStackInstanceCreateOrderAttributes = {
|
|
11870
11919
|
name: string;
|
|
@@ -11926,6 +11975,9 @@ export type OpenStackInstanceCreateOrderAttributes = {
|
|
|
11926
11975
|
/**
|
|
11927
11976
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11928
11977
|
* It expects that request is available in serializer's context.
|
|
11978
|
+
*
|
|
11979
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
11980
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11929
11981
|
*/
|
|
11930
11982
|
export type OpenStackVolumeCreateOrderAttributes = {
|
|
11931
11983
|
name: string;
|
|
@@ -11950,6 +12002,9 @@ export type OpenStackVolumeCreateOrderAttributes = {
|
|
|
11950
12002
|
/**
|
|
11951
12003
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11952
12004
|
* It expects that request is available in serializer's context.
|
|
12005
|
+
*
|
|
12006
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
12007
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11953
12008
|
*/
|
|
11954
12009
|
export type MarketplaceRancherCreateOrderAttributes = {
|
|
11955
12010
|
name: string;
|
|
@@ -11992,6 +12047,9 @@ export type MarketplaceManagedRancherCreateOrderAttributes = {
|
|
|
11992
12047
|
/**
|
|
11993
12048
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
11994
12049
|
* It expects that request is available in serializer's context.
|
|
12050
|
+
*
|
|
12051
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
12052
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
11995
12053
|
*/
|
|
11996
12054
|
export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
|
|
11997
12055
|
name: string;
|
|
@@ -12000,6 +12058,9 @@ export type SlurmInvoicesSlurmPackageCreateOrderAttributes = {
|
|
|
12000
12058
|
/**
|
|
12001
12059
|
* This mixin allows to specify list of fields to be rendered by serializer.
|
|
12002
12060
|
* It expects that request is available in serializer's context.
|
|
12061
|
+
*
|
|
12062
|
+
* It is disabled for nested serializers (where parent is another serializer)
|
|
12063
|
+
* but remains active for list views (where parent is a ListSerializer).
|
|
12003
12064
|
*/
|
|
12004
12065
|
export type VMwareVirtualMachineCreateOrderAttributes = {
|
|
12005
12066
|
name: string;
|
|
@@ -14654,8 +14715,15 @@ export type BookingResourcesListData = {
|
|
|
14654
14715
|
* Offering shared
|
|
14655
14716
|
*/
|
|
14656
14717
|
offering_shared?: boolean;
|
|
14718
|
+
/**
|
|
14719
|
+
* Multiple values may be separated by commas.
|
|
14720
|
+
*/
|
|
14721
|
+
offering_slug?: Array<string>;
|
|
14657
14722
|
offering_type?: string;
|
|
14658
|
-
|
|
14723
|
+
/**
|
|
14724
|
+
* Multiple values may be separated by commas.
|
|
14725
|
+
*/
|
|
14726
|
+
offering_uuid?: Array<string>;
|
|
14659
14727
|
/**
|
|
14660
14728
|
* A page number within the paginated result set.
|
|
14661
14729
|
*/
|
|
@@ -14737,8 +14805,15 @@ export type BookingResourcesCountData = {
|
|
|
14737
14805
|
* Offering shared
|
|
14738
14806
|
*/
|
|
14739
14807
|
offering_shared?: boolean;
|
|
14808
|
+
/**
|
|
14809
|
+
* Multiple values may be separated by commas.
|
|
14810
|
+
*/
|
|
14811
|
+
offering_slug?: Array<string>;
|
|
14740
14812
|
offering_type?: string;
|
|
14741
|
-
|
|
14813
|
+
/**
|
|
14814
|
+
* Multiple values may be separated by commas.
|
|
14815
|
+
*/
|
|
14816
|
+
offering_uuid?: Array<string>;
|
|
14742
14817
|
/**
|
|
14743
14818
|
* A page number within the paginated result set.
|
|
14744
14819
|
*/
|
|
@@ -16483,7 +16558,7 @@ export type CustomersListData = {
|
|
|
16483
16558
|
archived?: boolean;
|
|
16484
16559
|
backend_id?: string;
|
|
16485
16560
|
contact_details?: string;
|
|
16486
|
-
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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
|
|
16561
|
+
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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
16487
16562
|
name?: string;
|
|
16488
16563
|
name_exact?: string;
|
|
16489
16564
|
native_name?: string;
|
|
@@ -16694,7 +16769,7 @@ export type CustomersRetrieveData = {
|
|
|
16694
16769
|
uuid: string;
|
|
16695
16770
|
};
|
|
16696
16771
|
query?: {
|
|
16697
|
-
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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'uuid' | 'vat_code'>;
|
|
16772
|
+
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' | 'display_name' | 'domain' | 'email' | 'homepage' | 'image' | 'is_service_provider' | 'latitude' | 'longitude' | 'max_service_accounts' | 'name' | 'native_name' | 'organization_groups' | 'payment_profiles' | 'phone_number' | 'postal' | 'project_metadata_checklist' | 'projects' | 'projects_count' | 'registration_code' | 'service_provider' | 'service_provider_uuid' | 'slug' | 'sponsor_number' | 'url' | 'users_count' | 'uuid' | 'vat_code'>;
|
|
16698
16773
|
};
|
|
16699
16774
|
url: '/api/customers/{uuid}/';
|
|
16700
16775
|
};
|
|
@@ -18163,7 +18238,7 @@ export type GoogleAuthListData = {
|
|
|
18163
18238
|
body?: never;
|
|
18164
18239
|
path?: never;
|
|
18165
18240
|
query?: {
|
|
18166
|
-
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18241
|
+
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18167
18242
|
/**
|
|
18168
18243
|
* has_credentials
|
|
18169
18244
|
*/
|
|
@@ -18214,7 +18289,7 @@ export type GoogleAuthRetrieveData = {
|
|
|
18214
18289
|
uuid: string;
|
|
18215
18290
|
};
|
|
18216
18291
|
query?: {
|
|
18217
|
-
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18292
|
+
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18218
18293
|
};
|
|
18219
18294
|
url: '/api/google-auth/{uuid}/';
|
|
18220
18295
|
};
|
|
@@ -18228,7 +18303,7 @@ export type GoogleAuthAuthorizeRetrieveData = {
|
|
|
18228
18303
|
uuid: string;
|
|
18229
18304
|
};
|
|
18230
18305
|
query?: {
|
|
18231
|
-
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18306
|
+
field?: Array<'calendar_refresh_token' | 'calendar_token' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'google_auth_url' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
18232
18307
|
};
|
|
18233
18308
|
url: '/api/google-auth/{uuid}/authorize/';
|
|
18234
18309
|
};
|
|
@@ -21363,7 +21438,14 @@ export type MarketplaceIntegrationStatusesListData = {
|
|
|
21363
21438
|
*/
|
|
21364
21439
|
o?: Array<'-last_request_timestamp' | 'last_request_timestamp'>;
|
|
21365
21440
|
offering?: string;
|
|
21366
|
-
|
|
21441
|
+
/**
|
|
21442
|
+
* Multiple values may be separated by commas.
|
|
21443
|
+
*/
|
|
21444
|
+
offering_slug?: Array<string>;
|
|
21445
|
+
/**
|
|
21446
|
+
* Multiple values may be separated by commas.
|
|
21447
|
+
*/
|
|
21448
|
+
offering_uuid?: Array<string>;
|
|
21367
21449
|
/**
|
|
21368
21450
|
* A page number within the paginated result set.
|
|
21369
21451
|
*/
|
|
@@ -21394,7 +21476,14 @@ export type MarketplaceIntegrationStatusesCountData = {
|
|
|
21394
21476
|
*/
|
|
21395
21477
|
o?: Array<'-last_request_timestamp' | 'last_request_timestamp'>;
|
|
21396
21478
|
offering?: string;
|
|
21397
|
-
|
|
21479
|
+
/**
|
|
21480
|
+
* Multiple values may be separated by commas.
|
|
21481
|
+
*/
|
|
21482
|
+
offering_slug?: Array<string>;
|
|
21483
|
+
/**
|
|
21484
|
+
* Multiple values may be separated by commas.
|
|
21485
|
+
*/
|
|
21486
|
+
offering_uuid?: Array<string>;
|
|
21398
21487
|
/**
|
|
21399
21488
|
* A page number within the paginated result set.
|
|
21400
21489
|
*/
|
|
@@ -21565,7 +21654,14 @@ export type MarketplaceOfferingFilesListData = {
|
|
|
21565
21654
|
*/
|
|
21566
21655
|
o?: Array<'-created' | '-name' | 'created' | 'name'>;
|
|
21567
21656
|
offering?: string;
|
|
21568
|
-
|
|
21657
|
+
/**
|
|
21658
|
+
* Multiple values may be separated by commas.
|
|
21659
|
+
*/
|
|
21660
|
+
offering_slug?: Array<string>;
|
|
21661
|
+
/**
|
|
21662
|
+
* Multiple values may be separated by commas.
|
|
21663
|
+
*/
|
|
21664
|
+
offering_uuid?: Array<string>;
|
|
21569
21665
|
/**
|
|
21570
21666
|
* A page number within the paginated result set.
|
|
21571
21667
|
*/
|
|
@@ -21593,7 +21689,14 @@ export type MarketplaceOfferingFilesCountData = {
|
|
|
21593
21689
|
*/
|
|
21594
21690
|
o?: Array<'-created' | '-name' | 'created' | 'name'>;
|
|
21595
21691
|
offering?: string;
|
|
21596
|
-
|
|
21692
|
+
/**
|
|
21693
|
+
* Multiple values may be separated by commas.
|
|
21694
|
+
*/
|
|
21695
|
+
offering_slug?: Array<string>;
|
|
21696
|
+
/**
|
|
21697
|
+
* Multiple values may be separated by commas.
|
|
21698
|
+
*/
|
|
21699
|
+
offering_uuid?: Array<string>;
|
|
21597
21700
|
/**
|
|
21598
21701
|
* A page number within the paginated result set.
|
|
21599
21702
|
*/
|
|
@@ -22272,7 +22375,14 @@ export type MarketplaceOfferingUserRolesListData = {
|
|
|
22272
22375
|
path?: never;
|
|
22273
22376
|
query?: {
|
|
22274
22377
|
offering?: string;
|
|
22275
|
-
|
|
22378
|
+
/**
|
|
22379
|
+
* Multiple values may be separated by commas.
|
|
22380
|
+
*/
|
|
22381
|
+
offering_slug?: Array<string>;
|
|
22382
|
+
/**
|
|
22383
|
+
* Multiple values may be separated by commas.
|
|
22384
|
+
*/
|
|
22385
|
+
offering_uuid?: Array<string>;
|
|
22276
22386
|
/**
|
|
22277
22387
|
* A page number within the paginated result set.
|
|
22278
22388
|
*/
|
|
@@ -22294,7 +22404,14 @@ export type MarketplaceOfferingUserRolesCountData = {
|
|
|
22294
22404
|
path?: never;
|
|
22295
22405
|
query?: {
|
|
22296
22406
|
offering?: string;
|
|
22297
|
-
|
|
22407
|
+
/**
|
|
22408
|
+
* Multiple values may be separated by commas.
|
|
22409
|
+
*/
|
|
22410
|
+
offering_slug?: Array<string>;
|
|
22411
|
+
/**
|
|
22412
|
+
* Multiple values may be separated by commas.
|
|
22413
|
+
*/
|
|
22414
|
+
offering_uuid?: Array<string>;
|
|
22298
22415
|
/**
|
|
22299
22416
|
* A page number within the paginated result set.
|
|
22300
22417
|
*/
|
|
@@ -22395,7 +22512,14 @@ export type MarketplaceOfferingUsersListData = {
|
|
|
22395
22512
|
*/
|
|
22396
22513
|
o?: Array<'-created' | '-modified' | '-username' | 'created' | 'modified' | 'username'>;
|
|
22397
22514
|
offering?: string;
|
|
22398
|
-
|
|
22515
|
+
/**
|
|
22516
|
+
* Multiple values may be separated by commas.
|
|
22517
|
+
*/
|
|
22518
|
+
offering_slug?: Array<string>;
|
|
22519
|
+
/**
|
|
22520
|
+
* Multiple values may be separated by commas.
|
|
22521
|
+
*/
|
|
22522
|
+
offering_uuid?: Array<string>;
|
|
22399
22523
|
/**
|
|
22400
22524
|
* A page number within the paginated result set.
|
|
22401
22525
|
*/
|
|
@@ -22440,7 +22564,14 @@ export type MarketplaceOfferingUsersCountData = {
|
|
|
22440
22564
|
*/
|
|
22441
22565
|
o?: Array<'-created' | '-modified' | '-username' | 'created' | 'modified' | 'username'>;
|
|
22442
22566
|
offering?: string;
|
|
22443
|
-
|
|
22567
|
+
/**
|
|
22568
|
+
* Multiple values may be separated by commas.
|
|
22569
|
+
*/
|
|
22570
|
+
offering_slug?: Array<string>;
|
|
22571
|
+
/**
|
|
22572
|
+
* Multiple values may be separated by commas.
|
|
22573
|
+
*/
|
|
22574
|
+
offering_uuid?: Array<string>;
|
|
22444
22575
|
/**
|
|
22445
22576
|
* A page number within the paginated result set.
|
|
22446
22577
|
*/
|
|
@@ -22818,7 +22949,7 @@ export type MarketplaceOrdersListData = {
|
|
|
22818
22949
|
*/
|
|
22819
22950
|
created?: string;
|
|
22820
22951
|
customer_uuid?: string;
|
|
22821
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22952
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22822
22953
|
/**
|
|
22823
22954
|
* Modified after
|
|
22824
22955
|
*/
|
|
@@ -22830,6 +22961,10 @@ export type MarketplaceOrdersListData = {
|
|
|
22830
22961
|
*/
|
|
22831
22962
|
o?: Array<'-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state'>;
|
|
22832
22963
|
offering?: string;
|
|
22964
|
+
/**
|
|
22965
|
+
* Multiple values may be separated by commas.
|
|
22966
|
+
*/
|
|
22967
|
+
offering_slug?: Array<string>;
|
|
22833
22968
|
offering_type?: Array<string>;
|
|
22834
22969
|
offering_uuid?: string;
|
|
22835
22970
|
/**
|
|
@@ -22882,6 +23017,10 @@ export type MarketplaceOrdersCountData = {
|
|
|
22882
23017
|
*/
|
|
22883
23018
|
o?: Array<'-consumer_reviewed_at' | '-cost' | '-created' | '-state' | 'consumer_reviewed_at' | 'cost' | 'created' | 'state'>;
|
|
22884
23019
|
offering?: string;
|
|
23020
|
+
/**
|
|
23021
|
+
* Multiple values may be separated by commas.
|
|
23022
|
+
*/
|
|
23023
|
+
offering_slug?: Array<string>;
|
|
22885
23024
|
offering_type?: Array<string>;
|
|
22886
23025
|
offering_uuid?: string;
|
|
22887
23026
|
/**
|
|
@@ -22944,7 +23083,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
22944
23083
|
uuid: string;
|
|
22945
23084
|
};
|
|
22946
23085
|
query?: {
|
|
22947
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
23086
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_full_name' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_uuid' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'state' | 'termination_comment' | 'type' | 'uuid'>;
|
|
22948
23087
|
};
|
|
22949
23088
|
url: '/api/marketplace-orders/{uuid}/';
|
|
22950
23089
|
};
|
|
@@ -23177,6 +23316,10 @@ export type MarketplacePlansListData = {
|
|
|
23177
23316
|
path?: never;
|
|
23178
23317
|
query?: {
|
|
23179
23318
|
offering?: string;
|
|
23319
|
+
/**
|
|
23320
|
+
* Multiple values may be separated by commas.
|
|
23321
|
+
*/
|
|
23322
|
+
offering_slug?: Array<string>;
|
|
23180
23323
|
offering_uuid?: string;
|
|
23181
23324
|
/**
|
|
23182
23325
|
* A page number within the paginated result set.
|
|
@@ -23199,6 +23342,10 @@ export type MarketplacePlansCountData = {
|
|
|
23199
23342
|
path?: never;
|
|
23200
23343
|
query?: {
|
|
23201
23344
|
offering?: string;
|
|
23345
|
+
/**
|
|
23346
|
+
* Multiple values may be separated by commas.
|
|
23347
|
+
*/
|
|
23348
|
+
offering_slug?: Array<string>;
|
|
23202
23349
|
offering_uuid?: string;
|
|
23203
23350
|
/**
|
|
23204
23351
|
* A page number within the paginated result set.
|
|
@@ -23356,6 +23503,10 @@ export type MarketplacePlansUsageStatsListData = {
|
|
|
23356
23503
|
customer_provider_uuid?: string;
|
|
23357
23504
|
o?: string;
|
|
23358
23505
|
offering?: string;
|
|
23506
|
+
/**
|
|
23507
|
+
* Multiple values may be separated by commas.
|
|
23508
|
+
*/
|
|
23509
|
+
offering_slug?: Array<string>;
|
|
23359
23510
|
offering_uuid?: string;
|
|
23360
23511
|
/**
|
|
23361
23512
|
* A page number within the paginated result set.
|
|
@@ -23380,6 +23531,10 @@ export type MarketplacePlansUsageStatsCountData = {
|
|
|
23380
23531
|
customer_provider_uuid?: string;
|
|
23381
23532
|
o?: string;
|
|
23382
23533
|
offering?: string;
|
|
23534
|
+
/**
|
|
23535
|
+
* Multiple values may be separated by commas.
|
|
23536
|
+
*/
|
|
23537
|
+
offering_slug?: Array<string>;
|
|
23383
23538
|
offering_uuid?: string;
|
|
23384
23539
|
/**
|
|
23385
23540
|
* A page number within the paginated result set.
|
|
@@ -25090,8 +25245,15 @@ export type MarketplaceProviderResourcesListData = {
|
|
|
25090
25245
|
* Offering shared
|
|
25091
25246
|
*/
|
|
25092
25247
|
offering_shared?: boolean;
|
|
25248
|
+
/**
|
|
25249
|
+
* Multiple values may be separated by commas.
|
|
25250
|
+
*/
|
|
25251
|
+
offering_slug?: Array<string>;
|
|
25093
25252
|
offering_type?: string;
|
|
25094
|
-
|
|
25253
|
+
/**
|
|
25254
|
+
* Multiple values may be separated by commas.
|
|
25255
|
+
*/
|
|
25256
|
+
offering_uuid?: Array<string>;
|
|
25095
25257
|
/**
|
|
25096
25258
|
* A page number within the paginated result set.
|
|
25097
25259
|
*/
|
|
@@ -25172,8 +25334,15 @@ export type MarketplaceProviderResourcesCountData = {
|
|
|
25172
25334
|
* Offering shared
|
|
25173
25335
|
*/
|
|
25174
25336
|
offering_shared?: boolean;
|
|
25337
|
+
/**
|
|
25338
|
+
* Multiple values may be separated by commas.
|
|
25339
|
+
*/
|
|
25340
|
+
offering_slug?: Array<string>;
|
|
25175
25341
|
offering_type?: string;
|
|
25176
|
-
|
|
25342
|
+
/**
|
|
25343
|
+
* Multiple values may be separated by commas.
|
|
25344
|
+
*/
|
|
25345
|
+
offering_uuid?: Array<string>;
|
|
25177
25346
|
/**
|
|
25178
25347
|
* A page number within the paginated result set.
|
|
25179
25348
|
*/
|
|
@@ -26025,8 +26194,15 @@ export type MarketplaceResourcesListData = {
|
|
|
26025
26194
|
* Offering shared
|
|
26026
26195
|
*/
|
|
26027
26196
|
offering_shared?: boolean;
|
|
26197
|
+
/**
|
|
26198
|
+
* Multiple values may be separated by commas.
|
|
26199
|
+
*/
|
|
26200
|
+
offering_slug?: Array<string>;
|
|
26028
26201
|
offering_type?: string;
|
|
26029
|
-
|
|
26202
|
+
/**
|
|
26203
|
+
* Multiple values may be separated by commas.
|
|
26204
|
+
*/
|
|
26205
|
+
offering_uuid?: Array<string>;
|
|
26030
26206
|
/**
|
|
26031
26207
|
* A page number within the paginated result set.
|
|
26032
26208
|
*/
|
|
@@ -26107,8 +26283,15 @@ export type MarketplaceResourcesCountData = {
|
|
|
26107
26283
|
* Offering shared
|
|
26108
26284
|
*/
|
|
26109
26285
|
offering_shared?: boolean;
|
|
26286
|
+
/**
|
|
26287
|
+
* Multiple values may be separated by commas.
|
|
26288
|
+
*/
|
|
26289
|
+
offering_slug?: Array<string>;
|
|
26110
26290
|
offering_type?: string;
|
|
26111
|
-
|
|
26291
|
+
/**
|
|
26292
|
+
* Multiple values may be separated by commas.
|
|
26293
|
+
*/
|
|
26294
|
+
offering_uuid?: Array<string>;
|
|
26112
26295
|
/**
|
|
26113
26296
|
* A page number within the paginated result set.
|
|
26114
26297
|
*/
|
|
@@ -26615,7 +26798,14 @@ export type MarketplaceScreenshotsListData = {
|
|
|
26615
26798
|
*/
|
|
26616
26799
|
o?: Array<'-created' | '-name' | 'created' | 'name'>;
|
|
26617
26800
|
offering?: string;
|
|
26618
|
-
|
|
26801
|
+
/**
|
|
26802
|
+
* Multiple values may be separated by commas.
|
|
26803
|
+
*/
|
|
26804
|
+
offering_slug?: Array<string>;
|
|
26805
|
+
/**
|
|
26806
|
+
* Multiple values may be separated by commas.
|
|
26807
|
+
*/
|
|
26808
|
+
offering_uuid?: Array<string>;
|
|
26619
26809
|
/**
|
|
26620
26810
|
* A page number within the paginated result set.
|
|
26621
26811
|
*/
|
|
@@ -26643,7 +26833,14 @@ export type MarketplaceScreenshotsCountData = {
|
|
|
26643
26833
|
*/
|
|
26644
26834
|
o?: Array<'-created' | '-name' | 'created' | 'name'>;
|
|
26645
26835
|
offering?: string;
|
|
26646
|
-
|
|
26836
|
+
/**
|
|
26837
|
+
* Multiple values may be separated by commas.
|
|
26838
|
+
*/
|
|
26839
|
+
offering_slug?: Array<string>;
|
|
26840
|
+
/**
|
|
26841
|
+
* Multiple values may be separated by commas.
|
|
26842
|
+
*/
|
|
26843
|
+
offering_uuid?: Array<string>;
|
|
26647
26844
|
/**
|
|
26648
26845
|
* A page number within the paginated result set.
|
|
26649
26846
|
*/
|
|
@@ -26937,7 +27134,7 @@ export type MarketplaceServiceProvidersListData = {
|
|
|
26937
27134
|
customer?: string;
|
|
26938
27135
|
customer_keyword?: string;
|
|
26939
27136
|
customer_uuid?: string;
|
|
26940
|
-
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27137
|
+
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
26941
27138
|
/**
|
|
26942
27139
|
* Ordering
|
|
26943
27140
|
*
|
|
@@ -27592,7 +27789,7 @@ export type MarketplaceServiceProvidersRetrieveData = {
|
|
|
27592
27789
|
uuid: string;
|
|
27593
27790
|
};
|
|
27594
27791
|
query?: {
|
|
27595
|
-
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27792
|
+
field?: Array<'created' | 'customer' | 'customer_abbreviation' | 'customer_country' | 'customer_image' | 'customer_name' | 'customer_native_name' | 'customer_slug' | 'customer_uuid' | 'description' | 'enable_notifications' | 'image' | 'offering_count' | 'organization_groups' | 'url' | 'uuid'>;
|
|
27596
27793
|
};
|
|
27597
27794
|
url: '/api/marketplace-service-providers/{uuid}/';
|
|
27598
27795
|
};
|
|
@@ -30395,7 +30592,7 @@ export type OpenstackNetworksListData = {
|
|
|
30395
30592
|
*/
|
|
30396
30593
|
direct_only?: boolean;
|
|
30397
30594
|
external_ip?: string;
|
|
30398
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
|
|
30595
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
|
|
30399
30596
|
is_external?: boolean;
|
|
30400
30597
|
name?: string;
|
|
30401
30598
|
name_exact?: string;
|
|
@@ -30515,7 +30712,7 @@ export type OpenstackNetworksRetrieveData = {
|
|
|
30515
30712
|
uuid: string;
|
|
30516
30713
|
};
|
|
30517
30714
|
query?: {
|
|
30518
|
-
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
|
|
30715
|
+
field?: Array<'access_url' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | 'description' | 'error_message' | 'error_traceback' | 'is_external' | 'is_limit_based' | 'is_usage_based' | 'marketplace_category_name' | 'marketplace_category_uuid' | 'marketplace_offering_name' | 'marketplace_offering_plugin_options' | 'marketplace_offering_uuid' | 'marketplace_plan_uuid' | 'marketplace_resource_state' | 'marketplace_resource_uuid' | 'modified' | 'mtu' | 'name' | 'project' | 'project_name' | 'project_uuid' | 'rbac_policies' | 'resource_type' | 'segmentation_id' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnets' | 'tenant' | 'tenant_name' | 'tenant_uuid' | 'type' | 'url' | 'uuid'>;
|
|
30519
30716
|
};
|
|
30520
30717
|
url: '/api/openstack-networks/{uuid}/';
|
|
30521
30718
|
};
|
|
@@ -31857,7 +32054,7 @@ export type OpenstackTenantsListData = {
|
|
|
31857
32054
|
customer_uuid?: string;
|
|
31858
32055
|
description?: string;
|
|
31859
32056
|
external_ip?: string;
|
|
31860
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | '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' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
32057
|
+
field?: Array<'access_url' | 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | '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' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'user_password' | 'user_username' | 'uuid'>;
|
|
31861
32058
|
name?: string;
|
|
31862
32059
|
name_exact?: string;
|
|
31863
32060
|
/**
|
|
@@ -31955,7 +32152,7 @@ export type OpenstackTenantsRetrieveData = {
|
|
|
31955
32152
|
uuid: string;
|
|
31956
32153
|
};
|
|
31957
32154
|
query?: {
|
|
31958
|
-
field?: Array<'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | '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' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'uuid'>;
|
|
32155
|
+
field?: Array<'access_url' | 'availability_zone' | 'backend_id' | 'created' | 'customer' | 'customer_abbreviation' | 'customer_name' | 'customer_native_name' | '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' | 'service_name' | 'service_settings' | 'service_settings_error_message' | 'service_settings_state' | 'service_settings_uuid' | 'state' | 'subnet_cidr' | 'url' | 'user_password' | 'user_username' | 'uuid'>;
|
|
31959
32156
|
};
|
|
31960
32157
|
url: '/api/openstack-tenants/{uuid}/';
|
|
31961
32158
|
};
|