@@ -6,7 +6,7 @@ x-form-factors: public
66x-cdp-releases : PUBLIC
77x-audit : true
88info :
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