Skip to content

Commit

Permalink
Merge pull request Azure#7 from rsharm7/port-stable
Browse files Browse the repository at this point in the history
Port stable changes to preview
  • Loading branch information
rsharm7 authored Feb 14, 2023
2 parents 59cd7b5 + 4888a40 commit 407c5c9
Show file tree
Hide file tree
Showing 9 changed files with 42 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8437,6 +8437,11 @@
"enableBurstCapacity": {
"description": "Flag to indicate enabling/disabling of Burst Capacity Preview feature on the account",
"type": "boolean"
},
"minimalTlsVersion": {
"description": "Indicates the minimum allowed Tls version. The default is Tls 1.0, except for Cassandra and Mongo API's, which only work with Tls 1.2.",
"type": "string",
"$ref": "#/definitions/MinimalTlsVersion"
}
}
},
Expand Down Expand Up @@ -8595,6 +8600,11 @@
"enableBurstCapacity": {
"description": "Flag to indicate enabling/disabling of Burst Capacity Preview feature on the account",
"type": "boolean"
},
"minimalTlsVersion": {
"description": "Indicates the minimum allowed Tls version. The default is Tls 1.0, except for Cassandra and Mongo API's, which only work with Tls 1.2.",
"type": "string",
"$ref": "#/definitions/MinimalTlsVersion"
}
},
"required": [
Expand Down Expand Up @@ -8777,6 +8787,11 @@
"enableBurstCapacity": {
"description": "Flag to indicate enabling/disabling of Burst Capacity Preview feature on the account",
"type": "boolean"
},
"minimalTlsVersion": {
"description": "Indicates the minimum allowed Tls version. The default is Tls 1.0, except for Cassandra and Mongo API's, which only work with Tls 1.2.",
"type": "string",
"$ref": "#/definitions/MinimalTlsVersion"
}
}
},
Expand Down Expand Up @@ -11697,6 +11712,19 @@
"name": "ContinuousTier",
"modelAsString": true
}
},
"MinimalTlsVersion": {
"description": "Indicates the minimum allowed Tls version. The default is Tls 1.0, except for Cassandra and Mongo API's, which only work with Tls 1.2.",
"type": "string",
"enum": [
"Tls",
"Tls11",
"Tls12"
],
"x-ms-enum": {
"name": "MinimalTlsVersion",
"modelAsString": true
}
}
},
"parameters": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
"totalThroughputLimit": 2000
},
"enableMaterializedViews": false,
"enableBurstCapacity": true
"enableBurstCapacity": true,
"minimalTlsVersion": "Tls12"
}
}
},
Expand Down Expand Up @@ -216,6 +217,7 @@
},
"enableMaterializedViews": false,
"enableBurstCapacity": true,
"minimalTlsVersion": "Tls12",
"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@
}
},
"enableMaterializedViews": false,
"minimalTlsVersion": "Tls",
"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
"networkAclBypassResourceIds": [],
"enablePartitionMerge": true,
"enableBurstCapacity": true,
"minimalTlsVersion": "Tls",
"diagnosticLogSettings": {
"enableFullTextQuery": "False"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@
"networkAclBypassResourceIds": [],
"enablePartitionMerge": true,
"enableBurstCapacity": true,
"minimalTlsVersion": "Tls",
"enableMaterializedViews": false,
"keysMetadata": {
"primaryMasterKey": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
"networkAclBypass": "None",
"networkAclBypassResourceIds": [],
"enableMaterializedViews": false,
"minimalTlsVersion": "Tls",
"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,8 @@
"enableFullTextQuery": "True"
},
"enablePartitionMerge": true,
"enableBurstCapacity": true
"enableBurstCapacity": true,
"minimalTlsVersion": "Tls"
}
}
},
Expand Down Expand Up @@ -190,6 +191,7 @@
},
"enableMaterializedViews": false,
"enableBurstCapacity": true,
"minimalTlsVersion": "Tls",
"keysMetadata": {
"primaryMasterKey": {
"generationTime": "2022-02-25T20:30:11Z"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@
"serverVersion": "3.2"
},
"enableAnalyticalStorage": true,
"enableMaterializedViews": false
"enableMaterializedViews": false,
"minimalTlsVersion": "Tls"
}
}
},
Expand Down Expand Up @@ -125,6 +126,7 @@
"enableFreeTier": false,
"apiProperties": {},
"enableAnalyticalStorage": false,
"minimalTlsVersion": "Tls",
"analyticalStorageConfiguration": null,
"networkAclBypass": "None",
"networkAclBypassResourceIds": [],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1017,7 +1017,7 @@
"hoursBetweenBackups": {
"type": "integer",
"format": "int32",
"description": "Number of hours to wait between taking a backup of the cluster."
"description": "Number of hours to wait between taking a backup of the cluster. To disable backups, set this property to 0."
},
"deallocated": {
"type": "boolean",
Expand Down

0 comments on commit 407c5c9

Please sign in to comment.