Пример #1
0
 /// <summary>
 /// The Get Dedicated Circuit Stats operation retrieves the
 /// bytesin/bytesout of the dedicated circuit on primary/secondary
 /// devices for specified peering type.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.ExpressRoute.IDedicatedCircuitStatsOperations.
 /// </param>
 /// <param name='serviceKey'>
 /// Required. The service key representing the circuit.
 /// </param>
 /// <param name='accessType'>
 /// Required. Whether the peering is private or public or microsoft.
 /// </param>
 /// <returns>
 /// The Get DedicatedCircuitStats operation response.
 /// </returns>
 public static DedicatedCircuitStatsGetResponse Get(this IDedicatedCircuitStatsOperations operations, string serviceKey, BgpPeeringAccessType accessType)
 {
     return(Task.Factory.StartNew((object s) =>
     {
         return ((IDedicatedCircuitStatsOperations)s).GetAsync(serviceKey, accessType);
     }
                                  , operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult());
 }
Пример #2
0
 /// <summary>
 /// Initializes a new instance of the ExpressRouteManagementClient
 /// class.
 /// </summary>
 /// <param name='httpClient'>
 /// The Http client
 /// </param>
 public ExpressRouteManagementClient(HttpClient httpClient)
     : base(httpClient)
 {
     this._authorizedDedicatedCircuits   = new AuthorizedDedicatedCircuitOperations(this);
     this._borderGatewayProtocolPeerings = new BorderGatewayProtocolPeeringOperations(this);
     this._crossConnections = new CrossConnectionOperations(this);
     this._dedicatedCircuitLinkAuthorizationMicrosoftIds = new DedicatedCircuitLinkAuthorizationMicrosoftIdOperations(this);
     this._dedicatedCircuitLinkAuthorizations            = new DedicatedCircuitLinkAuthorizationOperations(this);
     this._dedicatedCircuitLinks                    = new DedicatedCircuitLinkOperations(this);
     this._dedicatedCircuits                        = new DedicatedCircuitOperations(this);
     this._dedicatedCircuitPeeringArpInfo           = new DedicatedCircuitPeeringArpInfoOperations(this);
     this._dedicatedCircuitPeeringRouteTableInfo    = new DedicatedCircuitPeeringRouteTableInfoOperations(this);
     this._dedicatedCircuitPeeringRouteTableSummary = new DedicatedCircuitPeeringRouteTableSummaryOperations(this);
     this._dedicatedCircuitServiceProviders         = new DedicatedCircuitServiceProviderOperations(this);
     this._dedicatedCircuitStats                    = new DedicatedCircuitStatsOperations(this);
     this._apiVersion = "2011-10-01";
     this._longRunningOperationInitialTimeout = -1;
     this._longRunningOperationRetryTimeout   = -1;
     this.HttpClient.Timeout = TimeSpan.FromSeconds(300);
 }
Пример #3
0
 /// <summary>
 /// The Get Dedicated Circuit Stats operation retrieves the
 /// bytesin/bytesout of the dedicated circuit on primary/secondary
 /// devices for specified peering type.
 /// </summary>
 /// <param name='operations'>
 /// Reference to the
 /// Microsoft.WindowsAzure.Management.ExpressRoute.IDedicatedCircuitStatsOperations.
 /// </param>
 /// <param name='serviceKey'>
 /// Required. The service key representing the circuit.
 /// </param>
 /// <param name='accessType'>
 /// Required. Whether the peering is private or public or microsoft.
 /// </param>
 /// <returns>
 /// The Get DedicatedCircuitStats operation response.
 /// </returns>
 public static Task <DedicatedCircuitStatsGetResponse> GetAsync(this IDedicatedCircuitStatsOperations operations, string serviceKey, BgpPeeringAccessType accessType)
 {
     return(operations.GetAsync(serviceKey, accessType, CancellationToken.None));
 }