Class: Azure::ARM::Search::AdminKeys
- Inherits:
-
Object
- Object
- Azure::ARM::Search::AdminKeys
- Includes:
- Models, MsRestAzure
- Defined in:
- lib/generated/azure_mgmt_search/admin_keys.rb
Overview
Client that can be used to manage Azure Search services and API keys.
Instance Attribute Summary collapse
-
#client ⇒ SearchManagementClient
readonly
Reference to the SearchManagementClient.
Instance Method Summary collapse
-
#get(resource_group_name, search_service_name, search_management_request_options = nil, custom_headers = nil) ⇒ AdminKeyResult
Gets the primary and secondary admin API keys for the specified Azure Search service.
-
#get_async(resource_group_name, search_service_name, search_management_request_options = nil, custom_headers = nil) ⇒ Concurrent::Promise
Gets the primary and secondary admin API keys for the specified Azure Search service.
-
#get_with_http_info(resource_group_name, search_service_name, search_management_request_options = nil, custom_headers = nil) ⇒ MsRestAzure::AzureOperationResponse
Gets the primary and secondary admin API keys for the specified Azure Search service.
-
#initialize(client) ⇒ AdminKeys
constructor
Creates and initializes a new instance of the AdminKeys class.
-
#regenerate(resource_group_name, search_service_name, key_kind, search_management_request_options = nil, custom_headers = nil) ⇒ AdminKeyResult
Regenerates either the primary or secondary admin API key.
-
#regenerate_async(resource_group_name, search_service_name, key_kind, search_management_request_options = nil, custom_headers = nil) ⇒ Concurrent::Promise
Regenerates either the primary or secondary admin API key.
-
#regenerate_with_http_info(resource_group_name, search_service_name, key_kind, search_management_request_options = nil, custom_headers = nil) ⇒ MsRestAzure::AzureOperationResponse
Regenerates either the primary or secondary admin API key.
Constructor Details
#initialize(client) ⇒ AdminKeys
Creates and initializes a new instance of the AdminKeys class.
18 19 20 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 18 def initialize(client) @client = client end |
Instance Attribute Details
#client ⇒ SearchManagementClient (readonly)
Returns reference to the SearchManagementClient.
23 24 25 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 23 def client @client end |
Instance Method Details
#get(resource_group_name, search_service_name, search_management_request_options = nil, custom_headers = nil) ⇒ AdminKeyResult
Gets the primary and secondary admin API keys for the specified Azure Search service.
current subscription. You can obtain this value from the Azure Resource Manager API or the portal. associated with the specified resource group. Additional parameters for the operation will be added to the HTTP request.
41 42 43 44 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 41 def get(resource_group_name, search_service_name, = nil, custom_headers = nil) response = get_async(resource_group_name, search_service_name, , custom_headers).value! response.body unless response.nil? end |
#get_async(resource_group_name, search_service_name, search_management_request_options = nil, custom_headers = nil) ⇒ Concurrent::Promise
Gets the primary and secondary admin API keys for the specified Azure Search service.
current subscription. You can obtain this value from the Azure Resource Manager API or the portal. associated with the specified resource group. Additional parameters for the operation to the HTTP request.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 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 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 82 def get_async(resource_group_name, search_service_name, = nil, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'search_service_name is nil' if search_service_name.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? client_request_id = nil unless .nil? client_request_id = .clientRequestId end 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? request_headers['x-ms-client-request-id'] = client_request_id.to_s unless client_request_id.to_s.nil? path_template = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/listAdminKeys' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'searchServiceName' => search_service_name,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, ) promise = promise.then do |result| http_response = result.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(result.request, http_response, error_model) end 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) result_mapper = AdminKeyResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response, 'result.body') rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |
#get_with_http_info(resource_group_name, search_service_name, search_management_request_options = nil, custom_headers = nil) ⇒ MsRestAzure::AzureOperationResponse
Gets the primary and secondary admin API keys for the specified Azure Search service.
current subscription. You can obtain this value from the Azure Resource Manager API or the portal. associated with the specified resource group. Additional parameters for the operation will be added to the HTTP request.
62 63 64 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 62 def get_with_http_info(resource_group_name, search_service_name, = nil, custom_headers = nil) get_async(resource_group_name, search_service_name, , custom_headers).value! end |
#regenerate(resource_group_name, search_service_name, key_kind, search_management_request_options = nil, custom_headers = nil) ⇒ AdminKeyResult
Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
current subscription. You can obtain this value from the Azure Resource Manager API or the portal. associated with the specified resource group. values include ‘primary’ and ‘secondary’. Possible values include: ‘primary’, ‘secondary’ Additional parameters for the operation will be added to the HTTP request.
158 159 160 161 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 158 def regenerate(resource_group_name, search_service_name, key_kind, = nil, custom_headers = nil) response = regenerate_async(resource_group_name, search_service_name, key_kind, , custom_headers).value! response.body unless response.nil? end |
#regenerate_async(resource_group_name, search_service_name, key_kind, search_management_request_options = nil, custom_headers = nil) ⇒ Concurrent::Promise
Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
current subscription. You can obtain this value from the Azure Resource Manager API or the portal. associated with the specified resource group. values include ‘primary’ and ‘secondary’. Possible values include: ‘primary’, ‘secondary’ Additional parameters for the operation to the HTTP request.
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 205 def regenerate_async(resource_group_name, search_service_name, key_kind, = nil, custom_headers = nil) fail ArgumentError, 'resource_group_name is nil' if resource_group_name.nil? fail ArgumentError, 'search_service_name is nil' if search_service_name.nil? fail ArgumentError, 'key_kind is nil' if key_kind.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? client_request_id = nil unless .nil? client_request_id = .clientRequestId end 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? request_headers['x-ms-client-request-id'] = client_request_id.to_s unless client_request_id.to_s.nil? path_template = '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Search/searchServices/{searchServiceName}/regenerateAdminKey/{keyKind}' request_url = @base_url || @client.base_url = { middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]], path_params: {'resourceGroupName' => resource_group_name,'searchServiceName' => search_service_name,'keyKind' => key_kind,'subscriptionId' => @client.subscription_id}, query_params: {'api-version' => @client.api_version}, headers: request_headers.merge(custom_headers || {}), base_url: request_url } promise = @client.make_request_async(:post, path_template, ) promise = promise.then do |result| http_response = result.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(result.request, http_response, error_model) end 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) result_mapper = AdminKeyResult.mapper() result.body = @client.deserialize(result_mapper, parsed_response, 'result.body') rescue Exception => e fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e., e.backtrace, result) end end result end promise.execute end |
#regenerate_with_http_info(resource_group_name, search_service_name, key_kind, search_management_request_options = nil, custom_headers = nil) ⇒ MsRestAzure::AzureOperationResponse
Regenerates either the primary or secondary admin API key. You can only regenerate one key at a time.
current subscription. You can obtain this value from the Azure Resource Manager API or the portal. associated with the specified resource group. values include ‘primary’ and ‘secondary’. Possible values include: ‘primary’, ‘secondary’ Additional parameters for the operation will be added to the HTTP request.
182 183 184 |
# File 'lib/generated/azure_mgmt_search/admin_keys.rb', line 182 def regenerate_with_http_info(resource_group_name, search_service_name, key_kind, = nil, custom_headers = nil) regenerate_async(resource_group_name, search_service_name, key_kind, , custom_headers).value! end |