mirror of
https://github.com/microsoft/HybridRow.git
synced 2025-06-08 01:10:04 +01:00
Release roll-up snapshot of C#/C++ codebase at version 1.1.0-preview. This release matches the current shipping nugets.
97 lines
2.2 KiB
JSON
97 lines
2.2 KiB
JSON
{
|
|
"name": "Microsoft.Azure.Cosmos.BatchApi",
|
|
"version": "v1",
|
|
"schemas": [
|
|
{
|
|
"name": "BatchRequestHeaders",
|
|
"id": 1,
|
|
"type": "schema",
|
|
"properties":
|
|
[
|
|
{
|
|
"path": "sampleRequestHeader",
|
|
"type": { "type": "int64", "storage": "fixed" }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "BatchOperation",
|
|
"id": 2,
|
|
"type": "schema",
|
|
"properties":
|
|
[
|
|
{
|
|
"path": "operationType",
|
|
"type": { "type": "int32", "storage": "fixed" }
|
|
}, {
|
|
"path": "headers",
|
|
"type": { "type": "schema", "name": "BatchRequestHeaders" }
|
|
}, {
|
|
"path": "resourceType",
|
|
"type": { "type": "int32", "storage": "fixed" }
|
|
}, {
|
|
"path": "resourcePath",
|
|
"type": { "type": "utf8", "storage": "variable", "length": 1024 }
|
|
}, {
|
|
"path": "resourceBody",
|
|
"type": { "type": "binary", "storage": "variable" }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "BatchRequest",
|
|
"id": 3,
|
|
"type": "schema",
|
|
"properties":
|
|
[
|
|
{
|
|
"path": "operations",
|
|
"type": { "type": "array", "items": { "type": "schema", "name": "BatchOperation" } }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "BatchResponseHeaders",
|
|
"id": 4,
|
|
"type": "schema",
|
|
"properties":
|
|
[
|
|
{
|
|
"path": "sampleResponseHeader",
|
|
"type": { "type": "utf8", "storage": "variable", "length": 1024 }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "BatchOperationResponse",
|
|
"id": 5,
|
|
"type": "schema",
|
|
"properties":
|
|
[
|
|
{
|
|
"path": "statusCode",
|
|
"type": { "type": "int32", "storage": "fixed" }
|
|
}, {
|
|
"path": "headers",
|
|
"type": { "type": "schema", "name": "BatchResponseHeaders" }
|
|
}, {
|
|
"path": "resourceBody",
|
|
"type": { "type": "binary", "storage": "variable" }
|
|
}
|
|
]
|
|
},
|
|
{
|
|
"name": "BatchResponse",
|
|
"id": 6,
|
|
"type": "schema",
|
|
"properties":
|
|
[
|
|
{
|
|
"path": "operations",
|
|
"type": { "type": "array", "items": { "type": "schema", "name": "BatchOperationResponse" } }
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|