waldur-js-client 1.0.4-dev.47 → 1.0.4-dev.49
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 +57 -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;
|
|
@@ -3199,6 +3199,10 @@ export type MergedSecretOptions = {
|
|
|
3199
3199
|
*/
|
|
3200
3200
|
ipv4_external_ip_mapping?: Array<IpMapping>;
|
|
3201
3201
|
openstack_api_tls_certificate?: string;
|
|
3202
|
+
/**
|
|
3203
|
+
* Default value for new subnets DNS name servers. Should be defined as list.
|
|
3204
|
+
*/
|
|
3205
|
+
dns_nameservers?: Array<string>;
|
|
3202
3206
|
/**
|
|
3203
3207
|
* GLAuth shared user password
|
|
3204
3208
|
*/
|
|
@@ -3299,6 +3303,10 @@ export type MergedSecretOptions = {
|
|
|
3299
3303
|
* Kubeconfig with access to namespace where ArgoCD is deployed
|
|
3300
3304
|
*/
|
|
3301
3305
|
argocd_k8s_kubeconfig?: string;
|
|
3306
|
+
/**
|
|
3307
|
+
* Base image name
|
|
3308
|
+
*/
|
|
3309
|
+
base_image_name?: string;
|
|
3302
3310
|
};
|
|
3303
3311
|
export type MergedSecretOptionsRequest = {
|
|
3304
3312
|
/**
|
|
@@ -3314,6 +3322,10 @@ export type MergedSecretOptionsRequest = {
|
|
|
3314
3322
|
*/
|
|
3315
3323
|
ipv4_external_ip_mapping?: Array<IpMappingRequest>;
|
|
3316
3324
|
openstack_api_tls_certificate?: string;
|
|
3325
|
+
/**
|
|
3326
|
+
* Default value for new subnets DNS name servers. Should be defined as list.
|
|
3327
|
+
*/
|
|
3328
|
+
dns_nameservers?: Array<string>;
|
|
3317
3329
|
/**
|
|
3318
3330
|
* GLAuth shared user password
|
|
3319
3331
|
*/
|
|
@@ -3414,6 +3426,10 @@ export type MergedSecretOptionsRequest = {
|
|
|
3414
3426
|
* Kubeconfig with access to namespace where ArgoCD is deployed
|
|
3415
3427
|
*/
|
|
3416
3428
|
argocd_k8s_kubeconfig?: string;
|
|
3429
|
+
/**
|
|
3430
|
+
* Base image name
|
|
3431
|
+
*/
|
|
3432
|
+
base_image_name?: string;
|
|
3417
3433
|
};
|
|
3418
3434
|
export type MessageTemplate = {
|
|
3419
3435
|
readonly url: string;
|
|
@@ -4654,7 +4670,7 @@ export type OpenStackNestedFloatingIp = {
|
|
|
4654
4670
|
readonly uuid?: string;
|
|
4655
4671
|
readonly address?: string | null;
|
|
4656
4672
|
readonly port_fixed_ips?: Array<OpenStackFixedIp>;
|
|
4657
|
-
readonly port_mac_address?: string;
|
|
4673
|
+
readonly port_mac_address?: string | null;
|
|
4658
4674
|
subnet?: string;
|
|
4659
4675
|
readonly subnet_uuid?: string;
|
|
4660
4676
|
readonly subnet_name?: string;
|
|
@@ -4673,10 +4689,10 @@ export type OpenStackNestedPort = {
|
|
|
4673
4689
|
fixed_ips?: Array<OpenStackFixedIp>;
|
|
4674
4690
|
readonly mac_address?: string;
|
|
4675
4691
|
subnet?: string | null;
|
|
4676
|
-
readonly subnet_uuid?: string;
|
|
4677
|
-
readonly subnet_name?: string;
|
|
4678
|
-
readonly subnet_description?: string;
|
|
4679
|
-
readonly subnet_cidr?: string;
|
|
4692
|
+
readonly subnet_uuid?: string | null;
|
|
4693
|
+
readonly subnet_name?: string | null;
|
|
4694
|
+
readonly subnet_description?: string | null;
|
|
4695
|
+
readonly subnet_cidr?: string | null;
|
|
4680
4696
|
readonly allowed_address_pairs?: Array<OpenStackAllowedAddressPair>;
|
|
4681
4697
|
readonly device_id?: string | null;
|
|
4682
4698
|
readonly device_owner?: string | null;
|
|
@@ -5444,10 +5460,10 @@ export type OrderCreate = {
|
|
|
5444
5460
|
readonly category_uuid: string;
|
|
5445
5461
|
readonly category_icon: string;
|
|
5446
5462
|
plan?: string;
|
|
5447
|
-
plan_unit: BillingUnit;
|
|
5448
|
-
readonly plan_name: string;
|
|
5449
|
-
readonly plan_uuid: string;
|
|
5450
|
-
readonly plan_description: string;
|
|
5463
|
+
plan_unit: BillingUnit | null;
|
|
5464
|
+
readonly plan_name: string | null;
|
|
5465
|
+
readonly plan_uuid: string | null;
|
|
5466
|
+
readonly plan_description: string | null;
|
|
5451
5467
|
attributes?: unknown;
|
|
5452
5468
|
limits?: {
|
|
5453
5469
|
[key: string]: number;
|
|
@@ -5527,10 +5543,10 @@ export type OrderDetails = {
|
|
|
5527
5543
|
readonly category_uuid?: string;
|
|
5528
5544
|
readonly category_icon?: string;
|
|
5529
5545
|
plan?: string;
|
|
5530
|
-
plan_unit?: BillingUnit;
|
|
5531
|
-
readonly plan_name?: string;
|
|
5532
|
-
readonly plan_uuid?: string;
|
|
5533
|
-
readonly plan_description?: string;
|
|
5546
|
+
plan_unit?: BillingUnit | null;
|
|
5547
|
+
readonly plan_name?: string | null;
|
|
5548
|
+
readonly plan_uuid?: string | null;
|
|
5549
|
+
readonly plan_description?: string | null;
|
|
5534
5550
|
/**
|
|
5535
5551
|
* Get attributes excluding secret attributes, such as username and password.
|
|
5536
5552
|
*/
|
|
@@ -6495,8 +6511,8 @@ export type Project = {
|
|
|
6495
6511
|
description?: string;
|
|
6496
6512
|
readonly created?: string;
|
|
6497
6513
|
type?: string | null;
|
|
6498
|
-
readonly type_name?: string;
|
|
6499
|
-
readonly type_uuid?: string;
|
|
6514
|
+
readonly type_name?: string | null;
|
|
6515
|
+
readonly type_uuid?: string | null;
|
|
6500
6516
|
backend_id?: string;
|
|
6501
6517
|
start_date?: string | null;
|
|
6502
6518
|
/**
|
|
@@ -6583,11 +6599,11 @@ export type ProjectPermissionLog = {
|
|
|
6583
6599
|
readonly created?: string;
|
|
6584
6600
|
expiration_time?: string | null;
|
|
6585
6601
|
readonly created_by?: string | null;
|
|
6586
|
-
readonly created_by_full_name?: string;
|
|
6602
|
+
readonly created_by_full_name?: string | null;
|
|
6587
6603
|
/**
|
|
6588
6604
|
* Required. 128 characters or fewer. Lowercase letters, numbers and @/./+/-/_ characters
|
|
6589
6605
|
*/
|
|
6590
|
-
readonly created_by_username?: string;
|
|
6606
|
+
readonly created_by_username?: string | null;
|
|
6591
6607
|
readonly project?: string;
|
|
6592
6608
|
readonly project_uuid?: string;
|
|
6593
6609
|
readonly project_name?: string;
|
|
@@ -8011,10 +8027,10 @@ export type Resource = {
|
|
|
8011
8027
|
readonly category_uuid?: string;
|
|
8012
8028
|
readonly category_icon?: string;
|
|
8013
8029
|
plan?: string;
|
|
8014
|
-
plan_unit?: BillingUnit;
|
|
8015
|
-
readonly plan_name?: string;
|
|
8016
|
-
readonly plan_uuid?: string;
|
|
8017
|
-
readonly plan_description?: string;
|
|
8030
|
+
plan_unit?: BillingUnit | null;
|
|
8031
|
+
readonly plan_name?: string | null;
|
|
8032
|
+
readonly plan_uuid?: string | null;
|
|
8033
|
+
readonly plan_description?: string | null;
|
|
8018
8034
|
readonly attributes?: {};
|
|
8019
8035
|
readonly limits?: {
|
|
8020
8036
|
[key: string]: number;
|
|
@@ -8550,7 +8566,7 @@ export type ServiceSettings = {
|
|
|
8550
8566
|
*/
|
|
8551
8567
|
shared?: boolean;
|
|
8552
8568
|
customer?: string | null;
|
|
8553
|
-
readonly customer_name?: string;
|
|
8569
|
+
readonly customer_name?: string | null;
|
|
8554
8570
|
readonly customer_native_name?: string;
|
|
8555
8571
|
terms_of_services?: string;
|
|
8556
8572
|
scope?: string | null;
|
|
@@ -24471,6 +24487,7 @@ export type ProposalReviewsListData = {
|
|
|
24471
24487
|
*/
|
|
24472
24488
|
page_size?: number;
|
|
24473
24489
|
proposal?: string;
|
|
24490
|
+
proposal_name?: string;
|
|
24474
24491
|
proposal_uuid?: string;
|
|
24475
24492
|
reviewer_uuid?: string;
|
|
24476
24493
|
state?: Array<'created' | 'in_review' | 'rejected' | 'submitted'>;
|