Microsoft Azure · Schema
BlobEnumerationResults
An enumeration of blobs.
API ManagementCloudCloud ComputingEnterpriseInfrastructure as a ServicePlatform as a ServiceT1
Properties
| Name | Type | Description |
|---|---|---|
| ServiceEndpoint | string | The service endpoint URL. |
| ContainerName | string | The name of the container. |
| Prefix | string | The prefix used to filter results. |
| Marker | string | The marker used for pagination. |
| MaxResults | integer | The maximum number of results. |
| Blobs | object | |
| NextMarker | string | The next marker for pagination. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/BlobEnumerationResults",
"title": "BlobEnumerationResults",
"type": "object",
"description": "An enumeration of blobs.",
"properties": {
"ServiceEndpoint": {
"type": "string",
"description": "The service endpoint URL.",
"example": "example_value"
},
"ContainerName": {
"type": "string",
"description": "The name of the container.",
"example": "example_value"
},
"Prefix": {
"type": "string",
"description": "The prefix used to filter results.",
"example": "example_value"
},
"Marker": {
"type": "string",
"description": "The marker used for pagination.",
"example": "example_value"
},
"MaxResults": {
"type": "integer",
"description": "The maximum number of results.",
"example": 10
},
"Blobs": {
"type": "object",
"properties": {
"Blob": {
"type": "array",
"items": {
"$ref": "#/components/schemas/BlobItem"
}
},
"BlobPrefix": {
"type": "array",
"items": {
"type": "object",
"properties": {
"Name": {
"type": "string"
}
}
}
}
},
"example": "example_value"
},
"NextMarker": {
"type": "string",
"description": "The next marker for pagination.",
"example": "example_value"
}
}
}