Skip to content

Commit 73fe910

Browse files
CDP CLI 0.9.109
1 parent 2ca5082 commit 73fe910

File tree

22 files changed

+157
-56
lines changed

22 files changed

+157
-56
lines changed

PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: cdpcli
3-
Version: 0.9.108
3+
Version: 0.9.109
44
Summary: Cloudera CDP Command Line Interface
55
Home-page: https://console.cdp.cloudera.com/
66
Author: Cloudera, Inc.

cdpcli.egg-info/PKG-INFO

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Metadata-Version: 2.1
22
Name: cdpcli
3-
Version: 0.9.108
3+
Version: 0.9.109
44
Summary: Cloudera CDP Command Line Interface
55
Home-page: https://console.cdp.cloudera.com/
66
Author: Cloudera, Inc.

cdpcli/_version.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88

99
version_json = '''
1010
{
11-
"date": "2024-03-13T12:06:13-0700",
11+
"date": "2024-03-27T13:31:47-0500",
1212
"dirty": true,
1313
"error": null,
14-
"full-revisionid": "60f13904b32acf674e7f90339fbc867483eac220",
15-
"version": "0.9.108"
14+
"full-revisionid": "74b1094762684f36b4b86a1b0d0aae2238762df8",
15+
"version": "0.9.109"
1616
}
1717
''' # END VERSION_JSON
1818

cdpcli/data/audit/audit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ x-products: CDP
55
x-form-factors: public
66
x-cdp-releases: PUBLIC
77
info:
8-
version: 0.9.108
8+
version: 0.9.109
99
title: Cloudera Audit Service
1010
license:
1111
name: Apache 2.0

cdpcli/data/cloudprivatelinks/cloudprivatelinks.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ x-products: CDP
55
x-form-factors: public
66
x-cdp-releases: PUBLIC
77
info:
8-
version: 0.9.108
8+
version: 0.9.109
99
title: Cloudera CloudPrivateLinks API Service
1010
license:
1111
name: Apache 2.0

cdpcli/data/compute/compute.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ x-products: CDP
55
x-form-factors: public,private
66
x-cdp-releases: PUBLIC
77
info:
8-
version: 0.9.108
8+
version: 0.9.109
99
title: Cloudera Compute Service
1010
license:
1111
name: Apache 2.0

cdpcli/data/consumption/consumption.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ x-products: CDP
55
x-form-factors: public
66
x-cdp-releases: PUBLIC
77
info:
8-
version: 0.9.108
8+
version: 0.9.109
99
title: Cloudera Consumption API Service
1010
license:
1111
name: Apache 2.0

cdpcli/data/datacatalog/datacatalog.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ x-form-factors: public
55
x-cdp-releases: PUBLIC
66
x-audit: true
77
info:
8-
version: 0.9.108
8+
version: 0.9.109
99
title: Cloudera DataCatalog Service
1010
license:
1111
name: Apache 2.0

cdpcli/data/datahub/datahub.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ x-form-factors: public
66
x-cdp-releases: PUBLIC
77
x-audit: true
88
info:
9-
version: 0.9.108
9+
version: 0.9.109
1010
title: Cloudera Data hub Service
1111
license:
1212
name: Apache 2.0

cdpcli/data/datalake/datalake.yaml

Lines changed: 57 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ x-form-factors: public
66
x-cdp-releases: PUBLIC
77
x-audit: true
88
info:
9-
version: 0.9.108
9+
version: 0.9.109
1010
title: Cloudera Datalake Service
1111
license:
1212
name: Apache 2.0
@@ -823,7 +823,7 @@ paths:
823823
$ref: '#/definitions/Error'
824824
/api/v1/datalake/resizeDatalake:
825825
post:
826-
summary: Resizes the given datalake to the given target size. Currently, the only valid use of this is for resizing a light duty datalake to a medium duty datalake.
826+
summary: Resizes the given datalake to the given target size.
827827
description: Resizes the datalake to the given size.
828828
operationId: resizeDatalake
829829
x-mutating: true
@@ -842,6 +842,27 @@ paths:
842842
description: The default response on an error.
843843
schema:
844844
$ref: '#/definitions/Error'
845+
/api/v1/datalake/scaleHorizontally:
846+
post:
847+
summary: Horizontally scale the Data Lake nodes, to add additional compute nodes to the cluster.
848+
description: Horizontally scale the target host group in the Data Lake cluster. The possible option for the instance group are raz_scale_out, hms_scale_out, kafka_scale_out, solr_scale_out, storage_scale_out
849+
operationId: scaleHorizontally
850+
x-mutating: true
851+
parameters:
852+
- name: input
853+
in: body
854+
required: true
855+
schema:
856+
$ref: '#/definitions/ScaleHorizontallyRequest'
857+
responses:
858+
200:
859+
description: Successful response to a valid Data Lake horizontal scaling request.
860+
schema:
861+
$ref: '#/definitions/ScaleHorizontallyResponse'
862+
default:
863+
description: The default response on an error.
864+
schema:
865+
$ref: '#/definitions/Error'
845866
/api/v1/datalake/recoverDatalake:
846867
post:
847868
summary: Recover data lake to the original version after a failed upgrade.
@@ -3068,7 +3089,7 @@ definitions:
30683089
description: The name or CRN of the datalake.
30693090
targetSize:
30703091
type: string
3071-
description: The target size for the datalake.
3092+
description: The target size for the datalake. The resize target size can be MEDIUM_DUTY or ENTERPRISE. If the runtime version >= 7.2.17 target size is ENTERPRISE. If not, the target size is MEDIUM_DUTY.
30723093
enum:
30733094
- MEDIUM_DUTY_HA
30743095
- ENTERPRISE
@@ -3101,6 +3122,39 @@ definitions:
31013122
cloudbreakVersion:
31023123
type: string
31033124
description: The Cloudbreak version used to create the data lake.
3125+
ScaleHorizontallyRequest:
3126+
type: object
3127+
description: Data Lake horizontal scaling request.
3128+
required:
3129+
- datalakeName
3130+
- instanceGroupName
3131+
- instanceGroupDesiredCount
3132+
properties:
3133+
datalakeName:
3134+
type: string
3135+
description: The name of the Data Lake
3136+
instanceGroupName:
3137+
type: string
3138+
description: The target host group name to be scaled.
3139+
enum:
3140+
- solr_scale_out
3141+
- hms_scale_out
3142+
- raz_scale_out
3143+
- kafka_scale_out
3144+
- storage_scale_out
3145+
instanceGroupDesiredCount:
3146+
type: integer
3147+
format: int32
3148+
minimum: 0
3149+
maximum: 40
3150+
description: The target number of the scaling operation. If the desired count is less than the actual node count the scaling action will be a downscale operation.
3151+
ScaleHorizontallyResponse:
3152+
type: object
3153+
description: Data Lake horizontal scaling response
3154+
properties:
3155+
datalakeName:
3156+
type: string
3157+
description: The name of the datalake.
31043158
ReplaceRecipesRequest:
31053159
type: object
31063160
description: The request for replacing recipes.

0 commit comments

Comments
 (0)