waldur-js-client 1.0.4-dev.11 → 1.0.4-dev.13
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 +11 -10
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1714,9 +1714,9 @@ export type Customer = {
|
|
|
1714
1714
|
readonly payment_profiles?: Array<PaymentProfile>;
|
|
1715
1715
|
readonly customer_credit?: number | null;
|
|
1716
1716
|
readonly is_service_provider?: boolean;
|
|
1717
|
-
readonly service_provider?: string;
|
|
1718
|
-
readonly service_provider_uuid?: string;
|
|
1719
|
-
readonly call_managing_organization_uuid?: string;
|
|
1717
|
+
readonly service_provider?: string | null;
|
|
1718
|
+
readonly service_provider_uuid?: string | null;
|
|
1719
|
+
readonly call_managing_organization_uuid?: string | null;
|
|
1720
1720
|
billing_price_estimate?: NestedPriceEstimate;
|
|
1721
1721
|
};
|
|
1722
1722
|
export type CustomerChecklistStat = {
|
|
@@ -4300,9 +4300,9 @@ export type OpenStackFloatingIp = {
|
|
|
4300
4300
|
* An optional address that maps to floating IP's address
|
|
4301
4301
|
*/
|
|
4302
4302
|
readonly external_address?: string | null;
|
|
4303
|
-
readonly instance_uuid?: string;
|
|
4304
|
-
readonly instance_name?: string;
|
|
4305
|
-
readonly instance_url?: string;
|
|
4303
|
+
readonly instance_uuid?: string | null;
|
|
4304
|
+
readonly instance_name?: string | null;
|
|
4305
|
+
readonly instance_url?: string | null;
|
|
4306
4306
|
readonly marketplace_offering_uuid?: string;
|
|
4307
4307
|
readonly marketplace_offering_name?: string;
|
|
4308
4308
|
readonly marketplace_offering_plugin_options?: {};
|
|
@@ -4503,6 +4503,7 @@ export type OpenStackNestedServerGroup = {
|
|
|
4503
4503
|
readonly state?: string;
|
|
4504
4504
|
};
|
|
4505
4505
|
export type OpenStackNestedSubNet = {
|
|
4506
|
+
readonly uuid?: string;
|
|
4506
4507
|
name?: string;
|
|
4507
4508
|
description?: string;
|
|
4508
4509
|
cidr?: string;
|
|
@@ -4537,7 +4538,7 @@ export type OpenStackNestedVolume = {
|
|
|
4537
4538
|
readonly resource_type?: string;
|
|
4538
4539
|
type?: string | null;
|
|
4539
4540
|
readonly type_name?: string;
|
|
4540
|
-
readonly marketplace_resource_uuid?: string;
|
|
4541
|
+
readonly marketplace_resource_uuid?: string | null;
|
|
4541
4542
|
};
|
|
4542
4543
|
export type OpenStackNestedVolumeRequest = {
|
|
4543
4544
|
image_name?: string;
|
|
@@ -6706,8 +6707,8 @@ export type ProviderOfferingDetails = {
|
|
|
6706
6707
|
readonly parent_uuid?: string;
|
|
6707
6708
|
readonly parent_name?: string;
|
|
6708
6709
|
backend_metadata?: unknown;
|
|
6709
|
-
readonly integration_status?: Array<IntegrationStatus
|
|
6710
|
-
readonly google_calendar_is_public?: boolean;
|
|
6710
|
+
readonly integration_status?: Array<IntegrationStatus> | null;
|
|
6711
|
+
readonly google_calendar_is_public?: boolean | null;
|
|
6711
6712
|
readonly google_calendar_link?: string | null;
|
|
6712
6713
|
};
|
|
6713
6714
|
export type ProviderOfferingDetailsRequest = {
|
|
@@ -6939,7 +6940,7 @@ export type PublicOfferingDetails = {
|
|
|
6939
6940
|
readonly parent_uuid?: string;
|
|
6940
6941
|
readonly parent_name?: string;
|
|
6941
6942
|
backend_metadata?: unknown;
|
|
6942
|
-
readonly google_calendar_is_public?: boolean;
|
|
6943
|
+
readonly google_calendar_is_public?: boolean | null;
|
|
6943
6944
|
readonly google_calendar_link?: string | null;
|
|
6944
6945
|
readonly promotion_campaigns?: Array<NestedCampaign>;
|
|
6945
6946
|
};
|