repo
stringlengths 5
58
| path
stringlengths 9
168
| func_name
stringlengths 9
130
| original_string
stringlengths 66
10.5k
| language
stringclasses 1
value | code
stringlengths 66
10.5k
| code_tokens
sequence | docstring
stringlengths 8
16k
| docstring_tokens
sequence | sha
stringlengths 40
40
| url
stringlengths 94
266
| partition
stringclasses 1
value |
---|---|---|---|---|---|---|---|---|---|---|---|
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.list_skus_for_new | def list_skus_for_new(custom_headers:nil)
response = list_skus_for_new_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_skus_for_new(custom_headers:nil)
response = list_skus_for_new_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_skus_for_new",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_skus_for_new_async",
"(",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Lists eligible SKUs for Analysis Services resource provider.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SkuEnumerationForNewResourceResult] operation results. | [
"Lists",
"eligible",
"SKUs",
"for",
"Analysis",
"Services",
"resource",
"provider",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L559-L562 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.list_skus_for_existing | def list_skus_for_existing(resource_group_name, server_name, custom_headers:nil)
response = list_skus_for_existing_async(resource_group_name, server_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_skus_for_existing(resource_group_name, server_name, custom_headers:nil)
response = list_skus_for_existing_async(resource_group_name, server_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_skus_for_existing",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_skus_for_existing_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Lists eligible SKUs for an Analysis Services resource.
@param resource_group_name [String] The name of the Azure Resource group of
which a given Analysis Services server is part. This name must be at least 1
character in length, and no more than 90.
@param server_name [String] The name of the Analysis Services server. It must
be at least 3 characters in length, and no more than 63.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SkuEnumerationForExistingResourceResult] operation results. | [
"Lists",
"eligible",
"SKUs",
"for",
"an",
"Analysis",
"Services",
"resource",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L648-L651 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.list_gateway_status | def list_gateway_status(resource_group_name, server_name, custom_headers:nil)
response = list_gateway_status_async(resource_group_name, server_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_gateway_status(resource_group_name, server_name, custom_headers:nil)
response = list_gateway_status_async(resource_group_name, server_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_gateway_status",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_gateway_status_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Return the gateway status of the specified Analysis Services server instance.
@param resource_group_name [String] The name of the Azure Resource group of
which a given Analysis Services server is part. This name must be at least 1
character in length, and no more than 90.
@param server_name [String] The name of the Analysis Services server.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [GatewayListStatusLive] operation results. | [
"Return",
"the",
"gateway",
"status",
"of",
"the",
"specified",
"Analysis",
"Services",
"server",
"instance",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L754-L757 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.dissociate_gateway | def dissociate_gateway(resource_group_name, server_name, custom_headers:nil)
response = dissociate_gateway_async(resource_group_name, server_name, custom_headers:custom_headers).value!
nil
end | ruby | def dissociate_gateway(resource_group_name, server_name, custom_headers:nil)
response = dissociate_gateway_async(resource_group_name, server_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"dissociate_gateway",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"dissociate_gateway_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Dissociates a Unified Gateway associated with the server.
@param resource_group_name [String] The name of the Azure Resource group of
which a given Analysis Services server is part. This name must be at least 1
character in length, and no more than 90.
@param server_name [String] The name of the Analysis Services server. It must
be at least 3 characters in length, and no more than 63.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Dissociates",
"a",
"Unified",
"Gateway",
"associated",
"with",
"the",
"server",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L858-L861 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.list_operation_results | def list_operation_results(location, operation_id, custom_headers:nil)
response = list_operation_results_async(location, operation_id, custom_headers:custom_headers).value!
nil
end | ruby | def list_operation_results(location, operation_id, custom_headers:nil)
response = list_operation_results_async(location, operation_id, custom_headers:custom_headers).value!
nil
end | [
"def",
"list_operation_results",
"(",
"location",
",",
"operation_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_operation_results_async",
"(",
"location",
",",
"operation_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | List the result of the specified operation.
@param location [String] The region name which the operation will lookup
into.
@param operation_id [String] The target operation Id.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"List",
"the",
"result",
"of",
"the",
"specified",
"operation",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L1057-L1060 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.list_operation_statuses | def list_operation_statuses(location, operation_id, custom_headers:nil)
response = list_operation_statuses_async(location, operation_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_operation_statuses(location, operation_id, custom_headers:nil)
response = list_operation_statuses_async(location, operation_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_operation_statuses",
"(",
"location",
",",
"operation_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_operation_statuses_async",
"(",
"location",
",",
"operation_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | List the status of operation.
@param location [String] The region name which the operation will lookup
into.
@param operation_id [String] The target operation Id.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [OperationStatus] operation results. | [
"List",
"the",
"status",
"of",
"operation",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L1142-L1145 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.begin_create_with_http_info | def begin_create_with_http_info(resource_group_name, server_name, server_parameters, custom_headers:nil)
begin_create_async(resource_group_name, server_name, server_parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_with_http_info(resource_group_name, server_name, server_parameters, custom_headers:nil)
begin_create_async(resource_group_name, server_name, server_parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"server_parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"server_parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Provisions the specified Analysis Services server based on the configuration
specified in the request.
@param resource_group_name [String] The name of the Azure Resource group of
which a given Analysis Services server is part. This name must be at least 1
character in length, and no more than 90.
@param server_name [String] The name of the Analysis Services server. It must
be a minimum of 3 characters, and a maximum of 63.
@param server_parameters [AnalysisServicesServer] Contains the information
used to provision the Analysis Services server.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Provisions",
"the",
"specified",
"Analysis",
"Services",
"server",
"based",
"on",
"the",
"configuration",
"specified",
"in",
"the",
"request",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L1273-L1275 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.begin_update_with_http_info | def begin_update_with_http_info(resource_group_name, server_name, server_update_parameters, custom_headers:nil)
begin_update_async(resource_group_name, server_name, server_update_parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_with_http_info(resource_group_name, server_name, server_update_parameters, custom_headers:nil)
begin_update_async(resource_group_name, server_name, server_update_parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"server_update_parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"server_update_parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates the current state of the specified Analysis Services server.
@param resource_group_name [String] The name of the Azure Resource group of
which a given Analysis Services server is part. This name must be at least 1
character in length, and no more than 90.
@param server_name [String] The name of the Analysis Services server. It must
be at least 3 characters in length, and no more than 63.
@param server_update_parameters [AnalysisServicesServerUpdateParameters]
Request object that contains the updated information for the server.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"the",
"current",
"state",
"of",
"the",
"specified",
"Analysis",
"Services",
"server",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L1501-L1503 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb | Azure::AnalysisServices::Mgmt::V2017_08_01_beta.Servers.begin_resume | def begin_resume(resource_group_name, server_name, custom_headers:nil)
response = begin_resume_async(resource_group_name, server_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_resume(resource_group_name, server_name, custom_headers:nil)
response = begin_resume_async(resource_group_name, server_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_resume",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_resume_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Resumes operation of the specified Analysis Services server instance.
@param resource_group_name [String] The name of the Azure Resource group of
which a given Analysis Services server is part. This name must be at least 1
character in length, and no more than 90.
@param server_name [String] The name of the Analysis Services server. It must
be at least 3 characters in length, and no more than 63.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Resumes",
"operation",
"of",
"the",
"specified",
"Analysis",
"Services",
"server",
"instance",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_analysis_services/lib/2017-08-01-beta/generated/azure_mgmt_analysis_services/servers.rb#L1705-L1708 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/content_key_policies.rb | Azure::MediaServices::Mgmt::V2018_07_01.ContentKeyPolicies.get_with_http_info | def get_with_http_info(resource_group_name, account_name, content_key_policy_name, custom_headers:nil)
get_async(resource_group_name, account_name, content_key_policy_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, account_name, content_key_policy_name, custom_headers:nil)
get_async(resource_group_name, account_name, content_key_policy_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"content_key_policy_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"content_key_policy_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Get a Content Key Policy
Get the details of a Content Key Policy in the Media Services account
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param content_key_policy_name [String] The Content Key Policy name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"a",
"Content",
"Key",
"Policy"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/content_key_policies.rb#L176-L178 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/content_key_policies.rb | Azure::MediaServices::Mgmt::V2018_07_01.ContentKeyPolicies.delete_with_http_info | def delete_with_http_info(resource_group_name, account_name, content_key_policy_name, custom_headers:nil)
delete_async(resource_group_name, account_name, content_key_policy_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, account_name, content_key_policy_name, custom_headers:nil)
delete_async(resource_group_name, account_name, content_key_policy_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"content_key_policy_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"content_key_policy_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Delete a Content Key Policy
Deletes a Content Key Policy in the Media Services account
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param content_key_policy_name [String] The Content Key Policy name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Delete",
"a",
"Content",
"Key",
"Policy"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/content_key_policies.rb#L406-L408 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/load_balancer_backend_address_pools.rb | Azure::Network::Mgmt::V2018_07_01.LoadBalancerBackendAddressPools.get_with_http_info | def get_with_http_info(resource_group_name, load_balancer_name, backend_address_pool_name, custom_headers:nil)
get_async(resource_group_name, load_balancer_name, backend_address_pool_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, load_balancer_name, backend_address_pool_name, custom_headers:nil)
get_async(resource_group_name, load_balancer_name, backend_address_pool_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"load_balancer_name",
",",
"backend_address_pool_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"load_balancer_name",
",",
"backend_address_pool_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets load balancer backend address pool.
@param resource_group_name [String] The name of the resource group.
@param load_balancer_name [String] The name of the load balancer.
@param backend_address_pool_name [String] The name of the backend address
pool.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"load",
"balancer",
"backend",
"address",
"pool",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/load_balancer_backend_address_pools.rb#L145-L147 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/sync_agents.rb | Azure::SQL::Mgmt::V2015_05_01_preview.SyncAgents.get_with_http_info | def get_with_http_info(resource_group_name, server_name, sync_agent_name, custom_headers:nil)
get_async(resource_group_name, server_name, sync_agent_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, server_name, sync_agent_name, custom_headers:nil)
get_async(resource_group_name, server_name, sync_agent_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"sync_agent_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"sync_agent_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets a sync agent.
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server on which the sync agent is
hosted.
@param sync_agent_name [String] The name of the sync agent.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"a",
"sync",
"agent",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/sync_agents.rb#L60-L62 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/sync_agents.rb | Azure::SQL::Mgmt::V2015_05_01_preview.SyncAgents.begin_delete_with_http_info | def begin_delete_with_http_info(resource_group_name, server_name, sync_agent_name, custom_headers:nil)
begin_delete_async(resource_group_name, server_name, sync_agent_name, custom_headers:custom_headers).value!
end | ruby | def begin_delete_with_http_info(resource_group_name, server_name, sync_agent_name, custom_headers:nil)
begin_delete_async(resource_group_name, server_name, sync_agent_name, custom_headers:custom_headers).value!
end | [
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"sync_agent_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"sync_agent_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes a sync agent.
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server on which the sync agent is
hosted.
@param sync_agent_name [String] The name of the sync agent.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"a",
"sync",
"agent",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/sync_agents.rb#L699-L701 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/open_id_connect_provider.rb | Azure::ApiManagement::Mgmt::V2018_01_01.OpenIdConnectProvider.get_with_http_info | def get_with_http_info(resource_group_name, service_name, opid, custom_headers:nil)
get_async(resource_group_name, service_name, opid, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, service_name, opid, custom_headers:nil)
get_async(resource_group_name, service_name, opid, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"opid",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"opid",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets specific OpenID Connect Provider.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param opid [String] Identifier of the OpenID Connect Provider.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"specific",
"OpenID",
"Connect",
"Provider",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/open_id_connect_provider.rb#L268-L270 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/quota_by_period_keys.rb | Azure::ApiManagement::Mgmt::V2018_01_01.QuotaByPeriodKeys.get_with_http_info | def get_with_http_info(resource_group_name, service_name, quota_counter_key, quota_period_key, custom_headers:nil)
get_async(resource_group_name, service_name, quota_counter_key, quota_period_key, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, service_name, quota_counter_key, quota_period_key, custom_headers:nil)
get_async(resource_group_name, service_name, quota_counter_key, quota_period_key, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"quota_counter_key",
",",
"quota_period_key",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"quota_counter_key",
",",
"quota_period_key",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the value of the quota counter associated with the counter-key in the
policy for the specific period in service instance.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param quota_counter_key [String] Quota counter key identifier.This is the
result of expression defined in counter-key attribute of the quota-by-key
policy.For Example, if you specify counter-key="boo" in the policy, then it’s
accessible by "boo" counter key. But if it’s defined as
counter-key="@("b"+"a")" then it will be accessible by "ba" key
@param quota_period_key [String] Quota period key identifier.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"value",
"of",
"the",
"quota",
"counter",
"associated",
"with",
"the",
"counter",
"-",
"key",
"in",
"the",
"policy",
"for",
"the",
"specific",
"period",
"in",
"service",
"instance",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/quota_by_period_keys.rb#L63-L65 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/quota_by_period_keys.rb | Azure::ApiManagement::Mgmt::V2018_01_01.QuotaByPeriodKeys.update_with_http_info | def update_with_http_info(resource_group_name, service_name, quota_counter_key, quota_period_key, parameters, custom_headers:nil)
update_async(resource_group_name, service_name, quota_counter_key, quota_period_key, parameters, custom_headers:custom_headers).value!
end | ruby | def update_with_http_info(resource_group_name, service_name, quota_counter_key, quota_period_key, parameters, custom_headers:nil)
update_async(resource_group_name, service_name, quota_counter_key, quota_period_key, parameters, custom_headers:custom_headers).value!
end | [
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"quota_counter_key",
",",
"quota_period_key",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"quota_counter_key",
",",
"quota_period_key",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates an existing quota counter value in the specified service instance.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param quota_counter_key [String] Quota counter key identifier.This is the
result of expression defined in counter-key attribute of the quota-by-key
policy.For Example, if you specify counter-key="boo" in the policy, then it’s
accessible by "boo" counter key. But if it’s defined as
counter-key="@("b"+"a")" then it will be accessible by "ba" key
@param quota_period_key [String] Quota period key identifier.
@param parameters [QuotaCounterValueContractProperties] The value of the
Quota counter to be applied on the specified period.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"an",
"existing",
"quota",
"counter",
"value",
"in",
"the",
"specified",
"service",
"instance",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/quota_by_period_keys.rb#L182-L184 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/schemas.rb | Azure::Logic::Mgmt::V2016_06_01.Schemas.get_with_http_info | def get_with_http_info(resource_group_name, integration_account_name, schema_name, custom_headers:nil)
get_async(resource_group_name, integration_account_name, schema_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, integration_account_name, schema_name, custom_headers:nil)
get_async(resource_group_name, integration_account_name, schema_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"integration_account_name",
",",
"schema_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"integration_account_name",
",",
"schema_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets an integration account schema.
@param resource_group_name [String] The resource group name.
@param integration_account_name [String] The integration account name.
@param schema_name [String] The integration account schema name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"an",
"integration",
"account",
"schema",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/schemas.rb#L152-L154 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/schemas.rb | Azure::Logic::Mgmt::V2016_06_01.Schemas.delete_with_http_info | def delete_with_http_info(resource_group_name, integration_account_name, schema_name, custom_headers:nil)
delete_async(resource_group_name, integration_account_name, schema_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, integration_account_name, schema_name, custom_headers:nil)
delete_async(resource_group_name, integration_account_name, schema_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"integration_account_name",
",",
"schema_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"integration_account_name",
",",
"schema_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes an integration account schema.
@param resource_group_name [String] The resource group name.
@param integration_account_name [String] The integration account name.
@param schema_name [String] The integration account schema name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"an",
"integration",
"account",
"schema",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/schemas.rb#L364-L366 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/sql_virtual_machines.rb | Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview.SqlVirtualMachines.get_with_http_info | def get_with_http_info(resource_group_name, sql_virtual_machine_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, sql_virtual_machine_name, expand:expand, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, sql_virtual_machine_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, sql_virtual_machine_name, expand:expand, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"sql_virtual_machine_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"sql_virtual_machine_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets a SQL virtual machine.
@param resource_group_name [String] Name of the resource group that contains
the resource. You can obtain this value from the Azure Resource Manager API
or the portal.
@param sql_virtual_machine_name [String] Name of the SQL virtual machine.
@param expand [String] The child resources to include in the response.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"a",
"SQL",
"virtual",
"machine",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/sql_virtual_machines.rb#L59-L61 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/sql_virtual_machines.rb | Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview.SqlVirtualMachines.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"sql_virtual_machine_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"sql_virtual_machine_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates a SQL virtual machine.
@param resource_group_name [String] Name of the resource group that contains
the resource. You can obtain this value from the Azure Resource Manager API
or the portal.
@param sql_virtual_machine_name [String] Name of the SQL virtual machine.
@param parameters [SqlVirtualMachine] The SQL virtual machine.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"a",
"SQL",
"virtual",
"machine",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/sql_virtual_machines.rb#L476-L478 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/sql_virtual_machines.rb | Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview.SqlVirtualMachines.begin_update_with_http_info | def begin_update_with_http_info(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:nil)
begin_update_async(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_with_http_info(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:nil)
begin_update_async(resource_group_name, sql_virtual_machine_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_with_http_info",
"(",
"resource_group_name",
",",
"sql_virtual_machine_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_async",
"(",
"resource_group_name",
",",
"sql_virtual_machine_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates a SQL virtual machine.
@param resource_group_name [String] Name of the resource group that contains
the resource. You can obtain this value from the Azure Resource Manager API
or the portal.
@param sql_virtual_machine_name [String] Name of the SQL virtual machine.
@param parameters [SqlVirtualMachineUpdate] The SQL virtual machine.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"a",
"SQL",
"virtual",
"machine",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/sql_virtual_machines.rb#L682-L684 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cognitive_services/lib/2016-02-01-preview/generated/azure_mgmt_cognitive_services/cognitive_services_accounts.rb | Azure::CognitiveServices::Mgmt::V2016_02_01_preview.CognitiveServicesAccounts.list_skus | def list_skus(resource_group_name, account_name, custom_headers:nil)
response = list_skus_async(resource_group_name, account_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_skus(resource_group_name, account_name, custom_headers:nil)
response = list_skus_async(resource_group_name, account_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_skus",
"(",
"resource_group_name",
",",
"account_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_skus_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | List available SKUs for the requested Cognitive Services account
@param resource_group_name [String] The name of the resource group within the
user's subscription.
@param account_name [String] The name of the cognitive services account
within the specified resource group. Cognitive Services account names must be
between 3 and 24 characters in length and use numbers and lower-case letters
only.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CognitiveServicesAccountEnumerateSkusResult] operation results. | [
"List",
"available",
"SKUs",
"for",
"the",
"requested",
"Cognitive",
"Services",
"account"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cognitive_services/lib/2016-02-01-preview/generated/azure_mgmt_cognitive_services/cognitive_services_accounts.rb#L924-L927 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_notification_hubs/lib/2017-04-01/generated/azure_mgmt_notification_hubs/namespaces.rb | Azure::NotificationHubs::Mgmt::V2017_04_01.Namespaces.check_availability | def check_availability(parameters, custom_headers:nil)
response = check_availability_async(parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def check_availability(parameters, custom_headers:nil)
response = check_availability_async(parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"check_availability",
"(",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"check_availability_async",
"(",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Checks the availability of the given service namespace across all Azure
subscriptions. This is useful because the domain name is created based on the
service namespace name.
@param parameters [CheckAvailabilityParameters] The namespace name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CheckAvailabilityResult] operation results. | [
"Checks",
"the",
"availability",
"of",
"the",
"given",
"service",
"namespace",
"across",
"all",
"Azure",
"subscriptions",
".",
"This",
"is",
"useful",
"because",
"the",
"domain",
"name",
"is",
"created",
"based",
"on",
"the",
"service",
"namespace",
"name",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_notification_hubs/lib/2017-04-01/generated/azure_mgmt_notification_hubs/namespaces.rb#L35-L38 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_notification_hubs/lib/2017-04-01/generated/azure_mgmt_notification_hubs/namespaces.rb | Azure::NotificationHubs::Mgmt::V2017_04_01.Namespaces.patch_with_http_info | def patch_with_http_info(resource_group_name, namespace_name, parameters, custom_headers:nil)
patch_async(resource_group_name, namespace_name, parameters, custom_headers:custom_headers).value!
end | ruby | def patch_with_http_info(resource_group_name, namespace_name, parameters, custom_headers:nil)
patch_async(resource_group_name, namespace_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"patch_with_http_info",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"patch_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Patches the existing namespace
@param resource_group_name [String] The name of the resource group.
@param namespace_name [String] The namespace name.
@param parameters [NamespacePatchParameters] Parameters supplied to patch a
Namespace Resource.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Patches",
"the",
"existing",
"namespace"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_notification_hubs/lib/2017-04-01/generated/azure_mgmt_notification_hubs/namespaces.rb#L273-L275 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_container_registry/lib/2017-10-01/generated/azure_mgmt_container_registry/registries.rb | Azure::ContainerRegistry::Mgmt::V2017_10_01.Registries.list_policies | def list_policies(resource_group_name, registry_name, custom_headers:nil)
response = list_policies_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_policies(resource_group_name, registry_name, custom_headers:nil)
response = list_policies_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_policies",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_policies_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Lists the policies for the specified container registry.
@param resource_group_name [String] The name of the resource group to which
the container registry belongs.
@param registry_name [String] The name of the container registry.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RegistryPolicies] operation results. | [
"Lists",
"the",
"policies",
"for",
"the",
"specified",
"container",
"registry",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_registry/lib/2017-10-01/generated/azure_mgmt_container_registry/registries.rb#L910-L913 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/pool_operations.rb | Azure::Batch::Mgmt::V2017_09_01.PoolOperations.update_with_http_info | def update_with_http_info(resource_group_name, account_name, pool_name, parameters, if_match:nil, custom_headers:nil)
update_async(resource_group_name, account_name, pool_name, parameters, if_match:if_match, custom_headers:custom_headers).value!
end | ruby | def update_with_http_info(resource_group_name, account_name, pool_name, parameters, if_match:nil, custom_headers:nil)
update_async(resource_group_name, account_name, pool_name, parameters, if_match:if_match, custom_headers:custom_headers).value!
end | [
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"pool_name",
",",
"parameters",
",",
"if_match",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"pool_name",
",",
"parameters",
",",
"if_match",
":",
"if_match",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates the properties of an existing pool.
@param resource_group_name [String] The name of the resource group that
contains the Batch account.
@param account_name [String] The name of the Batch account.
@param pool_name [String] The pool name. This must be unique within the
account.
@param parameters [Pool] Pool properties that should be updated. Properties
that are supplied will be updated, any property not supplied will be
unchanged.
@param if_match [String] The entity state (ETag) version of the pool to
update. This value can be omitted or set to "*" to apply the operation
unconditionally.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"the",
"properties",
"of",
"an",
"existing",
"pool",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/pool_operations.rb#L282-L284 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/pool_operations.rb | Azure::Batch::Mgmt::V2017_09_01.PoolOperations.begin_create | def begin_create(resource_group_name, account_name, pool_name, parameters, if_match:nil, if_none_match:nil, custom_headers:nil)
response = begin_create_async(resource_group_name, account_name, pool_name, parameters, if_match:if_match, if_none_match:if_none_match, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def begin_create(resource_group_name, account_name, pool_name, parameters, if_match:nil, if_none_match:nil, custom_headers:nil)
response = begin_create_async(resource_group_name, account_name, pool_name, parameters, if_match:if_match, if_none_match:if_none_match, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"begin_create",
"(",
"resource_group_name",
",",
"account_name",
",",
"pool_name",
",",
"parameters",
",",
"if_match",
":",
"nil",
",",
"if_none_match",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_create_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"pool_name",
",",
"parameters",
",",
"if_match",
":",
"if_match",
",",
"if_none_match",
":",
"if_none_match",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Creates a new pool inside the specified account.
@param resource_group_name [String] The name of the resource group that
contains the Batch account.
@param account_name [String] The name of the Batch account.
@param pool_name [String] The pool name. This must be unique within the
account.
@param parameters [Pool] Additional parameters for pool creation.
@param if_match [String] The entity state (ETag) version of the pool to
update. A value of "*" can be used to apply the operation only if the pool
already exists. If omitted, this operation will always be applied.
@param if_none_match [String] Set to '*' to allow a new pool to be created,
but to prevent updating an existing pool. Other values will be ignored.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Pool] operation results. | [
"Creates",
"a",
"new",
"pool",
"inside",
"the",
"specified",
"account",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/pool_operations.rb#L788-L791 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_package_operations.rb | Azure::Batch::Mgmt::V2015_12_01.ApplicationPackageOperations.create_with_http_info | def create_with_http_info(resource_group_name, account_name, application_id, version, custom_headers:nil)
create_async(resource_group_name, account_name, application_id, version, custom_headers:custom_headers).value!
end | ruby | def create_with_http_info(resource_group_name, account_name, application_id, version, custom_headers:nil)
create_async(resource_group_name, account_name, application_id, version, custom_headers:custom_headers).value!
end | [
"def",
"create_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"application_id",
",",
"version",
",",
"custom_headers",
":",
"nil",
")",
"create_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"application_id",
",",
"version",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates an application package record.
@param resource_group_name [String] The name of the resource group that
contains the Batch account.
@param account_name [String] The name of the Batch account.
@param application_id [String] The ID of the application.
@param version [String] The version of the application.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"an",
"application",
"package",
"record",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_package_operations.rb#L165-L167 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_package_operations.rb | Azure::Batch::Mgmt::V2015_12_01.ApplicationPackageOperations.delete_with_http_info | def delete_with_http_info(resource_group_name, account_name, application_id, version, custom_headers:nil)
delete_async(resource_group_name, account_name, application_id, version, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, account_name, application_id, version, custom_headers:nil)
delete_async(resource_group_name, account_name, application_id, version, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"application_id",
",",
"version",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"application_id",
",",
"version",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes an application package record and its associated binary file.
@param resource_group_name [String] The name of the resource group that
contains the Batch account.
@param account_name [String] The name of the Batch account.
@param application_id [String] The ID of the application.
@param version [String] The version of the application to delete.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"an",
"application",
"package",
"record",
"and",
"its",
"associated",
"binary",
"file",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_package_operations.rb#L271-L273 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_datalake_analytics/lib/2016-11-01/generated/azure_mgmt_datalake_analytics/firewall_rules.rb | Azure::DataLakeAnalytics::Mgmt::V2016_11_01.FirewallRules.get_with_http_info | def get_with_http_info(resource_group_name, account_name, firewall_rule_name, custom_headers:nil)
get_async(resource_group_name, account_name, firewall_rule_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, account_name, firewall_rule_name, custom_headers:nil)
get_async(resource_group_name, account_name, firewall_rule_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the specified Data Lake Analytics firewall rule.
@param resource_group_name [String] The name of the Azure resource group.
@param account_name [String] The name of the Data Lake Analytics account.
@param firewall_rule_name [String] The name of the firewall rule to retrieve.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"specified",
"Data",
"Lake",
"Analytics",
"firewall",
"rule",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_datalake_analytics/lib/2016-11-01/generated/azure_mgmt_datalake_analytics/firewall_rules.rb#L262-L264 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_datalake_analytics/lib/2016-11-01/generated/azure_mgmt_datalake_analytics/firewall_rules.rb | Azure::DataLakeAnalytics::Mgmt::V2016_11_01.FirewallRules.delete_with_http_info | def delete_with_http_info(resource_group_name, account_name, firewall_rule_name, custom_headers:nil)
delete_async(resource_group_name, account_name, firewall_rule_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, account_name, firewall_rule_name, custom_headers:nil)
delete_async(resource_group_name, account_name, firewall_rule_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes the specified firewall rule from the specified Data Lake Analytics
account
@param resource_group_name [String] The name of the Azure resource group.
@param account_name [String] The name of the Data Lake Analytics account.
@param firewall_rule_name [String] The name of the firewall rule to delete.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"the",
"specified",
"firewall",
"rule",
"from",
"the",
"specified",
"Data",
"Lake",
"Analytics",
"account"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_datalake_analytics/lib/2016-11-01/generated/azure_mgmt_datalake_analytics/firewall_rules.rb#L468-L470 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_hdinsight/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/configurations.rb | Azure::Hdinsight::Mgmt::V2018_06_01_preview.Configurations.get_with_http_info | def get_with_http_info(resource_group_name, cluster_name, configuration_name, custom_headers:nil)
get_async(resource_group_name, cluster_name, configuration_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, cluster_name, configuration_name, custom_headers:nil)
get_async(resource_group_name, cluster_name, configuration_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"configuration_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"configuration_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | The configuration object for the specified cluster. This API is not
recommended and might be removed in the future. Please consider using List
configurations API instead.
@param resource_group_name [String] The name of the resource group.
@param cluster_name [String] The name of the cluster.
@param configuration_name [String] The name of the cluster configuration.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"The",
"configuration",
"object",
"for",
"the",
"specified",
"cluster",
".",
"This",
"API",
"is",
"not",
"recommended",
"and",
"might",
"be",
"removed",
"in",
"the",
"future",
".",
"Please",
"consider",
"using",
"List",
"configurations",
"API",
"instead",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_hdinsight/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/configurations.rb#L190-L192 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/express_route_ports.rb | Azure::Network::Mgmt::V2019_02_01.ExpressRoutePorts.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, express_route_port_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, express_route_port_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, express_route_port_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, express_route_port_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"express_route_port_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"express_route_port_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates the specified ExpressRoutePort resource.
@param resource_group_name [String] The name of the resource group.
@param express_route_port_name [String] The name of the ExpressRoutePort
resource.
@param parameters [ExpressRoutePort] Parameters supplied to the create
ExpressRoutePort operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"the",
"specified",
"ExpressRoutePort",
"resource",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/express_route_ports.rb#L539-L541 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/express_route_ports.rb | Azure::Network::Mgmt::V2019_02_01.ExpressRoutePorts.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, express_route_port_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, express_route_port_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, express_route_port_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, express_route_port_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"express_route_port_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"express_route_port_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Update ExpressRoutePort tags
@param resource_group_name [String] The name of the resource group.
@param express_route_port_name [String] The name of the ExpressRoutePort
resource.
@param parameters [TagsObject] Parameters supplied to update ExpressRoutePort
resource tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Update",
"ExpressRoutePort",
"tags"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/express_route_ports.rb#L658-L660 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/tag.rb | Azure::ApiManagement::Mgmt::V2018_01_01.Tag.get_with_http_info | def get_with_http_info(resource_group_name, service_name, tag_id, custom_headers:nil)
get_async(resource_group_name, service_name, tag_id, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, service_name, tag_id, custom_headers:nil)
get_async(resource_group_name, service_name, tag_id, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"tag_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"tag_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the details of the tag specified by its identifier.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param tag_id [String] Tag identifier. Must be unique in the current API
Management service instance.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"details",
"of",
"the",
"tag",
"specified",
"by",
"its",
"identifier",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/tag.rb#L271-L273 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/tag.rb | Azure::ApiManagement::Mgmt::V2018_01_01.Tag.list_by_operation_next | def list_by_operation_next(next_page_link, custom_headers:nil)
response = list_by_operation_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_by_operation_next(next_page_link, custom_headers:nil)
response = list_by_operation_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_by_operation_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_operation_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Lists all Tags associated with the Operation.
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [TagCollection] operation results. | [
"Lists",
"all",
"Tags",
"associated",
"with",
"the",
"Operation",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/tag.rb#L2778-L2781 | train |
Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/groups.rb | Azure::GraphRbac::V1_6.Groups.is_member_of | def is_member_of(parameters, custom_headers:nil)
response = is_member_of_async(parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def is_member_of(parameters, custom_headers:nil)
response = is_member_of_async(parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"is_member_of",
"(",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"is_member_of_async",
"(",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Checks whether the specified user, group, contact, or service principal is a
direct or transitive member of the specified group.
@param parameters [CheckGroupMembershipParameters] The check group membership
parameters.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CheckGroupMembershipResult] operation results. | [
"Checks",
"whether",
"the",
"specified",
"user",
"group",
"contact",
"or",
"service",
"principal",
"is",
"a",
"direct",
"or",
"transitive",
"member",
"of",
"the",
"specified",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/groups.rb#L35-L38 | train |
Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/groups.rb | Azure::GraphRbac::V1_6.Groups.remove_member | def remove_member(group_object_id, member_object_id, custom_headers:nil)
response = remove_member_async(group_object_id, member_object_id, custom_headers:custom_headers).value!
nil
end | ruby | def remove_member(group_object_id, member_object_id, custom_headers:nil)
response = remove_member_async(group_object_id, member_object_id, custom_headers:custom_headers).value!
nil
end | [
"def",
"remove_member",
"(",
"group_object_id",
",",
"member_object_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"remove_member_async",
"(",
"group_object_id",
",",
"member_object_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Remove a member from a group.
@param group_object_id [String] The object ID of the group from which to
remove the member.
@param member_object_id [String] Member object id
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Remove",
"a",
"member",
"from",
"a",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/groups.rb#L135-L138 | train |
Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/groups.rb | Azure::GraphRbac::V1_6.Groups.add_member | def add_member(group_object_id, parameters, custom_headers:nil)
response = add_member_async(group_object_id, parameters, custom_headers:custom_headers).value!
nil
end | ruby | def add_member(group_object_id, parameters, custom_headers:nil)
response = add_member_async(group_object_id, parameters, custom_headers:custom_headers).value!
nil
end | [
"def",
"add_member",
"(",
"group_object_id",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"add_member_async",
"(",
"group_object_id",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Add a member to a group.
@param group_object_id [String] The object ID of the group to which to add
the member.
@param parameters [GroupAddMemberParameters] The URL of the member object,
such as
https://graph.windows.net/0b1f9851-1bf0-433f-aec3-cb9272f093dc/directoryObjects/f260bbc4-c254-447b-94cf-293b5ec434dd.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Add",
"a",
"member",
"to",
"a",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/groups.rb#L221-L224 | train |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/endpoint_keys.rb | Azure::CognitiveServices::Qnamaker::V4_0.EndpointKeys.get_keys | def get_keys(custom_headers:nil)
response = get_keys_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_keys(custom_headers:nil)
response = get_keys_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_keys",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_keys_async",
"(",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Gets endpoint keys for an endpoint
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EndpointKeysDTO] operation results. | [
"Gets",
"endpoint",
"keys",
"for",
"an",
"endpoint"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/endpoint_keys.rb#L32-L35 | train |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/endpoint_keys.rb | Azure::CognitiveServices::Qnamaker::V4_0.EndpointKeys.refresh_keys | def refresh_keys(key_type, custom_headers:nil)
response = refresh_keys_async(key_type, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def refresh_keys(key_type, custom_headers:nil)
response = refresh_keys_async(key_type, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"refresh_keys",
"(",
"key_type",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"refresh_keys_async",
"(",
"key_type",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Re-generates an endpoint key.
@param key_type [String] Type of Key
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EndpointKeysDTO] operation results. | [
"Re",
"-",
"generates",
"an",
"endpoint",
"key",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/endpoint_keys.rb#L115-L118 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_backup/lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/protection_containers.rb | Azure::RecoveryServicesBackup::Mgmt::V2016_12_01.ProtectionContainers.refresh | def refresh(vault_name, resource_group_name, fabric_name, filter:nil, custom_headers:nil)
response = refresh_async(vault_name, resource_group_name, fabric_name, filter:filter, custom_headers:custom_headers).value!
nil
end | ruby | def refresh(vault_name, resource_group_name, fabric_name, filter:nil, custom_headers:nil)
response = refresh_async(vault_name, resource_group_name, fabric_name, filter:filter, custom_headers:custom_headers).value!
nil
end | [
"def",
"refresh",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"refresh_async",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"filter",
":",
"filter",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Discovers all the containers in the subscription that can be backed up to
Recovery Services Vault. This is an
asynchronous operation. To know the status of the operation, call
GetRefreshOperationResult API.
@param vault_name [String] The name of the recovery services vault.
@param resource_group_name [String] The name of the resource group where the
recovery services vault is present.
@param fabric_name [String] Fabric name associated the container.
@param filter [String] OData filter options.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Discovers",
"all",
"the",
"containers",
"in",
"the",
"subscription",
"that",
"can",
"be",
"backed",
"up",
"to",
"Recovery",
"Services",
"Vault",
".",
"This",
"is",
"an",
"asynchronous",
"operation",
".",
"To",
"know",
"the",
"status",
"of",
"the",
"operation",
"call",
"GetRefreshOperationResult",
"API",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_backup/lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/protection_containers.rb#L489-L492 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2015-06-01/generated/azure_mgmt_cdn/endpoints.rb | Azure::CDN::Mgmt::V2015_06_01.Endpoints.list_by_profile | def list_by_profile(profile_name, resource_group_name, custom_headers:nil)
response = list_by_profile_async(profile_name, resource_group_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_by_profile(profile_name, resource_group_name, custom_headers:nil)
response = list_by_profile_async(profile_name, resource_group_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_by_profile",
"(",
"profile_name",
",",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_profile_async",
"(",
"profile_name",
",",
"resource_group_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Lists existing CDN endpoints within a profile.
@param profile_name [String] Name of the CDN profile within the resource
group.
@param resource_group_name [String] Name of the resource group within the
Azure subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EndpointListResult] operation results. | [
"Lists",
"existing",
"CDN",
"endpoints",
"within",
"a",
"profile",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2015-06-01/generated/azure_mgmt_cdn/endpoints.rb#L39-L42 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2015-06-01/generated/azure_mgmt_cdn/endpoints.rb | Azure::CDN::Mgmt::V2015_06_01.Endpoints.begin_delete_if_exists_with_http_info | def begin_delete_if_exists_with_http_info(endpoint_name, profile_name, resource_group_name, custom_headers:nil)
begin_delete_if_exists_async(endpoint_name, profile_name, resource_group_name, custom_headers:custom_headers).value!
end | ruby | def begin_delete_if_exists_with_http_info(endpoint_name, profile_name, resource_group_name, custom_headers:nil)
begin_delete_if_exists_async(endpoint_name, profile_name, resource_group_name, custom_headers:custom_headers).value!
end | [
"def",
"begin_delete_if_exists_with_http_info",
"(",
"endpoint_name",
",",
"profile_name",
",",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_if_exists_async",
"(",
"endpoint_name",
",",
"profile_name",
",",
"resource_group_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes an existing CDN endpoint with the specified parameters.
@param endpoint_name [String] Name of the endpoint within the CDN profile.
@param profile_name [String] Name of the CDN profile within the resource
group.
@param resource_group_name [String] Name of the resource group within the
Azure subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"an",
"existing",
"CDN",
"endpoint",
"with",
"the",
"specified",
"parameters",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2015-06-01/generated/azure_mgmt_cdn/endpoints.rb#L980-L982 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/vpn_gateways.rb | Azure::Network::Mgmt::V2018_07_01.VpnGateways.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, gateway_name, vpn_gateway_parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, gateway_name, vpn_gateway_parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, gateway_name, vpn_gateway_parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, gateway_name, vpn_gateway_parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"gateway_name",
",",
"vpn_gateway_parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"gateway_name",
",",
"vpn_gateway_parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates virtual wan vpn gateway tags.
@param resource_group_name [String] The resource group name of the
VpnGateway.
@param gateway_name [String] The name of the gateway.
@param vpn_gateway_parameters [TagsObject] Parameters supplied to update a
virtual wan vpn gateway tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"virtual",
"wan",
"vpn",
"gateway",
"tags",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/vpn_gateways.rb#L584-L586 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/database_operations.rb | Azure::SQL::Mgmt::V2017_03_01_preview.DatabaseOperations.cancel_with_http_info | def cancel_with_http_info(resource_group_name, server_name, database_name, operation_id, custom_headers:nil)
cancel_async(resource_group_name, server_name, database_name, operation_id, custom_headers:custom_headers).value!
end | ruby | def cancel_with_http_info(resource_group_name, server_name, database_name, operation_id, custom_headers:nil)
cancel_async(resource_group_name, server_name, database_name, operation_id, custom_headers:custom_headers).value!
end | [
"def",
"cancel_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"database_name",
",",
"operation_id",
",",
"custom_headers",
":",
"nil",
")",
"cancel_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"database_name",
",",
"operation_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Cancels the asynchronous operation on the database.
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server.
@param database_name [String] The name of the database.
@param operation_id The operation identifier.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Cancels",
"the",
"asynchronous",
"operation",
"on",
"the",
"database",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/database_operations.rb#L59-L61 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/service_objectives.rb | Azure::SQL::Mgmt::V2014_04_01.ServiceObjectives.get_with_http_info | def get_with_http_info(resource_group_name, server_name, service_objective_name, custom_headers:nil)
get_async(resource_group_name, server_name, service_objective_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, server_name, service_objective_name, custom_headers:nil)
get_async(resource_group_name, server_name, service_objective_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"service_objective_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"service_objective_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets a database service objective.
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server.
@param service_objective_name [String] The name of the service objective to
retrieve.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"a",
"database",
"service",
"objective",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/service_objectives.rb#L60-L62 | train |
Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/operations.rb | Azure::CognitiveServices::Qnamaker::V4_0.Operations.get_details | def get_details(operation_id, custom_headers:nil)
response = get_details_async(operation_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_details(operation_id, custom_headers:nil)
response = get_details_async(operation_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_details",
"(",
"operation_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_details_async",
"(",
"operation_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Gets details of a specific long running operation.
@param operation_id [String] Operation id.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Operation] operation results. | [
"Gets",
"details",
"of",
"a",
"specific",
"long",
"running",
"operation",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/operations.rb#L33-L36 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2016-04-02/generated/azure_mgmt_cdn/profiles.rb | Azure::CDN::Mgmt::V2016_04_02.Profiles.begin_create_with_http_info | def begin_create_with_http_info(profile_name, profile_properties, resource_group_name, custom_headers:nil)
begin_create_async(profile_name, profile_properties, resource_group_name, custom_headers:custom_headers).value!
end | ruby | def begin_create_with_http_info(profile_name, profile_properties, resource_group_name, custom_headers:nil)
begin_create_async(profile_name, profile_properties, resource_group_name, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_with_http_info",
"(",
"profile_name",
",",
"profile_properties",
",",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_async",
"(",
"profile_name",
",",
"profile_properties",
",",
"resource_group_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates a new CDN profile with the specified parameters.
@param profile_name [String] Name of the CDN profile within the resource
group.
@param profile_properties [ProfileCreateParameters] Profile properties needed
for creation.
@param resource_group_name [String] Name of the resource group within the
Azure subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"a",
"new",
"CDN",
"profile",
"with",
"the",
"specified",
"parameters",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2016-04-02/generated/azure_mgmt_cdn/profiles.rb#L584-L586 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/lab_accounts.rb | Azure::Labservices::Mgmt::V2018_10_15.LabAccounts.get_with_http_info | def get_with_http_info(resource_group_name, lab_account_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, lab_account_name, expand:expand, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, lab_account_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, lab_account_name, expand:expand, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Get lab account
@param resource_group_name [String] The name of the resource group.
@param lab_account_name [String] The name of the lab Account.
@param expand [String] Specify the $expand query. Example:
'properties($expand=sizeConfiguration)'
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"lab",
"account"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/lab_accounts.rb#L267-L269 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/lab_accounts.rb | Azure::Labservices::Mgmt::V2018_10_15.LabAccounts.delete | def delete(resource_group_name, lab_account_name, custom_headers:nil)
response = delete_async(resource_group_name, lab_account_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, lab_account_name, custom_headers:nil)
response = delete_async(resource_group_name, lab_account_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Delete lab account. This operation can take a while to complete
@param resource_group_name [String] The name of the resource group.
@param lab_account_name [String] The name of the lab Account.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Delete",
"lab",
"account",
".",
"This",
"operation",
"can",
"take",
"a",
"while",
"to",
"complete"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/lab_accounts.rb#L457-L460 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/lab_accounts.rb | Azure::Labservices::Mgmt::V2018_10_15.LabAccounts.get_regional_availability | def get_regional_availability(resource_group_name, lab_account_name, custom_headers:nil)
response = get_regional_availability_async(resource_group_name, lab_account_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_regional_availability(resource_group_name, lab_account_name, custom_headers:nil)
response = get_regional_availability_async(resource_group_name, lab_account_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_regional_availability",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_regional_availability_async",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Get regional availability information for each size category configured under
a lab account
@param resource_group_name [String] The name of the resource group.
@param lab_account_name [String] The name of the lab Account.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [GetRegionalAvailabilityResponse] operation results. | [
"Get",
"regional",
"availability",
"information",
"for",
"each",
"size",
"category",
"configured",
"under",
"a",
"lab",
"account"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/lab_accounts.rb#L696-L699 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/alert_rules.rb | Azure::Monitor::Mgmt::V2016_03_01.AlertRules.update_with_http_info | def update_with_http_info(resource_group_name, rule_name, alert_rules_resource, custom_headers:nil)
update_async(resource_group_name, rule_name, alert_rules_resource, custom_headers:custom_headers).value!
end | ruby | def update_with_http_info(resource_group_name, rule_name, alert_rules_resource, custom_headers:nil)
update_async(resource_group_name, rule_name, alert_rules_resource, custom_headers:custom_headers).value!
end | [
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"rule_name",
",",
"alert_rules_resource",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"rule_name",
",",
"alert_rules_resource",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates an existing AlertRuleResource. To update other fields use the
CreateOrUpdate method.
@param resource_group_name [String] The name of the resource group.
@param rule_name [String] The name of the rule.
@param alert_rules_resource [AlertRuleResourcePatch] Parameters supplied to
the operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"an",
"existing",
"AlertRuleResource",
".",
"To",
"update",
"other",
"fields",
"use",
"the",
"CreateOrUpdate",
"method",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/alert_rules.rb#L344-L346 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_scheduler/lib/2016-03-01/generated/azure_mgmt_scheduler/job_collections.rb | Azure::Scheduler::Mgmt::V2016_03_01.JobCollections.begin_delete | def begin_delete(resource_group_name, job_collection_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, job_collection_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_delete(resource_group_name, job_collection_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, job_collection_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"job_collection_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"job_collection_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes a job collection.
@param resource_group_name [String] The resource group name.
@param job_collection_name [String] The job collection name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"a",
"job",
"collection",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_scheduler/lib/2016-03-01/generated/azure_mgmt_scheduler/job_collections.rb#L633-L636 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/restorable_dropped_databases.rb | Azure::SQL::Mgmt::V2014_04_01.RestorableDroppedDatabases.get_with_http_info | def get_with_http_info(resource_group_name, server_name, restorable_droppeded_database_id, custom_headers:nil)
get_async(resource_group_name, server_name, restorable_droppeded_database_id, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, server_name, restorable_droppeded_database_id, custom_headers:nil)
get_async(resource_group_name, server_name, restorable_droppeded_database_id, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"restorable_droppeded_database_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"restorable_droppeded_database_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets a deleted database that can be restored
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server.
@param restorable_droppeded_database_id [String] The id of the deleted
database in the form of databaseName,deletionTimeInFileTimeFormat
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"a",
"deleted",
"database",
"that",
"can",
"be",
"restored"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/restorable_dropped_databases.rb#L60-L62 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_filters.rb | Azure::Network::Mgmt::V2018_07_01.RouteFilters.delete | def delete(resource_group_name, route_filter_name, custom_headers:nil)
response = delete_async(resource_group_name, route_filter_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, route_filter_name, custom_headers:nil)
response = delete_async(resource_group_name, route_filter_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"route_filter_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"route_filter_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes the specified route filter.
@param resource_group_name [String] The name of the resource group.
@param route_filter_name [String] The name of the route filter.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"specified",
"route",
"filter",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_filters.rb#L32-L35 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_filters.rb | Azure::Network::Mgmt::V2018_07_01.RouteFilters.get_with_http_info | def get_with_http_info(resource_group_name, route_filter_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, route_filter_name, expand:expand, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, route_filter_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, route_filter_name, expand:expand, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"route_filter_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"route_filter_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the specified route filter.
@param resource_group_name [String] The name of the resource group.
@param route_filter_name [String] The name of the route filter.
@param expand [String] Expands referenced express route bgp peering
resources.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"specified",
"route",
"filter",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_filters.rb#L91-L93 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/script_actions.rb | Azure::Hdinsight::Mgmt::V2015_03_01_preview.ScriptActions.delete_with_http_info | def delete_with_http_info(resource_group_name, cluster_name, script_name, custom_headers:nil)
delete_async(resource_group_name, cluster_name, script_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, cluster_name, script_name, custom_headers:nil)
delete_async(resource_group_name, cluster_name, script_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"script_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"script_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes a specified persisted script action of the cluster.
@param resource_group_name [String] The name of the resource group.
@param cluster_name [String] The name of the cluster.
@param script_name [String] The name of the script.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"a",
"specified",
"persisted",
"script",
"action",
"of",
"the",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/script_actions.rb#L50-L52 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/api_version_set.rb | Azure::ApiManagement::Mgmt::V2018_01_01.ApiVersionSet.get_with_http_info | def get_with_http_info(resource_group_name, service_name, version_set_id, custom_headers:nil)
get_async(resource_group_name, service_name, version_set_id, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, service_name, version_set_id, custom_headers:nil)
get_async(resource_group_name, service_name, version_set_id, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"version_set_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"version_set_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the details of the Api Version Set specified by its identifier.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param version_set_id [String] Api Version Set identifier. Must be unique in
the current API Management service instance.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"details",
"of",
"the",
"Api",
"Version",
"Set",
"specified",
"by",
"its",
"identifier",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/api_version_set.rb#L304-L306 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/servers.rb | Azure::SQL::Mgmt::V2015_05_01_preview.Servers.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, server_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, server_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, server_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, server_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates a server.
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server.
@param parameters [Server] The requested server resource state.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"a",
"server",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/servers.rb#L472-L474 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_msi/lib/2015-08-31-preview/generated/azure_mgmt_msi/user_assigned_identities.rb | Azure::ManagedServiceIdentity::Mgmt::V2015_08_31_preview.UserAssignedIdentities.create_or_update_with_http_info | def create_or_update_with_http_info(resource_group_name, resource_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, resource_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(resource_group_name, resource_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, resource_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"resource_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Create or update an identity in the specified subscription and resource
group.
@param resource_group_name [String] The name of the Resource Group to which
the identity belongs.
@param resource_name [String] The name of the identity resource.
@param parameters [Identity] Parameters to create or update the identity
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Create",
"or",
"update",
"an",
"identity",
"in",
"the",
"specified",
"subscription",
"and",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_msi/lib/2015-08-31-preview/generated/azure_mgmt_msi/user_assigned_identities.rb#L236-L238 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_msi/lib/2015-08-31-preview/generated/azure_mgmt_msi/user_assigned_identities.rb | Azure::ManagedServiceIdentity::Mgmt::V2015_08_31_preview.UserAssignedIdentities.update_with_http_info | def update_with_http_info(resource_group_name, resource_name, parameters, custom_headers:nil)
update_async(resource_group_name, resource_name, parameters, custom_headers:custom_headers).value!
end | ruby | def update_with_http_info(resource_group_name, resource_name, parameters, custom_headers:nil)
update_async(resource_group_name, resource_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"resource_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Update an identity in the specified subscription and resource group.
@param resource_group_name [String] The name of the Resource Group to which
the identity belongs.
@param resource_name [String] The name of the identity resource.
@param parameters [Identity] Parameters to update the identity
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Update",
"an",
"identity",
"in",
"the",
"specified",
"subscription",
"and",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_msi/lib/2015-08-31-preview/generated/azure_mgmt_msi/user_assigned_identities.rb#L353-L355 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/nat_gateways.rb | Azure::Network::Mgmt::V2019_02_01.NatGateways.get_with_http_info | def get_with_http_info(resource_group_name, nat_gateway_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, nat_gateway_name, expand:expand, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, nat_gateway_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, nat_gateway_name, expand:expand, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"nat_gateway_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"nat_gateway_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the specified nat gateway in a specified resource group.
@param resource_group_name [String] The name of the resource group.
@param nat_gateway_name [String] The name of the nat gateway.
@param expand [String] Expands referenced resources.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"specified",
"nat",
"gateway",
"in",
"a",
"specified",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/nat_gateways.rb#L89-L91 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/nat_gateways.rb | Azure::Network::Mgmt::V2019_02_01.NatGateways.update_tags_with_http_info | def update_tags_with_http_info(resource_group_name, nat_gateway_name, parameters, custom_headers:nil)
update_tags_async(resource_group_name, nat_gateway_name, parameters, custom_headers:custom_headers).value!
end | ruby | def update_tags_with_http_info(resource_group_name, nat_gateway_name, parameters, custom_headers:nil)
update_tags_async(resource_group_name, nat_gateway_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"update_tags_with_http_info",
"(",
"resource_group_name",
",",
"nat_gateway_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_tags_async",
"(",
"resource_group_name",
",",
"nat_gateway_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates nat gateway tags.
@param resource_group_name [String] The name of the resource group.
@param nat_gateway_name [String] The name of the nat gateway.
@param parameters [TagsObject] Parameters supplied to update nat gateway
tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"nat",
"gateway",
"tags",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/nat_gateways.rb#L232-L234 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/nat_gateways.rb | Azure::Network::Mgmt::V2019_02_01.NatGateways.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, nat_gateway_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, nat_gateway_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, nat_gateway_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, nat_gateway_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"nat_gateway_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"nat_gateway_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates a nat gateway.
@param resource_group_name [String] The name of the resource group.
@param nat_gateway_name [String] The name of the nat gateway.
@param parameters [NatGateway] Parameters supplied to the create or update
nat gateway operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"a",
"nat",
"gateway",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/nat_gateways.rb#L591-L593 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/azure_firewalls.rb | Azure::Network::Mgmt::V2018_07_01.AzureFirewalls.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, azure_firewall_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, azure_firewall_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, azure_firewall_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, azure_firewall_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"azure_firewall_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"azure_firewall_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates the specified Azure Firewall.
@param resource_group_name [String] The name of the resource group.
@param azure_firewall_name [String] The name of the Azure Firewall.
@param parameters [AzureFirewall] Parameters supplied to the create or update
Azure Firewall operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"the",
"specified",
"Azure",
"Firewall",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/azure_firewalls.rb#L482-L484 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/assets.rb | Azure::MediaServices::Mgmt::V2018_07_01.Assets.get_with_http_info | def get_with_http_info(resource_group_name, account_name, asset_name, custom_headers:nil)
get_async(resource_group_name, account_name, asset_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, account_name, asset_name, custom_headers:nil)
get_async(resource_group_name, account_name, asset_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"asset_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"asset_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Get an Asset
Get the details of an Asset in the Media Services account
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param asset_name [String] The Asset name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"an",
"Asset"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/assets.rb#L179-L181 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/assets.rb | Azure::MediaServices::Mgmt::V2018_07_01.Assets.delete_with_http_info | def delete_with_http_info(resource_group_name, account_name, asset_name, custom_headers:nil)
delete_async(resource_group_name, account_name, asset_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, account_name, asset_name, custom_headers:nil)
delete_async(resource_group_name, account_name, asset_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"asset_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"asset_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Delete an Asset.
Deletes an Asset in the Media Services account
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param asset_name [String] The Asset name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Delete",
"an",
"Asset",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/assets.rb#L409-L411 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/load_balancer_load_balancing_rules.rb | Azure::Network::Mgmt::V2018_07_01.LoadBalancerLoadBalancingRules.get_with_http_info | def get_with_http_info(resource_group_name, load_balancer_name, load_balancing_rule_name, custom_headers:nil)
get_async(resource_group_name, load_balancer_name, load_balancing_rule_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, load_balancer_name, load_balancing_rule_name, custom_headers:nil)
get_async(resource_group_name, load_balancer_name, load_balancing_rule_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"load_balancer_name",
",",
"load_balancing_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"load_balancer_name",
",",
"load_balancing_rule_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets the specified load balancer load balancing rule.
@param resource_group_name [String] The name of the resource group.
@param load_balancer_name [String] The name of the load balancer.
@param load_balancing_rule_name [String] The name of the load balancing rule.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"specified",
"load",
"balancer",
"load",
"balancing",
"rule",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/load_balancer_load_balancing_rules.rb#L143-L145 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_policies.rb | Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10.ReplicationPolicies.create | def create(policy_name, input, custom_headers:nil)
response = create_async(policy_name, input, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create(policy_name, input, custom_headers:nil)
response = create_async(policy_name, input, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create",
"(",
"policy_name",
",",
"input",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_async",
"(",
"policy_name",
",",
"input",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Creates the policy.
The operation to create a replication policy
@param policy_name [String] Replication policy name
@param input [CreatePolicyInput] Create policy input
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Policy] operation results. | [
"Creates",
"the",
"policy",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_policies.rb#L132-L135 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_policies.rb | Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10.ReplicationPolicies.begin_update | def begin_update(policy_name, input, custom_headers:nil)
response = begin_update_async(policy_name, input, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def begin_update(policy_name, input, custom_headers:nil)
response = begin_update_async(policy_name, input, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"begin_update",
"(",
"policy_name",
",",
"input",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_update_async",
"(",
"policy_name",
",",
"input",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Updates the protection profile.
The operation to update a replication policy.
@param policy_name [String] Protection profile Id.
@param input [UpdatePolicyInput] Update Protection Profile Input
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Policy] operation results. | [
"Updates",
"the",
"protection",
"profile",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_policies.rb#L542-L545 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/custom_domains.rb | Azure::CDN::Mgmt::V2017_04_02.CustomDomains.get_with_http_info | def get_with_http_info(resource_group_name, profile_name, endpoint_name, custom_domain_name, custom_headers:nil)
get_async(resource_group_name, profile_name, endpoint_name, custom_domain_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, profile_name, endpoint_name, custom_domain_name, custom_headers:nil)
get_async(resource_group_name, profile_name, endpoint_name, custom_domain_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"profile_name",
",",
"endpoint_name",
",",
"custom_domain_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"profile_name",
",",
"endpoint_name",
",",
"custom_domain_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets an existing custom domain within an endpoint.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param profile_name [String] Name of the CDN profile which is unique within
the resource group.
@param endpoint_name [String] Name of the endpoint under the profile which is
unique globally.
@param custom_domain_name [String] Name of the custom domain within an
endpoint.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"an",
"existing",
"custom",
"domain",
"within",
"an",
"endpoint",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/custom_domains.rb#L171-L173 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_locks/lib/2015-01-01/generated/azure_mgmt_locks/management_locks.rb | Azure::Locks::Mgmt::V2015_01_01.ManagementLocks.delete_at_resource_group_level | def delete_at_resource_group_level(resource_group_name, lock_name, custom_headers:nil)
response = delete_at_resource_group_level_async(resource_group_name, lock_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete_at_resource_group_level(resource_group_name, lock_name, custom_headers:nil)
response = delete_at_resource_group_level_async(resource_group_name, lock_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete_at_resource_group_level",
"(",
"resource_group_name",
",",
"lock_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_at_resource_group_level_async",
"(",
"resource_group_name",
",",
"lock_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes the management lock of a resource group.
@param resource_group_name [String] The resource group name.
@param lock_name [String] The name of lock.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"management",
"lock",
"of",
"a",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_locks/lib/2015-01-01/generated/azure_mgmt_locks/management_locks.rb#L149-L152 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_locks/lib/2015-01-01/generated/azure_mgmt_locks/management_locks.rb | Azure::Locks::Mgmt::V2015_01_01.ManagementLocks.get_at_resource_group_level | def get_at_resource_group_level(resource_group_name, lock_name, custom_headers:nil)
response = get_at_resource_group_level_async(resource_group_name, lock_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_at_resource_group_level(resource_group_name, lock_name, custom_headers:nil)
response = get_at_resource_group_level_async(resource_group_name, lock_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_at_resource_group_level",
"(",
"resource_group_name",
",",
"lock_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_at_resource_group_level_async",
"(",
"resource_group_name",
",",
"lock_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Gets a management lock at the resource group level.
@param resource_group_name [String] The resource group name.
@param lock_name [String] The lock name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ManagementLockObject] operation results. | [
"Gets",
"a",
"management",
"lock",
"at",
"the",
"resource",
"group",
"level",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_locks/lib/2015-01-01/generated/azure_mgmt_locks/management_locks.rb#L234-L237 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_locks/lib/2015-01-01/generated/azure_mgmt_locks/management_locks.rb | Azure::Locks::Mgmt::V2015_01_01.ManagementLocks.create_or_update_at_subscription_level | def create_or_update_at_subscription_level(lock_name, parameters, custom_headers:nil)
response = create_or_update_at_subscription_level_async(lock_name, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create_or_update_at_subscription_level(lock_name, parameters, custom_headers:nil)
response = create_or_update_at_subscription_level_async(lock_name, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create_or_update_at_subscription_level",
"(",
"lock_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_at_subscription_level_async",
"(",
"lock_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Create or update a management lock at the subscription level.
@param lock_name [String] The name of lock.
@param parameters [ManagementLockObject] The management lock parameters.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ManagementLockObject] operation results. | [
"Create",
"or",
"update",
"a",
"management",
"lock",
"at",
"the",
"subscription",
"level",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_locks/lib/2015-01-01/generated/azure_mgmt_locks/management_locks.rb#L569-L572 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/authorization_policies.rb | Azure::CustomerInsights::Mgmt::V2017_01_01.AuthorizationPolicies.get_with_http_info | def get_with_http_info(resource_group_name, hub_name, authorization_policy_name, custom_headers:nil)
get_async(resource_group_name, hub_name, authorization_policy_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, hub_name, authorization_policy_name, custom_headers:nil)
get_async(resource_group_name, hub_name, authorization_policy_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"authorization_policy_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"authorization_policy_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Gets an authorization policy in the hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param authorization_policy_name [String] The name of the policy.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"an",
"authorization",
"policy",
"in",
"the",
"hub",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/authorization_policies.rb#L177-L179 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_datalake_analytics/lib/2016-11-01/generated/azure_mgmt_datalake_analytics/locations.rb | Azure::DataLakeAnalytics::Mgmt::V2016_11_01.Locations.get_capability | def get_capability(location, custom_headers:nil)
response = get_capability_async(location, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_capability(location, custom_headers:nil)
response = get_capability_async(location, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_capability",
"(",
"location",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_capability_async",
"(",
"location",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Gets subscription-level properties and limits for Data Lake Analytics
specified by resource location.
@param location [String] The resource location without whitespace.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CapabilityInformation] operation results. | [
"Gets",
"subscription",
"-",
"level",
"properties",
"and",
"limits",
"for",
"Data",
"Lake",
"Analytics",
"specified",
"by",
"resource",
"location",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_datalake_analytics/lib/2016-11-01/generated/azure_mgmt_datalake_analytics/locations.rb#L34-L37 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_container_service/lib/2017-09-30/generated/azure_mgmt_container_service/container_services.rb | Azure::ContainerService::Mgmt::V2017_09_30.ContainerServices.list_orchestrators | def list_orchestrators(location, resource_type:nil, custom_headers:nil)
response = list_orchestrators_async(location, resource_type:resource_type, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_orchestrators(location, resource_type:nil, custom_headers:nil)
response = list_orchestrators_async(location, resource_type:resource_type, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_orchestrators",
"(",
"location",
",",
"resource_type",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_orchestrators_async",
"(",
"location",
",",
"resource_type",
":",
"resource_type",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Gets a list of supported orchestrators in the specified subscription.
Gets a list of supported orchestrators in the specified subscription. The
operation returns properties of each orchestrator including version and
available upgrades.
@param location [String] The name of a supported Azure region.
@param resource_type [String] resource type for which the list of
orchestrators needs to be returned
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [OrchestratorVersionProfileListResult] operation results. | [
"Gets",
"a",
"list",
"of",
"supported",
"orchestrators",
"in",
"the",
"specified",
"subscription",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2017-09-30/generated/azure_mgmt_container_service/container_services.rb#L39-L42 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_mixedreality/lib/2019-02-28-preview/generated/azure_mgmt_mixedreality/spatial_anchors_accounts.rb | Azure::MixedReality::Mgmt::V2019_02_28_preview.SpatialAnchorsAccounts.delete | def delete(resource_group_name, spatial_anchors_account_name, custom_headers:nil)
response = delete_async(resource_group_name, spatial_anchors_account_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, spatial_anchors_account_name, custom_headers:nil)
response = delete_async(resource_group_name, spatial_anchors_account_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"spatial_anchors_account_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"spatial_anchors_account_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Delete a Spatial Anchors Account.
@param resource_group_name [String] Name of an Azure resource group.
@param spatial_anchors_account_name [String] Name of an Mixed Reality Spatial
Anchors Account.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Delete",
"a",
"Spatial",
"Anchors",
"Account",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_mixedreality/lib/2019-02-28-preview/generated/azure_mgmt_mixedreality/spatial_anchors_accounts.rb#L209-L212 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_mixedreality/lib/2019-02-28-preview/generated/azure_mgmt_mixedreality/spatial_anchors_accounts.rb | Azure::MixedReality::Mgmt::V2019_02_28_preview.SpatialAnchorsAccounts.get_keys | def get_keys(resource_group_name, spatial_anchors_account_name, custom_headers:nil)
response = get_keys_async(resource_group_name, spatial_anchors_account_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_keys(resource_group_name, spatial_anchors_account_name, custom_headers:nil)
response = get_keys_async(resource_group_name, spatial_anchors_account_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_keys",
"(",
"resource_group_name",
",",
"spatial_anchors_account_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_keys_async",
"(",
"resource_group_name",
",",
"spatial_anchors_account_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Get Both of the 2 Keys of a Spatial Anchors Account
@param resource_group_name [String] Name of an Azure resource group.
@param spatial_anchors_account_name [String] Name of an Mixed Reality Spatial
Anchors Account.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SpatialAnchorsAccountKeys] operation results. | [
"Get",
"Both",
"of",
"the",
"2",
"Keys",
"of",
"a",
"Spatial",
"Anchors",
"Account"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_mixedreality/lib/2019-02-28-preview/generated/azure_mgmt_mixedreality/spatial_anchors_accounts.rb#L641-L644 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/logger.rb | Azure::ApiManagement::Mgmt::V2019_01_01.Logger.delete_with_http_info | def delete_with_http_info(resource_group_name, service_name, logger_id, if_match, force:nil, custom_headers:nil)
delete_async(resource_group_name, service_name, logger_id, if_match, force:force, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, service_name, logger_id, if_match, force:nil, custom_headers:nil)
delete_async(resource_group_name, service_name, logger_id, if_match, force:force, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"logger_id",
",",
"if_match",
",",
"force",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"logger_id",
",",
"if_match",
",",
"force",
":",
"force",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Deletes the specified logger.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param logger_id [String] Logger identifier. Must be unique in the API
Management service instance.
@param if_match [String] ETag of the Entity. ETag should match the current
entity state from the header response of the GET request or it should be *
for unconditional update.
@param force [Boolean] Force deletion even if diagnostic is attached.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"the",
"specified",
"logger",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/logger.rb#L634-L636 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_advisor/lib/2017-03-31/generated/azure_mgmt_advisor/suppressions.rb | Azure::Advisor::Mgmt::V2017_03_31.Suppressions.get_with_http_info | def get_with_http_info(resource_uri, recommendation_id, name, custom_headers:nil)
get_async(resource_uri, recommendation_id, name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_uri, recommendation_id, name, custom_headers:nil)
get_async(resource_uri, recommendation_id, name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_uri",
",",
"recommendation_id",
",",
"name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_uri",
",",
"recommendation_id",
",",
"name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Obtains the details of a suppression.
@param resource_uri [String] The fully qualified Azure Resource Manager
identifier of the resource to which the recommendation applies.
@param recommendation_id [String] The recommendation ID.
@param name [String] The name of the suppression.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Obtains",
"the",
"details",
"of",
"a",
"suppression",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_advisor/lib/2017-03-31/generated/azure_mgmt_advisor/suppressions.rb#L53-L55 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2019-03-01/generated/azure_mgmt_compute/virtual_machine_scale_set_extensions.rb | Azure::Compute::Mgmt::V2019_03_01.VirtualMachineScaleSetExtensions.list | def list(resource_group_name, vm_scale_set_name, custom_headers:nil)
first_page = list_as_lazy(resource_group_name, vm_scale_set_name, custom_headers:custom_headers)
first_page.get_all_items
end | ruby | def list(resource_group_name, vm_scale_set_name, custom_headers:nil)
first_page = list_as_lazy(resource_group_name, vm_scale_set_name, custom_headers:custom_headers)
first_page.get_all_items
end | [
"def",
"list",
"(",
"resource_group_name",
",",
"vm_scale_set_name",
",",
"custom_headers",
":",
"nil",
")",
"first_page",
"=",
"list_as_lazy",
"(",
"resource_group_name",
",",
"vm_scale_set_name",
",",
"custom_headers",
":",
"custom_headers",
")",
"first_page",
".",
"get_all_items",
"end"
] | Gets a list of all extensions in a VM scale set.
@param resource_group_name [String] The name of the resource group.
@param vm_scale_set_name [String] The name of the VM scale set containing the
extension.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array<VirtualMachineScaleSetExtension>] operation results. | [
"Gets",
"a",
"list",
"of",
"all",
"extensions",
"in",
"a",
"VM",
"scale",
"set",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2019-03-01/generated/azure_mgmt_compute/virtual_machine_scale_set_extensions.rb#L229-L232 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_operations.rb | Azure::Automation::Mgmt::V2015_10_31.DscNodeOperations.delete_with_http_info | def delete_with_http_info(resource_group_name, automation_account_name, node_id, custom_headers:nil)
delete_async(resource_group_name, automation_account_name, node_id, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, automation_account_name, node_id, custom_headers:nil)
delete_async(resource_group_name, automation_account_name, node_id, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_id",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Delete the dsc node identified by node id.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param node_id [String] The node id.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Delete",
"the",
"dsc",
"node",
"identified",
"by",
"node",
"id",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_operations.rb#L51-L53 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_operations.rb | Azure::Automation::Mgmt::V2015_10_31.DscNodeOperations.update_with_http_info | def update_with_http_info(resource_group_name, automation_account_name, node_id, parameters, custom_headers:nil)
update_async(resource_group_name, automation_account_name, node_id, parameters, custom_headers:custom_headers).value!
end | ruby | def update_with_http_info(resource_group_name, automation_account_name, node_id, parameters, custom_headers:nil)
update_async(resource_group_name, automation_account_name, node_id, parameters, custom_headers:custom_headers).value!
end | [
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_id",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_id",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Update the dsc node.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param node_id [String] Parameters supplied to the update dsc node.
@param parameters [DscNodeUpdateParameters] Parameters supplied to the update
dsc node.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Update",
"the",
"dsc",
"node",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_operations.rb#L253-L255 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_compilation_job_stream.rb | Azure::Automation::Mgmt::V2015_10_31.DscCompilationJobStream.list_by_job | def list_by_job(resource_group_name, automation_account_name, job_id, custom_headers:nil)
response = list_by_job_async(resource_group_name, automation_account_name, job_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_by_job(resource_group_name, automation_account_name, job_id, custom_headers:nil)
response = list_by_job_async(resource_group_name, automation_account_name, job_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_by_job",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"job_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_job_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"job_id",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Retrieve all the job streams for the compilation Job.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param job_id The job id.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [JobStreamListResult] operation results. | [
"Retrieve",
"all",
"the",
"job",
"streams",
"for",
"the",
"compilation",
"Job",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_compilation_job_stream.rb#L35-L38 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/profiles.rb | Azure::CDN::Mgmt::V2016_10_02.Profiles.delete | def delete(resource_group_name, profile_name, custom_headers:nil)
response = delete_async(resource_group_name, profile_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, profile_name, custom_headers:nil)
response = delete_async(resource_group_name, profile_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"profile_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"profile_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes an existing CDN profile with the specified parameters. Deleting a
profile will result in the deletion of all of the sub-resources including
endpoints, origins and custom domains.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param profile_name [String] Name of the CDN profile which is unique within
the resource group.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"an",
"existing",
"CDN",
"profile",
"with",
"the",
"specified",
"parameters",
".",
"Deleting",
"a",
"profile",
"will",
"result",
"in",
"the",
"deletion",
"of",
"all",
"of",
"the",
"sub",
"-",
"resources",
"including",
"endpoints",
"origins",
"and",
"custom",
"domains",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/profiles.rb#L420-L423 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/profiles.rb | Azure::CDN::Mgmt::V2016_10_02.Profiles.generate_sso_uri | def generate_sso_uri(resource_group_name, profile_name, custom_headers:nil)
response = generate_sso_uri_async(resource_group_name, profile_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def generate_sso_uri(resource_group_name, profile_name, custom_headers:nil)
response = generate_sso_uri_async(resource_group_name, profile_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"generate_sso_uri",
"(",
"resource_group_name",
",",
"profile_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"generate_sso_uri_async",
"(",
"resource_group_name",
",",
"profile_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Generates a dynamic SSO URI used to sign in to the CDN supplemental portal.
Supplemental portal is used to configure advanced feature capabilities that
are not yet available in the Azure portal, such as core reports in a standard
profile; rules engine, advanced HTTP reports, and real-time stats and alerts
in a premium profile. The SSO URI changes approximately every 10 minutes.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param profile_name [String] Name of the CDN profile which is unique within
the resource group.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SsoUri] operation results. | [
"Generates",
"a",
"dynamic",
"SSO",
"URI",
"used",
"to",
"sign",
"in",
"to",
"the",
"CDN",
"supplemental",
"portal",
".",
"Supplemental",
"portal",
"is",
"used",
"to",
"configure",
"advanced",
"feature",
"capabilities",
"that",
"are",
"not",
"yet",
"available",
"in",
"the",
"Azure",
"portal",
"such",
"as",
"core",
"reports",
"in",
"a",
"standard",
"profile",
";",
"rules",
"engine",
"advanced",
"HTTP",
"reports",
"and",
"real",
"-",
"time",
"stats",
"and",
"alerts",
"in",
"a",
"premium",
"profile",
".",
"The",
"SSO",
"URI",
"changes",
"approximately",
"every",
"10",
"minutes",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/profiles.rb#L468-L471 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/profiles.rb | Azure::CDN::Mgmt::V2016_10_02.Profiles.begin_update_with_http_info | def begin_update_with_http_info(resource_group_name, profile_name, profile_update_parameters, custom_headers:nil)
begin_update_async(resource_group_name, profile_name, profile_update_parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_with_http_info(resource_group_name, profile_name, profile_update_parameters, custom_headers:nil)
begin_update_async(resource_group_name, profile_name, profile_update_parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_with_http_info",
"(",
"resource_group_name",
",",
"profile_name",
",",
"profile_update_parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_async",
"(",
"resource_group_name",
",",
"profile_name",
",",
"profile_update_parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates an existing CDN profile with the specified profile name under the
specified subscription and resource group.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param profile_name [String] Name of the CDN profile which is unique within
the resource group.
@param profile_update_parameters [ProfileUpdateParameters] Profile properties
needed to update an existing profile.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"an",
"existing",
"CDN",
"profile",
"with",
"the",
"specified",
"profile",
"name",
"under",
"the",
"specified",
"subscription",
"and",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/profiles.rb#L940-L942 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.create_or_update_with_http_info | def create_or_update_with_http_info(parameters, resource_group_name, manager_name, custom_headers:nil)
create_or_update_async(parameters, resource_group_name, manager_name, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(parameters, resource_group_name, manager_name, custom_headers:nil)
create_or_update_async(parameters, resource_group_name, manager_name, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"parameters",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"parameters",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates the manager.
@param parameters [Manager] The manager.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"the",
"manager",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L317-L319 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.get_encryption_settings | def get_encryption_settings(resource_group_name, manager_name, custom_headers:nil)
response = get_encryption_settings_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_encryption_settings(resource_group_name, manager_name, custom_headers:nil)
response = get_encryption_settings_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_encryption_settings",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_encryption_settings_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Returns the encryption settings of the manager.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EncryptionSettings] operation results. | [
"Returns",
"the",
"encryption",
"settings",
"of",
"the",
"manager",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L701-L704 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.get_extended_info | def get_extended_info(resource_group_name, manager_name, custom_headers:nil)
response = get_extended_info_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_extended_info(resource_group_name, manager_name, custom_headers:nil)
response = get_extended_info_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_extended_info",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_extended_info_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Returns the extended information of the specified manager name.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ManagerExtendedInfo] operation results. | [
"Returns",
"the",
"extended",
"information",
"of",
"the",
"specified",
"manager",
"name",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L795-L798 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.delete_extended_info | def delete_extended_info(resource_group_name, manager_name, custom_headers:nil)
response = delete_extended_info_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete_extended_info(resource_group_name, manager_name, custom_headers:nil)
response = delete_extended_info_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete_extended_info",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_extended_info_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes the extended info of the manager.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"extended",
"info",
"of",
"the",
"manager",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L993-L996 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.get_activation_key | def get_activation_key(resource_group_name, manager_name, custom_headers:nil)
response = get_activation_key_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_activation_key(resource_group_name, manager_name, custom_headers:nil)
response = get_activation_key_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_activation_key",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_activation_key_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Returns the activation key of the manager.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Key] operation results. | [
"Returns",
"the",
"activation",
"key",
"of",
"the",
"manager",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L1285-L1288 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.get_public_encryption_key | def get_public_encryption_key(resource_group_name, manager_name, custom_headers:nil)
response = get_public_encryption_key_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_public_encryption_key(resource_group_name, manager_name, custom_headers:nil)
response = get_public_encryption_key_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_public_encryption_key",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_public_encryption_key_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Returns the symmetric encrypted public encryption key of the manager.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SymmetricEncryptedSecret] operation results. | [
"Returns",
"the",
"symmetric",
"encrypted",
"public",
"encryption",
"key",
"of",
"the",
"manager",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L1379-L1382 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Managers.regenerate_activation_key | def regenerate_activation_key(resource_group_name, manager_name, custom_headers:nil)
response = regenerate_activation_key_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def regenerate_activation_key(resource_group_name, manager_name, custom_headers:nil)
response = regenerate_activation_key_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"regenerate_activation_key",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"regenerate_activation_key_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Re-generates and returns the activation key of the manager.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Key] operation results. | [
"Re",
"-",
"generates",
"and",
"returns",
"the",
"activation",
"key",
"of",
"the",
"manager",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/managers.rb#L1666-L1669 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_networks.rb | Azure::Network::Mgmt::V2018_07_01.VirtualNetworks.delete | def delete(resource_group_name, virtual_network_name, custom_headers:nil)
response = delete_async(resource_group_name, virtual_network_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, virtual_network_name, custom_headers:nil)
response = delete_async(resource_group_name, virtual_network_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"virtual_network_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"virtual_network_name",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes the specified virtual network.
@param resource_group_name [String] The name of the resource group.
@param virtual_network_name [String] The name of the virtual network.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"specified",
"virtual",
"network",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_networks.rb#L32-L35 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_networks.rb | Azure::Network::Mgmt::V2018_07_01.VirtualNetworks.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, virtual_network_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, virtual_network_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, virtual_network_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, virtual_network_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"virtual_network_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"virtual_network_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Creates or updates a virtual network in the specified resource group.
@param resource_group_name [String] The name of the resource group.
@param virtual_network_name [String] The name of the virtual network.
@param parameters [VirtualNetwork] Parameters supplied to the create or
update virtual network operation
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"a",
"virtual",
"network",
"in",
"the",
"specified",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_networks.rb#L718-L720 | train |
Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_networks.rb | Azure::Network::Mgmt::V2018_07_01.VirtualNetworks.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, virtual_network_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, virtual_network_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, virtual_network_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, virtual_network_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"virtual_network_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"virtual_network_name",
",",
"parameters",
",",
"custom_headers",
":",
"custom_headers",
")",
".",
"value!",
"end"
] | Updates a virtual network tags.
@param resource_group_name [String] The name of the resource group.
@param virtual_network_name [String] The name of the virtual network.
@param parameters [TagsObject] Parameters supplied to update virtual network
tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"a",
"virtual",
"network",
"tags",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_networks.rb#L834-L836 | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.