waldur-js-client 1.0.4-dev.47 → 1.0.4-dev.48
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 +40 -40
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -784,10 +784,10 @@ export type BookingResource = {
|
|
|
784
784
|
readonly category_uuid?: string;
|
|
785
785
|
readonly category_icon?: string;
|
|
786
786
|
plan?: string;
|
|
787
|
-
plan_unit?: BillingUnit;
|
|
788
|
-
readonly plan_name?: string;
|
|
789
|
-
readonly plan_uuid?: string;
|
|
790
|
-
readonly plan_description?: string;
|
|
787
|
+
plan_unit?: BillingUnit | null;
|
|
788
|
+
readonly plan_name?: string | null;
|
|
789
|
+
readonly plan_uuid?: string | null;
|
|
790
|
+
readonly plan_description?: string | null;
|
|
791
791
|
readonly attributes?: {};
|
|
792
792
|
readonly limits?: {
|
|
793
793
|
[key: string]: number;
|
|
@@ -1823,8 +1823,8 @@ export type CustomerOecdCodeStats = {
|
|
|
1823
1823
|
export type CustomerPermissionReview = {
|
|
1824
1824
|
readonly url: string;
|
|
1825
1825
|
readonly uuid: string;
|
|
1826
|
-
readonly reviewer_full_name: string;
|
|
1827
|
-
readonly reviewer_uuid: string;
|
|
1826
|
+
readonly reviewer_full_name: string | null;
|
|
1827
|
+
readonly reviewer_uuid: string | null;
|
|
1828
1828
|
readonly customer_uuid: string;
|
|
1829
1829
|
readonly customer_name: string;
|
|
1830
1830
|
readonly is_pending: boolean;
|
|
@@ -2207,11 +2207,11 @@ export type FirecrestJob = {
|
|
|
2207
2207
|
* Reference to user which submitted job
|
|
2208
2208
|
*/
|
|
2209
2209
|
readonly user?: string | null;
|
|
2210
|
-
readonly user_uuid?: string;
|
|
2210
|
+
readonly user_uuid?: string | null;
|
|
2211
2211
|
/**
|
|
2212
2212
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
2213
2213
|
*/
|
|
2214
|
-
readonly user_username?: string;
|
|
2214
|
+
readonly user_username?: string | null;
|
|
2215
2215
|
readonly report?: unknown;
|
|
2216
2216
|
};
|
|
2217
2217
|
export type FirecrestJobRequest = {
|
|
@@ -2650,20 +2650,20 @@ export type Issue = {
|
|
|
2650
2650
|
readonly resolution: string;
|
|
2651
2651
|
priority?: string;
|
|
2652
2652
|
caller?: string | null;
|
|
2653
|
-
readonly caller_uuid: string;
|
|
2654
|
-
readonly caller_full_name: string;
|
|
2653
|
+
readonly caller_uuid: string | null;
|
|
2654
|
+
readonly caller_full_name: string | null;
|
|
2655
2655
|
readonly reporter: string;
|
|
2656
|
-
readonly reporter_uuid: string;
|
|
2657
|
-
readonly reporter_name: string;
|
|
2656
|
+
readonly reporter_uuid: string | null;
|
|
2657
|
+
readonly reporter_name: string | null;
|
|
2658
2658
|
assignee?: string | null;
|
|
2659
|
-
readonly assignee_uuid: string;
|
|
2660
|
-
readonly assignee_name: string;
|
|
2659
|
+
readonly assignee_uuid: string | null;
|
|
2660
|
+
readonly assignee_name: string | null;
|
|
2661
2661
|
customer?: string | null;
|
|
2662
|
-
readonly customer_uuid: string;
|
|
2663
|
-
readonly customer_name: string;
|
|
2662
|
+
readonly customer_uuid: string | null;
|
|
2663
|
+
readonly customer_name: string | null;
|
|
2664
2664
|
project?: string | null;
|
|
2665
|
-
readonly project_uuid: string;
|
|
2666
|
-
readonly project_name: string;
|
|
2665
|
+
readonly project_uuid: string | null;
|
|
2666
|
+
readonly project_name: string | null;
|
|
2667
2667
|
resource?: string;
|
|
2668
2668
|
readonly resource_type: string;
|
|
2669
2669
|
readonly resource_name: string;
|
|
@@ -4654,7 +4654,7 @@ export type OpenStackNestedFloatingIp = {
|
|
|
4654
4654
|
readonly uuid?: string;
|
|
4655
4655
|
readonly address?: string | null;
|
|
4656
4656
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
4657
|
-
readonly port_mac_address?: string;
|
|
4657
|
+
readonly port_mac_address?: string | null;
|
|
4658
4658
|
subnet?: string;
|
|
4659
4659
|
readonly subnet_uuid?: string;
|
|
4660
4660
|
readonly subnet_name?: string;
|
|
@@ -4673,10 +4673,10 @@ export type OpenStackNestedPort = {
|
|
|
4673
4673
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
4674
4674
|
readonly mac_address?: string;
|
|
4675
4675
|
subnet?: string | null;
|
|
4676
|
-
readonly subnet_uuid?: string;
|
|
4677
|
-
readonly subnet_name?: string;
|
|
4678
|
-
readonly subnet_description?: string;
|
|
4679
|
-
readonly subnet_cidr?: string;
|
|
4676
|
+
readonly subnet_uuid?: string | null;
|
|
4677
|
+
readonly subnet_name?: string | null;
|
|
4678
|
+
readonly subnet_description?: string | null;
|
|
4679
|
+
readonly subnet_cidr?: string | null;
|
|
4680
4680
|
readonly allowed_address_pairs?: Array<OpenStackAllowedAddressPair>;
|
|
4681
4681
|
readonly device_id?: string | null;
|
|
4682
4682
|
readonly device_owner?: string | null;
|
|
@@ -5444,10 +5444,10 @@ export type OrderCreate = {
|
|
|
5444
5444
|
readonly category_uuid: string;
|
|
5445
5445
|
readonly category_icon: string;
|
|
5446
5446
|
plan?: string;
|
|
5447
|
-
plan_unit: BillingUnit;
|
|
5448
|
-
readonly plan_name: string;
|
|
5449
|
-
readonly plan_uuid: string;
|
|
5450
|
-
readonly plan_description: string;
|
|
5447
|
+
plan_unit: BillingUnit | null;
|
|
5448
|
+
readonly plan_name: string | null;
|
|
5449
|
+
readonly plan_uuid: string | null;
|
|
5450
|
+
readonly plan_description: string | null;
|
|
5451
5451
|
attributes?: unknown;
|
|
5452
5452
|
limits?: {
|
|
5453
5453
|
[key: string]: number;
|
|
@@ -5527,10 +5527,10 @@ export type OrderDetails = {
|
|
|
5527
5527
|
readonly category_uuid?: string;
|
|
5528
5528
|
readonly category_icon?: string;
|
|
5529
5529
|
plan?: string;
|
|
5530
|
-
plan_unit?: BillingUnit;
|
|
5531
|
-
readonly plan_name?: string;
|
|
5532
|
-
readonly plan_uuid?: string;
|
|
5533
|
-
readonly plan_description?: string;
|
|
5530
|
+
plan_unit?: BillingUnit | null;
|
|
5531
|
+
readonly plan_name?: string | null;
|
|
5532
|
+
readonly plan_uuid?: string | null;
|
|
5533
|
+
readonly plan_description?: string | null;
|
|
5534
5534
|
/**
|
|
5535
5535
|
* Get attributes excluding secret attributes, such as username and password.
|
|
5536
5536
|
*/
|
|
@@ -6495,8 +6495,8 @@ export type Project = {
|
|
|
6495
6495
|
description?: string;
|
|
6496
6496
|
readonly created?: string;
|
|
6497
6497
|
type?: string | null;
|
|
6498
|
-
readonly type_name?: string;
|
|
6499
|
-
readonly type_uuid?: string;
|
|
6498
|
+
readonly type_name?: string | null;
|
|
6499
|
+
readonly type_uuid?: string | null;
|
|
6500
6500
|
backend_id?: string;
|
|
6501
6501
|
start_date?: string | null;
|
|
6502
6502
|
/**
|
|
@@ -6583,11 +6583,11 @@ export type ProjectPermissionLog = {
|
|
|
6583
6583
|
readonly created?: string;
|
|
6584
6584
|
expiration_time?: string | null;
|
|
6585
6585
|
readonly created_by?: string | null;
|
|
6586
|
-
readonly created_by_full_name?: string;
|
|
6586
|
+
readonly created_by_full_name?: string | null;
|
|
6587
6587
|
/**
|
|
6588
6588
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
6589
6589
|
*/
|
|
6590
|
-
readonly created_by_username?: string;
|
|
6590
|
+
readonly created_by_username?: string | null;
|
|
6591
6591
|
readonly project?: string;
|
|
6592
6592
|
readonly project_uuid?: string;
|
|
6593
6593
|
readonly project_name?: string;
|
|
@@ -8011,10 +8011,10 @@ export type Resource = {
|
|
|
8011
8011
|
readonly category_uuid?: string;
|
|
8012
8012
|
readonly category_icon?: string;
|
|
8013
8013
|
plan?: string;
|
|
8014
|
-
plan_unit?: BillingUnit;
|
|
8015
|
-
readonly plan_name?: string;
|
|
8016
|
-
readonly plan_uuid?: string;
|
|
8017
|
-
readonly plan_description?: string;
|
|
8014
|
+
plan_unit?: BillingUnit | null;
|
|
8015
|
+
readonly plan_name?: string | null;
|
|
8016
|
+
readonly plan_uuid?: string | null;
|
|
8017
|
+
readonly plan_description?: string | null;
|
|
8018
8018
|
readonly attributes?: {};
|
|
8019
8019
|
readonly limits?: {
|
|
8020
8020
|
[key: string]: number;
|
|
@@ -8550,7 +8550,7 @@ export type ServiceSettings = {
|
|
|
8550
8550
|
*/
|
|
8551
8551
|
shared?: boolean;
|
|
8552
8552
|
customer?: string | null;
|
|
8553
|
-
readonly customer_name?: string;
|
|
8553
|
+
readonly customer_name?: string | null;
|
|
8554
8554
|
readonly customer_native_name?: string;
|
|
8555
8555
|
terms_of_services?: string;
|
|
8556
8556
|
scope?: string | null;
|