Partager via


Liste par abonnement réseau

Obtient toutes les ressources réseau d’un abonnement donné.

Obtient les informations sur toutes les ressources réseau d’un abonnement donné. Les informations incluent la description du réseau et d’autres propriétés d’exécution.

Requête

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

Paramètres

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

subscriptionId

Type : chaîne
Obligatoire : Oui

Identificateur d’abonnement client


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
NetworkResourceDescriptionList
Tous les autres codes status Error
ErrorModel

Exemples

NetworksList

Requête

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

Réponse 200

Corps
{
  "value": [
    {
      "type": "Microsoft.ServiceFabricMesh/networks",
      "location": "eastus",
      "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/{resourceGroup}/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetwork",
      "name": "helloWorldNetwork",
      "tags": {},
      "properties": {
        "provisioningState": "Succeeded",
        "addressPrefix": "10.0.0.4/22",
        "ingressConfig": {
          "qosLevel": "Bronze",
          "publicIPAddress": "52.191.12.219",
          "layer4": [
            {
              "publicPort": "80",
              "applicationName": "helloWorldApp",
              "serviceName": "helloWorldService",
              "endpointName": "helloWorldListener"
            }
          ]
        }
      }
    },
    {
      "type": "Microsoft.ServiceFabricMesh/networks",
      "location": "eastus",
      "id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/{resourceGroup}/providers/Microsoft.ServiceFabricMesh/networks/helloWorldNetworkWindows",
      "name": "helloWorldNetworkWindows",
      "tags": {},
      "properties": {
        "provisioningState": "Succeeded",
        "addressPrefix": "10.0.0.4/22",
        "ingressConfig": {
          "qosLevel": "Bronze",
          "publicIPAddress": "52.191.255.103",
          "layer4": [
            {
              "publicPort": "80",
              "applicationName": "helloWorldAppWindows",
              "serviceName": "helloWorldService",
              "endpointName": "helloWorldListener"
            }
          ]
        }
      }
    }
  ]
}