Skip to content

Commit

Permalink
Release sql microsoft.sql 2023 02 01 preview (#25293)
Browse files Browse the repository at this point in the history
* Adds base for updating Microsoft.Sql from version preview/2022-11-01-preview to version 2023-02-01-preview

* Updates readme

* Updates API version in new specs and examples

* add mi refresh API (#24093)

* add mi refresh API

* remove stray character

* add examples

* fix lro error

* fix lro error only in example

* fixing prettier issue

* Test commit - adding error schema

* Test2

* Test - changing error type

* Revert "Test - changing error type"

This reverts commit 84fff94.

* Reverting 3 test commits

* Test - adding commong error type reference

* fix type format errors

---------

Co-authored-by: Stefan Krivokapic <[email protected]>

* Adding changes from main to release branch. PRs 24175 and 24185 (#24221)

* Enable multiple partner servers and failover of read-only endpoint for SQL DB Failover Group in version 2023-02-01-preview. (#24132)

* Added the swagger spec and example json files for failvoer group API update in V2023-020-1

* Corrected the FailoverGroupGet.json example

* Updated the auto-generated FailoverGroups.json

Fixed FailoverGroups.json swagger arm-id attribute for databases field

* Added the missing headers field manually

* Fix FailoverGroups.json

---------

Co-authored-by: Sharan Singh <[email protected]>

* Changes to Location Capabilities (#24209)

* Loc cap changes

* removing changes not related to my changes in dsmain

* DAG API 2023-02-01 (#24108)

* add new dag api version

* Update swagger

* Update swagger

* patch resource

* make replicationMode writable

* Add FreeLimitExhaustion Capability in 2023-02-01-preview API (#24224)

* Add FreeLimitExhaustion Capability in 2023-02-01-preview API

* Change property from name to exhaustionBehaviorType

* generate swagger for LocationCapabilites (#24290)

* inital commit for LTR Policy Immutability (#24347)

* inital commit for immutable ltr backups (#24349)

* Update Servers swagger files with adding property "IsIPv6Enabled" (#24305)

* Update swagger files for Server API

* Add v5 tag for Servers

* Restore none for minimal TLS version

* Add auto rotation param to databases api (#24339)

* Add auto rotation param to databases api

* add armid

* Adding IsFreemium and CreateTime to Get MI API (#24239)

* Updated the examples for LTR Policies and LTR Backups (#24821)

* Updated the examples for LTR Policies and LTR Backups

* Not sure why makeBackupsImmutable got deleted

* updating swagger files for enum name changes (#24742)

* Carrying over minor changes for the 2023-02-01-preview release (#25177)

* Carrying over minor changes for the 2023-02-01-preview release

* Reverting example files that didn't have DsMainDev side changes, and fixing prettier check

* Fixes for LTR examples with model validation and prettier check for ServerDelete

* Reverting LTR changes

* Adding arm-id to serversjson

* swagger changes for adding new parameter in dc telemetry (#24834)

* testing push

* reverting push

* swagger files for DC add parameter change

* delete added file

* modified swagger files without Venkat's change

* modified swagger files

* changed modelAsString to true

* add example files

* add example files

* fix mismatch

* Removing Pattern from ManagedInstance to avoid incident  (#25295)

* Carrying over minor changes for the 2023-02-01-preview release

* Reverting example files that didn't have DsMainDev side changes, and fixing prettier check

* Fixes for LTR examples with model validation and prettier check for ServerDelete

* Reverting LTR changes

* Adding arm-id to serversjson

* Removing the Pattern property from ManagedInstances.json as it should not be present and will cause issues in downstream client generation

---------

Co-authored-by: guptanitish-ms <[email protected]>
Co-authored-by: Stefan Krivokapic <[email protected]>
Co-authored-by: lobashh <[email protected]>
Co-authored-by: Sharan Singh <[email protected]>
Co-authored-by: Aleksand4rZivanovic <[email protected]>
Co-authored-by: a-lazarlazic <[email protected]>
Co-authored-by: mykolian <[email protected]>
Co-authored-by: Srna Nikolic <[email protected]>
Co-authored-by: rebeccaxu-ms <[email protected]>
Co-authored-by: LeiWang3 <[email protected]>
Co-authored-by: viparek <[email protected]>
Co-authored-by: Nikola Mirkovic <[email protected]>
Co-authored-by: pmahanandire <[email protected]>
Co-authored-by: nidhigupta <[email protected]>
  • Loading branch information
15 people authored Aug 23, 2023
1 parent 1e8906b commit c942bdc
Show file tree
Hide file tree
Showing 793 changed files with 91,376 additions and 3 deletions.
1 change: 1 addition & 0 deletions custom-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -973,6 +973,7 @@ francecentral
francesouth
freebsd
freeflow
freemium
frontdoor
frulian
fsaction
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,240 @@
{
"swagger": "2.0",
"info": {
"version": "2023-02-01-preview",
"title": "SqlManagementClient",
"description": "The Azure SQL Database management API provides a RESTful set of web APIs that interact with Azure SQL Database services to manage your databases. The API enables users to create, retrieve, update, and delete databases, servers, and other entities."
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"paths": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Sql/servers/{serverName}/databases/{databaseName}/dataMaskingPolicies/{dataMaskingPolicyName}": {
"get": {
"tags": [
"DataMaskingPolicies"
],
"description": "Gets the database data masking policy.",
"operationId": "DataMaskingPolicies_Get",
"parameters": [
{
"$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter"
},
{
"$ref": "#/parameters/ServerNameParameter"
},
{
"$ref": "#/parameters/DatabaseNameParameter"
},
{
"name": "dataMaskingPolicyName",
"in": "path",
"description": "The name of the database for which the data masking policy applies.",
"required": true,
"type": "string",
"enum": [
"Default"
],
"x-ms-enum": {
"name": "DataMaskingPolicyName",
"modelAsString": true
}
},
{
"$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Successfully retrieved the database data masking policies.",
"schema": {
"$ref": "#/definitions/DataMaskingPolicy"
}
},
"default": {
"description": "*** Error Responses: ***"
}
},
"x-ms-examples": {
"Gets the database data masking policies.": {
"$ref": "./examples/DataMaskingPolicyGet.json"
}
}
},
"put": {
"tags": [
"DataMaskingPolicies"
],
"description": "Creates or updates a database data masking policy.",
"operationId": "DataMaskingPolicies_CreateOrUpdate",
"parameters": [
{
"$ref": "../../../common/v1/types.json#/parameters/ResourceGroupParameter"
},
{
"$ref": "#/parameters/ServerNameParameter"
},
{
"$ref": "#/parameters/DatabaseNameParameter"
},
{
"name": "dataMaskingPolicyName",
"in": "path",
"description": "The name of the database for which the data masking policy applies.",
"required": true,
"type": "string",
"enum": [
"Default"
],
"x-ms-enum": {
"name": "DataMaskingPolicyName",
"modelAsString": true
}
},
{
"name": "parameters",
"in": "body",
"description": "Parameters for creating or updating a data masking policy.",
"required": true,
"schema": {
"$ref": "#/definitions/DataMaskingPolicy"
}
},
{
"$ref": "../../../common/v1/types.json#/parameters/SubscriptionIdParameter"
},
{
"$ref": "../../../common/v1/types.json#/parameters/ApiVersionParameter"
}
],
"responses": {
"200": {
"description": "Successfully created database data masking policy.",
"schema": {
"$ref": "#/definitions/DataMaskingPolicy"
}
},
"default": {
"description": "*** Error Responses: ***"
},
"201": {
"description": "Successfully created database data masking policy..",
"schema": {
"$ref": "#/definitions/DataMaskingPolicy"
}
}
},
"x-ms-examples": {
"Create or update data masking policy max": {
"$ref": "./examples/DataMaskingPolicyCreateOrUpdateMax.json"
},
"Create or update data masking policy min.": {
"$ref": "./examples/DataMaskingPolicyCreateOrUpdateMin.json"
}
}
}
}
},
"definitions": {
"DataMaskingPolicy": {
"description": "A database data masking policy.",
"type": "object",
"allOf": [
{
"$ref": "../../../common/v1/types.json#/definitions/ProxyResource"
}
],
"properties": {
"location": {
"description": "The location of the data masking policy.",
"type": "string",
"readOnly": true
},
"kind": {
"description": "The kind of Data Masking Policy. Metadata, used for Azure portal.",
"type": "string",
"readOnly": true
},
"properties": {
"$ref": "#/definitions/DataMaskingPolicyProperties",
"description": "Resource properties.",
"x-ms-client-flatten": true
}
}
},
"DataMaskingPolicyProperties": {
"description": "The properties of a database data masking policy.",
"required": [
"dataMaskingState"
],
"type": "object",
"properties": {
"dataMaskingState": {
"description": "The state of the data masking policy.",
"enum": [
"Enabled",
"Disabled"
],
"type": "string",
"x-ms-enum": {
"name": "DataMaskingState",
"modelAsString": false
}
},
"exemptPrincipals": {
"description": "The list of the exempt principals. Specifies the semicolon-separated list of database users for which the data masking policy does not apply. The specified users receive data results without masking for all of the database queries.",
"type": "string"
},
"applicationPrincipals": {
"description": "The list of the application principals. This is a legacy parameter and is no longer used.",
"type": "string",
"readOnly": true
},
"maskingLevel": {
"description": "The masking level. This is a legacy parameter and is no longer used.",
"type": "string",
"readOnly": true
}
}
}
},
"parameters": {
"DatabaseNameParameter": {
"name": "databaseName",
"in": "path",
"description": "The name of the database.",
"required": true,
"type": "string",
"x-ms-parameter-location": "method"
},
"ServerNameParameter": {
"name": "serverName",
"in": "path",
"description": "The name of the server.",
"required": true,
"type": "string",
"x-ms-parameter-location": "method"
}
},
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"description": "Azure Active Directory OAuth2 Flow",
"flow": "implicit",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
}
}
Loading

0 comments on commit c942bdc

Please sign in to comment.