Skip to content

Commit

Permalink
Generated from 5ba703162c35b655a6f855725dad524cf1d4e49a
Browse files Browse the repository at this point in the history
Update swagger specs for Managed Instance
 - Add optional parameter maintenance configuration id.
  • Loading branch information
SDK Automation committed May 10, 2020
1 parent c1a732c commit 8873bb5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
8 changes: 8 additions & 0 deletions sdk/sql/arm-sql/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4757,6 +4757,10 @@ export interface ManagedInstance extends TrackedResource {
* The Id of the instance pool this managed server belongs to.
*/
instancePoolId?: string;
/**
* Specifies maintenance configuration id to apply to this managed instance.
*/
maintenanceConfigurationId?: string;
/**
* Minimal TLS version. Allowed values: 'None', '1.0', '1.1', '1.2'
*/
Expand Down Expand Up @@ -4866,6 +4870,10 @@ export interface ManagedInstanceUpdate {
* The Id of the instance pool this managed server belongs to.
*/
instancePoolId?: string;
/**
* Specifies maintenance configuration id to apply to this managed instance.
*/
maintenanceConfigurationId?: string;
/**
* Minimal TLS version. Allowed values: 'None', '1.0', '1.1', '1.2'
*/
Expand Down
12 changes: 12 additions & 0 deletions sdk/sql/arm-sql/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6729,6 +6729,12 @@ export const ManagedInstance: msRest.CompositeMapper = {
name: "String"
}
},
maintenanceConfigurationId: {
serializedName: "properties.maintenanceConfigurationId",
type: {
name: "String"
}
},
minimalTlsVersion: {
serializedName: "properties.minimalTlsVersion",
type: {
Expand Down Expand Up @@ -6863,6 +6869,12 @@ export const ManagedInstanceUpdate: msRest.CompositeMapper = {
name: "String"
}
},
maintenanceConfigurationId: {
serializedName: "properties.maintenanceConfigurationId",
type: {
name: "String"
}
},
minimalTlsVersion: {
serializedName: "properties.minimalTlsVersion",
type: {
Expand Down

0 comments on commit 8873bb5

Please sign in to comment.