qovery-typescript-axios 1.1.971 → 1.1.972
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/api.ts +278 -61
- package/dist/api.d.ts +280 -59
- package/dist/api.js +32 -18
- package/dist/esm/api.d.ts +280 -59
- package/dist/esm/api.js +19 -5
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -3052,6 +3052,81 @@ export interface ArgocdManagedResource {
|
|
|
3052
3052
|
*/
|
|
3053
3053
|
'liveState'?: string;
|
|
3054
3054
|
}
|
|
3055
|
+
/**
|
|
3056
|
+
*
|
|
3057
|
+
* @export
|
|
3058
|
+
* @interface ArrayFieldSchemaResponse
|
|
3059
|
+
*/
|
|
3060
|
+
export interface ArrayFieldSchemaResponse {
|
|
3061
|
+
/**
|
|
3062
|
+
*
|
|
3063
|
+
* @type {string}
|
|
3064
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3065
|
+
*/
|
|
3066
|
+
'key': string;
|
|
3067
|
+
/**
|
|
3068
|
+
*
|
|
3069
|
+
* @type {string}
|
|
3070
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3071
|
+
*/
|
|
3072
|
+
'type': ArrayFieldSchemaResponseTypeEnum;
|
|
3073
|
+
/**
|
|
3074
|
+
*
|
|
3075
|
+
* @type {boolean}
|
|
3076
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3077
|
+
*/
|
|
3078
|
+
'required': boolean;
|
|
3079
|
+
/**
|
|
3080
|
+
*
|
|
3081
|
+
* @type {string}
|
|
3082
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3083
|
+
*/
|
|
3084
|
+
'label': string;
|
|
3085
|
+
/**
|
|
3086
|
+
*
|
|
3087
|
+
* @type {string}
|
|
3088
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3089
|
+
*/
|
|
3090
|
+
'description'?: string | null;
|
|
3091
|
+
/**
|
|
3092
|
+
*
|
|
3093
|
+
* @type {boolean}
|
|
3094
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3095
|
+
*/
|
|
3096
|
+
'sensitive': boolean;
|
|
3097
|
+
/**
|
|
3098
|
+
*
|
|
3099
|
+
* @type {CollectionConstraintsResponse}
|
|
3100
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3101
|
+
*/
|
|
3102
|
+
'constraints': CollectionConstraintsResponse;
|
|
3103
|
+
/**
|
|
3104
|
+
*
|
|
3105
|
+
* @type {ArrayItemResponse}
|
|
3106
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3107
|
+
*/
|
|
3108
|
+
'items': ArrayItemResponse;
|
|
3109
|
+
/**
|
|
3110
|
+
* Evaluated field descriptors for each object item, in the same order as the configuration array. Use these row-specific descriptors when available; items.fields describes an object\'s fields before per-item evaluation. Omitted when unavailable, including scalar arrays. An evaluated empty object array has an empty itemFields array.
|
|
3111
|
+
* @type {Array<Array<FieldSchemaResponse>>}
|
|
3112
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3113
|
+
*/
|
|
3114
|
+
'itemFields'?: Array<Array<FieldSchemaResponse>>;
|
|
3115
|
+
}
|
|
3116
|
+
|
|
3117
|
+
export const ArrayFieldSchemaResponseTypeEnum = {
|
|
3118
|
+
ARRAY: 'array'
|
|
3119
|
+
} as const;
|
|
3120
|
+
|
|
3121
|
+
export type ArrayFieldSchemaResponseTypeEnum = typeof ArrayFieldSchemaResponseTypeEnum[keyof typeof ArrayFieldSchemaResponseTypeEnum];
|
|
3122
|
+
|
|
3123
|
+
/**
|
|
3124
|
+
* @type ArrayItemResponse
|
|
3125
|
+
* Descriptor for an array element. Elements are scalars or objects; an object\'s fields can themselves contain arrays.
|
|
3126
|
+
* @export
|
|
3127
|
+
*/
|
|
3128
|
+
export type ArrayItemResponse = { type: 'bool' } & ScalarArrayItemResponse | { type: 'number' } & ScalarArrayItemResponse | { type: 'object' } & ObjectArrayItemResponse | { type: 'string' } & ScalarArrayItemResponse;
|
|
3129
|
+
|
|
3055
3130
|
/**
|
|
3056
3131
|
*
|
|
3057
3132
|
* @export
|
|
@@ -9028,6 +9103,31 @@ export interface ClusterStatusResponseList {
|
|
|
9028
9103
|
*/
|
|
9029
9104
|
'results'?: Array<ClusterStatus>;
|
|
9030
9105
|
}
|
|
9106
|
+
/**
|
|
9107
|
+
*
|
|
9108
|
+
* @export
|
|
9109
|
+
* @interface CollectionConstraintsResponse
|
|
9110
|
+
*/
|
|
9111
|
+
export interface CollectionConstraintsResponse {
|
|
9112
|
+
/**
|
|
9113
|
+
*
|
|
9114
|
+
* @type {number}
|
|
9115
|
+
* @memberof CollectionConstraintsResponse
|
|
9116
|
+
*/
|
|
9117
|
+
'minItems'?: number | null;
|
|
9118
|
+
/**
|
|
9119
|
+
*
|
|
9120
|
+
* @type {number}
|
|
9121
|
+
* @memberof CollectionConstraintsResponse
|
|
9122
|
+
*/
|
|
9123
|
+
'maxItems'?: number | null;
|
|
9124
|
+
/**
|
|
9125
|
+
*
|
|
9126
|
+
* @type {boolean}
|
|
9127
|
+
* @memberof CollectionConstraintsResponse
|
|
9128
|
+
*/
|
|
9129
|
+
'uniqueItems': boolean;
|
|
9130
|
+
}
|
|
9031
9131
|
/**
|
|
9032
9132
|
*
|
|
9033
9133
|
* @export
|
|
@@ -14907,68 +15007,11 @@ export interface FieldSchemaConstraintsResponse {
|
|
|
14907
15007
|
'pattern'?: string | null;
|
|
14908
15008
|
}
|
|
14909
15009
|
/**
|
|
14910
|
-
*
|
|
15010
|
+
* @type FieldSchemaResponse
|
|
15011
|
+
* Generic catalog field descriptor matching the shared q-core field response. Scalar fields retain their existing shape; objects and arrays describe nested configuration without flattening its values. Blueprint keeps its existing BlueprintManifestVariableField response contract through a dedicated adapter.
|
|
14911
15012
|
* @export
|
|
14912
|
-
* @interface FieldSchemaResponse
|
|
14913
15013
|
*/
|
|
14914
|
-
export
|
|
14915
|
-
/**
|
|
14916
|
-
*
|
|
14917
|
-
* @type {string}
|
|
14918
|
-
* @memberof FieldSchemaResponse
|
|
14919
|
-
*/
|
|
14920
|
-
'key': string;
|
|
14921
|
-
/**
|
|
14922
|
-
* Field type understood by the Console.
|
|
14923
|
-
* @type {string}
|
|
14924
|
-
* @memberof FieldSchemaResponse
|
|
14925
|
-
*/
|
|
14926
|
-
'type': FieldSchemaResponseTypeEnum;
|
|
14927
|
-
/**
|
|
14928
|
-
*
|
|
14929
|
-
* @type {boolean}
|
|
14930
|
-
* @memberof FieldSchemaResponse
|
|
14931
|
-
*/
|
|
14932
|
-
'required': boolean;
|
|
14933
|
-
/**
|
|
14934
|
-
*
|
|
14935
|
-
* @type {string}
|
|
14936
|
-
* @memberof FieldSchemaResponse
|
|
14937
|
-
*/
|
|
14938
|
-
'defaultValue'?: string | null;
|
|
14939
|
-
/**
|
|
14940
|
-
*
|
|
14941
|
-
* @type {string}
|
|
14942
|
-
* @memberof FieldSchemaResponse
|
|
14943
|
-
*/
|
|
14944
|
-
'label': string;
|
|
14945
|
-
/**
|
|
14946
|
-
*
|
|
14947
|
-
* @type {string}
|
|
14948
|
-
* @memberof FieldSchemaResponse
|
|
14949
|
-
*/
|
|
14950
|
-
'description'?: string | null;
|
|
14951
|
-
/**
|
|
14952
|
-
*
|
|
14953
|
-
* @type {boolean}
|
|
14954
|
-
* @memberof FieldSchemaResponse
|
|
14955
|
-
*/
|
|
14956
|
-
'sensitive': boolean;
|
|
14957
|
-
/**
|
|
14958
|
-
*
|
|
14959
|
-
* @type {FieldSchemaConstraintsResponse}
|
|
14960
|
-
* @memberof FieldSchemaResponse
|
|
14961
|
-
*/
|
|
14962
|
-
'constraints': FieldSchemaConstraintsResponse;
|
|
14963
|
-
}
|
|
14964
|
-
|
|
14965
|
-
export const FieldSchemaResponseTypeEnum = {
|
|
14966
|
-
STRING: 'string',
|
|
14967
|
-
NUMBER: 'number',
|
|
14968
|
-
BOOL: 'bool'
|
|
14969
|
-
} as const;
|
|
14970
|
-
|
|
14971
|
-
export type FieldSchemaResponseTypeEnum = typeof FieldSchemaResponseTypeEnum[keyof typeof FieldSchemaResponseTypeEnum];
|
|
15014
|
+
export type FieldSchemaResponse = { type: 'array' } & ArrayFieldSchemaResponse | { type: 'bool' } & ScalarFieldSchemaResponse | { type: 'number' } & ScalarFieldSchemaResponse | { type: 'object' } & ObjectFieldSchemaResponse | { type: 'string' } & ScalarFieldSchemaResponse;
|
|
14972
15015
|
|
|
14973
15016
|
/**
|
|
14974
15017
|
* @type GcpCredentialsRequest
|
|
@@ -20370,6 +20413,88 @@ export interface MetricsParameters {
|
|
|
20370
20413
|
*/
|
|
20371
20414
|
export type MetricsParametersConfiguration = { kind: 'MANAGED_BY_QOVERY' } & MetricsConfigurationManagedByQovery;
|
|
20372
20415
|
|
|
20416
|
+
/**
|
|
20417
|
+
*
|
|
20418
|
+
* @export
|
|
20419
|
+
* @interface ObjectArrayItemResponse
|
|
20420
|
+
*/
|
|
20421
|
+
export interface ObjectArrayItemResponse {
|
|
20422
|
+
/**
|
|
20423
|
+
*
|
|
20424
|
+
* @type {string}
|
|
20425
|
+
* @memberof ObjectArrayItemResponse
|
|
20426
|
+
*/
|
|
20427
|
+
'type': ObjectArrayItemResponseTypeEnum;
|
|
20428
|
+
/**
|
|
20429
|
+
*
|
|
20430
|
+
* @type {Array<FieldSchemaResponse>}
|
|
20431
|
+
* @memberof ObjectArrayItemResponse
|
|
20432
|
+
*/
|
|
20433
|
+
'fields': Array<FieldSchemaResponse>;
|
|
20434
|
+
}
|
|
20435
|
+
|
|
20436
|
+
export const ObjectArrayItemResponseTypeEnum = {
|
|
20437
|
+
OBJECT: 'object'
|
|
20438
|
+
} as const;
|
|
20439
|
+
|
|
20440
|
+
export type ObjectArrayItemResponseTypeEnum = typeof ObjectArrayItemResponseTypeEnum[keyof typeof ObjectArrayItemResponseTypeEnum];
|
|
20441
|
+
|
|
20442
|
+
/**
|
|
20443
|
+
*
|
|
20444
|
+
* @export
|
|
20445
|
+
* @interface ObjectFieldSchemaResponse
|
|
20446
|
+
*/
|
|
20447
|
+
export interface ObjectFieldSchemaResponse {
|
|
20448
|
+
/**
|
|
20449
|
+
*
|
|
20450
|
+
* @type {string}
|
|
20451
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20452
|
+
*/
|
|
20453
|
+
'key': string;
|
|
20454
|
+
/**
|
|
20455
|
+
*
|
|
20456
|
+
* @type {string}
|
|
20457
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20458
|
+
*/
|
|
20459
|
+
'type': ObjectFieldSchemaResponseTypeEnum;
|
|
20460
|
+
/**
|
|
20461
|
+
*
|
|
20462
|
+
* @type {boolean}
|
|
20463
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20464
|
+
*/
|
|
20465
|
+
'required': boolean;
|
|
20466
|
+
/**
|
|
20467
|
+
*
|
|
20468
|
+
* @type {string}
|
|
20469
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20470
|
+
*/
|
|
20471
|
+
'label': string;
|
|
20472
|
+
/**
|
|
20473
|
+
*
|
|
20474
|
+
* @type {string}
|
|
20475
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20476
|
+
*/
|
|
20477
|
+
'description'?: string | null;
|
|
20478
|
+
/**
|
|
20479
|
+
*
|
|
20480
|
+
* @type {boolean}
|
|
20481
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20482
|
+
*/
|
|
20483
|
+
'sensitive': boolean;
|
|
20484
|
+
/**
|
|
20485
|
+
* Nested field descriptors for this object\'s properties.
|
|
20486
|
+
* @type {Array<FieldSchemaResponse>}
|
|
20487
|
+
* @memberof ObjectFieldSchemaResponse
|
|
20488
|
+
*/
|
|
20489
|
+
'fields': Array<FieldSchemaResponse>;
|
|
20490
|
+
}
|
|
20491
|
+
|
|
20492
|
+
export const ObjectFieldSchemaResponseTypeEnum = {
|
|
20493
|
+
OBJECT: 'object'
|
|
20494
|
+
} as const;
|
|
20495
|
+
|
|
20496
|
+
export type ObjectFieldSchemaResponseTypeEnum = typeof ObjectFieldSchemaResponseTypeEnum[keyof typeof ObjectFieldSchemaResponseTypeEnum];
|
|
20497
|
+
|
|
20373
20498
|
/**
|
|
20374
20499
|
*
|
|
20375
20500
|
* @export
|
|
@@ -22820,7 +22945,7 @@ export interface PlatformComponentConfigurationViolationResponse {
|
|
|
22820
22945
|
'message': string;
|
|
22821
22946
|
}
|
|
22822
22947
|
/**
|
|
22823
|
-
* A catalog field the cluster must provide for the selected configuration: the
|
|
22948
|
+
* A catalog field the cluster must provide for the selected configuration: the scalar field descriptor extended with its resolution scope and readiness. Input requirements cannot be object or array descriptors.
|
|
22824
22949
|
* @export
|
|
22825
22950
|
* @interface PlatformComponentInputRequirementResponse
|
|
22826
22951
|
*/
|
|
@@ -24345,6 +24470,98 @@ export const Route53StaticCredentialsResponseTypeEnum = {
|
|
|
24345
24470
|
|
|
24346
24471
|
export type Route53StaticCredentialsResponseTypeEnum = typeof Route53StaticCredentialsResponseTypeEnum[keyof typeof Route53StaticCredentialsResponseTypeEnum];
|
|
24347
24472
|
|
|
24473
|
+
/**
|
|
24474
|
+
*
|
|
24475
|
+
* @export
|
|
24476
|
+
* @interface ScalarArrayItemResponse
|
|
24477
|
+
*/
|
|
24478
|
+
export interface ScalarArrayItemResponse {
|
|
24479
|
+
/**
|
|
24480
|
+
*
|
|
24481
|
+
* @type {string}
|
|
24482
|
+
* @memberof ScalarArrayItemResponse
|
|
24483
|
+
*/
|
|
24484
|
+
'type': ScalarArrayItemResponseTypeEnum;
|
|
24485
|
+
/**
|
|
24486
|
+
*
|
|
24487
|
+
* @type {FieldSchemaConstraintsResponse}
|
|
24488
|
+
* @memberof ScalarArrayItemResponse
|
|
24489
|
+
*/
|
|
24490
|
+
'constraints': FieldSchemaConstraintsResponse;
|
|
24491
|
+
}
|
|
24492
|
+
|
|
24493
|
+
export const ScalarArrayItemResponseTypeEnum = {
|
|
24494
|
+
STRING: 'string',
|
|
24495
|
+
NUMBER: 'number',
|
|
24496
|
+
BOOL: 'bool'
|
|
24497
|
+
} as const;
|
|
24498
|
+
|
|
24499
|
+
export type ScalarArrayItemResponseTypeEnum = typeof ScalarArrayItemResponseTypeEnum[keyof typeof ScalarArrayItemResponseTypeEnum];
|
|
24500
|
+
|
|
24501
|
+
/**
|
|
24502
|
+
* Scalar catalog field descriptor, also used for platform cluster input requirements. FieldSchemaResponse is the union of scalar, object and array descriptors.
|
|
24503
|
+
* @export
|
|
24504
|
+
* @interface ScalarFieldSchemaResponse
|
|
24505
|
+
*/
|
|
24506
|
+
export interface ScalarFieldSchemaResponse {
|
|
24507
|
+
/**
|
|
24508
|
+
*
|
|
24509
|
+
* @type {string}
|
|
24510
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24511
|
+
*/
|
|
24512
|
+
'key': string;
|
|
24513
|
+
/**
|
|
24514
|
+
* Field type understood by the Console.
|
|
24515
|
+
* @type {string}
|
|
24516
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24517
|
+
*/
|
|
24518
|
+
'type': ScalarFieldSchemaResponseTypeEnum;
|
|
24519
|
+
/**
|
|
24520
|
+
*
|
|
24521
|
+
* @type {boolean}
|
|
24522
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24523
|
+
*/
|
|
24524
|
+
'required': boolean;
|
|
24525
|
+
/**
|
|
24526
|
+
*
|
|
24527
|
+
* @type {string}
|
|
24528
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24529
|
+
*/
|
|
24530
|
+
'defaultValue'?: string | null;
|
|
24531
|
+
/**
|
|
24532
|
+
*
|
|
24533
|
+
* @type {string}
|
|
24534
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24535
|
+
*/
|
|
24536
|
+
'label': string;
|
|
24537
|
+
/**
|
|
24538
|
+
*
|
|
24539
|
+
* @type {string}
|
|
24540
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24541
|
+
*/
|
|
24542
|
+
'description'?: string | null;
|
|
24543
|
+
/**
|
|
24544
|
+
*
|
|
24545
|
+
* @type {boolean}
|
|
24546
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24547
|
+
*/
|
|
24548
|
+
'sensitive': boolean;
|
|
24549
|
+
/**
|
|
24550
|
+
*
|
|
24551
|
+
* @type {FieldSchemaConstraintsResponse}
|
|
24552
|
+
* @memberof ScalarFieldSchemaResponse
|
|
24553
|
+
*/
|
|
24554
|
+
'constraints': FieldSchemaConstraintsResponse;
|
|
24555
|
+
}
|
|
24556
|
+
|
|
24557
|
+
export const ScalarFieldSchemaResponseTypeEnum = {
|
|
24558
|
+
STRING: 'string',
|
|
24559
|
+
NUMBER: 'number',
|
|
24560
|
+
BOOL: 'bool'
|
|
24561
|
+
} as const;
|
|
24562
|
+
|
|
24563
|
+
export type ScalarFieldSchemaResponseTypeEnum = typeof ScalarFieldSchemaResponseTypeEnum[keyof typeof ScalarFieldSchemaResponseTypeEnum];
|
|
24564
|
+
|
|
24348
24565
|
/**
|
|
24349
24566
|
*
|
|
24350
24567
|
* @export
|
package/dist/api.d.ts
CHANGED
|
@@ -2941,6 +2941,85 @@ export interface ArgocdManagedResource {
|
|
|
2941
2941
|
*/
|
|
2942
2942
|
'liveState'?: string;
|
|
2943
2943
|
}
|
|
2944
|
+
/**
|
|
2945
|
+
*
|
|
2946
|
+
* @export
|
|
2947
|
+
* @interface ArrayFieldSchemaResponse
|
|
2948
|
+
*/
|
|
2949
|
+
export interface ArrayFieldSchemaResponse {
|
|
2950
|
+
/**
|
|
2951
|
+
*
|
|
2952
|
+
* @type {string}
|
|
2953
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2954
|
+
*/
|
|
2955
|
+
'key': string;
|
|
2956
|
+
/**
|
|
2957
|
+
*
|
|
2958
|
+
* @type {string}
|
|
2959
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2960
|
+
*/
|
|
2961
|
+
'type': ArrayFieldSchemaResponseTypeEnum;
|
|
2962
|
+
/**
|
|
2963
|
+
*
|
|
2964
|
+
* @type {boolean}
|
|
2965
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2966
|
+
*/
|
|
2967
|
+
'required': boolean;
|
|
2968
|
+
/**
|
|
2969
|
+
*
|
|
2970
|
+
* @type {string}
|
|
2971
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2972
|
+
*/
|
|
2973
|
+
'label': string;
|
|
2974
|
+
/**
|
|
2975
|
+
*
|
|
2976
|
+
* @type {string}
|
|
2977
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2978
|
+
*/
|
|
2979
|
+
'description'?: string | null;
|
|
2980
|
+
/**
|
|
2981
|
+
*
|
|
2982
|
+
* @type {boolean}
|
|
2983
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2984
|
+
*/
|
|
2985
|
+
'sensitive': boolean;
|
|
2986
|
+
/**
|
|
2987
|
+
*
|
|
2988
|
+
* @type {CollectionConstraintsResponse}
|
|
2989
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2990
|
+
*/
|
|
2991
|
+
'constraints': CollectionConstraintsResponse;
|
|
2992
|
+
/**
|
|
2993
|
+
*
|
|
2994
|
+
* @type {ArrayItemResponse}
|
|
2995
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2996
|
+
*/
|
|
2997
|
+
'items': ArrayItemResponse;
|
|
2998
|
+
/**
|
|
2999
|
+
* Evaluated field descriptors for each object item, in the same order as the configuration array. Use these row-specific descriptors when available; items.fields describes an object\'s fields before per-item evaluation. Omitted when unavailable, including scalar arrays. An evaluated empty object array has an empty itemFields array.
|
|
3000
|
+
* @type {Array<Array<FieldSchemaResponse>>}
|
|
3001
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3002
|
+
*/
|
|
3003
|
+
'itemFields'?: Array<Array<FieldSchemaResponse>>;
|
|
3004
|
+
}
|
|
3005
|
+
export declare const ArrayFieldSchemaResponseTypeEnum: {
|
|
3006
|
+
readonly ARRAY: "array";
|
|
3007
|
+
};
|
|
3008
|
+
export type ArrayFieldSchemaResponseTypeEnum = typeof ArrayFieldSchemaResponseTypeEnum[keyof typeof ArrayFieldSchemaResponseTypeEnum];
|
|
3009
|
+
/**
|
|
3010
|
+
* @type ArrayItemResponse
|
|
3011
|
+
* Descriptor for an array element. Elements are scalars or objects; an object\'s fields can themselves contain arrays.
|
|
3012
|
+
* @export
|
|
3013
|
+
*/
|
|
3014
|
+
export type ArrayItemResponse = {
|
|
3015
|
+
type: 'bool';
|
|
3016
|
+
} & ScalarArrayItemResponse | {
|
|
3017
|
+
type: 'number';
|
|
3018
|
+
} & ScalarArrayItemResponse | {
|
|
3019
|
+
type: 'object';
|
|
3020
|
+
} & ObjectArrayItemResponse | {
|
|
3021
|
+
type: 'string';
|
|
3022
|
+
} & ScalarArrayItemResponse;
|
|
2944
3023
|
/**
|
|
2945
3024
|
*
|
|
2946
3025
|
* @export
|
|
@@ -8808,6 +8887,31 @@ export interface ClusterStatusResponseList {
|
|
|
8808
8887
|
*/
|
|
8809
8888
|
'results'?: Array<ClusterStatus>;
|
|
8810
8889
|
}
|
|
8890
|
+
/**
|
|
8891
|
+
*
|
|
8892
|
+
* @export
|
|
8893
|
+
* @interface CollectionConstraintsResponse
|
|
8894
|
+
*/
|
|
8895
|
+
export interface CollectionConstraintsResponse {
|
|
8896
|
+
/**
|
|
8897
|
+
*
|
|
8898
|
+
* @type {number}
|
|
8899
|
+
* @memberof CollectionConstraintsResponse
|
|
8900
|
+
*/
|
|
8901
|
+
'minItems'?: number | null;
|
|
8902
|
+
/**
|
|
8903
|
+
*
|
|
8904
|
+
* @type {number}
|
|
8905
|
+
* @memberof CollectionConstraintsResponse
|
|
8906
|
+
*/
|
|
8907
|
+
'maxItems'?: number | null;
|
|
8908
|
+
/**
|
|
8909
|
+
*
|
|
8910
|
+
* @type {boolean}
|
|
8911
|
+
* @memberof CollectionConstraintsResponse
|
|
8912
|
+
*/
|
|
8913
|
+
'uniqueItems': boolean;
|
|
8914
|
+
}
|
|
8811
8915
|
/**
|
|
8812
8916
|
*
|
|
8813
8917
|
* @export
|
|
@@ -14486,66 +14590,21 @@ export interface FieldSchemaConstraintsResponse {
|
|
|
14486
14590
|
'pattern'?: string | null;
|
|
14487
14591
|
}
|
|
14488
14592
|
/**
|
|
14489
|
-
*
|
|
14593
|
+
* @type FieldSchemaResponse
|
|
14594
|
+
* Generic catalog field descriptor matching the shared q-core field response. Scalar fields retain their existing shape; objects and arrays describe nested configuration without flattening its values. Blueprint keeps its existing BlueprintManifestVariableField response contract through a dedicated adapter.
|
|
14490
14595
|
* @export
|
|
14491
|
-
* @interface FieldSchemaResponse
|
|
14492
14596
|
*/
|
|
14493
|
-
export
|
|
14494
|
-
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
*/
|
|
14505
|
-
'type': FieldSchemaResponseTypeEnum;
|
|
14506
|
-
/**
|
|
14507
|
-
*
|
|
14508
|
-
* @type {boolean}
|
|
14509
|
-
* @memberof FieldSchemaResponse
|
|
14510
|
-
*/
|
|
14511
|
-
'required': boolean;
|
|
14512
|
-
/**
|
|
14513
|
-
*
|
|
14514
|
-
* @type {string}
|
|
14515
|
-
* @memberof FieldSchemaResponse
|
|
14516
|
-
*/
|
|
14517
|
-
'defaultValue'?: string | null;
|
|
14518
|
-
/**
|
|
14519
|
-
*
|
|
14520
|
-
* @type {string}
|
|
14521
|
-
* @memberof FieldSchemaResponse
|
|
14522
|
-
*/
|
|
14523
|
-
'label': string;
|
|
14524
|
-
/**
|
|
14525
|
-
*
|
|
14526
|
-
* @type {string}
|
|
14527
|
-
* @memberof FieldSchemaResponse
|
|
14528
|
-
*/
|
|
14529
|
-
'description'?: string | null;
|
|
14530
|
-
/**
|
|
14531
|
-
*
|
|
14532
|
-
* @type {boolean}
|
|
14533
|
-
* @memberof FieldSchemaResponse
|
|
14534
|
-
*/
|
|
14535
|
-
'sensitive': boolean;
|
|
14536
|
-
/**
|
|
14537
|
-
*
|
|
14538
|
-
* @type {FieldSchemaConstraintsResponse}
|
|
14539
|
-
* @memberof FieldSchemaResponse
|
|
14540
|
-
*/
|
|
14541
|
-
'constraints': FieldSchemaConstraintsResponse;
|
|
14542
|
-
}
|
|
14543
|
-
export declare const FieldSchemaResponseTypeEnum: {
|
|
14544
|
-
readonly STRING: "string";
|
|
14545
|
-
readonly NUMBER: "number";
|
|
14546
|
-
readonly BOOL: "bool";
|
|
14547
|
-
};
|
|
14548
|
-
export type FieldSchemaResponseTypeEnum = typeof FieldSchemaResponseTypeEnum[keyof typeof FieldSchemaResponseTypeEnum];
|
|
14597
|
+
export type FieldSchemaResponse = {
|
|
14598
|
+
type: 'array';
|
|
14599
|
+
} & ArrayFieldSchemaResponse | {
|
|
14600
|
+
type: 'bool';
|
|
14601
|
+
} & ScalarFieldSchemaResponse | {
|
|
14602
|
+
type: 'number';
|
|
14603
|
+
} & ScalarFieldSchemaResponse | {
|
|
14604
|
+
type: 'object';
|
|
14605
|
+
} & ObjectFieldSchemaResponse | {
|
|
14606
|
+
type: 'string';
|
|
14607
|
+
} & ScalarFieldSchemaResponse;
|
|
14549
14608
|
/**
|
|
14550
14609
|
* @type GcpCredentialsRequest
|
|
14551
14610
|
* @export
|
|
@@ -19791,6 +19850,82 @@ export interface MetricsParameters {
|
|
|
19791
19850
|
export type MetricsParametersConfiguration = {
|
|
19792
19851
|
kind: 'MANAGED_BY_QOVERY';
|
|
19793
19852
|
} & MetricsConfigurationManagedByQovery;
|
|
19853
|
+
/**
|
|
19854
|
+
*
|
|
19855
|
+
* @export
|
|
19856
|
+
* @interface ObjectArrayItemResponse
|
|
19857
|
+
*/
|
|
19858
|
+
export interface ObjectArrayItemResponse {
|
|
19859
|
+
/**
|
|
19860
|
+
*
|
|
19861
|
+
* @type {string}
|
|
19862
|
+
* @memberof ObjectArrayItemResponse
|
|
19863
|
+
*/
|
|
19864
|
+
'type': ObjectArrayItemResponseTypeEnum;
|
|
19865
|
+
/**
|
|
19866
|
+
*
|
|
19867
|
+
* @type {Array<FieldSchemaResponse>}
|
|
19868
|
+
* @memberof ObjectArrayItemResponse
|
|
19869
|
+
*/
|
|
19870
|
+
'fields': Array<FieldSchemaResponse>;
|
|
19871
|
+
}
|
|
19872
|
+
export declare const ObjectArrayItemResponseTypeEnum: {
|
|
19873
|
+
readonly OBJECT: "object";
|
|
19874
|
+
};
|
|
19875
|
+
export type ObjectArrayItemResponseTypeEnum = typeof ObjectArrayItemResponseTypeEnum[keyof typeof ObjectArrayItemResponseTypeEnum];
|
|
19876
|
+
/**
|
|
19877
|
+
*
|
|
19878
|
+
* @export
|
|
19879
|
+
* @interface ObjectFieldSchemaResponse
|
|
19880
|
+
*/
|
|
19881
|
+
export interface ObjectFieldSchemaResponse {
|
|
19882
|
+
/**
|
|
19883
|
+
*
|
|
19884
|
+
* @type {string}
|
|
19885
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19886
|
+
*/
|
|
19887
|
+
'key': string;
|
|
19888
|
+
/**
|
|
19889
|
+
*
|
|
19890
|
+
* @type {string}
|
|
19891
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19892
|
+
*/
|
|
19893
|
+
'type': ObjectFieldSchemaResponseTypeEnum;
|
|
19894
|
+
/**
|
|
19895
|
+
*
|
|
19896
|
+
* @type {boolean}
|
|
19897
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19898
|
+
*/
|
|
19899
|
+
'required': boolean;
|
|
19900
|
+
/**
|
|
19901
|
+
*
|
|
19902
|
+
* @type {string}
|
|
19903
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19904
|
+
*/
|
|
19905
|
+
'label': string;
|
|
19906
|
+
/**
|
|
19907
|
+
*
|
|
19908
|
+
* @type {string}
|
|
19909
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19910
|
+
*/
|
|
19911
|
+
'description'?: string | null;
|
|
19912
|
+
/**
|
|
19913
|
+
*
|
|
19914
|
+
* @type {boolean}
|
|
19915
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19916
|
+
*/
|
|
19917
|
+
'sensitive': boolean;
|
|
19918
|
+
/**
|
|
19919
|
+
* Nested field descriptors for this object\'s properties.
|
|
19920
|
+
* @type {Array<FieldSchemaResponse>}
|
|
19921
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19922
|
+
*/
|
|
19923
|
+
'fields': Array<FieldSchemaResponse>;
|
|
19924
|
+
}
|
|
19925
|
+
export declare const ObjectFieldSchemaResponseTypeEnum: {
|
|
19926
|
+
readonly OBJECT: "object";
|
|
19927
|
+
};
|
|
19928
|
+
export type ObjectFieldSchemaResponseTypeEnum = typeof ObjectFieldSchemaResponseTypeEnum[keyof typeof ObjectFieldSchemaResponseTypeEnum];
|
|
19794
19929
|
/**
|
|
19795
19930
|
*
|
|
19796
19931
|
* @export
|
|
@@ -22143,7 +22278,7 @@ export interface PlatformComponentConfigurationViolationResponse {
|
|
|
22143
22278
|
'message': string;
|
|
22144
22279
|
}
|
|
22145
22280
|
/**
|
|
22146
|
-
* A catalog field the cluster must provide for the selected configuration: the
|
|
22281
|
+
* A catalog field the cluster must provide for the selected configuration: the scalar field descriptor extended with its resolution scope and readiness. Input requirements cannot be object or array descriptors.
|
|
22147
22282
|
* @export
|
|
22148
22283
|
* @interface PlatformComponentInputRequirementResponse
|
|
22149
22284
|
*/
|
|
@@ -23598,6 +23733,92 @@ export declare const Route53StaticCredentialsResponseTypeEnum: {
|
|
|
23598
23733
|
readonly STATIC: "STATIC";
|
|
23599
23734
|
};
|
|
23600
23735
|
export type Route53StaticCredentialsResponseTypeEnum = typeof Route53StaticCredentialsResponseTypeEnum[keyof typeof Route53StaticCredentialsResponseTypeEnum];
|
|
23736
|
+
/**
|
|
23737
|
+
*
|
|
23738
|
+
* @export
|
|
23739
|
+
* @interface ScalarArrayItemResponse
|
|
23740
|
+
*/
|
|
23741
|
+
export interface ScalarArrayItemResponse {
|
|
23742
|
+
/**
|
|
23743
|
+
*
|
|
23744
|
+
* @type {string}
|
|
23745
|
+
* @memberof ScalarArrayItemResponse
|
|
23746
|
+
*/
|
|
23747
|
+
'type': ScalarArrayItemResponseTypeEnum;
|
|
23748
|
+
/**
|
|
23749
|
+
*
|
|
23750
|
+
* @type {FieldSchemaConstraintsResponse}
|
|
23751
|
+
* @memberof ScalarArrayItemResponse
|
|
23752
|
+
*/
|
|
23753
|
+
'constraints': FieldSchemaConstraintsResponse;
|
|
23754
|
+
}
|
|
23755
|
+
export declare const ScalarArrayItemResponseTypeEnum: {
|
|
23756
|
+
readonly STRING: "string";
|
|
23757
|
+
readonly NUMBER: "number";
|
|
23758
|
+
readonly BOOL: "bool";
|
|
23759
|
+
};
|
|
23760
|
+
export type ScalarArrayItemResponseTypeEnum = typeof ScalarArrayItemResponseTypeEnum[keyof typeof ScalarArrayItemResponseTypeEnum];
|
|
23761
|
+
/**
|
|
23762
|
+
* Scalar catalog field descriptor, also used for platform cluster input requirements. FieldSchemaResponse is the union of scalar, object and array descriptors.
|
|
23763
|
+
* @export
|
|
23764
|
+
* @interface ScalarFieldSchemaResponse
|
|
23765
|
+
*/
|
|
23766
|
+
export interface ScalarFieldSchemaResponse {
|
|
23767
|
+
/**
|
|
23768
|
+
*
|
|
23769
|
+
* @type {string}
|
|
23770
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23771
|
+
*/
|
|
23772
|
+
'key': string;
|
|
23773
|
+
/**
|
|
23774
|
+
* Field type understood by the Console.
|
|
23775
|
+
* @type {string}
|
|
23776
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23777
|
+
*/
|
|
23778
|
+
'type': ScalarFieldSchemaResponseTypeEnum;
|
|
23779
|
+
/**
|
|
23780
|
+
*
|
|
23781
|
+
* @type {boolean}
|
|
23782
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23783
|
+
*/
|
|
23784
|
+
'required': boolean;
|
|
23785
|
+
/**
|
|
23786
|
+
*
|
|
23787
|
+
* @type {string}
|
|
23788
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23789
|
+
*/
|
|
23790
|
+
'defaultValue'?: string | null;
|
|
23791
|
+
/**
|
|
23792
|
+
*
|
|
23793
|
+
* @type {string}
|
|
23794
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23795
|
+
*/
|
|
23796
|
+
'label': string;
|
|
23797
|
+
/**
|
|
23798
|
+
*
|
|
23799
|
+
* @type {string}
|
|
23800
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23801
|
+
*/
|
|
23802
|
+
'description'?: string | null;
|
|
23803
|
+
/**
|
|
23804
|
+
*
|
|
23805
|
+
* @type {boolean}
|
|
23806
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23807
|
+
*/
|
|
23808
|
+
'sensitive': boolean;
|
|
23809
|
+
/**
|
|
23810
|
+
*
|
|
23811
|
+
* @type {FieldSchemaConstraintsResponse}
|
|
23812
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23813
|
+
*/
|
|
23814
|
+
'constraints': FieldSchemaConstraintsResponse;
|
|
23815
|
+
}
|
|
23816
|
+
export declare const ScalarFieldSchemaResponseTypeEnum: {
|
|
23817
|
+
readonly STRING: "string";
|
|
23818
|
+
readonly NUMBER: "number";
|
|
23819
|
+
readonly BOOL: "bool";
|
|
23820
|
+
};
|
|
23821
|
+
export type ScalarFieldSchemaResponseTypeEnum = typeof ScalarFieldSchemaResponseTypeEnum[keyof typeof ScalarFieldSchemaResponseTypeEnum];
|
|
23601
23822
|
/**
|
|
23602
23823
|
*
|
|
23603
23824
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -22,19 +22,19 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.
|
|
29
|
-
exports.
|
|
30
|
-
exports.
|
|
31
|
-
exports.
|
|
32
|
-
exports.
|
|
33
|
-
exports.
|
|
34
|
-
exports.
|
|
35
|
-
exports.
|
|
36
|
-
exports.
|
|
37
|
-
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = void 0;
|
|
25
|
+
exports.ClusterAdvancedSettingsLokiDeploymentModeEnum = exports.CloudflareDnsProviderResponseProviderEnum = exports.CloudflareDnsProviderRequestProviderEnum = exports.CloudVendorEnum = exports.CloudProviderEnum = exports.CheckedCustomDomainStatus = exports.BuildModeEnum = exports.BlueprintUpdatePreviewResponseServiceTypeEnum = exports.BlueprintSpecOverridesBackendEnum = exports.BlueprintSpecOverridesCredentialsEnum = exports.BlueprintManifestVariableFieldKindEnum = exports.BlueprintManifestFieldTypeTypeEnum = exports.BlueprintManifestEngineTerraformTypeEnum = exports.BlueprintManifestEngineOpenTofuTypeEnum = exports.BlueprintManifestEngineHelmTypeEnum = exports.BlueprintManifestContextVariableFieldKindEnum = exports.BlueprintDetailsResponseServiceTypeEnum = exports.BlueprintDeploymentStatusResponseStatusEnum = exports.AzureStaticClusterCredentialsObjectTypeEnum = exports.AwsStaticCredentialsRequestTypeEnum = exports.AwsStaticCredentialsAuthDtoModeEnum = exports.AwsStaticClusterCredentialsObjectTypeEnum = exports.AwsSecretManagerEndpointDtoModeEnum = exports.AwsRoleCredentialsRequestTypeEnum = exports.AwsRoleClusterCredentialsObjectTypeEnum = exports.AwsRoleArnAuthDtoModeEnum = exports.AwsParameterStoreEndpointDtoModeEnum = exports.AutoscalingMode = exports.AutomaticallyConfiguredAuthDtoModeEnum = exports.ArrayFieldSchemaResponseTypeEnum = exports.ArgocdAssociatedServiceType = exports.ArgoCdConnectionStatusEnum = exports.ArgoCdConnectionCheckResponseReasonEnum = exports.ApplicationAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ApplicationAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ApplicationAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.AnnotationsGroupAssociatedItemType = exports.AlertTargetType = exports.AlertSeverity = exports.AlertRuleState = exports.AlertRuleSource = exports.AlertRuleConditionOperator = exports.AlertRuleConditionKind = exports.AlertRuleConditionFunction = exports.AlertReceiverType = exports.AksInfrastructureOutputsKindEnum = exports.AgenticWorkflowModelType = exports.AgenticWorkflowExecutionMode = exports.APIVariableTypeEnum = exports.APIVariableScopeEnum = void 0;
|
|
26
|
+
exports.EnvironmentLogTypeEnum = exports.EnvironmentDeploymentStatusEnum = exports.EksInfrastructureOutputsKindEnum = exports.EksAnywhereVsphereStaticCredentialsRequestTypeEnum = exports.EksAnywhereVsphereRoleCredentialsRequestTypeEnum = exports.EksAnywhereVsphereClusterCredentialsObjectTypeEnum = exports.DockerfileFragmentInlineTypeEnum = exports.DockerfileFragmentFileTypeEnum = exports.DeploymentRestrictionTypeEnum = exports.DeploymentRestrictionModeEnum = exports.DeploymentInfraReason = exports.DeploymentHistoryTriggerAction = exports.DeploymentHistoryStatusEnum = exports.DeploymentHistoryServiceDetailsOneOf2JobTypeEnum = exports.DeploymentHistoryActionStatus = exports.DeleteTerraformAction = exports.DatabaseTypeEnum = exports.DatabaseModeEnum = exports.DatabaseEditRequestDiskTypeEnum = exports.DatabaseAccessibilityEnum = exports.DatabaseDiskTypeEnum = exports.CustomDomainStatusEnum = exports.CreateEnvironmentModeEnum = exports.CpuArchitectureEnum = exports.ContainerRegistryResponseAllOfConfigGcpCredentialsTypeEnum = exports.ContainerRegistryRequestConfigGcpCredentialsTypeEnum = exports.ContainerRegistryKindEnum = exports.ContainerRegistryAssociatedServiceType = exports.ContainerAdvancedSettingsDeploymentUpdateStrategyTypeEnum = exports.ContainerAdvancedSettingsDeploymentTopologySpreadZoneEnum = exports.ContainerAdvancedSettingsDeploymentAntiaffinityPodEnum = exports.CompanySizeEnum = exports.ClusterStateEnum = exports.ClusterOperatorFleetStatus = exports.ClusterLogsStepEnum = exports.ClusterFeatureResponseTypeEnum = exports.ClusterFeatureResponseValueTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayTypeEnum = exports.ClusterFeatureNatGatewayTypeScalewayProviderEnum = exports.ClusterFeatureNatGatewayTypeGcpProviderEnum = exports.ClusterDeploymentStatusEnum = exports.ClusterDeploymentHistoryReasonEnum = exports.ClusterDeleteMode = exports.ClusterAnalysisStatus = exports.ClusterAnalysisOutputFormat = exports.ClusterAnalysisKind = exports.ClusterAdvancedSettingsAwsEksEc2MetadataImdsEnum = exports.ClusterAdvancedSettingsAwsEksEfsTransitionToIaEnum = exports.ClusterAdvancedSettingsAwsEksEfsPerformanceModeEnum = exports.ClusterAdvancedSettingsAwsEksEfsThroughputModeEnum = void 0;
|
|
27
|
+
exports.PlanEnum = exports.OrganizationWebhookKindEnum = exports.OrganizationWebhookEventEnum = exports.OrganizationOnboardingStatusEnum = exports.OrganizationEventType = exports.OrganizationEventTargetType = exports.OrganizationEventTargetLevel = exports.OrganizationEventSubTargetType = exports.OrganizationEventOrigin = exports.OrganizationCustomRoleProjectPermission = exports.OrganizationCustomRoleClusterPermission = exports.OrganizationApiTokenScope = exports.OrganizationAnnotationsGroupScopeEnum = exports.ObservabilityResourceProfile = exports.ObjectFieldSchemaResponseTypeEnum = exports.ObjectArrayItemResponseTypeEnum = exports.MetricsConfigurationManagedByQoveryKindEnum = exports.McpServerScope = exports.LinkedServiceTypeEnum = exports.LabelsGroupAssociatedItemType = exports.KubernetesEnum = exports.KedaScalerRole = exports.KarpenterNodePoolRequirementOperator = exports.KarpenterNodePoolRequirementKey = exports.KapsuleInfrastructureOutputsKindEnum = exports.JobTypeEnum = exports.JobScheduleEvent = exports.JobLifecycleTypeEnum = exports.JobForceEvent = exports.InvoiceStatusEnum = exports.InviteStatusEnum = exports.InviteMemberRoleEnum = exports.HelmRepositoryKindEnum = exports.HelmRepositoryAssociatedServiceType = exports.HelmPortProtocolEnum = exports.HelmForceEvent = exports.GkeInfrastructureOutputsKindEnum = exports.GitWebhookStatusResponseProviderEnum = exports.GitWebhookStatusResponseStatusEnum = exports.GitTokenAssociatedServiceType = exports.GitProviderEnum = exports.GenericClusterCredentialsObjectTypeEnum = exports.GcpWorkloadIdentityFederationCredentialsRequestCredentialTypeEnum = exports.GcpWorkloadIdentityFederationClusterCredentialsObjectTypeEnum = exports.GcpStaticClusterCredentialsObjectTypeEnum = exports.GcpServiceAccountKeyCredentialsRequestCredentialTypeEnum = exports.GcpSecretManagerEndpointDtoModeEnum = exports.GcpJsonCredentialsAuthDtoModeEnum = exports.EnvironmentStatusEventOriginEnum = exports.EnvironmentModeEnum = void 0;
|
|
28
|
+
exports.AgenticWorkflowsApiAxiosParamCreator = exports.AccountInfoApi = exports.AccountInfoApiFactory = exports.AccountInfoApiFp = exports.AccountInfoApiAxiosParamCreator = exports.WeekdayEnum = exports.TypeOfUseEnum = exports.TfVarsDiscoveryModeSpecificPathsTypeEnum = exports.TfVarsDiscoveryModeAutoDiscoverTypeEnum = exports.TerraformResourceResponseModeEnum = exports.TerraformEngineEnum = exports.TerraformDeployRequestActionEnum = exports.TerraformAutoDeployConfigTerraformActionEnum = exports.StorageTypeEnum = exports.StepMetricStatusEnum = exports.StatusKindEnum = exports.StateEnum = exports.StageStepMetricNameEnum = exports.StageStatusEnum = exports.ServicesOverviewResponseManagedByEnum = exports.ServiceTypeForVariableEnum = exports.ServiceTypeEnum = exports.ServiceSubActionEnum = exports.ServiceStepMetricNameEnum = exports.ServiceLightResponseJobTypeEnum = exports.ServiceDeploymentStatusEnum = exports.ServiceActionStatusEnum = exports.ServiceActionEnum = exports.SelfManagedClusterKind = exports.ScalewayClusterCredentialsObjectTypeEnum = exports.ScalarFieldSchemaResponseTypeEnum = exports.ScalarArrayItemResponseTypeEnum = exports.Route53StaticCredentialsResponseTypeEnum = exports.Route53StaticCredentialsRequestTypeEnum = exports.Route53DnsProviderResponseProviderEnum = exports.Route53DnsProviderRequestProviderEnum = exports.RewardClaimTypeEnum = exports.RegistryMirroringModeEnum = exports.QueuedDeploymentRequestWithStagesStagesInnerServicesInnerDetailsOneOfJobTypeEnum = exports.QoveryDnsProviderResponseProviderEnum = exports.QoveryDnsProviderRequestProviderEnum = exports.PortProtocolEnum = exports.PlatformTemplateReleaseStatus = exports.PlatformTemplateComponentKind = exports.PlatformLayerResolutionStatus = exports.PlatformComponentInputRequirementResponseTypeEnum = exports.PlatformComponentConfigurationRequirementStatus = exports.PlatformComponentConfigurationInputScope = exports.PlatformClusterMode = exports.PlatformCloudVendor = void 0;
|
|
29
|
+
exports.ApplicationsApiFactory = exports.ApplicationsApiFp = exports.ApplicationsApiAxiosParamCreator = exports.ApplicationSecretApi = exports.ApplicationSecretApiFactory = exports.ApplicationSecretApiFp = exports.ApplicationSecretApiAxiosParamCreator = exports.ApplicationMainCallsApi = exports.ApplicationMainCallsApiFactory = exports.ApplicationMainCallsApiFp = exports.ApplicationMainCallsApiAxiosParamCreator = exports.ApplicationLogsApi = exports.ApplicationLogsApiFactory = exports.ApplicationLogsApiFp = exports.ApplicationLogsApiAxiosParamCreator = exports.ApplicationEnvironmentVariableApi = exports.ApplicationEnvironmentVariableApiFactory = exports.ApplicationEnvironmentVariableApiFp = exports.ApplicationEnvironmentVariableApiAxiosParamCreator = exports.ApplicationDeploymentRestrictionApi = exports.ApplicationDeploymentRestrictionApiFactory = exports.ApplicationDeploymentRestrictionApiFp = exports.ApplicationDeploymentRestrictionApiAxiosParamCreator = exports.ApplicationDeploymentHistoryApi = exports.ApplicationDeploymentHistoryApiFactory = exports.ApplicationDeploymentHistoryApiFp = exports.ApplicationDeploymentHistoryApiAxiosParamCreator = exports.ApplicationCustomDomainApi = exports.ApplicationCustomDomainApiFactory = exports.ApplicationCustomDomainApiFp = exports.ApplicationCustomDomainApiAxiosParamCreator = exports.ApplicationConfigurationApi = exports.ApplicationConfigurationApiFactory = exports.ApplicationConfigurationApiFp = exports.ApplicationConfigurationApiAxiosParamCreator = exports.ApplicationActionsApi = exports.ApplicationActionsApiFactory = exports.ApplicationActionsApiFp = exports.ApplicationActionsApiAxiosParamCreator = exports.AlertRulesApi = exports.AlertRulesApiFactory = exports.AlertRulesApiFp = exports.AlertRulesApiAxiosParamCreator = exports.AlertReceiversApi = exports.AlertReceiversApiFactory = exports.AlertReceiversApiFp = exports.AlertReceiversApiAxiosParamCreator = exports.AgenticWorkflowsApi = exports.AgenticWorkflowsApiFactory = exports.AgenticWorkflowsApiFp = void 0;
|
|
30
|
+
exports.ContainerConfigurationApiFactory = exports.ContainerConfigurationApiFp = exports.ContainerConfigurationApiAxiosParamCreator = exports.ContainerActionsApi = exports.ContainerActionsApiFactory = exports.ContainerActionsApiFp = exports.ContainerActionsApiAxiosParamCreator = exports.ClustersApi = exports.ClustersApiFactory = exports.ClustersApiFp = exports.ClustersApiAxiosParamCreator = exports.ClusterOperatorApi = exports.ClusterOperatorApiFactory = exports.ClusterOperatorApiFp = exports.ClusterOperatorApiAxiosParamCreator = exports.ClusterDeploymentHistoryApi = exports.ClusterDeploymentHistoryApiFactory = exports.ClusterDeploymentHistoryApiFp = exports.ClusterDeploymentHistoryApiAxiosParamCreator = exports.CloudProviderCredentialsApi = exports.CloudProviderCredentialsApiFactory = exports.CloudProviderCredentialsApiFp = exports.CloudProviderCredentialsApiAxiosParamCreator = exports.ListAzureAKSInstanceTypeGpuEnum = exports.ListAWSEKSInstanceTypeGpuEnum = exports.CloudProviderApi = exports.CloudProviderApiFactory = exports.CloudProviderApiFp = exports.CloudProviderApiAxiosParamCreator = exports.BlueprintMainCallsApi = exports.BlueprintMainCallsApiFactory = exports.BlueprintMainCallsApiFp = exports.BlueprintMainCallsApiAxiosParamCreator = exports.BlueprintCatalogApi = exports.BlueprintCatalogApiFactory = exports.BlueprintCatalogApiFp = exports.BlueprintCatalogApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = exports.BillingApiAxiosParamCreator = exports.BackupsApi = exports.BackupsApiFactory = exports.BackupsApiFp = exports.BackupsApiAxiosParamCreator = exports.ArgoCDApi = exports.ArgoCDApiFactory = exports.ArgoCDApiFp = exports.ArgoCDApiAxiosParamCreator = exports.ApplicationsApi = void 0;
|
|
31
|
+
exports.DatabasesApiAxiosParamCreator = exports.DatabaseMainCallsApi = exports.DatabaseMainCallsApiFactory = exports.DatabaseMainCallsApiFp = exports.DatabaseMainCallsApiAxiosParamCreator = exports.DatabaseDeploymentHistoryApi = exports.DatabaseDeploymentHistoryApiFactory = exports.DatabaseDeploymentHistoryApiFp = exports.DatabaseDeploymentHistoryApiAxiosParamCreator = exports.DatabaseApplicationApi = exports.DatabaseApplicationApiFactory = exports.DatabaseApplicationApiFp = exports.DatabaseApplicationApiAxiosParamCreator = exports.DatabaseActionsApi = exports.DatabaseActionsApiFactory = exports.DatabaseActionsApiFp = exports.DatabaseActionsApiAxiosParamCreator = exports.ContainersApi = exports.ContainersApiFactory = exports.ContainersApiFp = exports.ContainersApiAxiosParamCreator = exports.ContainerSecretApi = exports.ContainerSecretApiFactory = exports.ContainerSecretApiFp = exports.ContainerSecretApiAxiosParamCreator = exports.ContainerRegistriesApi = exports.ContainerRegistriesApiFactory = exports.ContainerRegistriesApiFp = exports.ContainerRegistriesApiAxiosParamCreator = exports.ContainerMainCallsApi = exports.ContainerMainCallsApiFactory = exports.ContainerMainCallsApiFp = exports.ContainerMainCallsApiAxiosParamCreator = exports.ContainerLogsApi = exports.ContainerLogsApiFactory = exports.ContainerLogsApiFp = exports.ContainerLogsApiAxiosParamCreator = exports.ContainerEnvironmentVariableApi = exports.ContainerEnvironmentVariableApiFactory = exports.ContainerEnvironmentVariableApiFp = exports.ContainerEnvironmentVariableApiAxiosParamCreator = exports.ContainerDeploymentHistoryApi = exports.ContainerDeploymentHistoryApiFactory = exports.ContainerDeploymentHistoryApiFp = exports.ContainerDeploymentHistoryApiAxiosParamCreator = exports.ContainerCustomDomainApi = exports.ContainerCustomDomainApiFactory = exports.ContainerCustomDomainApiFp = exports.ContainerCustomDomainApiAxiosParamCreator = exports.ContainerConfigurationApi = void 0;
|
|
32
|
+
exports.EnvironmentVariableApiFactory = exports.EnvironmentVariableApiFp = exports.EnvironmentVariableApiAxiosParamCreator = exports.EnvironmentSecretApi = exports.EnvironmentSecretApiFactory = exports.EnvironmentSecretApiFp = exports.EnvironmentSecretApiAxiosParamCreator = exports.EnvironmentMainCallsApi = exports.EnvironmentMainCallsApiFactory = exports.EnvironmentMainCallsApiFp = exports.EnvironmentMainCallsApiAxiosParamCreator = exports.EnvironmentLogsApi = exports.EnvironmentLogsApiFactory = exports.EnvironmentLogsApiFp = exports.EnvironmentLogsApiAxiosParamCreator = exports.EnvironmentExportApi = exports.EnvironmentExportApiFactory = exports.EnvironmentExportApiFp = exports.EnvironmentExportApiAxiosParamCreator = exports.EnvironmentDeploymentRuleApi = exports.EnvironmentDeploymentRuleApiFactory = exports.EnvironmentDeploymentRuleApiFp = exports.EnvironmentDeploymentRuleApiAxiosParamCreator = exports.EnvironmentDeploymentHistoryApi = exports.EnvironmentDeploymentHistoryApiFactory = exports.EnvironmentDeploymentHistoryApiFp = exports.EnvironmentDeploymentHistoryApiAxiosParamCreator = exports.EnvironmentActionsApi = exports.EnvironmentActionsApiFactory = exports.EnvironmentActionsApiFp = exports.EnvironmentActionsApiAxiosParamCreator = exports.EnvironmentApi = exports.EnvironmentApiFactory = exports.EnvironmentApiFp = exports.EnvironmentApiAxiosParamCreator = exports.DeploymentStageMainCallsApi = exports.DeploymentStageMainCallsApiFactory = exports.DeploymentStageMainCallsApiFp = exports.DeploymentStageMainCallsApiAxiosParamCreator = exports.DeploymentQueueActionsApi = exports.DeploymentQueueActionsApiFactory = exports.DeploymentQueueActionsApiFp = exports.DeploymentQueueActionsApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.DatabasesApi = exports.DatabasesApiFactory = exports.DatabasesApiFp = void 0;
|
|
33
|
+
exports.JobActionsApiAxiosParamCreator = exports.IPsApi = exports.IPsApiFactory = exports.IPsApiFp = exports.IPsApiAxiosParamCreator = exports.HelmsApi = exports.HelmsApiFactory = exports.HelmsApiFp = exports.HelmsApiAxiosParamCreator = exports.HelmRepositoriesApi = exports.HelmRepositoriesApiFactory = exports.HelmRepositoriesApiFp = exports.HelmRepositoriesApiAxiosParamCreator = exports.HelmMainCallsApi = exports.HelmMainCallsApiFactory = exports.HelmMainCallsApiFp = exports.HelmMainCallsApiAxiosParamCreator = exports.HelmDeploymentRestrictionApi = exports.HelmDeploymentRestrictionApiFactory = exports.HelmDeploymentRestrictionApiFp = exports.HelmDeploymentRestrictionApiAxiosParamCreator = exports.HelmDeploymentHistoryApi = exports.HelmDeploymentHistoryApiFactory = exports.HelmDeploymentHistoryApiFp = exports.HelmDeploymentHistoryApiAxiosParamCreator = exports.HelmCustomDomainApi = exports.HelmCustomDomainApiFactory = exports.HelmCustomDomainApiFp = exports.HelmCustomDomainApiAxiosParamCreator = exports.HelmConfigurationApi = exports.HelmConfigurationApiFactory = exports.HelmConfigurationApiFp = exports.HelmConfigurationApiAxiosParamCreator = exports.HelmActionsApi = exports.HelmActionsApiFactory = exports.HelmActionsApiFp = exports.HelmActionsApiAxiosParamCreator = exports.GithubAppApi = exports.GithubAppApiFactory = exports.GithubAppApiFp = exports.GithubAppApiAxiosParamCreator = exports.GitRepositoriesApi = exports.GitRepositoriesApiFactory = exports.GitRepositoriesApiFp = exports.GitRepositoriesApiAxiosParamCreator = exports.EnvironmentsApi = exports.EnvironmentsApiFactory = exports.EnvironmentsApiFp = exports.EnvironmentsApiAxiosParamCreator = exports.EnvironmentVariableApi = void 0;
|
|
34
|
+
exports.OrganizationAnnotationsGroupApiFactory = exports.OrganizationAnnotationsGroupApiFp = exports.OrganizationAnnotationsGroupApiAxiosParamCreator = exports.OrganizationAccountGitRepositoriesApi = exports.OrganizationAccountGitRepositoriesApiFactory = exports.OrganizationAccountGitRepositoriesApiFp = exports.OrganizationAccountGitRepositoriesApiAxiosParamCreator = exports.MembersApi = exports.MembersApiFactory = exports.MembersApiFp = exports.MembersApiAxiosParamCreator = exports.MCPServersApi = exports.MCPServersApiFactory = exports.MCPServersApiFp = exports.MCPServersApiAxiosParamCreator = exports.LifecycleTemplateMainCallsApi = exports.LifecycleTemplateMainCallsApiFactory = exports.LifecycleTemplateMainCallsApiFp = exports.LifecycleTemplateMainCallsApiAxiosParamCreator = exports.JobsApi = exports.JobsApiFactory = exports.JobsApiFp = exports.JobsApiAxiosParamCreator = exports.JobSecretApi = exports.JobSecretApiFactory = exports.JobSecretApiFp = exports.JobSecretApiAxiosParamCreator = exports.JobMainCallsApi = exports.JobMainCallsApiFactory = exports.JobMainCallsApiFp = exports.JobMainCallsApiAxiosParamCreator = exports.JobEnvironmentVariableApi = exports.JobEnvironmentVariableApiFactory = exports.JobEnvironmentVariableApiFp = exports.JobEnvironmentVariableApiAxiosParamCreator = exports.JobDeploymentRestrictionApi = exports.JobDeploymentRestrictionApiFactory = exports.JobDeploymentRestrictionApiFp = exports.JobDeploymentRestrictionApiAxiosParamCreator = exports.JobDeploymentHistoryApi = exports.JobDeploymentHistoryApiFactory = exports.JobDeploymentHistoryApiFp = exports.JobDeploymentHistoryApiAxiosParamCreator = exports.JobConfigurationApi = exports.JobConfigurationApiFactory = exports.JobConfigurationApiFp = exports.JobConfigurationApiAxiosParamCreator = exports.JobActionsApi = exports.JobActionsApiFactory = exports.JobActionsApiFp = void 0;
|
|
35
|
+
exports.ProjectMainCallsApiAxiosParamCreator = exports.ProjectEnvironmentVariableApi = exports.ProjectEnvironmentVariableApiFactory = exports.ProjectEnvironmentVariableApiFp = exports.ProjectEnvironmentVariableApiAxiosParamCreator = exports.ProjectDeploymentRuleApi = exports.ProjectDeploymentRuleApiFactory = exports.ProjectDeploymentRuleApiFp = exports.ProjectDeploymentRuleApiAxiosParamCreator = exports.PlatformConfigurationApi = exports.PlatformConfigurationApiFactory = exports.PlatformConfigurationApiFp = exports.PlatformConfigurationApiAxiosParamCreator = exports.OrganizationWebhookApi = exports.OrganizationWebhookApiFactory = exports.OrganizationWebhookApiFp = exports.OrganizationWebhookApiAxiosParamCreator = exports.OrganizationPolicyApiTokenApi = exports.OrganizationPolicyApiTokenApiFactory = exports.OrganizationPolicyApiTokenApiFp = exports.OrganizationPolicyApiTokenApiAxiosParamCreator = exports.OrganizationMainCallsApi = exports.OrganizationMainCallsApiFactory = exports.OrganizationMainCallsApiFp = exports.OrganizationMainCallsApiAxiosParamCreator = exports.OrganizationLabelsGroupApi = exports.OrganizationLabelsGroupApiFactory = exports.OrganizationLabelsGroupApiFp = exports.OrganizationLabelsGroupApiAxiosParamCreator = exports.OrganizationEventApi = exports.OrganizationEventApiFactory = exports.OrganizationEventApiFp = exports.OrganizationEventApiAxiosParamCreator = exports.OrganizationEnterpriseConnectionApi = exports.OrganizationEnterpriseConnectionApiFactory = exports.OrganizationEnterpriseConnectionApiFp = exports.OrganizationEnterpriseConnectionApiAxiosParamCreator = exports.OrganizationCustomRoleApi = exports.OrganizationCustomRoleApiFactory = exports.OrganizationCustomRoleApiFp = exports.OrganizationCustomRoleApiAxiosParamCreator = exports.OrganizationClusterLockApi = exports.OrganizationClusterLockApiFactory = exports.OrganizationClusterLockApiFp = exports.OrganizationClusterLockApiAxiosParamCreator = exports.OrganizationApiTokenApi = exports.OrganizationApiTokenApiFactory = exports.OrganizationApiTokenApiFp = exports.OrganizationApiTokenApiAxiosParamCreator = exports.OrganizationAnnotationsGroupApi = void 0;
|
|
36
|
+
exports.TerraformResourcesApiFp = exports.TerraformResourcesApiAxiosParamCreator = exports.TerraformMainCallsApi = exports.TerraformMainCallsApiFactory = exports.TerraformMainCallsApiFp = exports.TerraformMainCallsApiAxiosParamCreator = exports.TerraformDeploymentRestrictionApi = exports.TerraformDeploymentRestrictionApiFactory = exports.TerraformDeploymentRestrictionApiFp = exports.TerraformDeploymentRestrictionApiAxiosParamCreator = exports.TerraformDeploymentHistoryApi = exports.TerraformDeploymentHistoryApiFactory = exports.TerraformDeploymentHistoryApiFp = exports.TerraformDeploymentHistoryApiAxiosParamCreator = exports.TerraformConfigurationApi = exports.TerraformConfigurationApiFactory = exports.TerraformConfigurationApiFp = exports.TerraformConfigurationApiAxiosParamCreator = exports.TerraformActionsApi = exports.TerraformActionsApiFactory = exports.TerraformActionsApiFp = exports.TerraformActionsApiAxiosParamCreator = exports.GetIngressDeploymentStatusServiceTypeEnum = exports.ServiceStatusApi = exports.ServiceStatusApiFactory = exports.ServiceStatusApiFp = exports.ServiceStatusApiAxiosParamCreator = exports.ServiceMainCallsApi = exports.ServiceMainCallsApiFactory = exports.ServiceMainCallsApiFp = exports.ServiceMainCallsApiAxiosParamCreator = exports.SecretManagerAccessApi = exports.SecretManagerAccessApiFactory = exports.SecretManagerAccessApiFp = exports.SecretManagerAccessApiAxiosParamCreator = exports.ReferralRewardsApi = exports.ReferralRewardsApiFactory = exports.ReferralRewardsApiFp = exports.ReferralRewardsApiAxiosParamCreator = exports.ProjectsApi = exports.ProjectsApiFactory = exports.ProjectsApiFp = exports.ProjectsApiAxiosParamCreator = exports.ProjectSecretApi = exports.ProjectSecretApiFactory = exports.ProjectSecretApiFp = exports.ProjectSecretApiAxiosParamCreator = exports.ProjectMainCallsApi = exports.ProjectMainCallsApiFactory = exports.ProjectMainCallsApiFp = void 0;
|
|
37
|
+
exports.VariableMainCallsApi = exports.VariableMainCallsApiFactory = exports.VariableMainCallsApiFp = exports.VariableMainCallsApiAxiosParamCreator = exports.UserSignUpApi = exports.UserSignUpApiFactory = exports.UserSignUpApiFp = exports.UserSignUpApiAxiosParamCreator = exports.TerraformsApi = exports.TerraformsApiFactory = exports.TerraformsApiFp = exports.TerraformsApiAxiosParamCreator = exports.TerraformResourcesApi = exports.TerraformResourcesApiFactory = void 0;
|
|
38
38
|
const axios_1 = require("axios");
|
|
39
39
|
// Some imports not used depending on template conditions
|
|
40
40
|
// @ts-ignore
|
|
@@ -234,6 +234,9 @@ exports.ArgoCdConnectionStatusEnum = {
|
|
|
234
234
|
exports.ArgocdAssociatedServiceType = {
|
|
235
235
|
ARGOCD_APP: 'ARGOCD_APP'
|
|
236
236
|
};
|
|
237
|
+
exports.ArrayFieldSchemaResponseTypeEnum = {
|
|
238
|
+
ARRAY: 'array'
|
|
239
|
+
};
|
|
237
240
|
exports.AutomaticallyConfiguredAuthDtoModeEnum = {
|
|
238
241
|
AUTOMATICALLY_CONFIGURED: 'AUTOMATICALLY_CONFIGURED'
|
|
239
242
|
};
|
|
@@ -810,11 +813,6 @@ exports.EnvironmentStatusEventOriginEnum = {
|
|
|
810
813
|
SKILL: 'SKILL',
|
|
811
814
|
TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
|
|
812
815
|
};
|
|
813
|
-
exports.FieldSchemaResponseTypeEnum = {
|
|
814
|
-
STRING: 'string',
|
|
815
|
-
NUMBER: 'number',
|
|
816
|
-
BOOL: 'bool'
|
|
817
|
-
};
|
|
818
816
|
exports.GcpJsonCredentialsAuthDtoModeEnum = {
|
|
819
817
|
GCP_JSON_CREDENTIALS: 'GCP_JSON_CREDENTIALS'
|
|
820
818
|
};
|
|
@@ -1069,6 +1067,12 @@ exports.McpServerScope = {
|
|
|
1069
1067
|
exports.MetricsConfigurationManagedByQoveryKindEnum = {
|
|
1070
1068
|
MANAGED_BY_QOVERY: 'MANAGED_BY_QOVERY'
|
|
1071
1069
|
};
|
|
1070
|
+
exports.ObjectArrayItemResponseTypeEnum = {
|
|
1071
|
+
OBJECT: 'object'
|
|
1072
|
+
};
|
|
1073
|
+
exports.ObjectFieldSchemaResponseTypeEnum = {
|
|
1074
|
+
OBJECT: 'object'
|
|
1075
|
+
};
|
|
1072
1076
|
/**
|
|
1073
1077
|
*
|
|
1074
1078
|
* @export
|
|
@@ -1454,6 +1458,16 @@ exports.Route53StaticCredentialsRequestTypeEnum = {
|
|
|
1454
1458
|
exports.Route53StaticCredentialsResponseTypeEnum = {
|
|
1455
1459
|
STATIC: 'STATIC'
|
|
1456
1460
|
};
|
|
1461
|
+
exports.ScalarArrayItemResponseTypeEnum = {
|
|
1462
|
+
STRING: 'string',
|
|
1463
|
+
NUMBER: 'number',
|
|
1464
|
+
BOOL: 'bool'
|
|
1465
|
+
};
|
|
1466
|
+
exports.ScalarFieldSchemaResponseTypeEnum = {
|
|
1467
|
+
STRING: 'string',
|
|
1468
|
+
NUMBER: 'number',
|
|
1469
|
+
BOOL: 'bool'
|
|
1470
|
+
};
|
|
1457
1471
|
exports.ScalewayClusterCredentialsObjectTypeEnum = {
|
|
1458
1472
|
SCW: 'SCW'
|
|
1459
1473
|
};
|
package/dist/esm/api.d.ts
CHANGED
|
@@ -2941,6 +2941,85 @@ export interface ArgocdManagedResource {
|
|
|
2941
2941
|
*/
|
|
2942
2942
|
'liveState'?: string;
|
|
2943
2943
|
}
|
|
2944
|
+
/**
|
|
2945
|
+
*
|
|
2946
|
+
* @export
|
|
2947
|
+
* @interface ArrayFieldSchemaResponse
|
|
2948
|
+
*/
|
|
2949
|
+
export interface ArrayFieldSchemaResponse {
|
|
2950
|
+
/**
|
|
2951
|
+
*
|
|
2952
|
+
* @type {string}
|
|
2953
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2954
|
+
*/
|
|
2955
|
+
'key': string;
|
|
2956
|
+
/**
|
|
2957
|
+
*
|
|
2958
|
+
* @type {string}
|
|
2959
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2960
|
+
*/
|
|
2961
|
+
'type': ArrayFieldSchemaResponseTypeEnum;
|
|
2962
|
+
/**
|
|
2963
|
+
*
|
|
2964
|
+
* @type {boolean}
|
|
2965
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2966
|
+
*/
|
|
2967
|
+
'required': boolean;
|
|
2968
|
+
/**
|
|
2969
|
+
*
|
|
2970
|
+
* @type {string}
|
|
2971
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2972
|
+
*/
|
|
2973
|
+
'label': string;
|
|
2974
|
+
/**
|
|
2975
|
+
*
|
|
2976
|
+
* @type {string}
|
|
2977
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2978
|
+
*/
|
|
2979
|
+
'description'?: string | null;
|
|
2980
|
+
/**
|
|
2981
|
+
*
|
|
2982
|
+
* @type {boolean}
|
|
2983
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2984
|
+
*/
|
|
2985
|
+
'sensitive': boolean;
|
|
2986
|
+
/**
|
|
2987
|
+
*
|
|
2988
|
+
* @type {CollectionConstraintsResponse}
|
|
2989
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2990
|
+
*/
|
|
2991
|
+
'constraints': CollectionConstraintsResponse;
|
|
2992
|
+
/**
|
|
2993
|
+
*
|
|
2994
|
+
* @type {ArrayItemResponse}
|
|
2995
|
+
* @memberof ArrayFieldSchemaResponse
|
|
2996
|
+
*/
|
|
2997
|
+
'items': ArrayItemResponse;
|
|
2998
|
+
/**
|
|
2999
|
+
* Evaluated field descriptors for each object item, in the same order as the configuration array. Use these row-specific descriptors when available; items.fields describes an object\'s fields before per-item evaluation. Omitted when unavailable, including scalar arrays. An evaluated empty object array has an empty itemFields array.
|
|
3000
|
+
* @type {Array<Array<FieldSchemaResponse>>}
|
|
3001
|
+
* @memberof ArrayFieldSchemaResponse
|
|
3002
|
+
*/
|
|
3003
|
+
'itemFields'?: Array<Array<FieldSchemaResponse>>;
|
|
3004
|
+
}
|
|
3005
|
+
export declare const ArrayFieldSchemaResponseTypeEnum: {
|
|
3006
|
+
readonly ARRAY: "array";
|
|
3007
|
+
};
|
|
3008
|
+
export type ArrayFieldSchemaResponseTypeEnum = typeof ArrayFieldSchemaResponseTypeEnum[keyof typeof ArrayFieldSchemaResponseTypeEnum];
|
|
3009
|
+
/**
|
|
3010
|
+
* @type ArrayItemResponse
|
|
3011
|
+
* Descriptor for an array element. Elements are scalars or objects; an object\'s fields can themselves contain arrays.
|
|
3012
|
+
* @export
|
|
3013
|
+
*/
|
|
3014
|
+
export type ArrayItemResponse = {
|
|
3015
|
+
type: 'bool';
|
|
3016
|
+
} & ScalarArrayItemResponse | {
|
|
3017
|
+
type: 'number';
|
|
3018
|
+
} & ScalarArrayItemResponse | {
|
|
3019
|
+
type: 'object';
|
|
3020
|
+
} & ObjectArrayItemResponse | {
|
|
3021
|
+
type: 'string';
|
|
3022
|
+
} & ScalarArrayItemResponse;
|
|
2944
3023
|
/**
|
|
2945
3024
|
*
|
|
2946
3025
|
* @export
|
|
@@ -8808,6 +8887,31 @@ export interface ClusterStatusResponseList {
|
|
|
8808
8887
|
*/
|
|
8809
8888
|
'results'?: Array<ClusterStatus>;
|
|
8810
8889
|
}
|
|
8890
|
+
/**
|
|
8891
|
+
*
|
|
8892
|
+
* @export
|
|
8893
|
+
* @interface CollectionConstraintsResponse
|
|
8894
|
+
*/
|
|
8895
|
+
export interface CollectionConstraintsResponse {
|
|
8896
|
+
/**
|
|
8897
|
+
*
|
|
8898
|
+
* @type {number}
|
|
8899
|
+
* @memberof CollectionConstraintsResponse
|
|
8900
|
+
*/
|
|
8901
|
+
'minItems'?: number | null;
|
|
8902
|
+
/**
|
|
8903
|
+
*
|
|
8904
|
+
* @type {number}
|
|
8905
|
+
* @memberof CollectionConstraintsResponse
|
|
8906
|
+
*/
|
|
8907
|
+
'maxItems'?: number | null;
|
|
8908
|
+
/**
|
|
8909
|
+
*
|
|
8910
|
+
* @type {boolean}
|
|
8911
|
+
* @memberof CollectionConstraintsResponse
|
|
8912
|
+
*/
|
|
8913
|
+
'uniqueItems': boolean;
|
|
8914
|
+
}
|
|
8811
8915
|
/**
|
|
8812
8916
|
*
|
|
8813
8917
|
* @export
|
|
@@ -14486,66 +14590,21 @@ export interface FieldSchemaConstraintsResponse {
|
|
|
14486
14590
|
'pattern'?: string | null;
|
|
14487
14591
|
}
|
|
14488
14592
|
/**
|
|
14489
|
-
*
|
|
14593
|
+
* @type FieldSchemaResponse
|
|
14594
|
+
* Generic catalog field descriptor matching the shared q-core field response. Scalar fields retain their existing shape; objects and arrays describe nested configuration without flattening its values. Blueprint keeps its existing BlueprintManifestVariableField response contract through a dedicated adapter.
|
|
14490
14595
|
* @export
|
|
14491
|
-
* @interface FieldSchemaResponse
|
|
14492
14596
|
*/
|
|
14493
|
-
export
|
|
14494
|
-
|
|
14495
|
-
|
|
14496
|
-
|
|
14497
|
-
|
|
14498
|
-
|
|
14499
|
-
|
|
14500
|
-
|
|
14501
|
-
|
|
14502
|
-
|
|
14503
|
-
|
|
14504
|
-
*/
|
|
14505
|
-
'type': FieldSchemaResponseTypeEnum;
|
|
14506
|
-
/**
|
|
14507
|
-
*
|
|
14508
|
-
* @type {boolean}
|
|
14509
|
-
* @memberof FieldSchemaResponse
|
|
14510
|
-
*/
|
|
14511
|
-
'required': boolean;
|
|
14512
|
-
/**
|
|
14513
|
-
*
|
|
14514
|
-
* @type {string}
|
|
14515
|
-
* @memberof FieldSchemaResponse
|
|
14516
|
-
*/
|
|
14517
|
-
'defaultValue'?: string | null;
|
|
14518
|
-
/**
|
|
14519
|
-
*
|
|
14520
|
-
* @type {string}
|
|
14521
|
-
* @memberof FieldSchemaResponse
|
|
14522
|
-
*/
|
|
14523
|
-
'label': string;
|
|
14524
|
-
/**
|
|
14525
|
-
*
|
|
14526
|
-
* @type {string}
|
|
14527
|
-
* @memberof FieldSchemaResponse
|
|
14528
|
-
*/
|
|
14529
|
-
'description'?: string | null;
|
|
14530
|
-
/**
|
|
14531
|
-
*
|
|
14532
|
-
* @type {boolean}
|
|
14533
|
-
* @memberof FieldSchemaResponse
|
|
14534
|
-
*/
|
|
14535
|
-
'sensitive': boolean;
|
|
14536
|
-
/**
|
|
14537
|
-
*
|
|
14538
|
-
* @type {FieldSchemaConstraintsResponse}
|
|
14539
|
-
* @memberof FieldSchemaResponse
|
|
14540
|
-
*/
|
|
14541
|
-
'constraints': FieldSchemaConstraintsResponse;
|
|
14542
|
-
}
|
|
14543
|
-
export declare const FieldSchemaResponseTypeEnum: {
|
|
14544
|
-
readonly STRING: "string";
|
|
14545
|
-
readonly NUMBER: "number";
|
|
14546
|
-
readonly BOOL: "bool";
|
|
14547
|
-
};
|
|
14548
|
-
export type FieldSchemaResponseTypeEnum = typeof FieldSchemaResponseTypeEnum[keyof typeof FieldSchemaResponseTypeEnum];
|
|
14597
|
+
export type FieldSchemaResponse = {
|
|
14598
|
+
type: 'array';
|
|
14599
|
+
} & ArrayFieldSchemaResponse | {
|
|
14600
|
+
type: 'bool';
|
|
14601
|
+
} & ScalarFieldSchemaResponse | {
|
|
14602
|
+
type: 'number';
|
|
14603
|
+
} & ScalarFieldSchemaResponse | {
|
|
14604
|
+
type: 'object';
|
|
14605
|
+
} & ObjectFieldSchemaResponse | {
|
|
14606
|
+
type: 'string';
|
|
14607
|
+
} & ScalarFieldSchemaResponse;
|
|
14549
14608
|
/**
|
|
14550
14609
|
* @type GcpCredentialsRequest
|
|
14551
14610
|
* @export
|
|
@@ -19791,6 +19850,82 @@ export interface MetricsParameters {
|
|
|
19791
19850
|
export type MetricsParametersConfiguration = {
|
|
19792
19851
|
kind: 'MANAGED_BY_QOVERY';
|
|
19793
19852
|
} & MetricsConfigurationManagedByQovery;
|
|
19853
|
+
/**
|
|
19854
|
+
*
|
|
19855
|
+
* @export
|
|
19856
|
+
* @interface ObjectArrayItemResponse
|
|
19857
|
+
*/
|
|
19858
|
+
export interface ObjectArrayItemResponse {
|
|
19859
|
+
/**
|
|
19860
|
+
*
|
|
19861
|
+
* @type {string}
|
|
19862
|
+
* @memberof ObjectArrayItemResponse
|
|
19863
|
+
*/
|
|
19864
|
+
'type': ObjectArrayItemResponseTypeEnum;
|
|
19865
|
+
/**
|
|
19866
|
+
*
|
|
19867
|
+
* @type {Array<FieldSchemaResponse>}
|
|
19868
|
+
* @memberof ObjectArrayItemResponse
|
|
19869
|
+
*/
|
|
19870
|
+
'fields': Array<FieldSchemaResponse>;
|
|
19871
|
+
}
|
|
19872
|
+
export declare const ObjectArrayItemResponseTypeEnum: {
|
|
19873
|
+
readonly OBJECT: "object";
|
|
19874
|
+
};
|
|
19875
|
+
export type ObjectArrayItemResponseTypeEnum = typeof ObjectArrayItemResponseTypeEnum[keyof typeof ObjectArrayItemResponseTypeEnum];
|
|
19876
|
+
/**
|
|
19877
|
+
*
|
|
19878
|
+
* @export
|
|
19879
|
+
* @interface ObjectFieldSchemaResponse
|
|
19880
|
+
*/
|
|
19881
|
+
export interface ObjectFieldSchemaResponse {
|
|
19882
|
+
/**
|
|
19883
|
+
*
|
|
19884
|
+
* @type {string}
|
|
19885
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19886
|
+
*/
|
|
19887
|
+
'key': string;
|
|
19888
|
+
/**
|
|
19889
|
+
*
|
|
19890
|
+
* @type {string}
|
|
19891
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19892
|
+
*/
|
|
19893
|
+
'type': ObjectFieldSchemaResponseTypeEnum;
|
|
19894
|
+
/**
|
|
19895
|
+
*
|
|
19896
|
+
* @type {boolean}
|
|
19897
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19898
|
+
*/
|
|
19899
|
+
'required': boolean;
|
|
19900
|
+
/**
|
|
19901
|
+
*
|
|
19902
|
+
* @type {string}
|
|
19903
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19904
|
+
*/
|
|
19905
|
+
'label': string;
|
|
19906
|
+
/**
|
|
19907
|
+
*
|
|
19908
|
+
* @type {string}
|
|
19909
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19910
|
+
*/
|
|
19911
|
+
'description'?: string | null;
|
|
19912
|
+
/**
|
|
19913
|
+
*
|
|
19914
|
+
* @type {boolean}
|
|
19915
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19916
|
+
*/
|
|
19917
|
+
'sensitive': boolean;
|
|
19918
|
+
/**
|
|
19919
|
+
* Nested field descriptors for this object\'s properties.
|
|
19920
|
+
* @type {Array<FieldSchemaResponse>}
|
|
19921
|
+
* @memberof ObjectFieldSchemaResponse
|
|
19922
|
+
*/
|
|
19923
|
+
'fields': Array<FieldSchemaResponse>;
|
|
19924
|
+
}
|
|
19925
|
+
export declare const ObjectFieldSchemaResponseTypeEnum: {
|
|
19926
|
+
readonly OBJECT: "object";
|
|
19927
|
+
};
|
|
19928
|
+
export type ObjectFieldSchemaResponseTypeEnum = typeof ObjectFieldSchemaResponseTypeEnum[keyof typeof ObjectFieldSchemaResponseTypeEnum];
|
|
19794
19929
|
/**
|
|
19795
19930
|
*
|
|
19796
19931
|
* @export
|
|
@@ -22143,7 +22278,7 @@ export interface PlatformComponentConfigurationViolationResponse {
|
|
|
22143
22278
|
'message': string;
|
|
22144
22279
|
}
|
|
22145
22280
|
/**
|
|
22146
|
-
* A catalog field the cluster must provide for the selected configuration: the
|
|
22281
|
+
* A catalog field the cluster must provide for the selected configuration: the scalar field descriptor extended with its resolution scope and readiness. Input requirements cannot be object or array descriptors.
|
|
22147
22282
|
* @export
|
|
22148
22283
|
* @interface PlatformComponentInputRequirementResponse
|
|
22149
22284
|
*/
|
|
@@ -23598,6 +23733,92 @@ export declare const Route53StaticCredentialsResponseTypeEnum: {
|
|
|
23598
23733
|
readonly STATIC: "STATIC";
|
|
23599
23734
|
};
|
|
23600
23735
|
export type Route53StaticCredentialsResponseTypeEnum = typeof Route53StaticCredentialsResponseTypeEnum[keyof typeof Route53StaticCredentialsResponseTypeEnum];
|
|
23736
|
+
/**
|
|
23737
|
+
*
|
|
23738
|
+
* @export
|
|
23739
|
+
* @interface ScalarArrayItemResponse
|
|
23740
|
+
*/
|
|
23741
|
+
export interface ScalarArrayItemResponse {
|
|
23742
|
+
/**
|
|
23743
|
+
*
|
|
23744
|
+
* @type {string}
|
|
23745
|
+
* @memberof ScalarArrayItemResponse
|
|
23746
|
+
*/
|
|
23747
|
+
'type': ScalarArrayItemResponseTypeEnum;
|
|
23748
|
+
/**
|
|
23749
|
+
*
|
|
23750
|
+
* @type {FieldSchemaConstraintsResponse}
|
|
23751
|
+
* @memberof ScalarArrayItemResponse
|
|
23752
|
+
*/
|
|
23753
|
+
'constraints': FieldSchemaConstraintsResponse;
|
|
23754
|
+
}
|
|
23755
|
+
export declare const ScalarArrayItemResponseTypeEnum: {
|
|
23756
|
+
readonly STRING: "string";
|
|
23757
|
+
readonly NUMBER: "number";
|
|
23758
|
+
readonly BOOL: "bool";
|
|
23759
|
+
};
|
|
23760
|
+
export type ScalarArrayItemResponseTypeEnum = typeof ScalarArrayItemResponseTypeEnum[keyof typeof ScalarArrayItemResponseTypeEnum];
|
|
23761
|
+
/**
|
|
23762
|
+
* Scalar catalog field descriptor, also used for platform cluster input requirements. FieldSchemaResponse is the union of scalar, object and array descriptors.
|
|
23763
|
+
* @export
|
|
23764
|
+
* @interface ScalarFieldSchemaResponse
|
|
23765
|
+
*/
|
|
23766
|
+
export interface ScalarFieldSchemaResponse {
|
|
23767
|
+
/**
|
|
23768
|
+
*
|
|
23769
|
+
* @type {string}
|
|
23770
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23771
|
+
*/
|
|
23772
|
+
'key': string;
|
|
23773
|
+
/**
|
|
23774
|
+
* Field type understood by the Console.
|
|
23775
|
+
* @type {string}
|
|
23776
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23777
|
+
*/
|
|
23778
|
+
'type': ScalarFieldSchemaResponseTypeEnum;
|
|
23779
|
+
/**
|
|
23780
|
+
*
|
|
23781
|
+
* @type {boolean}
|
|
23782
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23783
|
+
*/
|
|
23784
|
+
'required': boolean;
|
|
23785
|
+
/**
|
|
23786
|
+
*
|
|
23787
|
+
* @type {string}
|
|
23788
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23789
|
+
*/
|
|
23790
|
+
'defaultValue'?: string | null;
|
|
23791
|
+
/**
|
|
23792
|
+
*
|
|
23793
|
+
* @type {string}
|
|
23794
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23795
|
+
*/
|
|
23796
|
+
'label': string;
|
|
23797
|
+
/**
|
|
23798
|
+
*
|
|
23799
|
+
* @type {string}
|
|
23800
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23801
|
+
*/
|
|
23802
|
+
'description'?: string | null;
|
|
23803
|
+
/**
|
|
23804
|
+
*
|
|
23805
|
+
* @type {boolean}
|
|
23806
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23807
|
+
*/
|
|
23808
|
+
'sensitive': boolean;
|
|
23809
|
+
/**
|
|
23810
|
+
*
|
|
23811
|
+
* @type {FieldSchemaConstraintsResponse}
|
|
23812
|
+
* @memberof ScalarFieldSchemaResponse
|
|
23813
|
+
*/
|
|
23814
|
+
'constraints': FieldSchemaConstraintsResponse;
|
|
23815
|
+
}
|
|
23816
|
+
export declare const ScalarFieldSchemaResponseTypeEnum: {
|
|
23817
|
+
readonly STRING: "string";
|
|
23818
|
+
readonly NUMBER: "number";
|
|
23819
|
+
readonly BOOL: "bool";
|
|
23820
|
+
};
|
|
23821
|
+
export type ScalarFieldSchemaResponseTypeEnum = typeof ScalarFieldSchemaResponseTypeEnum[keyof typeof ScalarFieldSchemaResponseTypeEnum];
|
|
23601
23822
|
/**
|
|
23602
23823
|
*
|
|
23603
23824
|
* @export
|
package/dist/esm/api.js
CHANGED
|
@@ -219,6 +219,9 @@ export const ArgoCdConnectionStatusEnum = {
|
|
|
219
219
|
export const ArgocdAssociatedServiceType = {
|
|
220
220
|
ARGOCD_APP: 'ARGOCD_APP'
|
|
221
221
|
};
|
|
222
|
+
export const ArrayFieldSchemaResponseTypeEnum = {
|
|
223
|
+
ARRAY: 'array'
|
|
224
|
+
};
|
|
222
225
|
export const AutomaticallyConfiguredAuthDtoModeEnum = {
|
|
223
226
|
AUTOMATICALLY_CONFIGURED: 'AUTOMATICALLY_CONFIGURED'
|
|
224
227
|
};
|
|
@@ -795,11 +798,6 @@ export const EnvironmentStatusEventOriginEnum = {
|
|
|
795
798
|
SKILL: 'SKILL',
|
|
796
799
|
TERRAFORM_PROVIDER: 'TERRAFORM_PROVIDER'
|
|
797
800
|
};
|
|
798
|
-
export const FieldSchemaResponseTypeEnum = {
|
|
799
|
-
STRING: 'string',
|
|
800
|
-
NUMBER: 'number',
|
|
801
|
-
BOOL: 'bool'
|
|
802
|
-
};
|
|
803
801
|
export const GcpJsonCredentialsAuthDtoModeEnum = {
|
|
804
802
|
GCP_JSON_CREDENTIALS: 'GCP_JSON_CREDENTIALS'
|
|
805
803
|
};
|
|
@@ -1054,6 +1052,12 @@ export const McpServerScope = {
|
|
|
1054
1052
|
export const MetricsConfigurationManagedByQoveryKindEnum = {
|
|
1055
1053
|
MANAGED_BY_QOVERY: 'MANAGED_BY_QOVERY'
|
|
1056
1054
|
};
|
|
1055
|
+
export const ObjectArrayItemResponseTypeEnum = {
|
|
1056
|
+
OBJECT: 'object'
|
|
1057
|
+
};
|
|
1058
|
+
export const ObjectFieldSchemaResponseTypeEnum = {
|
|
1059
|
+
OBJECT: 'object'
|
|
1060
|
+
};
|
|
1057
1061
|
/**
|
|
1058
1062
|
*
|
|
1059
1063
|
* @export
|
|
@@ -1439,6 +1443,16 @@ export const Route53StaticCredentialsRequestTypeEnum = {
|
|
|
1439
1443
|
export const Route53StaticCredentialsResponseTypeEnum = {
|
|
1440
1444
|
STATIC: 'STATIC'
|
|
1441
1445
|
};
|
|
1446
|
+
export const ScalarArrayItemResponseTypeEnum = {
|
|
1447
|
+
STRING: 'string',
|
|
1448
|
+
NUMBER: 'number',
|
|
1449
|
+
BOOL: 'bool'
|
|
1450
|
+
};
|
|
1451
|
+
export const ScalarFieldSchemaResponseTypeEnum = {
|
|
1452
|
+
STRING: 'string',
|
|
1453
|
+
NUMBER: 'number',
|
|
1454
|
+
BOOL: 'bool'
|
|
1455
|
+
};
|
|
1442
1456
|
export const ScalewayClusterCredentialsObjectTypeEnum = {
|
|
1443
1457
|
SCW: 'SCW'
|
|
1444
1458
|
};
|