waldur-js-client 1.0.4-dev.48 → 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 +17 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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;
|
|
@@ -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'>;
|