Erkunden der Anforderung "Liste nach Abonnement" in der Service Fabric Mesh-API
Ruft alle Volumeressourcen in einem bestimmten Abonnement ab.
Ruft die Informationen zu allen Volumeressourcen in einem bestimmten Abonnement ab. Die Informationen enthalten die Volumebeschreibung und andere Laufzeitinformationen.
Anforderung
Methode | Anforderungs-URI |
---|---|
GET | /subscriptions/{subscriptionId}/providers/Microsoft.ServiceFabricMesh/volumes?api-version=2018-07-01-preview |
Parameter
Name | type | Erforderlich | Standort |
---|---|---|---|
subscriptionId |
Zeichenfolge | Ja | Pfad |
api-version |
Zeichenfolge | Ja | Abfrage |
subscriptionId
Typ: Zeichenfolge
Erforderlich: Ja
Der Kundenabonnementbezeichner
api-version
Typ: Zeichenfolge
Erforderlich: Ja
Standard:
Die Version der API. Dieser Parameter ist erforderlich, und sein Wert muss sein 2018-07-01-preview
.
Antworten
HTTP-Statuscode | BESCHREIBUNG | Antwortschema |
---|---|---|
200 (OK) | OK |
VolumeResourceDescriptionList |
Alle anderen status Codes | Fehler |
ErrorModel |
Beispiele
VolumesList
Anforderung
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabricMesh/volumes?api-version=2018-07-01-preview
Antwort 200
Text
{
"value": [
{
"type": "Microsoft.ServiceFabricMesh/volumes",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbzdemo/providers/Microsoft.ServiceFabricMesh/volumes/mysharel",
"name": "mysharel",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"description": "File share backed by Azure Files storage.",
"provider": "SFAzureFile",
"azureFileParameters": {
"shareName": "sharel",
"accountName": "sbzdemoaccount"
}
}
},
{
"type": "Microsoft.ServiceFabricMesh/volumes",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbzdemo/providers/Microsoft.ServiceFabricMesh/volumes/mysharew",
"name": "mysharew",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"description": "File share backed by Azure Files storage.",
"provider": "SFAzureFile",
"azureFileParameters": {
"shareName": "sharew",
"accountName": "sbzdemoaccount"
}
}
}
]
}