Skip to content

Commit

Permalink
Generated from 9d2cc52313bf9f45b172f6769d57d3be60ea1d6d
Browse files Browse the repository at this point in the history
Ran Prettier
  • Loading branch information
SDK Automation committed May 4, 2020
1 parent 33a8586 commit 22c165f
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
12 changes: 12 additions & 0 deletions sdk/cosmosdb/arm-cosmosdb/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,10 @@ export interface DatabaseAccountGetResults extends ARMResourceProperties {
* 'Disabled'
*/
publicNetworkAccess?: PublicNetworkAccess;
/**
* Flag to indicate whether Free Tier is enabled.
*/
enableFreeTier?: boolean;
}

/**
Expand Down Expand Up @@ -1391,6 +1395,10 @@ export interface DatabaseAccountCreateUpdateParameters extends ARMResourceProper
* 'Disabled'
*/
publicNetworkAccess?: PublicNetworkAccess;
/**
* Flag to indicate whether Free Tier is enabled.
*/
enableFreeTier?: boolean;
}

/**
Expand Down Expand Up @@ -1461,6 +1469,10 @@ export interface DatabaseAccountUpdateParameters {
* 'Disabled'
*/
publicNetworkAccess?: PublicNetworkAccess;
/**
* Flag to indicate whether Free Tier is enabled.
*/
enableFreeTier?: boolean;
}

/**
Expand Down
18 changes: 18 additions & 0 deletions sdk/cosmosdb/arm-cosmosdb/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -535,6 +535,12 @@ export const DatabaseAccountGetResults: msRest.CompositeMapper = {
type: {
name: "String"
}
},
enableFreeTier: {
serializedName: "properties.enableFreeTier",
type: {
name: "Boolean"
}
}
}
}
Expand Down Expand Up @@ -2408,6 +2414,12 @@ export const DatabaseAccountCreateUpdateParameters: msRest.CompositeMapper = {
type: {
name: "String"
}
},
enableFreeTier: {
serializedName: "properties.enableFreeTier",
type: {
name: "Boolean"
}
}
}
}
Expand Down Expand Up @@ -2532,6 +2544,12 @@ export const DatabaseAccountUpdateParameters: msRest.CompositeMapper = {
type: {
name: "String"
}
},
enableFreeTier: {
serializedName: "properties.enableFreeTier",
type: {
name: "Boolean"
}
}
}
}
Expand Down

0 comments on commit 22c165f

Please sign in to comment.