Skip to content

Commit

Permalink
Remove TDE api from v5 tag (#14251)
Browse files Browse the repository at this point in the history
* Remove TDE api from v5 tag

* Added back TDE apis

* Fix prettier related issue
  • Loading branch information
viparek authored May 7, 2021
1 parent cec78db commit 5be09d0
Show file tree
Hide file tree
Showing 2 changed files with 149 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,111 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/{transparentDataEncryptionName}": {
"put": {
"tags": [
"TransparentDataEncryption"
],
"operationId": "TransparentDataEncryptions_CreateOrUpdate",
"description": "Creates or updates a database's transparent data encryption configuration.",
"x-ms-examples": {
"Create or update a database's transparent data encryption configuration": {
"$ref": "./examples/DatabaseTransparentDataEncryptionCreateOrUpdate.json"
}
},
"parameters": [
{
"$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter"
},
{
"$ref": "#/parameters/ServerNameParameter"
},
{
"name": "databaseName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the database for which setting the transparent data encryption applies."
},
{
"$ref": "#/parameters/TransparentDataEncryptionNameParameter"
},
{
"name": "parameters",
"in": "body",
"required": true,
"schema": {
"$ref": "#/definitions/TransparentDataEncryption"
},
"description": "The required parameters for creating or updating transparent data encryption."
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/TransparentDataEncryption"
}
},
"201": {
"description": "Created",
"schema": {
"$ref": "#/definitions/TransparentDataEncryption"
}
}
}
},
"get": {
"tags": [
"TransparentDataEncryption"
],
"operationId": "TransparentDataEncryptions_Get",
"description": "Gets a database's transparent data encryption configuration.",
"x-ms-examples": {
"Get a database's transparent data encryption configuration": {
"$ref": "./examples/DatabaseTransparentDataEncryptionGet.json"
}
},
"parameters": [
{
"$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter"
},
{
"$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter"
},
{
"$ref": "#/parameters/ServerNameParameter"
},
{
"name": "databaseName",
"in": "path",
"required": true,
"type": "string",
"description": "The name of the database for which the transparent data encryption applies."
},
{
"$ref": "#/parameters/TransparentDataEncryptionNameParameter"
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/TransparentDataEncryption"
}
}
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/transparentDataEncryption/{transparentDataEncryptionName}/operationResults": {
"get": {
"tags": [
Expand Down Expand Up @@ -442,6 +547,42 @@
],
"description": "Represents the response to a list elastic pool database activity request."
},
"TransparentDataEncryptionProperties": {
"properties": {
"status": {
"type": "string",
"description": "The status of the database transparent data encryption.",
"enum": [
"Enabled",
"Disabled"
],
"x-ms-enum": {
"name": "TransparentDataEncryptionStatus"
}
}
},
"description": "Represents the properties of a database transparent data encryption."
},
"TransparentDataEncryption": {
"properties": {
"location": {
"type": "string",
"readOnly": true,
"description": "Resource location."
},
"properties": {
"x-ms-client-flatten": true,
"$ref": "#/definitions/TransparentDataEncryptionProperties",
"description": "Represents the properties of the resource."
}
},
"allOf": [
{
"$ref": "../../../common/v1/types.json#/definitions/ProxyResource"
}
],
"description": "Represents a database transparent data encryption configuration."
},
"SloUsageMetric": {
"properties": {
"serviceLevelObjective": {
Expand Down Expand Up @@ -633,6 +774,14 @@
"description": "The name of the server.",
"x-ms-parameter-location": "method"
},
"DatabaseExpandParameter": {
"name": "$expand",
"in": "query",
"required": false,
"type": "string",
"description": "A comma separated list of child objects to expand in the response. Possible properties: serviceTierAdvisors, transparentDataEncryption.",
"x-ms-parameter-location": "method"
},
"TransparentDataEncryptionNameParameter": {
"name": "transparentDataEncryptionName",
"in": "path",
Expand Down
1 change: 0 additions & 1 deletion specification/sql/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ input-file:
- ./Microsoft.Sql/preview/2020-11-01-preview/SyncMembers.json
- ./Microsoft.Sql/preview/2020-11-01-preview/TdeCertificates.json
- ./Microsoft.Sql/preview/2020-11-01-preview/TimeZones.json
- ./Microsoft.Sql/preview/2020-11-01-preview/TransparentDataEncryptions.json
- ./Microsoft.Sql/preview/2020-11-01-preview/VirtualClusters.json
- ./Microsoft.Sql/preview/2020-11-01-preview/VirtualNetworkRules.json
- ./Microsoft.Sql/preview/2020-11-01-preview/WorkloadClassifiers.json
Expand Down

0 comments on commit 5be09d0

Please sign in to comment.