Class: Azure::ARM::Network::ExpressRouteServiceProviders
- Inherits:
-
Object
- Object
- Azure::ARM::Network::ExpressRouteServiceProviders
- Includes:
- Models, MsRestAzure
- Defined in:
- lib/azure_mgmt_network/express_route_service_providers.rb
Overview
The Microsoft Azure Network management API provides a RESTful set of web services that interact with Microsoft Azure Networks service to manage your network resrources. The API has entities that capture the relationship between an end user and the Microsoft Azure Networks service.
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Reference to the NetworkManagementClient.
Instance Method Summary collapse
-
#initialize(client) ⇒ ExpressRouteServiceProviders
constructor
Creates and initializes a new instance of the ExpressRouteServiceProviders class.
-
#list(custom_headers = nil) ⇒ Concurrent::Promise
The List ExpressRouteServiceProvider opertion retrieves all the available ExpressRouteServiceProviders.
-
#list_next(next_page_link, custom_headers = nil) ⇒ Concurrent::Promise
The List ExpressRouteServiceProvider opertion retrieves all the available ExpressRouteServiceProviders.
Constructor Details
#initialize(client) ⇒ ExpressRouteServiceProviders
Creates and initializes a new instance of the ExpressRouteServiceProviders class.
21 22 23 |
# File 'lib/azure_mgmt_network/express_route_service_providers.rb', line 21 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns reference to the NetworkManagementClient.
26 27 28 |
# File 'lib/azure_mgmt_network/express_route_service_providers.rb', line 26 def client @client end |
Instance Method Details
#list(custom_headers = nil) ⇒ Concurrent::Promise
The List ExpressRouteServiceProvider opertion retrieves all the available ExpressRouteServiceProviders.
applied to HTTP request.
response.
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 |
# File 'lib/azure_mgmt_network/express_route_service_providers.rb', line 38 def list(custom_headers = nil) fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil? fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil? request_headers = {} # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = '/subscriptions/{subscriptionId}/providers/Microsoft.Network/expressRouteServiceProviders' = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}) } request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, ) promise = request.run_promise do |req| @client.credentials.sign_request(req) unless @client.credentials.nil? end promise = promise.then do |http_response| status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.new(request, http_response, error_model) end # Create Result result = MsRestAzure::AzureOperationResponse.new(request, http_response) result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) unless parsed_response.nil? parsed_response = ExpressRouteServiceProviderListResult.deserialize_object(parsed_response) end result.body = parsed_response rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |
#list_next(next_page_link, custom_headers = nil) ⇒ Concurrent::Promise
The List ExpressRouteServiceProvider opertion retrieves all the available ExpressRouteServiceProviders.
call to List operation. applied to HTTP request.
response.
100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 |
# File 'lib/azure_mgmt_network/express_route_service_providers.rb', line 100 def list_next(next_page_link, custom_headers = nil) fail ArgumentError, 'next_page_link is nil' if next_page_link.nil? request_headers = {} # Set Headers request_headers['x-ms-client-request-id'] = SecureRandom.uuid request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil? path_template = '{nextLink}' = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], skip_encoding_path_params: {'nextLink' => next_page_link}, headers: request_headers.merge(custom_headers || {}) } request = MsRest::HttpOperationRequest.new(@base_url || @client.base_url, path_template, :get, ) promise = request.run_promise do |req| @client.credentials.sign_request(req) unless @client.credentials.nil? end promise = promise.then do |http_response| status_code = http_response.status response_content = http_response.body unless status_code == 200 error_model = JSON.load(response_content) fail MsRestAzure::AzureOperationError.new(request, http_response, error_model) end # Create Result result = MsRestAzure::AzureOperationResponse.new(request, http_response) result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil? # Deserialize Response if status_code == 200 begin parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content) unless parsed_response.nil? parsed_response = ExpressRouteServiceProviderListResult.deserialize_object(parsed_response) end result.body = parsed_response rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |