Partager via


Liste par nom d’application

Obtient les services d’une application donnée.

Obtient les informations sur tous les services d’un service donné d’une application. Les informations incluent les propriétés d’exécution du service instance.

Requête

Méthode URI de demande
GET /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ServiceFabricMesh/applications/{applicationName}/services?api-version=2018-07-01-preview

Paramètres

Nom Type Obligatoire Emplacement
subscriptionId string Oui Chemin d’accès
resourceGroupName string Oui Chemin d’accès
applicationName string Oui Chemin d’accès
api-version string Oui Requête

subscriptionId

Type : chaîne
Obligatoire : Oui

Identificateur d’abonnement client


resourceGroupName

Type : chaîne
Obligatoire : Oui

Nom du groupe de ressources Azure


applicationName

Type : chaîne
Obligatoire : Oui

Identité de l’application.


api-version

Type : chaîne
Obligatoire : Oui
Par défaut : 2018-07-01-preview

Version de l’API. Ce paramètre est obligatoire et sa valeur doit être 2018-07-01-preview.

Réponses

Code d’état HTTP Description Schéma de réponse
200 (OK) Ok
ServiceList

Exemples

ServiceGetAll

Cet exemple montre comment répertorier tous les services d’une application donnée.

Requête

GET https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/applications/helloWorldApp/services?api-version=2018-07-01-preview

Réponse 200

Corps
{
  "value": [
    {
      "name": "helloWorldService",
      "type": "Microsoft.ServiceFabricMesh/services",
      "properties": {
        "osType": "Linux",
        "codePackages": [
          {
            "name": "helloWorldCode",
            "image": "seabreeze/sbz-helloworld:1.0-alpine",
            "endpoints": [
              {
                "name": "helloWorldListener",
                "port": "80"
              }
            ],
            "resources": {
              "requests": {
                "memoryInGB": "1",
                "cpu": "1"
              }
            }
          },
          {
            "name": "helloWorldSideCar",
            "image": "seabreeze/sbz-helloworld-sidecar:1.0-alpine",
            "resources": {
              "requests": {
                "memoryInGB": "1",
                "cpu": "1"
              }
            }
          }
        ],
        "networkRefs": [
          {
            "name": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/sbz_demo/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork"
          }
        ],
        "description": "SeaBreeze Hello World Service.",
        "replicaCount": "1",
        "healthState": "Ok",
        "status": "Unknown"
      }
    }
  ]
}