Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ACR] add regionEndpointEnabled to replication properties and replicationUpdateParameters #8840

Merged
merged 4 commits into from
May 9, 2020
Merged
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 @@ -2361,6 +2361,11 @@
"$ref": "#/definitions/Status",
"description": "The status of the replication at the time the operation was called.",
"readOnly": true
},
"regionEndpointEnabled": {
"description": "Specifies whether the replication's regional endpoint is enabled. Requests will not be routed to a replication whose regional endpoint is disabled, however its data will continue to be synced with other replications.",
"default": true,
"type": "boolean"
}
}
},
Expand All @@ -2374,6 +2379,20 @@
"additionalProperties": {
"type": "string"
}
},
"properties": {
"$ref": "#/definitions/ReplicationUpdateParametersProperties",
"description": "The parameters for updating a replication's properties",
"x-ms-client-flatten": true
}
}
},
"ReplicationUpdateParametersProperties": {
"type": "object",
"properties": {
"regionEndpointEnabled": {
"description": "Specifies whether the replication's regional endpoint is enabled. Requests will not be routed to a replication whose regional endpoint is disabled, however its data will continue to be synced with other replications.",
"type": "boolean"
}
}
},
Expand Down