Auflisten nach Anwendungsdienst-Ressourcengruppe
Ruft alle Anwendungsressourcen in einer angegebenen Ressourcengruppe ab.
Ruft die Informationen zu allen Anwendungsressourcen in einer bestimmten Ressourcengruppe ab. Die Informationen enthalten Informationen zu den Diensten der Anwendung und anderen Laufzeiteigenschaften.
Anforderung
Methode | Anforderungs-URI |
---|---|
GET | /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications?api-version=2018-07-01-preview |
Parameter
Name | type | Erforderlich | Standort |
---|---|---|---|
subscriptionId |
Zeichenfolge | Ja | Pfad |
resourceGroupName |
Zeichenfolge | Ja | Pfad |
api-version |
Zeichenfolge | Ja | Abfrage |
subscriptionId
Typ: Zeichenfolge
Erforderlich: Ja
Der Kundenabonnementbezeichner
resourceGroupName
Typ: Zeichenfolge
Erforderlich: Ja
Azure-Ressourcengruppenname
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 |
ApplicationResourceDescriptionList |
Alle anderen status Codes | Fehler |
ErrorModel |
Beispiele
ApplicationList
Anforderung
GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications?api-version=2018-07-01-preview
Antwort 200
Text
{
"value": [
{
"type": "Microsoft.ServiceFabricMesh/applications",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp",
"name": "helloWorldApp",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"description": "SeaBreeze HelloWorld Application!",
"healthState": "Ok",
"serviceNames": [
"helloWorldService"
],
"status": "Ready"
}
},
{
"type": "Microsoft.ServiceFabricMesh/applications",
"location": "eastus",
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldAppWindows",
"name": "helloWorldAppWindows",
"tags": {},
"properties": {
"provisioningState": "Succeeded",
"description": "SeaBreeze HelloWorld Application!",
"healthState": "Ok",
"serviceNames": [
"helloWorldService"
],
"status": "Ready"
}
}
]
}