kb-cloud-client-typescript 2.2.39 → 2.2.41
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/adminapi/apis/backup-method-api.d.ts +10 -2
- package/dist/adminapi/apis/backup-method-api.d.ts.map +1 -1
- package/dist/adminapi/apis/backup-method-api.js +10 -5
- package/dist/adminapi/apis/backup-method-api.js.map +1 -1
- package/dist/adminapi/apis/billing-api.d.ts +18 -18
- package/dist/adminapi/apis/billing-api.d.ts.map +1 -1
- package/dist/adminapi/apis/billing-api.js +13 -9
- package/dist/adminapi/apis/billing-api.js.map +1 -1
- package/dist/adminapi/apis/shared-api.d.ts +10 -2
- package/dist/adminapi/apis/shared-api.d.ts.map +1 -1
- package/dist/adminapi/apis/shared-api.js +10 -5
- package/dist/adminapi/apis/shared-api.js.map +1 -1
- package/dist/adminapi/models/backup-method-option.d.ts +6 -0
- package/dist/adminapi/models/backup-method-option.d.ts.map +1 -1
- package/dist/openapi/apis/backup-method-api.d.ts +10 -2
- package/dist/openapi/apis/backup-method-api.d.ts.map +1 -1
- package/dist/openapi/apis/backup-method-api.js +10 -5
- package/dist/openapi/apis/backup-method-api.js.map +1 -1
- package/dist/openapi/apis/billing-api.d.ts +18 -18
- package/dist/openapi/apis/billing-api.d.ts.map +1 -1
- package/dist/openapi/apis/billing-api.js +13 -9
- package/dist/openapi/apis/billing-api.js.map +1 -1
- package/dist/openapi/apis/shared-api.d.ts +10 -2
- package/dist/openapi/apis/shared-api.d.ts.map +1 -1
- package/dist/openapi/apis/shared-api.js +10 -5
- package/dist/openapi/apis/shared-api.js.map +1 -1
- package/dist/openapi/models/backup-method-option.d.ts +6 -0
- package/dist/openapi/models/backup-method-option.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/adminapi/apis/backup-method-api.ts +18 -5
- package/src/adminapi/apis/billing-api.ts +27 -23
- package/src/adminapi/apis/shared-api.ts +18 -5
- package/src/adminapi/models/backup-method-option.ts +6 -0
- package/src/adminapi.yaml +12 -0
- package/src/openapi/apis/backup-method-api.ts +18 -5
- package/src/openapi/apis/billing-api.ts +27 -23
- package/src/openapi/apis/shared-api.ts +18 -5
- package/src/openapi/models/backup-method-option.ts +6 -0
- package/src/openapi.yaml +12 -0
package/src/openapi.yaml
CHANGED
|
@@ -3940,6 +3940,11 @@ paths:
|
|
|
3940
3940
|
description: The component type is required when withRebuildInstance/withHScale is true.
|
|
3941
3941
|
schema:
|
|
3942
3942
|
type: string
|
|
3943
|
+
- name: mode
|
|
3944
|
+
in: query
|
|
3945
|
+
description: The cluster mode, used to filter out unsupported backup methods.
|
|
3946
|
+
schema:
|
|
3947
|
+
type: string
|
|
3943
3948
|
responses:
|
|
3944
3949
|
'200':
|
|
3945
3950
|
content:
|
|
@@ -13552,11 +13557,13 @@ paths:
|
|
|
13552
13557
|
- description: The type of aggregation time
|
|
13553
13558
|
in: query
|
|
13554
13559
|
name: aggregationTime
|
|
13560
|
+
required: true
|
|
13555
13561
|
schema:
|
|
13556
13562
|
$ref: '#/components/schemas/aggregationTimeType'
|
|
13557
13563
|
- description: The type of aggregation group
|
|
13558
13564
|
in: query
|
|
13559
13565
|
name: aggregationGroup
|
|
13566
|
+
required: true
|
|
13560
13567
|
schema:
|
|
13561
13568
|
$ref: '#/components/schemas/orgAggregationGroupType'
|
|
13562
13569
|
- $ref: '#/components/parameters/startTime'
|
|
@@ -20370,6 +20377,11 @@ components:
|
|
|
20370
20377
|
description: |
|
|
20371
20378
|
If set to true, the restore will be ready after the cluster is running.
|
|
20372
20379
|
If set to false, the restore will be ready after the cluster is created.
|
|
20380
|
+
notSupportedModes:
|
|
20381
|
+
type: array
|
|
20382
|
+
description: The cluster modes that this backup method does not support
|
|
20383
|
+
items:
|
|
20384
|
+
type: string
|
|
20373
20385
|
description:
|
|
20374
20386
|
$ref: '#/components/schemas/localizedDescription'
|
|
20375
20387
|
selectedObjectOption:
|