Skip to content

Commit 71f5b98

Browse files
CDP CLI 0.9.112
1 parent 4b11a15 commit 71f5b98

File tree

26 files changed

+732
-123
lines changed

26 files changed

+732
-123
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.111
3+
Version: 0.9.112
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.111
3+
Version: 0.9.112
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-04-11T13:59:34-0500",
11+
"date": "2024-04-25T14:37:32-0700",
1212
"dirty": true,
1313
"error": null,
14-
"full-revisionid": "6a51688922f3f4a4715e96b7269f9d836d3411c7",
15-
"version": "0.9.111"
14+
"full-revisionid": "651d5dfa9eec0bac85ee68a094f654975738cad1",
15+
"version": "0.9.112"
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.111
8+
version: 0.9.112
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.111
8+
version: 0.9.112
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.111
8+
version: 0.9.112
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.111
8+
version: 0.9.112
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.111
8+
version: 0.9.112
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.111
9+
version: 0.9.112
1010
title: Cloudera Data hub Service
1111
license:
1212
name: Apache 2.0

cdpcli/data/datalake/datalake.yaml

Lines changed: 74 additions & 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.111
9+
version: 0.9.112
1010
title: Cloudera Datalake Service
1111
license:
1212
name: Apache 2.0
@@ -1130,6 +1130,11 @@ definitions:
11301130
enableRangerRaz:
11311131
type: boolean
11321132
description: Whether Ranger RAZ is enabled for the datalake.
1133+
tags:
1134+
type: array
1135+
description: Datalake tags object containing the tag values defined for the datalake.
1136+
items:
1137+
$ref: '#/definitions/DatalakeResourceTag'
11331138
InstanceGroup:
11341139
type: object
11351140
description: The type of the instance group which also contains the actual instance(s)
@@ -1332,6 +1337,11 @@ definitions:
13321337
multiAz:
13331338
type: boolean
13341339
description: Flag which marks that the datalake is deployed in a multi-availability zone way or not.
1340+
tags:
1341+
type: array
1342+
description: Datalake tags object containing the tag values defined for the datalake.
1343+
items:
1344+
$ref: '#/definitions/DatalakeResourceTag'
13351345
DatalakeResourceTagRequest:
13361346
type: object
13371347
description: Tag for a datalake resource.
@@ -1358,6 +1368,19 @@ definitions:
13581368
value:
13591369
type: string
13601370
description: The value of the tag.
1371+
DatalakeResourceTag:
1372+
type: object
1373+
description: Tag for a datalake resource.
1374+
required:
1375+
- key
1376+
- value
1377+
properties:
1378+
key:
1379+
type: string
1380+
description: The key of tag.
1381+
value:
1382+
type: string
1383+
description: The value of the tag.
13611384
ListRuntimesRequest:
13621385
type: object
13631386
description: Request object for list datalake runtime versions.
@@ -3100,6 +3123,19 @@ definitions:
31003123
type: boolean
31013124
default: false
31023125
description: Whether to deploy a new datalake in a multi-availability zone way.
3126+
customInstanceTypes:
3127+
type: array
3128+
items:
3129+
$ref: '#/definitions/CustomInstanceType'
3130+
description: Any custom instance type to override defaults.
3131+
customInstanceDisks:
3132+
type: array
3133+
items:
3134+
$ref: '#/definitions/CustomInstanceDisk'
3135+
description: Any custom instance disk size to override defaults.
3136+
customDatabaseComputeStorage:
3137+
$ref: '#/definitions/CustomDatabaseComputeStorage'
3138+
description: Any custom database properties to override defaults.
31033139
ResizeDatalakeResponse:
31043140
type: object
31053141
description: Datalake resize response.
@@ -3125,6 +3161,11 @@ definitions:
31253161
cloudbreakVersion:
31263162
type: string
31273163
description: The Cloudbreak version used to create the data lake.
3164+
tags:
3165+
type: array
3166+
description: Datalake tags object containing the tag values defined for the datalake.
3167+
items:
3168+
$ref: '#/definitions/DatalakeResourceTag'
31283169
ScaleHorizontallyRequest:
31293170
type: object
31303171
description: Data Lake horizontal scaling request.
@@ -3313,3 +3354,35 @@ definitions:
33133354
UpdateOrchestratorStateResponse:
33143355
type: object
33153356
description: Response object for running orchestrator engine state update on the Data Lake cluster.
3357+
CustomInstanceType:
3358+
type: object
3359+
description: Request object for modified instance type.
3360+
properties:
3361+
name:
3362+
type: string
3363+
description: The name of the modified instance.
3364+
instanceType:
3365+
type: string
3366+
description: The modified instance type
3367+
CustomInstanceDisk:
3368+
type: object
3369+
description: Request object for modified instance disk.
3370+
properties:
3371+
name:
3372+
type: string
3373+
description: The name of the modified instance.
3374+
diskSize:
3375+
type: integer
3376+
format: int32
3377+
description: The modified disk size
3378+
CustomDatabaseComputeStorage:
3379+
type: object
3380+
description: Request object for modified database storage properties.
3381+
properties:
3382+
instanceType:
3383+
type: string
3384+
description: The modified instance type.
3385+
storageSize:
3386+
type: integer
3387+
format: int32
3388+
description: The modified storage size for the database.

0 commit comments

Comments
 (0)