コード例 #1
0
 /// <summary>
 /// Gets the Connectivity Status to the external resources on which the Api
 /// Management service depends from inside the Cloud Service. This also returns
 /// the DNS Servers as visible to the CloudService.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the API Management service.
 /// </param>
 /// <param name='locationName'>
 /// Location in which the API Management service is deployed. This is one of
 /// the Azure Regions like West US, East US, South Central US.
 /// </param>
 /// <param name='cancellationToken'>
 /// The cancellation token.
 /// </param>
 public static async Task <NetworkStatusContract> ListByLocationAsync(this INetworkStatusOperations operations, string resourceGroupName, string serviceName, string locationName, CancellationToken cancellationToken = default(CancellationToken))
 {
     using (var _result = await operations.ListByLocationWithHttpMessagesAsync(resourceGroupName, serviceName, locationName, null, cancellationToken).ConfigureAwait(false))
     {
         return(_result.Body);
     }
 }
コード例 #2
0
 /// <summary>
 /// Gets the Connectivity Status to the external resources on which the Api
 /// Management service depends from inside the Cloud Service. This also returns
 /// the DNS Servers as visible to the CloudService.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group.
 /// </param>
 /// <param name='serviceName'>
 /// The name of the API Management service.
 /// </param>
 /// <param name='locationName'>
 /// Location in which the API Management service is deployed. This is one of
 /// the Azure Regions like West US, East US, South Central US.
 /// </param>
 public static NetworkStatusContract ListByLocation(this INetworkStatusOperations operations, string resourceGroupName, string serviceName, string locationName)
 {
     return(operations.ListByLocationAsync(resourceGroupName, serviceName, locationName).GetAwaiter().GetResult());
 }