Skip to content
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
"location": "eastus2(stage)",
"name": "sto8596",
"properties": {
"geoReplicationStats": {
"status": "Live",
"lastSyncTime": "2018-10-30T00:25:34Z"
},
"isHnsEnabled": true,
"azureFilesAadIntegration": true,
"creationTime": "2017-06-01T02:42:41.7633306Z",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -223,6 +223,20 @@
},
{
"$ref": "../../../../../common-types/resource-management/v1/types.json#/parameters/SubscriptionIdParameter"
},
{
"name": "$expand",
"description": "May be used to expand the properties within account's properties. By default, data is not included when fecthing properties. Currently we only support geoReplicationStats.",
"in": "query",
"required": false,
"type": "string",
"enum": [
"geoReplicationStats"
],
"x-ms-enum": {
"name": "StorageAccountExpand",
"modelAsString": false
}
}
],
"responses": {
Expand Down Expand Up @@ -1300,6 +1314,31 @@
},
"description": "The URIs that are used to perform a retrieval of a public blob, queue, table, web or dfs object."
},
"GeoReplicationStats": {
"properties": {
"status": {
"readOnly": true,
"type": "string",
"description": "The status of the secondary location. Possible values are: - Live: Indicates that the secondary location is active and operational. - Bootstrap: Indicates initial synchronization from the primary location to the secondary location is in progress.This typically occurs when replication is first enabled. - Unavailable: Indicates that the secondary location is temporarily unavailable.",
"enum": [
"Live",
"Bootstrap",
"Unavailable"
],
"x-ms-enum": {
"name": "GeoReplicationStatus",
"modelAsString": true
}
},
"lastSyncTime": {
"readOnly": true,
"type": "string",
"format": "date-time",
"description": "All primary writes preceding this UTC date/time value are guaranteed to be available for read operations. Primary writes following this point in time may or may not be available for reads. Element may be default value if value of LastSyncTime is not available, this can happen if secondary is offline or we are in bootstrap."
}
},
"description": "Statistics related to replication for storage account's Blob, Table, Queue and File services. It is only available when geo-redundant replication is enabled for the storage account."
},
"StorageAccountProperties": {
"properties": {
"provisioningState": {
Expand Down Expand Up @@ -1418,9 +1457,15 @@
"x-ms-client-name": "IsHnsEnabled",
"description": "Account HierarchicalNamespace enabled if sets to true."
},
"geoReplicationStats": {
"$ref": "#/definitions/GeoReplicationStats",
"x-ms-client-name": "GeoReplicationStats",
"description": "Geo Replication Stats",
"readOnly": true
},
"failoverInProgress": {
"type": "boolean",
"x-ms-client-name": "FailoverInProgress ",
"x-ms-client-name": "FailoverInProgress",
"description": "If the failover is in progress, the value will be true, otherwise, it will be null.",
"readOnly": true
}
Expand Down