Skip to content

Commit

Permalink
Fix 2 linting errors and some correctness errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhenyu Zhou committed Dec 23, 2020
1 parent 11e9fac commit d5e0ec9
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -858,6 +858,7 @@
},
"diskSizeGB": {
"type": "integer",
"format": "int32",
"description": "ReadOnly. The DiskSize in GB. Do not set this value.",
"readOnly": true
}
Expand Down Expand Up @@ -956,6 +957,10 @@
"$ref": "./scriptActions.json#/definitions/ScriptAction"
},
"description": "The list of script actions on the role."
},
"encryptDataDisks": {
"type": "boolean",
"description": "Indicates whether encrypt the data disks."
}
},
"description": "Describes a role on the cluster."
Expand Down Expand Up @@ -1001,6 +1006,14 @@
"msiResourceId": {
"type": "string",
"description": "The managed identity (MSI) that is allowed to access the storage account, only to be specified for Azure Data Lake Storage Gen 2."
},
"saskey": {
"type": "string",
"description": "The shared access signature."
},
"fileshare": {
"type": "string",
"description": "The file share name."
}
},
"description": "The storage Account."
Expand Down Expand Up @@ -1221,6 +1234,10 @@
"type": "string",
"description": "The version of the cluster."
},
"clusterHdpVersion": {
"type": "string",
"description": "The hdp version of the cluster."
},
"osType": {
"type": "string",
"description": "The type of operating system.",
Expand Down Expand Up @@ -1314,6 +1331,10 @@
"$ref": "#/definitions/EncryptionInTransitProperties",
"description": "The encryption-in-transit properties."
},
"storageProfile": {
"$ref": "#/definitions/StorageProfile",
"description": "The storage profile."
},
"minSupportedTlsVersion": {
"type": "string",
"description": "The minimal supported tls version."
Expand Down Expand Up @@ -1547,6 +1568,10 @@
"readOnly": true,
"type": "string",
"description": "The client id of user assigned identity."
},
"tenantId": {
"type": "string",
"description": "The tenant id of user assigned identity."
}
}
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
"description": "The display name"
},
"isDefault": {
"type": "string",
"type": "boolean",
"description": "Whether or not the version is the default version."
},
"componentVersions": {
Expand Down Expand Up @@ -373,11 +373,13 @@
},
"currentValue": {
"description": "The current usage.",
"type": "integer"
"type": "integer",
"format": "int32"
},
"limit": {
"description": "The maximum allowed usage.",
"type": "integer"
"type": "integer",
"format": "int64"
},
"name": {
"description": "The details about the localizable name of the used resource.",
Expand Down

0 comments on commit d5e0ec9

Please sign in to comment.