Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions sdk/cosmosdb/arm-cosmosdb/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ export interface Location {
* values must be unique for each of the regions in which the database account exists.
*/
failoverPriority?: number;
/**
* Flag to indicate whether or not this region is an AvailabilityZone region
*/
isZoneRedundant?: boolean;
}

/**
Expand Down
6 changes: 6 additions & 0 deletions sdk/cosmosdb/arm-cosmosdb/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,12 @@ export const Location: msRest.CompositeMapper = {
type: {
name: "Number"
}
},
isZoneRedundant: {
serializedName: "isZoneRedundant",
type: {
name: "Boolean"
}
}
}
}
Expand Down