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

Object Replication update to swagger (update from James OR branch) #9024

Merged
Merged
Changes from 1 commit
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
Next Next commit
Object Replication update to swagger (update from James OR branch)
  • Loading branch information
amnguye committed Apr 15, 2020
commit 403dd69826b89169cc74f73cbee032bd2214f1d4
Original file line number Diff line number Diff line change
Expand Up @@ -2959,6 +2959,11 @@
"x-ms-client-name": "Metadata",
"x-ms-header-collection-prefix": "x-ms-meta-"
},
"x-ms-or": {
amnguye marked this conversation as resolved.
Show resolved Hide resolved
"type": "string",
"x-ms-client-name": "ObjectReplication",
"x-ms-header-collection-prefix": "x-ms-or-"
},
"Content-Length": {
"type": "integer",
"format": "int64",
Expand Down Expand Up @@ -3482,6 +3487,11 @@
"x-ms-client-name": "Metadata",
"x-ms-header-collection-prefix": "x-ms-meta-"
},
"x-ms-or": {
"type": "string",
"x-ms-client-name": "ObjectReplication",
"x-ms-header-collection-prefix": "x-ms-or-"
},
"x-ms-blob-type": {
"x-ms-client-name": "BlobType",
"description": "The blob's type.",
Expand Down Expand Up @@ -9380,6 +9390,9 @@
},
"BlobTags": {
"$ref": "#/definitions/BlobTags"
},
"ObjectReplication": {
"$ref": "#/definitions/BlobObjectReplication"
}
}
},
Expand Down Expand Up @@ -10284,6 +10297,15 @@
"type": "string"
}
},
"BlobObjectReplication": {
"type": "object",
"xml": {
"name": "ObjectReplication"
},
"additionalProperties": {
"type": "string"
}
},
"Metrics": {
"description": "a summary of request statistics grouped by API in hour or minute aggregates for blobs",
"required": [
Expand Down Expand Up @@ -11456,6 +11478,16 @@
"x-ms-parameter-location": "method",
"description": "Required. The value of this header must be multipart/mixed with a batch boundary. Example header value: multipart/mixed; boundary=batch_<GUID>"
},
"ObjectReplication": {
"name": "x-ms-or",
"x-ms-client-name": "objectReplication",
"in": "header",
"required": false,
"type": "string",
"x-ms-parameter-location": "method",
"description": "Optional. Only valid when Object Replication is enabled for the storage container. When retrieving this header on the source blob, it will return the header with the policy id and rule id (e.g. x-ms-or-policyid_ruleid), and the value will be the status of the replication (e.g. complete, failed). When retrieving the status on the destination blob, the policy id will be provided as the value of this header (e.g. x-ms-or-policy-id: policy-id).",
"x-ms-header-collection-prefix": "x-ms-or-"
},
"PathRenameMode": {
"name": "mode",
"x-ms-client-name": "pathRenameMode",
Expand Down Expand Up @@ -11811,4 +11843,4 @@
"description": "Content disposition for given resource"
}
}
}
}
amnguye marked this conversation as resolved.
Show resolved Hide resolved