id
int32
0
24.9k
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
list
docstring
stringlengths
8
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
94
266
13,500
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/connection_operations.rb
Azure::Automation::Mgmt::V2015_10_31.ConnectionOperations.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, automation_account_name, connection_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, connection_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, automation_account_name, connection_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, connection_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "connection_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "connection_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create or update a connection. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param connection_name [String] The parameters supplied to the create or update connection operation. @param parameters [ConnectionCreateOrUpdateParameters] The parameters supplied to the create or update connection 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.
[ "Create", "or", "update", "a", "connection", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/connection_operations.rb#L255-L257
13,501
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/connection_operations.rb
Azure::Automation::Mgmt::V2015_10_31.ConnectionOperations.list_by_automation_account_as_lazy
def list_by_automation_account_as_lazy(resource_group_name, automation_account_name, custom_headers:nil) response = list_by_automation_account_async(resource_group_name, automation_account_name, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_automation_account_next_async(next_page_link, custom_headers:custom_headers) end page end end
ruby
def list_by_automation_account_as_lazy(resource_group_name, automation_account_name, custom_headers:nil) response = list_by_automation_account_async(resource_group_name, automation_account_name, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_automation_account_next_async(next_page_link, custom_headers:custom_headers) end page end end
[ "def", "list_by_automation_account_as_lazy", "(", "resource_group_name", ",", "automation_account_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_automation_account_async", "(", "resource_group_name", ",", "automation_account_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "unless", "response", ".", "nil?", "page", "=", "response", ".", "body", "page", ".", "next_method", "=", "Proc", ".", "new", "do", "|", "next_page_link", "|", "list_by_automation_account_next_async", "(", "next_page_link", ",", "custom_headers", ":custom_headers", ")", "end", "page", "end", "end" ]
Retrieve a list of connections. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ConnectionListResult] which provide lazy access to pages of the response.
[ "Retrieve", "a", "list", "of", "connections", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/connection_operations.rb#L658-L667
13,502
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.create_application_resource
def create_application_resource(application_resource_name, application_resource_description, custom_headers:nil) response = create_application_resource_async(application_resource_name, application_resource_description, custom_headers:custom_headers).value! nil end
ruby
def create_application_resource(application_resource_name, application_resource_description, custom_headers:nil) response = create_application_resource_async(application_resource_name, application_resource_description, custom_headers:custom_headers).value! nil end
[ "def", "create_application_resource", "(", "application_resource_name", ",", "application_resource_description", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_application_resource_async", "(", "application_resource_name", ",", "application_resource_description", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Creates or updates an application resource. Creates an application with the specified name and description. If an application with the same name already exists, then its description are updated to the one indicated in this request. @param application_resource_name [String] Service Fabric application resource name. @param application_resource_description [ApplicationResourceDescription] Description for creating an application resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Creates", "or", "updates", "an", "application", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L29343-L29346
13,503
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.get_application_resource
def get_application_resource(application_resource_name, custom_headers:nil) response = get_application_resource_async(application_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_application_resource(application_resource_name, custom_headers:nil) response = get_application_resource_async(application_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_application_resource", "(", "application_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_application_resource_async", "(", "application_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the application with the given name. Gets the application with the given name. This includes the information about the application's services and other runtime information. @param application_resource_name [String] Service Fabric application resource name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ApplicationResourceDescription] operation results.
[ "Gets", "the", "application", "with", "the", "given", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L29446-L29449
13,504
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.get_services
def get_services(application_resource_name, custom_headers:nil) response = get_services_async(application_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_services(application_resource_name, custom_headers:nil) response = get_services_async(application_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_services", "(", "application_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_services_async", "(", "application_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets all the services in the application resource. The operation returns the service descriptions of all the services in the application resource. @param application_resource_name [String] Service Fabric application resource name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [PagedServiceResourceDescriptionList] operation results.
[ "Gets", "all", "the", "services", "in", "the", "application", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L29630-L29633
13,505
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.get_service
def get_service(application_resource_name, service_resource_name, custom_headers:nil) response = get_service_async(application_resource_name, service_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_service(application_resource_name, service_resource_name, custom_headers:nil) response = get_service_async(application_resource_name, service_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_service", "(", "application_resource_name", ",", "service_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_service_async", "(", "application_resource_name", ",", "service_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the description of the specified service in an application resource. Gets the description of the service resource. @param application_resource_name [String] Service Fabric application resource name. @param service_resource_name [String] Service Fabric service resource name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ServiceResourceDescription] operation results.
[ "Gets", "the", "description", "of", "the", "specified", "service", "in", "an", "application", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L29729-L29732
13,506
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.get_replicas
def get_replicas(application_resource_name, service_resource_name, custom_headers:nil) response = get_replicas_async(application_resource_name, service_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_replicas(application_resource_name, service_resource_name, custom_headers:nil) response = get_replicas_async(application_resource_name, service_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_replicas", "(", "application_resource_name", ",", "service_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_replicas_async", "(", "application_resource_name", ",", "service_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets replicas of a given service in an application resource. Gets the information about all replicas of a given service of an application. The information includes the runtime properties of the replica instance. @param application_resource_name [String] Service Fabric application resource name. @param service_resource_name [String] Service Fabric service resource name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [PagedServiceResourceReplicaDescriptionList] operation results.
[ "Gets", "replicas", "of", "a", "given", "service", "in", "an", "application", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L29830-L29833
13,507
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.create_volume_resource
def create_volume_resource(volume_resource_name, volume_resource_description, custom_headers:nil) response = create_volume_resource_async(volume_resource_name, volume_resource_description, custom_headers:custom_headers).value! nil end
ruby
def create_volume_resource(volume_resource_name, volume_resource_description, custom_headers:nil) response = create_volume_resource_async(volume_resource_name, volume_resource_description, custom_headers:custom_headers).value! nil end
[ "def", "create_volume_resource", "(", "volume_resource_name", ",", "volume_resource_description", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_volume_resource_async", "(", "volume_resource_name", ",", "volume_resource_description", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Creates or updates a volume resource. Creates a volume resource with the specified name and description. If a volume with the same name already exists, then its description is updated to the one indicated in this request. @param volume_resource_name [String] Service Fabric volume resource name. @param volume_resource_description [VolumeResourceDescription] Description for creating a volume resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Creates", "or", "updates", "a", "volume", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L30043-L30046
13,508
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb
Azure::ServiceFabric::V6_3_0_9.ServiceFabricClientAPIs.get_volume_resource
def get_volume_resource(volume_resource_name, custom_headers:nil) response = get_volume_resource_async(volume_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_volume_resource(volume_resource_name, custom_headers:nil) response = get_volume_resource_async(volume_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_volume_resource", "(", "volume_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_volume_resource_async", "(", "volume_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the volume resource. Gets the information about the volume resource with a given name. This information includes the volume description and other runtime information. @param volume_resource_name [String] Service Fabric volume resource name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [VolumeResourceDescription] operation results.
[ "Gets", "the", "volume", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.3.0.9/generated/azure_service_fabric/service_fabric_client_apis.rb#L30143-L30146
13,509
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/p2s_vpn_server_configurations.rb
Azure::Network::Mgmt::V2019_02_01.P2sVpnServerConfigurations.get_with_http_info
def get_with_http_info(resource_group_name, virtual_wan_name, p2svpn_server_configuration_name, custom_headers:nil) get_async(resource_group_name, virtual_wan_name, p2svpn_server_configuration_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, virtual_wan_name, p2svpn_server_configuration_name, custom_headers:nil) get_async(resource_group_name, virtual_wan_name, p2svpn_server_configuration_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "virtual_wan_name", ",", "p2svpn_server_configuration_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "virtual_wan_name", ",", "p2svpn_server_configuration_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieves the details of a P2SVpnServerConfiguration. @param resource_group_name [String] The resource group name of the P2SVpnServerConfiguration. @param virtual_wan_name [String] The name of the VirtualWan. @param p2svpn_server_configuration_name [String] The name of the P2SVpnServerConfiguration. @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.
[ "Retrieves", "the", "details", "of", "a", "P2SVpnServerConfiguration", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/p2s_vpn_server_configurations.rb#L55-L57
13,510
Azure/azure-sdk-for-ruby
management/azure_mgmt_signalr/lib/2018-03-01-preview/generated/azure_mgmt_signalr/signal_r.rb
Azure::Signalr::Mgmt::V2018_03_01_preview.SignalR.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, resource_name, parameters:nil, custom_headers:nil) begin_create_or_update_async(resource_group_name, resource_name, parameters:parameters, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, resource_name, parameters:nil, custom_headers:nil) begin_create_or_update_async(resource_group_name, resource_name, parameters:parameters, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "resource_name", ",", "parameters", ":", "nil", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "resource_name", ",", "parameters", ":", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create a new SignalR service and update an exiting SignalR service. @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 resource_name [String] The name of the SignalR resource. @param parameters [SignalRCreateParameters] Parameters for the create or update 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.
[ "Create", "a", "new", "SignalR", "service", "and", "update", "an", "exiting", "SignalR", "service", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_signalr/lib/2018-03-01-preview/generated/azure_mgmt_signalr/signal_r.rb#L839-L841
13,511
Azure/azure-sdk-for-ruby
management/azure_mgmt_signalr/lib/2018-03-01-preview/generated/azure_mgmt_signalr/signal_r.rb
Azure::Signalr::Mgmt::V2018_03_01_preview.SignalR.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, resource_name, parameters:nil, custom_headers:nil) begin_update_async(resource_group_name, resource_name, parameters:parameters, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, resource_name, parameters:nil, custom_headers:nil) begin_update_async(resource_group_name, resource_name, parameters:parameters, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "resource_name", ",", "parameters", ":", "nil", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "resource_name", ",", "parameters", ":", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Operation to update an exiting SignalR service. @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 resource_name [String] The name of the SignalR resource. @param parameters [SignalRUpdateParameters] Parameters for the update 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.
[ "Operation", "to", "update", "an", "exiting", "SignalR", "service", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_signalr/lib/2018-03-01-preview/generated/azure_mgmt_signalr/signal_r.rb#L1037-L1039
13,512
Azure/azure-sdk-for-ruby
management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_extension_images.rb
Azure::Compute::Mgmt::V2018_04_01.VirtualMachineExtensionImages.list_types
def list_types(location, publisher_name, custom_headers:nil) response = list_types_async(location, publisher_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_types(location, publisher_name, custom_headers:nil) response = list_types_async(location, publisher_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_types", "(", "location", ",", "publisher_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_types_async", "(", "location", ",", "publisher_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets a list of virtual machine extension image types. @param location [String] The name of a supported Azure region. @param publisher_name [String] @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array] operation results.
[ "Gets", "a", "list", "of", "virtual", "machine", "extension", "image", "types", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_extension_images.rb#L134-L137
13,513
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_secret_value.rb
Azure::ServiceFabric::V6_4_0_36.MeshSecretValue.delete
def delete(secret_resource_name, secret_value_resource_name, custom_headers:nil) response = delete_async(secret_resource_name, secret_value_resource_name, custom_headers:custom_headers).value! nil end
ruby
def delete(secret_resource_name, secret_value_resource_name, custom_headers:nil) response = delete_async(secret_resource_name, secret_value_resource_name, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "secret_resource_name", ",", "secret_value_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "secret_resource_name", ",", "secret_value_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Deletes the specified value of the named secret resource. Deletes the secret value resource identified by the name. The name of the resource is typically the version associated with that value. Deletion will fail if the specified value is in use. @param secret_resource_name [String] The name of the secret resource. @param secret_value_resource_name [String] The name of the secret resource value which is typically the version identifier for the value. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Deletes", "the", "specified", "value", "of", "the", "named", "secret", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_secret_value.rb#L272-L275
13,514
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_secret_value.rb
Azure::ServiceFabric::V6_4_0_36.MeshSecretValue.show
def show(secret_resource_name, secret_value_resource_name, custom_headers:nil) response = show_async(secret_resource_name, secret_value_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def show(secret_resource_name, secret_value_resource_name, custom_headers:nil) response = show_async(secret_resource_name, secret_value_resource_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "show", "(", "secret_resource_name", ",", "secret_value_resource_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "show_async", "(", "secret_resource_name", ",", "secret_value_resource_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Lists the specified value of the secret resource. Lists the decrypted value of the specified named value of the secret resource. This is a privileged operation. @param secret_resource_name [String] The name of the secret resource. @param secret_value_resource_name [String] The name of the secret resource value which is typically the version identifier for the value. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [SecretValue] operation results.
[ "Lists", "the", "specified", "value", "of", "the", "secret", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_secret_value.rb#L466-L469
13,515
Azure/azure-sdk-for-ruby
management/azure_mgmt_machine_learning/lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb
Azure::MachineLearning::Mgmt::V2017_01_01.WebServices.get_with_http_info
def get_with_http_info(resource_group_name, web_service_name, region:nil, custom_headers:nil) get_async(resource_group_name, web_service_name, region:region, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, web_service_name, region:nil, custom_headers:nil) get_async(resource_group_name, web_service_name, region:region, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "web_service_name", ",", "region", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "web_service_name", ",", "region", ":", "region", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the Web Service Definition as specified by a subscription, resource group, and name. Note that the storage credentials and web service keys are not returned by this call. To get the web service access keys, call List Keys. @param resource_group_name [String] Name of the resource group in which the web service is located. @param web_service_name [String] The name of the web service. @param region [String] The region for which encrypted credential parameters are valid. @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", "Web", "Service", "Definition", "as", "specified", "by", "a", "subscription", "resource", "group", "and", "name", ".", "Note", "that", "the", "storage", "credentials", "and", "web", "service", "keys", "are", "not", "returned", "by", "this", "call", ".", "To", "get", "the", "web", "service", "access", "keys", "call", "List", "Keys", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_machine_learning/lib/2017-01-01/generated/azure_mgmt_machine_learning/web_services.rb#L117-L119
13,516
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb
Azure::Web::Mgmt::V2018_02_01.AppServiceEnvironments.list_vips
def list_vips(resource_group_name, name, custom_headers:nil) response = list_vips_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_vips(resource_group_name, name, custom_headers:nil) response = list_vips_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_vips", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_vips_async", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get IP addresses assigned to an App Service Environment. Get IP addresses assigned to an App Service Environment. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param name [String] Name of the App Service Environment. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [AddressResponse] operation results.
[ "Get", "IP", "addresses", "assigned", "to", "an", "App", "Service", "Environment", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb#L667-L670
13,517
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb
Azure::Web::Mgmt::V2018_02_01.AppServiceEnvironments.list_diagnostics
def list_diagnostics(resource_group_name, name, custom_headers:nil) response = list_diagnostics_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_diagnostics(resource_group_name, name, custom_headers:nil) response = list_diagnostics_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_diagnostics", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_diagnostics_async", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get diagnostic information for an App Service Environment. Get diagnostic information for an App Service Environment. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param name [String] Name of the App Service Environment. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array] operation results.
[ "Get", "diagnostic", "information", "for", "an", "App", "Service", "Environment", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb#L843-L846
13,518
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb
Azure::Web::Mgmt::V2018_02_01.AppServiceEnvironments.list_metric_definitions
def list_metric_definitions(resource_group_name, name, custom_headers:nil) response = list_metric_definitions_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_metric_definitions(resource_group_name, name, custom_headers:nil) response = list_metric_definitions_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_metric_definitions", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_metric_definitions_async", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get global metric definitions of an App Service Environment. Get global metric definitions of an App Service Environment. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param name [String] Name of the App Service Environment. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MetricDefinition] operation results.
[ "Get", "global", "metric", "definitions", "of", "an", "App", "Service", "Environment", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb#L1071-L1074
13,519
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb
Azure::Web::Mgmt::V2018_02_01.AppServiceEnvironments.get_multi_role_pool
def get_multi_role_pool(resource_group_name, name, custom_headers:nil) response = get_multi_role_pool_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_multi_role_pool(resource_group_name, name, custom_headers:nil) response = get_multi_role_pool_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_multi_role_pool", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_multi_role_pool_async", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get properties of a multi-role pool. Get properties of a multi-role pool. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param name [String] Name of the App Service Environment. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [WorkerPoolResource] operation results.
[ "Get", "properties", "of", "a", "multi", "-", "role", "pool", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb#L1402-L1405
13,520
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb
Azure::Web::Mgmt::V2018_02_01.AppServiceEnvironments.list_operations
def list_operations(resource_group_name, name, custom_headers:nil) response = list_operations_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_operations(resource_group_name, name, custom_headers:nil) response = list_operations_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_operations", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_operations_async", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
List all currently running operations on the App Service Environment. List all currently running operations on the App Service Environment. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param name [String] Name of the App Service Environment. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array] operation results.
[ "List", "all", "currently", "running", "operations", "on", "the", "App", "Service", "Environment", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb#L2362-L2365
13,521
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb
Azure::Web::Mgmt::V2018_02_01.AppServiceEnvironments.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, name, force_delete:nil, custom_headers:nil) begin_delete_async(resource_group_name, name, force_delete:force_delete, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, name, force_delete:nil, custom_headers:nil) begin_delete_async(resource_group_name, name, force_delete:force_delete, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "name", ",", "force_delete", ":", "nil", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "name", ",", "force_delete", ":force_delete", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Delete an App Service Environment. Delete an App Service Environment. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param name [String] Name of the App Service Environment. @param force_delete [Boolean] Specify <code>true</code> to force the deletion even if the App Service Environment contains resources. The default is <code>false</code>. @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", "App", "Service", "Environment", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/app_service_environments.rb#L4303-L4305
13,522
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_image.rb
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementImage.delete_all_images
def delete_all_images(list_id, custom_headers:nil) response = delete_all_images_async(list_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def delete_all_images(list_id, custom_headers:nil) response = delete_all_images_async(list_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "delete_all_images", "(", "list_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_all_images_async", "(", "list_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Deletes all images from the list with list Id equal to list Id passed. @param list_id [String] List Id of the image list. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [String] operation results.
[ "Deletes", "all", "images", "from", "the", "list", "with", "list", "Id", "equal", "to", "list", "Id", "passed", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_image.rb#L137-L140
13,523
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_image.rb
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementImage.get_all_image_ids
def get_all_image_ids(list_id, custom_headers:nil) response = get_all_image_ids_async(list_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_all_image_ids(list_id, custom_headers:nil) response = get_all_image_ids_async(list_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_all_image_ids", "(", "list_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_all_image_ids_async", "(", "list_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets all image Ids from the list with list Id equal to list Id passed. @param list_id [String] List Id of the image list. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ImageIds] operation results.
[ "Gets", "all", "image", "Ids", "from", "the", "list", "with", "list", "Id", "equal", "to", "list", "Id", "passed", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_image.rb#L231-L234
13,524
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_image.rb
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementImage.delete_image
def delete_image(list_id, image_id, custom_headers:nil) response = delete_image_async(list_id, image_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def delete_image(list_id, image_id, custom_headers:nil) response = delete_image_async(list_id, image_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "delete_image", "(", "list_id", ",", "image_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_image_async", "(", "list_id", ",", "image_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Deletes an image from the list with list Id and image Id passed. @param list_id [String] List Id of the image list. @param image_id [String] Id of the image. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [String] operation results.
[ "Deletes", "an", "image", "from", "the", "list", "with", "list", "Id", "and", "image", "Id", "passed", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_image.rb#L319-L322
13,525
Azure/azure-sdk-for-ruby
management/azure_mgmt_iot_central/lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/apps.rb
Azure::IotCentral::Mgmt::V2017_07_01_privatepreview.Apps.check_name_availability
def check_name_availability(operation_inputs, custom_headers:nil) response = check_name_availability_async(operation_inputs, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def check_name_availability(operation_inputs, custom_headers:nil) response = check_name_availability_async(operation_inputs, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "check_name_availability", "(", "operation_inputs", ",", "custom_headers", ":", "nil", ")", "response", "=", "check_name_availability_async", "(", "operation_inputs", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Check if an IoT Central application name is available. @param operation_inputs [OperationInputs] Set the name parameter in the OperationInputs structure to the name of the IoT Central application to check. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [AppNameAvailabilityInfo] operation results.
[ "Check", "if", "an", "IoT", "Central", "application", "name", "is", "available", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_iot_central/lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/apps.rb#L451-L454
13,526
Azure/azure-sdk-for-ruby
management/azure_mgmt_iot_central/lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/apps.rb
Azure::IotCentral::Mgmt::V2017_07_01_privatepreview.Apps.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, resource_name, app, custom_headers:nil) begin_create_or_update_async(resource_group_name, resource_name, app, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, resource_name, app, custom_headers:nil) begin_create_or_update_async(resource_group_name, resource_name, app, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "resource_name", ",", "app", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "resource_name", ",", "app", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create or update the metadata of an IoT Central application. The usual pattern to modify a property is to retrieve the IoT Central application metadata and security metadata, and then combine them with the modified values in a new body to update the IoT Central application. @param resource_group_name [String] The name of the resource group that contains the IoT Central application. @param resource_name [String] The ARM resource name of the IoT Central application. @param app [App] The IoT Central application metadata and security metadata. @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", "the", "metadata", "of", "an", "IoT", "Central", "application", ".", "The", "usual", "pattern", "to", "modify", "a", "property", "is", "to", "retrieve", "the", "IoT", "Central", "application", "metadata", "and", "security", "metadata", "and", "then", "combine", "them", "with", "the", "modified", "values", "in", "a", "new", "body", "to", "update", "the", "IoT", "Central", "application", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_iot_central/lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/apps.rb#L578-L580
13,527
Azure/azure-sdk-for-ruby
management/azure_mgmt_iot_central/lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/apps.rb
Azure::IotCentral::Mgmt::V2017_07_01_privatepreview.Apps.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, resource_name, app_patch, custom_headers:nil) begin_update_async(resource_group_name, resource_name, app_patch, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, resource_name, app_patch, custom_headers:nil) begin_update_async(resource_group_name, resource_name, app_patch, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "resource_name", ",", "app_patch", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "resource_name", ",", "app_patch", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Update the metadata of an IoT Central application. @param resource_group_name [String] The name of the resource group that contains the IoT Central application. @param resource_name [String] The ARM resource name of the IoT Central application. @param app_patch [AppPatch] The IoT Central application metadata and security metadata. @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", "metadata", "of", "an", "IoT", "Central", "application", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_iot_central/lib/2017-07-01-privatepreview/generated/azure_mgmt_iot_central/apps.rb#L702-L704
13,528
Azure/azure-sdk-for-ruby
management/azure_mgmt_authorization/lib/2015-07-01/generated/azure_mgmt_authorization/role_definitions.rb
Azure::Authorization::Mgmt::V2015_07_01.RoleDefinitions.get_by_id
def get_by_id(role_definition_id, custom_headers:nil) response = get_by_id_async(role_definition_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_by_id(role_definition_id, custom_headers:nil) response = get_by_id_async(role_definition_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_by_id", "(", "role_definition_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_by_id_async", "(", "role_definition_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets a role definition by ID. @param role_definition_id [String] The fully qualified role definition ID. Use the format, /subscriptions/{guid}/providers/Microsoft.Authorization/roleDefinitions/{roleDefinitionId} for subscription level role definitions, or /providers/Microsoft.Authorization/roleDefinitions/{roleDefinitionId} for tenant level role definitions. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [RoleDefinition] operation results.
[ "Gets", "a", "role", "definition", "by", "ID", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_authorization/lib/2015-07-01/generated/azure_mgmt_authorization/role_definitions.rb#L422-L425
13,529
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2018-10-01/generated/azure_mgmt_network/connection_monitors.rb
Azure::Network::Mgmt::V2018_10_01.ConnectionMonitors.get_with_http_info
def get_with_http_info(resource_group_name, network_watcher_name, connection_monitor_name, custom_headers:nil) get_async(resource_group_name, network_watcher_name, connection_monitor_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, network_watcher_name, connection_monitor_name, custom_headers:nil) get_async(resource_group_name, network_watcher_name, connection_monitor_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "network_watcher_name", ",", "connection_monitor_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "network_watcher_name", ",", "connection_monitor_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a connection monitor by name. @param resource_group_name [String] The name of the resource group containing Network Watcher. @param network_watcher_name [String] The name of the Network Watcher resource. @param connection_monitor_name [String] The name of the connection monitor. @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", "connection", "monitor", "by", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-10-01/generated/azure_mgmt_network/connection_monitors.rb#L107-L109
13,530
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/property.rb
Azure::ApiManagement::Mgmt::V2018_01_01.Property.get_with_http_info
def get_with_http_info(resource_group_name, service_name, prop_id, custom_headers:nil) get_async(resource_group_name, service_name, prop_id, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, service_name, prop_id, custom_headers:nil) get_async(resource_group_name, service_name, prop_id, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "prop_id", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "service_name", ",", "prop_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the details of the property 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 prop_id [String] Identifier of the property. @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", "property", "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/property.rb#L268-L270
13,531
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/property.rb
Azure::ApiManagement::Mgmt::V2018_01_01.Property.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, service_name, prop_id, parameters, if_match:nil, custom_headers:nil) create_or_update_async(resource_group_name, service_name, prop_id, parameters, if_match:if_match, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, service_name, prop_id, parameters, if_match:nil, custom_headers:nil) create_or_update_async(resource_group_name, service_name, prop_id, parameters, if_match:if_match, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "prop_id", ",", "parameters", ",", "if_match", ":", "nil", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "service_name", ",", "prop_id", ",", "parameters", ",", "if_match", ":if_match", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates a property. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param prop_id [String] Identifier of the property. @param parameters [PropertyContract] Create parameters. @param if_match [String] ETag of the Entity. Not required when creating an entity, but required when updating an entity. @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", "property", "." ]
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/property.rb#L375-L377
13,532
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/api_management_services.rb
Azure::ApiManagement::Mgmt::V2016_10_10.ApiManagementServices.get_sso_token
def get_sso_token(resource_group_name, service_name, custom_headers:nil) response = get_sso_token_async(resource_group_name, service_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_sso_token(resource_group_name, service_name, custom_headers:nil) response = get_sso_token_async(resource_group_name, service_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_sso_token", "(", "resource_group_name", ",", "service_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_sso_token_async", "(", "resource_group_name", ",", "service_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the Single-Sign-On token for the API Management Service which is valid for 5 Minutes. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ApiManagementServiceGetSsoTokenResult] operation results.
[ "Gets", "the", "Single", "-", "Sign", "-", "On", "token", "for", "the", "API", "Management", "Service", "which", "is", "valid", "for", "5", "Minutes", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/api_management_services.rb#L699-L702
13,533
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/api_management_services.rb
Azure::ApiManagement::Mgmt::V2016_10_10.ApiManagementServices.upload_certificate_with_http_info
def upload_certificate_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) upload_certificate_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
ruby
def upload_certificate_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) upload_certificate_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
[ "def", "upload_certificate_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "upload_certificate_async", "(", "resource_group_name", ",", "service_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Upload Custom Domain SSL certificate for an API Management service. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param parameters [ApiManagementServiceUploadCertificateParameters] Parameters supplied to the Upload SSL certificate for an API Management service 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.
[ "Upload", "Custom", "Domain", "SSL", "certificate", "for", "an", "API", "Management", "service", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/api_management_services.rb#L915-L917
13,534
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/api_management_services.rb
Azure::ApiManagement::Mgmt::V2016_10_10.ApiManagementServices.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "service_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Updates an existing API Management service. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param parameters [ApiManagementServiceUpdateParameters] Parameters supplied to the CreateOrUpdate API Management service 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", "API", "Management", "service", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2016-10-10/generated/azure_mgmt_api_management/api_management_services.rb#L1474-L1476
13,535
Azure/azure-sdk-for-ruby
management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb
Azure::CDN::Mgmt::V2017_04_02.Endpoints.start
def start(resource_group_name, profile_name, endpoint_name, custom_headers:nil) response = start_async(resource_group_name, profile_name, endpoint_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def start(resource_group_name, profile_name, endpoint_name, custom_headers:nil) response = start_async(resource_group_name, profile_name, endpoint_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "start", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "start_async", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Starts an existing CDN endpoint that is on a stopped state. @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_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Endpoint] operation results.
[ "Starts", "an", "existing", "CDN", "endpoint", "that", "is", "on", "a", "stopped", "state", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb#L410-L413
13,536
Azure/azure-sdk-for-ruby
management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb
Azure::CDN::Mgmt::V2017_04_02.Endpoints.purge_content
def purge_content(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:nil) response = purge_content_async(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:custom_headers).value! nil end
ruby
def purge_content(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:nil) response = purge_content_async(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:custom_headers).value! nil end
[ "def", "purge_content", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "content_file_paths", ",", "custom_headers", ":", "nil", ")", "response", "=", "purge_content_async", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "content_file_paths", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Removes a content from CDN. @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 content_file_paths [PurgeParameters] The path to the content to be purged. Path can be a full URL, e.g. '/pictures/city.png' which removes a single file, or a directory with a wildcard, e.g. '/pictures/*' which removes all folders and files in the directory. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Removes", "a", "content", "from", "CDN", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb#L512-L515
13,537
Azure/azure-sdk-for-ruby
management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb
Azure::CDN::Mgmt::V2017_04_02.Endpoints.load_content
def load_content(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:nil) response = load_content_async(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:custom_headers).value! nil end
ruby
def load_content(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:nil) response = load_content_async(resource_group_name, profile_name, endpoint_name, content_file_paths, custom_headers:custom_headers).value! nil end
[ "def", "load_content", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "content_file_paths", ",", "custom_headers", ":", "nil", ")", "response", "=", "load_content_async", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "content_file_paths", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Pre-loads a content to CDN. Available for Verizon Profiles. @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 content_file_paths [LoadParameters] The path to the content to be loaded. Path should be a full URL, e.g. ‘/pictures/city.png' which loads a single file @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Pre", "-", "loads", "a", "content", "to", "CDN", ".", "Available", "for", "Verizon", "Profiles", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb#L565-L568
13,538
Azure/azure-sdk-for-ruby
management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb
Azure::CDN::Mgmt::V2017_04_02.Endpoints.begin_create_with_http_info
def begin_create_with_http_info(resource_group_name, profile_name, endpoint_name, endpoint, custom_headers:nil) begin_create_async(resource_group_name, profile_name, endpoint_name, endpoint, custom_headers:custom_headers).value! end
ruby
def begin_create_with_http_info(resource_group_name, profile_name, endpoint_name, endpoint, custom_headers:nil) begin_create_async(resource_group_name, profile_name, endpoint_name, endpoint, custom_headers:custom_headers).value! end
[ "def", "begin_create_with_http_info", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "endpoint", ",", "custom_headers", ":", "nil", ")", "begin_create_async", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "endpoint", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates a new CDN endpoint with the specified endpoint name under the specified subscription, resource group and profile. @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 endpoint [Endpoint] Endpoint properties @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", "endpoint", "with", "the", "specified", "endpoint", "name", "under", "the", "specified", "subscription", "resource", "group", "and", "profile", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb#L875-L877
13,539
Azure/azure-sdk-for-ruby
management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb
Azure::CDN::Mgmt::V2017_04_02.Endpoints.begin_delete
def begin_delete(resource_group_name, profile_name, endpoint_name, custom_headers:nil) response = begin_delete_async(resource_group_name, profile_name, endpoint_name, custom_headers:custom_headers).value! nil end
ruby
def begin_delete(resource_group_name, profile_name, endpoint_name, custom_headers:nil) response = begin_delete_async(resource_group_name, profile_name, endpoint_name, custom_headers:custom_headers).value! nil end
[ "def", "begin_delete", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "begin_delete_async", "(", "resource_group_name", ",", "profile_name", ",", "endpoint_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Deletes an existing CDN endpoint with the specified endpoint name under the specified subscription, resource group and profile. @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_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Deletes", "an", "existing", "CDN", "endpoint", "with", "the", "specified", "endpoint", "name", "under", "the", "specified", "subscription", "resource", "group", "and", "profile", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2017-04-02/generated/azure_mgmt_cdn/endpoints.rb#L1138-L1141
13,540
Azure/azure-sdk-for-ruby
management/azure_mgmt_reservations/lib/2018-06-01-preview/generated/azure_mgmt_reservations/reservations_management_client.rb
Azure::Reservations::Mgmt::V2018_06_01_preview.ReservationsManagementClient.get_applied_reservation_list
def get_applied_reservation_list(subscription_id, custom_headers:nil) response = get_applied_reservation_list_async(subscription_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_applied_reservation_list(subscription_id, custom_headers:nil) response = get_applied_reservation_list_async(subscription_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_applied_reservation_list", "(", "subscription_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_applied_reservation_list_async", "(", "subscription_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get list of applicable `Reservation`s. Get applicable `Reservation`s that are applied to this subscription. @param subscription_id [String] Id of the subscription @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [AppliedReservations] operation results.
[ "Get", "list", "of", "applicable", "Reservation", "s", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_reservations/lib/2018-06-01-preview/generated/azure_mgmt_reservations/reservations_management_client.rb#L255-L258
13,541
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/person_group_person.rb
Azure::CognitiveServices::Face::V1_0.PersonGroupPerson.delete
def delete(person_group_id, person_id, custom_headers:nil) response = delete_async(person_group_id, person_id, custom_headers:custom_headers).value! nil end
ruby
def delete(person_group_id, person_id, custom_headers:nil) response = delete_async(person_group_id, person_id, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "person_group_id", ",", "person_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "person_group_id", ",", "person_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Delete an existing person from a person group. All stored person data, and face features in the person entry will be deleted. @param person_group_id [String] Id referencing a particular person group. @param person_id Id referencing a particular person. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Delete", "an", "existing", "person", "from", "a", "person", "group", ".", "All", "stored", "person", "data", "and", "face", "features", "in", "the", "person", "entry", "will", "be", "deleted", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/person_group_person.rb#L269-L272
13,542
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/job_agents.rb
Azure::SQL::Mgmt::V2017_03_01_preview.JobAgents.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, server_name, job_agent_name, custom_headers:nil) begin_delete_async(resource_group_name, server_name, job_agent_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, server_name, job_agent_name, custom_headers:nil) begin_delete_async(resource_group_name, server_name, job_agent_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "job_agent_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "server_name", ",", "job_agent_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a job 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. @param job_agent_name [String] The name of the job agent to be deleted. @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", "job", "agent", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/job_agents.rb#L529-L531
13,543
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/job_agents.rb
Azure::SQL::Mgmt::V2017_03_01_preview.JobAgents.list_by_server_as_lazy
def list_by_server_as_lazy(resource_group_name, server_name, custom_headers:nil) response = list_by_server_async(resource_group_name, server_name, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_server_next_async(next_page_link, custom_headers:custom_headers) end page end end
ruby
def list_by_server_as_lazy(resource_group_name, server_name, custom_headers:nil) response = list_by_server_async(resource_group_name, server_name, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_server_next_async(next_page_link, custom_headers:custom_headers) end page end end
[ "def", "list_by_server_as_lazy", "(", "resource_group_name", ",", "server_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_server_async", "(", "resource_group_name", ",", "server_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "unless", "response", ".", "nil?", "page", "=", "response", ".", "body", "page", ".", "next_method", "=", "Proc", ".", "new", "do", "|", "next_page_link", "|", "list_by_server_next_async", "(", "next_page_link", ",", "custom_headers", ":custom_headers", ")", "end", "page", "end", "end" ]
Gets a list of job agents in 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 custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [JobAgentListResult] which provide lazy access to pages of the response.
[ "Gets", "a", "list", "of", "job", "agents", "in", "a", "server", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/job_agents.rb#L804-L813
13,544
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/network_interface_tap_configurations.rb
Azure::Network::Mgmt::V2019_02_01.NetworkInterfaceTapConfigurations.get_with_http_info
def get_with_http_info(resource_group_name, network_interface_name, tap_configuration_name, custom_headers:nil) get_async(resource_group_name, network_interface_name, tap_configuration_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, network_interface_name, tap_configuration_name, custom_headers:nil) get_async(resource_group_name, network_interface_name, tap_configuration_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "network_interface_name", ",", "tap_configuration_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "network_interface_name", ",", "tap_configuration_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Get the specified tap configuration on a network interface. @param resource_group_name [String] The name of the resource group. @param network_interface_name [String] The name of the network interface. @param tap_configuration_name [String] The name of the tap 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.
[ "Get", "the", "specified", "tap", "configuration", "on", "a", "network", "interface", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/network_interface_tap_configurations.rb#L91-L93
13,545
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb
Azure::CognitiveServices::Face::V1_0.LargePersonGroupPerson.create
def create(large_person_group_id, name:nil, user_data:nil, custom_headers:nil) response = create_async(large_person_group_id, name:name, user_data:user_data, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def create(large_person_group_id, name:nil, user_data:nil, custom_headers:nil) response = create_async(large_person_group_id, name:name, user_data:user_data, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "create", "(", "large_person_group_id", ",", "name", ":", "nil", ",", "user_data", ":", "nil", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_async", "(", "large_person_group_id", ",", "name", ":", "name", ",", "user_data", ":user_data", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Create a new person in a specified large person group. @param large_person_group_id [String] Id referencing a particular large person group. @param name [String] User defined name, maximum length is 128. @param user_data [String] User specified data. Length should not exceed 16KB. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Person] operation results.
[ "Create", "a", "new", "person", "in", "a", "specified", "large", "person", "group", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb#L36-L39
13,546
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb
Azure::CognitiveServices::Face::V1_0.LargePersonGroupPerson.delete
def delete(large_person_group_id, person_id, custom_headers:nil) response = delete_async(large_person_group_id, person_id, custom_headers:custom_headers).value! nil end
ruby
def delete(large_person_group_id, person_id, custom_headers:nil) response = delete_async(large_person_group_id, person_id, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "large_person_group_id", ",", "person_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "large_person_group_id", ",", "person_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Delete an existing person from a large person group. All stored person data, and face features in the person entry will be deleted. @param large_person_group_id [String] Id referencing a particular large person group. @param person_id Id referencing a particular person. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Delete", "an", "existing", "person", "from", "a", "large", "person", "group", ".", "All", "stored", "person", "data", "and", "face", "features", "in", "the", "person", "entry", "will", "be", "deleted", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb#L276-L279
13,547
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb
Azure::CognitiveServices::Face::V1_0.LargePersonGroupPerson.get
def get(large_person_group_id, person_id, custom_headers:nil) response = get_async(large_person_group_id, person_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get(large_person_group_id, person_id, custom_headers:nil) response = get_async(large_person_group_id, person_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get", "(", "large_person_group_id", ",", "person_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_async", "(", "large_person_group_id", ",", "person_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Retrieve a person's information, including registered persisted faces, name and userData. @param large_person_group_id [String] Id referencing a particular large person group. @param person_id Id referencing a particular person. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Person] operation results.
[ "Retrieve", "a", "person", "s", "information", "including", "registered", "persisted", "faces", "name", "and", "userData", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb#L365-L368
13,548
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb
Azure::CognitiveServices::Face::V1_0.LargePersonGroupPerson.update_with_http_info
def update_with_http_info(large_person_group_id, person_id, name:nil, user_data:nil, custom_headers:nil) update_async(large_person_group_id, person_id, name:name, user_data:user_data, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(large_person_group_id, person_id, name:nil, user_data:nil, custom_headers:nil) update_async(large_person_group_id, person_id, name:name, user_data:user_data, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "large_person_group_id", ",", "person_id", ",", "name", ":", "nil", ",", "user_data", ":", "nil", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "large_person_group_id", ",", "person_id", ",", "name", ":", "name", ",", "user_data", ":user_data", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Update name or userData of a person. @param large_person_group_id [String] Id referencing a particular large person group. @param person_id Id referencing a particular person. @param name [String] User defined name, maximum length is 128. @param user_data [String] User specified data. Length should not exceed 16KB. @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", "name", "or", "userData", "of", "a", "person", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_face/lib/1.0/generated/azure_cognitiveservices_face/large_person_group_person.rb#L482-L484
13,549
Azure/azure-sdk-for-ruby
management/azure_mgmt_search/lib/2015-08-19/generated/azure_mgmt_search/services.rb
Azure::Search::Mgmt::V2015_08_19.Services.get_with_http_info
def get_with_http_info(resource_group_name, search_service_name, search_management_request_options:nil, custom_headers:nil) get_async(resource_group_name, search_service_name, search_management_request_options:search_management_request_options, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, search_service_name, search_management_request_options:nil, custom_headers:nil) get_async(resource_group_name, search_service_name, search_management_request_options:search_management_request_options, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "search_service_name", ",", "search_management_request_options", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "search_service_name", ",", "search_management_request_options", ":search_management_request_options", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the Search service with the given name in the given resource group. @param resource_group_name [String] The name of the resource group within the current subscription. You can obtain this value from the Azure Resource Manager API or the portal. @param search_service_name [String] The name of the Azure Search service associated with the specified resource group. @param search_management_request_options [SearchManagementRequestOptions] Additional parameters for 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.
[ "Gets", "the", "Search", "service", "with", "the", "given", "name", "in", "the", "given", "resource", "group", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_search/lib/2015-08-19/generated/azure_mgmt_search/services.rb#L253-L255
13,550
Azure/azure-sdk-for-ruby
management/azure_mgmt_policy/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_set_definitions.rb
Azure::Policy::Mgmt::V2017_06_01_preview.PolicySetDefinitions.get_built_in
def get_built_in(policy_set_definition_name, custom_headers:nil) response = get_built_in_async(policy_set_definition_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_built_in(policy_set_definition_name, custom_headers:nil) response = get_built_in_async(policy_set_definition_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_built_in", "(", "policy_set_definition_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_built_in_async", "(", "policy_set_definition_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the built in policy set definition. @param policy_set_definition_name [String] The name of the policy set definition to get. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [PolicySetDefinition] operation results.
[ "Gets", "the", "built", "in", "policy", "set", "definition", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_set_definitions.rb#L318-L321
13,551
Azure/azure-sdk-for-ruby
management/azure_mgmt_policy/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_set_definitions.rb
Azure::Policy::Mgmt::V2017_06_01_preview.PolicySetDefinitions.create_or_update_at_management_group_with_http_info
def create_or_update_at_management_group_with_http_info(policy_set_definition_name, parameters, management_group_id, custom_headers:nil) create_or_update_at_management_group_async(policy_set_definition_name, parameters, management_group_id, custom_headers:custom_headers).value! end
ruby
def create_or_update_at_management_group_with_http_info(policy_set_definition_name, parameters, management_group_id, custom_headers:nil) create_or_update_at_management_group_async(policy_set_definition_name, parameters, management_group_id, custom_headers:custom_headers).value! end
[ "def", "create_or_update_at_management_group_with_http_info", "(", "policy_set_definition_name", ",", "parameters", ",", "management_group_id", ",", "custom_headers", ":", "nil", ")", "create_or_update_at_management_group_async", "(", "policy_set_definition_name", ",", "parameters", ",", "management_group_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates a policy set definition at management group level. @param policy_set_definition_name [String] The name of the policy set definition to create. @param parameters [PolicySetDefinition] The policy set definition properties. @param management_group_id [String] The ID of the management group. @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", "policy", "set", "definition", "at", "management", "group", "level", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_set_definitions.rb#L593-L595
13,552
Azure/azure-sdk-for-ruby
management/azure_mgmt_policy/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_set_definitions.rb
Azure::Policy::Mgmt::V2017_06_01_preview.PolicySetDefinitions.delete_at_management_group
def delete_at_management_group(policy_set_definition_name, management_group_id, custom_headers:nil) response = delete_at_management_group_async(policy_set_definition_name, management_group_id, custom_headers:custom_headers).value! nil end
ruby
def delete_at_management_group(policy_set_definition_name, management_group_id, custom_headers:nil) response = delete_at_management_group_async(policy_set_definition_name, management_group_id, custom_headers:custom_headers).value! nil end
[ "def", "delete_at_management_group", "(", "policy_set_definition_name", ",", "management_group_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_at_management_group_async", "(", "policy_set_definition_name", ",", "management_group_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Deletes a policy set definition at management group level. @param policy_set_definition_name [String] The name of the policy set definition to delete. @param management_group_id [String] The ID of the management group. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Deletes", "a", "policy", "set", "definition", "at", "management", "group", "level", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy/lib/2017-06-01-preview/generated/azure_mgmt_policy/policy_set_definitions.rb#L689-L692
13,553
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_secret.rb
Azure::ServiceFabric::V6_4_0_36.MeshSecret.create_or_update
def create_or_update(secret_resource_name, secret_resource_description, custom_headers:nil) response = create_or_update_async(secret_resource_name, secret_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def create_or_update(secret_resource_name, secret_resource_description, custom_headers:nil) response = create_or_update_async(secret_resource_name, secret_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "create_or_update", "(", "secret_resource_name", ",", "secret_resource_description", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_or_update_async", "(", "secret_resource_name", ",", "secret_resource_description", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Creates or updates a Secret resource. Creates a Secret resource with the specified name, description and properties. If Secret resource with the same name exists, then it is updated with the specified description and properties. Once created, the kind and contentType of a secret resource cannot be updated. @param secret_resource_name [String] The name of the secret resource. @param secret_resource_description [SecretResourceDescription] Description for creating a secret resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [SecretResourceDescription] operation results.
[ "Creates", "or", "updates", "a", "Secret", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_secret.rb#L41-L44
13,554
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/identity_provider.rb
Azure::ApiManagement::Mgmt::V2018_01_01.IdentityProvider.list_by_service
def list_by_service(resource_group_name, service_name, custom_headers:nil) first_page = list_by_service_as_lazy(resource_group_name, service_name, custom_headers:custom_headers) first_page.get_all_items end
ruby
def list_by_service(resource_group_name, service_name, custom_headers:nil) first_page = list_by_service_as_lazy(resource_group_name, service_name, custom_headers:custom_headers) first_page.get_all_items end
[ "def", "list_by_service", "(", "resource_group_name", ",", "service_name", ",", "custom_headers", ":", "nil", ")", "first_page", "=", "list_by_service_as_lazy", "(", "resource_group_name", ",", "service_name", ",", "custom_headers", ":custom_headers", ")", "first_page", ".", "get_all_items", "end" ]
Lists a collection of Identity Provider configured 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 custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array<IdentityProviderContract>] operation results.
[ "Lists", "a", "collection", "of", "Identity", "Provider", "configured", "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/identity_provider.rb#L35-L38
13,555
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/identity_provider.rb
Azure::ApiManagement::Mgmt::V2018_01_01.IdentityProvider.get_with_http_info
def get_with_http_info(resource_group_name, service_name, identity_provider_name, custom_headers:nil) get_async(resource_group_name, service_name, identity_provider_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, service_name, identity_provider_name, custom_headers:nil) get_async(resource_group_name, service_name, identity_provider_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "identity_provider_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "service_name", ",", "identity_provider_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the configuration details of the identity Provider configured in 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 identity_provider_name [IdentityProviderType] Identity Provider Type identifier. Possible values include: 'facebook', 'google', 'microsoft', 'twitter', 'aad', 'aadB2C' @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", "configuration", "details", "of", "the", "identity", "Provider", "configured", "in", "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/identity_provider.rb#L252-L254
13,556
Azure/azure-sdk-for-ruby
management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/log_profiles.rb
Azure::Monitor::Mgmt::V2016_03_01.LogProfiles.update
def update(log_profile_name, log_profiles_resource, custom_headers:nil) response = update_async(log_profile_name, log_profiles_resource, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def update(log_profile_name, log_profiles_resource, custom_headers:nil) response = update_async(log_profile_name, log_profiles_resource, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "update", "(", "log_profile_name", ",", "log_profiles_resource", ",", "custom_headers", ":", "nil", ")", "response", "=", "update_async", "(", "log_profile_name", ",", "log_profiles_resource", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Updates an existing LogProfilesResource. To update other fields use the CreateOrUpdate method. @param log_profile_name [String] The name of the log profile. @param log_profiles_resource [LogProfileResourcePatch] 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 [LogProfileResource] operation results.
[ "Updates", "an", "existing", "LogProfilesResource", ".", "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/log_profiles.rb#L300-L303
13,557
Azure/azure-sdk-for-ruby
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/mediaservices.rb
Azure::MediaServices::Mgmt::V2018_07_01.Mediaservices.get_by_subscription
def get_by_subscription(account_name, custom_headers:nil) response = get_by_subscription_async(account_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_by_subscription(account_name, custom_headers:nil) response = get_by_subscription_async(account_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_by_subscription", "(", "account_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_by_subscription_async", "(", "account_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get a Media Services account Get the details of a Media Services account @param account_name [String] The Media Services account name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [SubscriptionMediaService] operation results.
[ "Get", "a", "Media", "Services", "account" ]
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/mediaservices.rb#L751-L754
13,558
Azure/azure-sdk-for-ruby
management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/availability_group_listeners.rb
Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview.AvailabilityGroupListeners.get_with_http_info
def get_with_http_info(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:nil) get_async(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:nil) get_async(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "sql_virtual_machine_group_name", ",", "availability_group_listener_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "sql_virtual_machine_group_name", ",", "availability_group_listener_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets an availability group listener. @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_group_name [String] Name of the SQL virtual machine group. @param availability_group_listener_name [String] Name of the availability group listener. @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", "availability", "group", "listener", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/availability_group_listeners.rb#L63-L65
13,559
Azure/azure-sdk-for-ruby
management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/availability_group_listeners.rb
Azure::Sqlvirtualmachine::Mgmt::V2017_03_01_preview.AvailabilityGroupListeners.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:nil) begin_delete_async(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:nil) begin_delete_async(resource_group_name, sql_virtual_machine_group_name, availability_group_listener_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "sql_virtual_machine_group_name", ",", "availability_group_listener_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "sql_virtual_machine_group_name", ",", "availability_group_listener_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes an availability group listener. @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_group_name [String] Name of the SQL virtual machine group. @param availability_group_listener_name [String] Name of the availability group listener. @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", "availability", "group", "listener", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sqlvirtualmachine/lib/2017-03-01-preview/generated/azure_mgmt_sqlvirtualmachine/availability_group_listeners.rb#L507-L509
13,560
Azure/azure-sdk-for-ruby
management/azure_mgmt_subscriptions/lib/2016-06-01/generated/azure_mgmt_subscriptions/subscriptions.rb
Azure::Subscriptions::Mgmt::V2016_06_01.Subscriptions.list_locations
def list_locations(subscription_id, custom_headers:nil) response = list_locations_async(subscription_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_locations(subscription_id, custom_headers:nil) response = list_locations_async(subscription_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_locations", "(", "subscription_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_locations_async", "(", "subscription_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets all available geo-locations. This operation provides all the locations that are available for resource providers; however, each resource provider may support a subset of this list. @param subscription_id [String] The ID of the target subscription. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [LocationListResult] operation results.
[ "Gets", "all", "available", "geo", "-", "locations", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_subscriptions/lib/2016-06-01/generated/azure_mgmt_subscriptions/subscriptions.rb#L39-L42
13,561
Azure/azure-sdk-for-ruby
management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/snapshots.rb
Azure::Compute::Mgmt::V2018_04_01.Snapshots.begin_grant_access_with_http_info
def begin_grant_access_with_http_info(resource_group_name, snapshot_name, grant_access_data, custom_headers:nil) begin_grant_access_async(resource_group_name, snapshot_name, grant_access_data, custom_headers:custom_headers).value! end
ruby
def begin_grant_access_with_http_info(resource_group_name, snapshot_name, grant_access_data, custom_headers:nil) begin_grant_access_async(resource_group_name, snapshot_name, grant_access_data, custom_headers:custom_headers).value! end
[ "def", "begin_grant_access_with_http_info", "(", "resource_group_name", ",", "snapshot_name", ",", "grant_access_data", ",", "custom_headers", ":", "nil", ")", "begin_grant_access_async", "(", "resource_group_name", ",", "snapshot_name", ",", "grant_access_data", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Grants access to a snapshot. @param resource_group_name [String] The name of the resource group. @param snapshot_name [String] The name of the snapshot that is being created. The name can't be changed after the snapshot is created. Supported characters for the name are a-z, A-Z, 0-9 and _. The max name length is 80 characters. @param grant_access_data [GrantAccessData] Access data object supplied in the body of the get snapshot access 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.
[ "Grants", "access", "to", "a", "snapshot", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/snapshots.rb#L892-L894
13,562
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/express_route_links.rb
Azure::Network::Mgmt::V2019_02_01.ExpressRouteLinks.get_with_http_info
def get_with_http_info(resource_group_name, express_route_port_name, link_name, custom_headers:nil) get_async(resource_group_name, express_route_port_name, link_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, express_route_port_name, link_name, custom_headers:nil) get_async(resource_group_name, express_route_port_name, link_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "express_route_port_name", ",", "link_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "express_route_port_name", ",", "link_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieves the specified ExpressRouteLink 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 link_name [String] The name of the ExpressRouteLink 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.
[ "Retrieves", "the", "specified", "ExpressRouteLink", "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_links.rb#L53-L55
13,563
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/express_route_links.rb
Azure::Network::Mgmt::V2019_02_01.ExpressRouteLinks.list
def list(resource_group_name, express_route_port_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, express_route_port_name, custom_headers:custom_headers) first_page.get_all_items end
ruby
def list(resource_group_name, express_route_port_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, express_route_port_name, custom_headers:custom_headers) first_page.get_all_items end
[ "def", "list", "(", "resource_group_name", ",", "express_route_port_name", ",", "custom_headers", ":", "nil", ")", "first_page", "=", "list_as_lazy", "(", "resource_group_name", ",", "express_route_port_name", ",", "custom_headers", ":custom_headers", ")", "first_page", ".", "get_all_items", "end" ]
Retrieve the ExpressRouteLink sub-resources of 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 custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array<ExpressRouteLink>] operation results.
[ "Retrieve", "the", "ExpressRouteLink", "sub", "-", "resources", "of", "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_links.rb#L135-L138
13,564
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/elastic_pools.rb
Azure::SQL::Mgmt::V2014_04_01.ElasticPools.delete_with_http_info
def delete_with_http_info(resource_group_name, server_name, elastic_pool_name, custom_headers:nil) delete_async(resource_group_name, server_name, elastic_pool_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, server_name, elastic_pool_name, custom_headers:nil) delete_async(resource_group_name, server_name, elastic_pool_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "elastic_pool_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "server_name", ",", "elastic_pool_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes the elastic pool. @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 elastic_pool_name [String] The name of the elastic pool to be deleted. @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", "elastic", "pool", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/elastic_pools.rb#L163-L165
13,565
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/elastic_pools.rb
Azure::SQL::Mgmt::V2014_04_01.ElasticPools.list_metrics_with_http_info
def list_metrics_with_http_info(resource_group_name, server_name, elastic_pool_name, filter, custom_headers:nil) list_metrics_async(resource_group_name, server_name, elastic_pool_name, filter, custom_headers:custom_headers).value! end
ruby
def list_metrics_with_http_info(resource_group_name, server_name, elastic_pool_name, filter, custom_headers:nil) list_metrics_async(resource_group_name, server_name, elastic_pool_name, filter, custom_headers:custom_headers).value! end
[ "def", "list_metrics_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "elastic_pool_name", ",", "filter", ",", "custom_headers", ":", "nil", ")", "list_metrics_async", "(", "resource_group_name", ",", "server_name", ",", "elastic_pool_name", ",", "filter", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns elastic pool metrics. @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 elastic_pool_name [String] The name of the elastic pool. @param filter [String] An OData filter expression that describes a subset of metrics to return. @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.
[ "Returns", "elastic", "pool", "metrics", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/elastic_pools.rb#L462-L464
13,566
Azure/azure-sdk-for-ruby
data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/users.rb
Azure::GraphRbac::V1_6.Users.get_member_groups
def get_member_groups(object_id, parameters, custom_headers:nil) response = get_member_groups_async(object_id, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_member_groups(object_id, parameters, custom_headers:nil) response = get_member_groups_async(object_id, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_member_groups", "(", "object_id", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_member_groups_async", "(", "object_id", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets a collection that contains the object IDs of the groups of which the user is a member. @param object_id [String] The object ID of the user for which to get group membership. @param parameters [UserGetMemberGroupsParameters] User filtering parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [UserGetMemberGroupsResult] operation results.
[ "Gets", "a", "collection", "that", "contains", "the", "object", "IDs", "of", "the", "groups", "of", "which", "the", "user", "is", "a", "member", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/users.rb#L483-L486
13,567
Azure/azure-sdk-for-ruby
data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/users.rb
Azure::GraphRbac::V1_6.Users.list_next
def list_next(next_link, custom_headers:nil) response = list_next_async(next_link, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_next(next_link, custom_headers:nil) response = list_next_async(next_link, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_next", "(", "next_link", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_next_async", "(", "next_link", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets a list of users for the current tenant. @param next_link [String] Next link for the list operation. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array<User>] operation results.
[ "Gets", "a", "list", "of", "users", "for", "the", "current", "tenant", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/users.rb#L585-L588
13,568
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_configuration_operations.rb
Azure::Automation::Mgmt::V2015_10_31.DscNodeConfigurationOperations.get_with_http_info
def get_with_http_info(resource_group_name, automation_account_name, node_configuration_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, node_configuration_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, automation_account_name, node_configuration_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, node_configuration_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "node_configuration_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "automation_account_name", ",", "node_configuration_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieve the Dsc node configurations by node configuration. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param node_configuration_name [String] The Dsc node configuration 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.
[ "Retrieve", "the", "Dsc", "node", "configurations", "by", "node", "configuration", "." ]
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_configuration_operations.rb#L139-L141
13,569
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_node_configuration_operations.rb
Azure::Automation::Mgmt::V2015_10_31.DscNodeConfigurationOperations.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, node_configuration_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "node_configuration_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "node_configuration_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create the node configuration identified by node configuration name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param node_configuration_name [String] The create or update parameters for configuration. @param parameters [DscNodeConfigurationCreateOrUpdateParameters] The create or update parameters for 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.
[ "Create", "the", "node", "configuration", "identified", "by", "node", "configuration", "name", "." ]
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_configuration_operations.rb#L244-L246
13,570
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/disaster_recovery_configurations.rb
Azure::SQL::Mgmt::V2014_04_01.DisasterRecoveryConfigurations.get_with_http_info
def get_with_http_info(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:nil) get_async(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:nil) get_async(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "disaster_recovery_configuration_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "server_name", ",", "disaster_recovery_configuration_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a disaster recovery configuration. @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 disaster_recovery_configuration_name [String] The name of the disaster recovery 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.
[ "Gets", "a", "disaster", "recovery", "configuration", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/disaster_recovery_configurations.rb#L254-L256
13,571
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/disaster_recovery_configurations.rb
Azure::SQL::Mgmt::V2014_04_01.DisasterRecoveryConfigurations.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:nil) begin_create_or_update_async(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:nil) begin_create_or_update_async(resource_group_name, server_name, disaster_recovery_configuration_name, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "disaster_recovery_configuration_name", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "server_name", ",", "disaster_recovery_configuration_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates a disaster recovery configuration. @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 disaster_recovery_configuration_name [String] The name of the disaster recovery configuration to be created/updated. @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", "disaster", "recovery", "configuration", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/disaster_recovery_configurations.rb#L546-L548
13,572
Azure/azure-sdk-for-ruby
management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_operations.rb
Azure::Batch::Mgmt::V2015_12_01.ApplicationOperations.get_with_http_info
def get_with_http_info(resource_group_name, account_name, application_id, custom_headers:nil) get_async(resource_group_name, account_name, application_id, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, account_name, application_id, custom_headers:nil) get_async(resource_group_name, account_name, application_id, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "application_id", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "account_name", ",", "application_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets information about the specified application. @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 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", "information", "about", "the", "specified", "application", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_operations.rb#L258-L260
13,573
Azure/azure-sdk-for-ruby
management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_operations.rb
Azure::Batch::Mgmt::V2015_12_01.ApplicationOperations.list_with_http_info
def list_with_http_info(resource_group_name, account_name, maxresults:nil, custom_headers:nil) list_async(resource_group_name, account_name, maxresults:maxresults, custom_headers:custom_headers).value! end
ruby
def list_with_http_info(resource_group_name, account_name, maxresults:nil, custom_headers:nil) list_async(resource_group_name, account_name, maxresults:maxresults, custom_headers:custom_headers).value! end
[ "def", "list_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "maxresults", ":", "nil", ",", "custom_headers", ":", "nil", ")", "list_async", "(", "resource_group_name", ",", "account_name", ",", "maxresults", ":", "maxresults", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Lists all of the applications in 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 maxresults [Integer] The maximum number of items to return 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.
[ "Lists", "all", "of", "the", "applications", "in", "the", "specified", "account", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2015-12-01/generated/azure_mgmt_batch/application_operations.rb#L469-L471
13,574
Azure/azure-sdk-for-ruby
management/azure_mgmt_relay/lib/2016-07-01/generated/azure_mgmt_relay/hybrid_connections.rb
Azure::Relay::Mgmt::V2016_07_01.HybridConnections.delete_with_http_info
def delete_with_http_info(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:nil) delete_async(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:nil) delete_async(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "hybrid_connection_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "namespace_name", ",", "hybrid_connection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a HybridConnection . @param resource_group_name [String] Name of the Resource group within the Azure subscription. @param namespace_name [String] The Namespace Name @param hybrid_connection_name [String] The hybrid connection 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", "a", "HybridConnection", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_relay/lib/2016-07-01/generated/azure_mgmt_relay/hybrid_connections.rb#L271-L273
13,575
Azure/azure-sdk-for-ruby
management/azure_mgmt_relay/lib/2016-07-01/generated/azure_mgmt_relay/hybrid_connections.rb
Azure::Relay::Mgmt::V2016_07_01.HybridConnections.get_with_http_info
def get_with_http_info(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:nil) get_async(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:nil) get_async(resource_group_name, namespace_name, hybrid_connection_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "hybrid_connection_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "namespace_name", ",", "hybrid_connection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns the description for the specified HybridConnection. @param resource_group_name [String] Name of the Resource group within the Azure subscription. @param namespace_name [String] The Namespace Name @param hybrid_connection_name [String] The hybrid connection 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.
[ "Returns", "the", "description", "for", "the", "specified", "HybridConnection", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_relay/lib/2016-07-01/generated/azure_mgmt_relay/hybrid_connections.rb#L366-L368
13,576
Azure/azure-sdk-for-ruby
management/azure_mgmt_relay/lib/2016-07-01/generated/azure_mgmt_relay/hybrid_connections.rb
Azure::Relay::Mgmt::V2016_07_01.HybridConnections.delete_authorization_rule_with_http_info
def delete_authorization_rule_with_http_info(resource_group_name, namespace_name, hybrid_connection_name, authorization_rule_name, custom_headers:nil) delete_authorization_rule_async(resource_group_name, namespace_name, hybrid_connection_name, authorization_rule_name, custom_headers:custom_headers).value! end
ruby
def delete_authorization_rule_with_http_info(resource_group_name, namespace_name, hybrid_connection_name, authorization_rule_name, custom_headers:nil) delete_authorization_rule_async(resource_group_name, namespace_name, hybrid_connection_name, authorization_rule_name, custom_headers:custom_headers).value! end
[ "def", "delete_authorization_rule_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "hybrid_connection_name", ",", "authorization_rule_name", ",", "custom_headers", ":", "nil", ")", "delete_authorization_rule_async", "(", "resource_group_name", ",", "namespace_name", ",", "hybrid_connection_name", ",", "authorization_rule_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a HybridConnection authorization rule @param resource_group_name [String] Name of the Resource group within the Azure subscription. @param namespace_name [String] The Namespace Name @param hybrid_connection_name [String] The hybrid connection name. @param authorization_rule_name [String] The authorizationRule 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", "a", "HybridConnection", "authorization", "rule" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_relay/lib/2016-07-01/generated/azure_mgmt_relay/hybrid_connections.rb#L804-L806
13,577
Azure/azure-sdk-for-ruby
management/azure_mgmt_monitor/lib/2017-04-01/generated/azure_mgmt_monitor/activity_log_alerts.rb
Azure::Monitor::Mgmt::V2017_04_01.ActivityLogAlerts.delete
def delete(resource_group_name, activity_log_alert_name, custom_headers:nil) response = delete_async(resource_group_name, activity_log_alert_name, custom_headers:custom_headers).value! nil end
ruby
def delete(resource_group_name, activity_log_alert_name, custom_headers:nil) response = delete_async(resource_group_name, activity_log_alert_name, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "resource_group_name", ",", "activity_log_alert_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "resource_group_name", ",", "activity_log_alert_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Delete an activity log alert. @param resource_group_name [String] The name of the resource group. @param activity_log_alert_name [String] The name of the activity log alert. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Delete", "an", "activity", "log", "alert", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2017-04-01/generated/azure_mgmt_monitor/activity_log_alerts.rb#L241-L244
13,578
Azure/azure-sdk-for-ruby
management/azure_mgmt_monitor/lib/2017-04-01/generated/azure_mgmt_monitor/activity_log_alerts.rb
Azure::Monitor::Mgmt::V2017_04_01.ActivityLogAlerts.list_by_subscription_id
def list_by_subscription_id(custom_headers:nil) response = list_by_subscription_id_async(custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_by_subscription_id(custom_headers:nil) response = list_by_subscription_id_async(custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_by_subscription_id", "(", "custom_headers", ":", "nil", ")", "response", "=", "list_by_subscription_id_async", "(", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get a list of all activity log alerts in a subscription. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ActivityLogAlertList] operation results.
[ "Get", "a", "list", "of", "all", "activity", "log", "alerts", "in", "a", "subscription", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2017-04-01/generated/azure_mgmt_monitor/activity_log_alerts.rb#L430-L433
13,579
Azure/azure-sdk-for-ruby
management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/agent_pools.rb
Azure::ContainerService::Mgmt::V2019_02_01.AgentPools.list
def list(resource_group_name, managed_cluster_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, managed_cluster_name, custom_headers:custom_headers) first_page.get_all_items end
ruby
def list(resource_group_name, managed_cluster_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, managed_cluster_name, custom_headers:custom_headers) first_page.get_all_items end
[ "def", "list", "(", "resource_group_name", ",", "managed_cluster_name", ",", "custom_headers", ":", "nil", ")", "first_page", "=", "list_as_lazy", "(", "resource_group_name", ",", "managed_cluster_name", ",", "custom_headers", ":custom_headers", ")", "first_page", ".", "get_all_items", "end" ]
Gets a list of agent pools in the specified managed cluster. Gets a list of agent pools in the specified managed cluster. The operation returns properties of each agent pool. @param resource_group_name [String] The name of the resource group. @param managed_cluster_name [String] The name of the managed cluster resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array<AgentPool>] operation results.
[ "Gets", "a", "list", "of", "agent", "pools", "in", "the", "specified", "managed", "cluster", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/agent_pools.rb#L38-L41
13,580
Azure/azure-sdk-for-ruby
management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/agent_pools.rb
Azure::ContainerService::Mgmt::V2019_02_01.AgentPools.get_with_http_info
def get_with_http_info(resource_group_name, managed_cluster_name, agent_pool_name, custom_headers:nil) get_async(resource_group_name, managed_cluster_name, agent_pool_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, managed_cluster_name, agent_pool_name, custom_headers:nil) get_async(resource_group_name, managed_cluster_name, agent_pool_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "managed_cluster_name", ",", "agent_pool_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "managed_cluster_name", ",", "agent_pool_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the agent pool. Gets the details of the agent pool by managed cluster and resource group. @param resource_group_name [String] The name of the resource group. @param managed_cluster_name [String] The name of the managed cluster resource. @param agent_pool_name [String] The name of the agent 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", "the", "agent", "pool", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/agent_pools.rb#L162-L164
13,581
Azure/azure-sdk-for-ruby
management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb
Azure::EventGrid::Mgmt::V2019_02_01_preview.Topics.regenerate_key_with_http_info
def regenerate_key_with_http_info(resource_group_name, topic_name, regenerate_key_request, custom_headers:nil) regenerate_key_async(resource_group_name, topic_name, regenerate_key_request, custom_headers:custom_headers).value! end
ruby
def regenerate_key_with_http_info(resource_group_name, topic_name, regenerate_key_request, custom_headers:nil) regenerate_key_async(resource_group_name, topic_name, regenerate_key_request, custom_headers:custom_headers).value! end
[ "def", "regenerate_key_with_http_info", "(", "resource_group_name", ",", "topic_name", ",", "regenerate_key_request", ",", "custom_headers", ":", "nil", ")", "regenerate_key_async", "(", "resource_group_name", ",", "topic_name", ",", "regenerate_key_request", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Regenerate key for a topic Regenerate a shared access key for a topic @param resource_group_name [String] The name of the resource group within the user's subscription. @param topic_name [String] Name of the topic @param regenerate_key_request [TopicRegenerateKeyRequest] Request body to regenerate key @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.
[ "Regenerate", "key", "for", "a", "topic" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb#L600-L602
13,582
Azure/azure-sdk-for-ruby
management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb
Azure::EventGrid::Mgmt::V2019_02_01_preview.Topics.list_by_subscription_as_lazy
def list_by_subscription_as_lazy(filter:nil, top:nil, custom_headers:nil) response = list_by_subscription_async(filter:filter, top:top, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_subscription_next_async(next_page_link, custom_headers:custom_headers) end page end end
ruby
def list_by_subscription_as_lazy(filter:nil, top:nil, custom_headers:nil) response = list_by_subscription_async(filter:filter, top:top, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_subscription_next_async(next_page_link, custom_headers:custom_headers) end page end end
[ "def", "list_by_subscription_as_lazy", "(", "filter", ":", "nil", ",", "top", ":", "nil", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_subscription_async", "(", "filter", ":", "filter", ",", "top", ":", "top", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "unless", "response", ".", "nil?", "page", "=", "response", ".", "body", "page", ".", "next_method", "=", "Proc", ".", "new", "do", "|", "next_page_link", "|", "list_by_subscription_next_async", "(", "next_page_link", ",", "custom_headers", ":custom_headers", ")", "end", "page", "end", "end" ]
List topics under an Azure subscription List all the topics under an Azure subscription @param filter [String] Filter the results using OData syntax. @param top [Integer] The number of results to return. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [TopicsListResult] which provide lazy access to pages of the response.
[ "List", "topics", "under", "an", "Azure", "subscription" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb#L1307-L1316
13,583
Azure/azure-sdk-for-ruby
management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb
Azure::EventGrid::Mgmt::V2019_02_01_preview.Topics.list_by_resource_group_as_lazy
def list_by_resource_group_as_lazy(resource_group_name, filter:nil, top:nil, custom_headers:nil) response = list_by_resource_group_async(resource_group_name, filter:filter, top:top, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers) end page end end
ruby
def list_by_resource_group_as_lazy(resource_group_name, filter:nil, top:nil, custom_headers:nil) response = list_by_resource_group_async(resource_group_name, filter:filter, top:top, custom_headers:custom_headers).value! unless response.nil? page = response.body page.next_method = Proc.new do |next_page_link| list_by_resource_group_next_async(next_page_link, custom_headers:custom_headers) end page end end
[ "def", "list_by_resource_group_as_lazy", "(", "resource_group_name", ",", "filter", ":", "nil", ",", "top", ":", "nil", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_resource_group_async", "(", "resource_group_name", ",", "filter", ":", "filter", ",", "top", ":", "top", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "unless", "response", ".", "nil?", "page", "=", "response", ".", "body", "page", ".", "next_method", "=", "Proc", ".", "new", "do", "|", "next_page_link", "|", "list_by_resource_group_next_async", "(", "next_page_link", ",", "custom_headers", ":custom_headers", ")", "end", "page", "end", "end" ]
List topics under a resource group List all the topics under a resource group @param resource_group_name [String] The name of the resource group within the user's subscription. @param filter [String] Filter the results using OData syntax. @param top [Integer] The number of results to return. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [TopicsListResult] which provide lazy access to pages of the response.
[ "List", "topics", "under", "a", "resource", "group" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_grid/lib/2019-02-01-preview/generated/azure_mgmt_event_grid/topics.rb#L1333-L1342
13,584
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb
Azure::Network::Mgmt::V2018_07_01.ServiceEndpointPolicies.delete
def delete(resource_group_name, service_endpoint_policy_name, custom_headers:nil) response = delete_async(resource_group_name, service_endpoint_policy_name, custom_headers:custom_headers).value! nil end
ruby
def delete(resource_group_name, service_endpoint_policy_name, custom_headers:nil) response = delete_async(resource_group_name, service_endpoint_policy_name, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Deletes the specified service endpoint policy. @param resource_group_name [String] The name of the resource group. @param service_endpoint_policy_name [String] The name of the service endpoint policy. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Deletes", "the", "specified", "service", "endpoint", "policy", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb#L33-L36
13,585
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb
Azure::Network::Mgmt::V2018_07_01.ServiceEndpointPolicies.get_with_http_info
def get_with_http_info(resource_group_name, service_endpoint_policy_name, expand:nil, custom_headers:nil) get_async(resource_group_name, service_endpoint_policy_name, expand:expand, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, service_endpoint_policy_name, expand:nil, custom_headers:nil) get_async(resource_group_name, service_endpoint_policy_name, expand:expand, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "expand", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "expand", ":", "expand", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the specified service Endpoint Policies in a specified resource group. @param resource_group_name [String] The name of the resource group. @param service_endpoint_policy_name [String] The name of the service endpoint policy. @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", "service", "Endpoint", "Policies", "in", "a", "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/service_endpoint_policies.rb#L93-L95
13,586
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb
Azure::Network::Mgmt::V2018_07_01.ServiceEndpointPolicies.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates a service Endpoint Policies. @param resource_group_name [String] The name of the resource group. @param service_endpoint_policy_name [String] The name of the service endpoint policy. @param parameters [ServiceEndpointPolicy] Parameters supplied to the create or update service endpoint policy 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", "service", "Endpoint", "Policies", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb#L545-L547
13,587
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb
Azure::Network::Mgmt::V2018_07_01.ServiceEndpointPolicies.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, service_endpoint_policy_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "service_endpoint_policy_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Updates service Endpoint Policies. @param resource_group_name [String] The name of the resource group. @param service_endpoint_policy_name [String] The name of the service endpoint policy. @param parameters [TagsObject] Parameters supplied to update service endpoint policy 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", "service", "Endpoint", "Policies", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/service_endpoint_policies.rb#L664-L666
13,588
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_websearch/lib/1.0/generated/azure_cognitiveservices_websearch/web.rb
Azure::CognitiveServices::WebSearch::V1_0.Web.search
def search(query, accept_language:nil, pragma:nil, user_agent:nil, client_id:nil, client_ip:nil, location:nil, answer_count:nil, country_code:nil, count:nil, freshness:nil, market:'en-us', offset:nil, promote:nil, response_filter:nil, safe_search:nil, set_lang:nil, text_decorations:nil, text_format:nil, custom_headers:nil) response = search_async(query, accept_language:accept_language, pragma:pragma, user_agent:user_agent, client_id:client_id, client_ip:client_ip, location:location, answer_count:answer_count, country_code:country_code, count:count, freshness:freshness, market:market, offset:offset, promote:promote, response_filter:response_filter, safe_search:safe_search, set_lang:set_lang, text_decorations:text_decorations, text_format:text_format, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def search(query, accept_language:nil, pragma:nil, user_agent:nil, client_id:nil, client_ip:nil, location:nil, answer_count:nil, country_code:nil, count:nil, freshness:nil, market:'en-us', offset:nil, promote:nil, response_filter:nil, safe_search:nil, set_lang:nil, text_decorations:nil, text_format:nil, custom_headers:nil) response = search_async(query, accept_language:accept_language, pragma:pragma, user_agent:user_agent, client_id:client_id, client_ip:client_ip, location:location, answer_count:answer_count, country_code:country_code, count:count, freshness:freshness, market:market, offset:offset, promote:promote, response_filter:response_filter, safe_search:safe_search, set_lang:set_lang, text_decorations:text_decorations, text_format:text_format, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "search", "(", "query", ",", "accept_language", ":", "nil", ",", "pragma", ":", "nil", ",", "user_agent", ":", "nil", ",", "client_id", ":", "nil", ",", "client_ip", ":", "nil", ",", "location", ":", "nil", ",", "answer_count", ":", "nil", ",", "country_code", ":", "nil", ",", "count", ":", "nil", ",", "freshness", ":", "nil", ",", "market", ":", "'en-us'", ",", "offset", ":", "nil", ",", "promote", ":", "nil", ",", "response_filter", ":", "nil", ",", "safe_search", ":", "nil", ",", "set_lang", ":", "nil", ",", "text_decorations", ":", "nil", ",", "text_format", ":", "nil", ",", "custom_headers", ":", "nil", ")", "response", "=", "search_async", "(", "query", ",", "accept_language", ":accept_language", ",", "pragma", ":", "pragma", ",", "user_agent", ":user_agent", ",", "client_id", ":client_id", ",", "client_ip", ":client_ip", ",", "location", ":", "location", ",", "answer_count", ":answer_count", ",", "country_code", ":country_code", ",", "count", ":", "count", ",", "freshness", ":", "freshness", ",", "market", ":", "market", ",", "offset", ":", "offset", ",", "promote", ":", "promote", ",", "response_filter", ":response_filter", ",", "safe_search", ":safe_search", ",", "set_lang", ":set_lang", ",", "text_decorations", ":text_decorations", ",", "text_format", ":text_format", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
The Web Search API lets you send a search query to Bing and get back search results that include links to webpages, images, and more. @param query [String] The user's search query term. The term may not be empty. The term may contain Bing Advanced Operators. For example, to limit results to a specific domain, use the site: operator. @param accept_language [String] A comma-delimited list of one or more languages to use for user interface strings. The list is in decreasing order of preference. For additional information, including expected format, see [RFC2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). This header and the setLang query parameter are mutually exclusive; do not specify both. If you set this header, you must also specify the cc query parameter. Bing will use the first supported language it finds from the list, and combine that language with the cc parameter value to determine the market to return results for. If the list does not include a supported language, Bing will find the closest language and market that supports the request, and may use an aggregated or default market for the results instead of a specified one. You should use this header and the cc query parameter only if you specify multiple languages; otherwise, you should use the mkt and setLang query parameters. A user interface string is a string that's used as a label in a user interface. There are very few user interface strings in the JSON response objects. Any links in the response objects to Bing.com properties will apply the specified language. @param pragma [String] By default, Bing returns cached content, if available. To prevent Bing from returning cached content, set the Pragma header to no-cache (for example, Pragma: no-cache). @param user_agent [String] The user agent originating the request. Bing uses the user agent to provide mobile users with an optimized experience. Although optional, you are strongly encouraged to always specify this header. The user-agent should be the same string that any commonly used browser would send. For information about user agents, see [RFC 2616](http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html). @param client_id [String] Bing uses this header to provide users with consistent behavior across Bing API calls. Bing often flights new features and improvements, and it uses the client ID as a key for assigning traffic on different flights. If you do not use the same client ID for a user across multiple requests, then Bing may assign the user to multiple conflicting flights. Being assigned to multiple conflicting flights can lead to an inconsistent user experience. For example, if the second request has a different flight assignment than the first, the experience may be unexpected. Also, Bing can use the client ID to tailor web results to that client ID’s search history, providing a richer experience for the user. Bing also uses this header to help improve result rankings by analyzing the activity generated by a client ID. The relevance improvements help with better quality of results delivered by Bing APIs and in turn enables higher click-through rates for the API consumer. IMPORTANT: Although optional, you should consider this header required. Persisting the client ID across multiple requests for the same end user and device combination enables 1) the API consumer to receive a consistent user experience, and 2) higher click-through rates via better quality of results from the Bing APIs. Each user that uses your application on the device must have a unique, Bing generated client ID. If you do not include this header in the request, Bing generates an ID and returns it in the X-MSEdge-ClientID response header. The only time that you should NOT include this header in a request is the first time the user uses your app on that device. Use the client ID for each Bing API request that your app makes for this user on the device. Persist the client ID. To persist the ID in a browser app, use a persistent HTTP cookie to ensure the ID is used across all sessions. Do not use a session cookie. For other apps such as mobile apps, use the device's persistent storage to persist the ID. The next time the user uses your app on that device, get the client ID that you persisted. Bing responses may or may not include this header. If the response includes this header, capture the client ID and use it for all subsequent Bing requests for the user on that device. If you include the X-MSEdge-ClientID, you must not include cookies in the request. @param client_ip [String] The IPv4 or IPv6 address of the client device. The IP address is used to discover the user's location. Bing uses the location information to determine safe search behavior. Although optional, you are encouraged to always specify this header and the X-Search-Location header. Do not obfuscate the address (for example, by changing the last octet to 0). Obfuscating the address results in the location not being anywhere near the device's actual location, which may result in Bing serving erroneous results. @param location [String] A semicolon-delimited list of key/value pairs that describe the client's geographical location. Bing uses the location information to determine safe search behavior and to return relevant local content. Specify the key/value pair as <key>:<value>. The following are the keys that you use to specify the user's location. lat (required): The latitude of the client's location, in degrees. The latitude must be greater than or equal to -90.0 and less than or equal to +90.0. Negative values indicate southern latitudes and positive values indicate northern latitudes. long (required): The longitude of the client's location, in degrees. The longitude must be greater than or equal to -180.0 and less than or equal to +180.0. Negative values indicate western longitudes and positive values indicate eastern longitudes. re (required): The radius, in meters, which specifies the horizontal accuracy of the coordinates. Pass the value returned by the device's location service. Typical values might be 22m for GPS/Wi-Fi, 380m for cell tower triangulation, and 18,000m for reverse IP lookup. ts (optional): The UTC UNIX timestamp of when the client was at the location. (The UNIX timestamp is the number of seconds since January 1, 1970.) head (optional): The client's relative heading or direction of travel. Specify the direction of travel as degrees from 0 through 360, counting clockwise relative to true north. Specify this key only if the sp key is nonzero. sp (optional): The horizontal velocity (speed), in meters per second, that the client device is traveling. alt (optional): The altitude of the client device, in meters. are (optional): The radius, in meters, that specifies the vertical accuracy of the coordinates. Specify this key only if you specify the alt key. Although many of the keys are optional, the more information that you provide, the more accurate the location results are. Although optional, you are encouraged to always specify the user's geographical location. Providing the location is especially important if the client's IP address does not accurately reflect the user's physical location (for example, if the client uses VPN). For optimal results, you should include this header and the X-MSEdge-ClientIP header, but at a minimum, you should include this header. @param answer_count [Integer] The number of answers that you want the response to include. The answers that Bing returns are based on ranking. For example, if Bing returns webpages, images, videos, and relatedSearches for a request and you set this parameter to two (2), the response includes webpages and images.If you included the responseFilter query parameter in the same request and set it to webpages and news, the response would include only webpages. @param country_code [String] A 2-character country code of the country where the results come from. This API supports only the United States market. If you specify this query parameter, it must be set to us. If you set this parameter, you must also specify the Accept-Language header. Bing uses the first supported language it finds from the languages list, and combine that language with the country code that you specify to determine the market to return results for. If the languages list does not include a supported language, Bing finds the closest language and market that supports the request, or it may use an aggregated or default market for the results instead of a specified one. You should use this query parameter and the Accept-Language query parameter only if you specify multiple languages; otherwise, you should use the mkt and setLang query parameters. This parameter and the mkt query parameter are mutually exclusive—do not specify both. @param count [Integer] The number of search results to return in the response. The default is 10 and the maximum value is 50. The actual number delivered may be less than requested.Use this parameter along with the offset parameter to page results.For example, if your user interface displays 10 search results per page, set count to 10 and offset to 0 to get the first page of results. For each subsequent page, increment offset by 10 (for example, 0, 10, 20). It is possible for multiple pages to include some overlap in results. @param freshness [Freshness] Filter search results by the following age values: Day—Return webpages that Bing discovered within the last 24 hours. Week—Return webpages that Bing discovered within the last 7 days. Month—Return webpages that discovered within the last 30 days. This filter applies only to webpage results and not to the other results such as news and images. Possible values include: 'Day', 'Week', 'Month' @param market [String] The market where the results come from. Typically, mkt is the country where the user is making the request from. However, it could be a different country if the user is not located in a country where Bing delivers results. The market must be in the form <language code>-<country code>. For example, en-US. The string is case insensitive. If known, you are encouraged to always specify the market. Specifying the market helps Bing route the request and return an appropriate and optimal response. If you specify a market that is not listed in Market Codes, Bing uses a best fit market code based on an internal mapping that is subject to change. This parameter and the cc query parameter are mutually exclusive—do not specify both. @param offset [Integer] The zero-based offset that indicates the number of search results to skip before returning results. The default is 0. The offset should be less than (totalEstimatedMatches - count). Use this parameter along with the count parameter to page results. For example, if your user interface displays 10 search results per page, set count to 10 and offset to 0 to get the first page of results. For each subsequent page, increment offset by 10 (for example, 0, 10, 20). it is possible for multiple pages to include some overlap in results. @param promote [Array<AnswerType>] A comma-delimited list of answers that you want the response to include regardless of their ranking. For example, if you set answerCount) to two (2) so Bing returns the top two ranked answers, but you also want the response to include news, you'd set promote to news. If the top ranked answers are webpages, images, videos, and relatedSearches, the response includes webpages and images because news is not a ranked answer. But if you set promote to video, Bing would promote the video answer into the response and return webpages, images, and videos. The answers that you want to promote do not count against the answerCount limit. For example, if the ranked answers are news, images, and videos, and you set answerCount to 1 and promote to news, the response contains news and images. Or, if the ranked answers are videos, images, and news, the response contains videos and news. Possible values are Computation, Images, News, RelatedSearches, SpellSuggestions, TimeZone, Videos, Webpages. Use only if you specify answerCount. @param response_filter [Array<AnswerType>] A comma-delimited list of answers to include in the response. If you do not specify this parameter, the response includes all search answers for which there's relevant data. Possible filter values are Computation, Images, News, RelatedSearches, SpellSuggestions, TimeZone, Videos, Webpages. Although you may use this filter to get a single answer, you should instead use the answer-specific endpoint in order to get richer results. For example, to receive only images, send the request to one of the Image Search API endpoints. The RelatedSearches and SpellSuggestions answers do not support a separate endpoint like the Image Search API does (only the Web Search API returns them). To include answers that would otherwise be excluded because of ranking, see the promote query parameter. @param safe_search [SafeSearch] A filter used to filter adult content. Off: Return webpages with adult text, images, or videos. Moderate: Return webpages with adult text, but not adult images or videos. Strict: Do not return webpages with adult text, images, or videos. The default is Moderate. If the request comes from a market that Bing's adult policy requires that safeSearch is set to Strict, Bing ignores the safeSearch value and uses Strict. If you use the site: query operator, there is the chance that the response may contain adult content regardless of what the safeSearch query parameter is set to. Use site: only if you are aware of the content on the site and your scenario supports the possibility of adult content. Possible values include: 'Off', 'Moderate', 'Strict' @param set_lang [String] The language to use for user interface strings. Specify the language using the ISO 639-1 2-letter language code. For example, the language code for English is EN. The default is EN (English). Although optional, you should always specify the language. Typically, you set setLang to the same language specified by mkt unless the user wants the user interface strings displayed in a different language. This parameter and the Accept-Language header are mutually exclusive; do not specify both. A user interface string is a string that's used as a label in a user interface. There are few user interface strings in the JSON response objects. Also, any links to Bing.com properties in the response objects apply the specified language. @param text_decorations [Boolean] A Boolean value that determines whether display strings should contain decoration markers such as hit highlighting characters. If true, the strings may include markers. The default is false. To specify whether to use Unicode characters or HTML tags as the markers, see the textFormat query parameter. @param text_format [TextFormat] The type of markers to use for text decorations (see the textDecorations query parameter). Possible values are Raw—Use Unicode characters to mark content that needs special formatting. The Unicode characters are in the range E000 through E019. For example, Bing uses E000 and E001 to mark the beginning and end of query terms for hit highlighting. HTML—Use HTML tags to mark content that needs special formatting. For example, use <b> tags to highlight query terms in display strings. The default is Raw. For display strings that contain escapable HTML characters such as <, >, and &, if textFormat is set to HTML, Bing escapes the characters as appropriate (for example, < is escaped to &lt;). Possible values include: 'Raw', 'Html' @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [SearchResponse] operation results.
[ "The", "Web", "Search", "API", "lets", "you", "send", "a", "search", "query", "to", "Bing", "and", "get", "back", "search", "results", "that", "include", "links", "to", "webpages", "images", "and", "more", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_websearch/lib/1.0/generated/azure_cognitiveservices_websearch/web.rb#L253-L256
13,589
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/databases.rb
Azure::Kusto::Mgmt::V2018_09_07_privatepreview.Databases.list_by_cluster
def list_by_cluster(resource_group_name, cluster_name, custom_headers:nil) response = list_by_cluster_async(resource_group_name, cluster_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_by_cluster(resource_group_name, cluster_name, custom_headers:nil) response = list_by_cluster_async(resource_group_name, cluster_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_by_cluster", "(", "resource_group_name", ",", "cluster_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_cluster_async", "(", "resource_group_name", ",", "cluster_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Returns the list of databases of the given Kusto cluster. @param resource_group_name [String] The name of the resource group containing the Kusto cluster. @param cluster_name [String] The name of the Kusto cluster. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [DatabaseListResult] operation results.
[ "Returns", "the", "list", "of", "databases", "of", "the", "given", "Kusto", "cluster", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/databases.rb#L143-L146
13,590
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/databases.rb
Azure::Kusto::Mgmt::V2018_09_07_privatepreview.Databases.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, cluster_name, database_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, cluster_name, database_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Updates a database. @param resource_group_name [String] The name of the resource group containing the Kusto cluster. @param cluster_name [String] The name of the Kusto cluster. @param database_name [String] The name of the database in the Kusto cluster. @param parameters [DatabaseUpdate] The database parameters supplied to the Update 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", "a", "database", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/databases.rb#L952-L954
13,591
Azure/azure-sdk-for-ruby
management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/storage_account_credentials.rb
Azure::StorSimple8000Series::Mgmt::V2017_06_01.StorageAccountCredentials.list_by_manager
def list_by_manager(resource_group_name, manager_name, custom_headers:nil) response = list_by_manager_async(resource_group_name, manager_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_by_manager(resource_group_name, manager_name, custom_headers:nil) response = list_by_manager_async(resource_group_name, manager_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_by_manager", "(", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_manager_async", "(", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets all the storage account credentials in a 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 [StorageAccountCredentialList] operation results.
[ "Gets", "all", "the", "storage", "account", "credentials", "in", "a", "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/storage_account_credentials.rb#L34-L37
13,592
Azure/azure-sdk-for-ruby
management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/storage_account_credentials.rb
Azure::StorSimple8000Series::Mgmt::V2017_06_01.StorageAccountCredentials.get_with_http_info
def get_with_http_info(storage_account_credential_name, resource_group_name, manager_name, custom_headers:nil) get_async(storage_account_credential_name, resource_group_name, manager_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(storage_account_credential_name, resource_group_name, manager_name, custom_headers:nil) get_async(storage_account_credential_name, resource_group_name, manager_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "storage_account_credential_name", ",", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "storage_account_credential_name", ",", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the properties of the specified storage account credential name. @param storage_account_credential_name [String] The name of storage account credential to be fetched. @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.
[ "Gets", "the", "properties", "of", "the", "specified", "storage", "account", "credential", "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/storage_account_credentials.rb#L147-L149
13,593
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb
Azure::Web::Mgmt::V2018_02_01.Recommendations.list_with_http_info
def list_with_http_info(featured:nil, filter:nil, custom_headers:nil) list_async(featured:featured, filter:filter, custom_headers:custom_headers).value! end
ruby
def list_with_http_info(featured:nil, filter:nil, custom_headers:nil) list_async(featured:featured, filter:filter, custom_headers:custom_headers).value! end
[ "def", "list_with_http_info", "(", "featured", ":", "nil", ",", "filter", ":", "nil", ",", "custom_headers", ":", "nil", ")", "list_async", "(", "featured", ":", "featured", ",", "filter", ":", "filter", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
List all recommendations for a subscription. List all recommendations for a subscription. @param featured [Boolean] Specify <code>true</code> to return only the most critical recommendations. The default is <code>false</code>, which returns all recommendations. @param filter [String] Filter is specified by using OData syntax. Example: $filter=channel eq 'Api' or channel eq 'Notification' and startTime eq 2014-01-01T00:00:00Z and endTime eq 2014-12-31T23:59:59Z and timeGrain eq duration'[PT1H|PT1M|P1D] @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.
[ "List", "all", "recommendations", "for", "a", "subscription", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb#L63-L65
13,594
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb
Azure::Web::Mgmt::V2018_02_01.Recommendations.disable_all_for_web_app
def disable_all_for_web_app(resource_group_name, site_name, custom_headers:nil) response = disable_all_for_web_app_async(resource_group_name, site_name, custom_headers:custom_headers).value! nil end
ruby
def disable_all_for_web_app(resource_group_name, site_name, custom_headers:nil) response = disable_all_for_web_app_async(resource_group_name, site_name, custom_headers:custom_headers).value! nil end
[ "def", "disable_all_for_web_app", "(", "resource_group_name", ",", "site_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "disable_all_for_web_app_async", "(", "resource_group_name", ",", "site_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Disable all recommendations for an app. Disable all recommendations for an app. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param site_name [String] Name of the app. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Disable", "all", "recommendations", "for", "an", "app", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb#L565-L568
13,595
Azure/azure-sdk-for-ruby
management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb
Azure::Web::Mgmt::V2018_02_01.Recommendations.reset_all_filters_for_web_app
def reset_all_filters_for_web_app(resource_group_name, site_name, custom_headers:nil) response = reset_all_filters_for_web_app_async(resource_group_name, site_name, custom_headers:custom_headers).value! nil end
ruby
def reset_all_filters_for_web_app(resource_group_name, site_name, custom_headers:nil) response = reset_all_filters_for_web_app_async(resource_group_name, site_name, custom_headers:custom_headers).value! nil end
[ "def", "reset_all_filters_for_web_app", "(", "resource_group_name", ",", "site_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "reset_all_filters_for_web_app_async", "(", "resource_group_name", ",", "site_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Reset all recommendation opt-out settings for an app. Reset all recommendation opt-out settings for an app. @param resource_group_name [String] Name of the resource group to which the resource belongs. @param site_name [String] Name of the app. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Reset", "all", "recommendation", "opt", "-", "out", "settings", "for", "an", "app", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2018-02-01/generated/azure_mgmt_web/recommendations.rb#L658-L661
13,596
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb
Azure::Automation::Mgmt::V2015_10_31.RunbookOperations.get_content_with_http_info
def get_content_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers:nil) get_content_async(resource_group_name, automation_account_name, runbook_name, custom_headers:custom_headers).value! end
ruby
def get_content_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers:nil) get_content_async(resource_group_name, automation_account_name, runbook_name, custom_headers:custom_headers).value! end
[ "def", "get_content_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "custom_headers", ":", "nil", ")", "get_content_async", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieve the content of runbook identified by runbook name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param runbook_name [String] The runbook 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.
[ "Retrieve", "the", "content", "of", "runbook", "identified", "by", "runbook", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb#L51-L53
13,597
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb
Azure::Automation::Mgmt::V2015_10_31.RunbookOperations.get_with_http_info
def get_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, runbook_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, automation_account_name, runbook_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, runbook_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieve the runbook identified by runbook name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param runbook_name [String] The runbook 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.
[ "Retrieve", "the", "runbook", "identified", "by", "runbook", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb#L157-L159
13,598
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb
Azure::Automation::Mgmt::V2015_10_31.RunbookOperations.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create the runbook identified by runbook name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param runbook_name [String] The runbook name. @param parameters [RunbookCreateOrUpdateParameters] The create or update parameters for runbook. Provide either content link for a published runbook or draft, not both. @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", "the", "runbook", "identified", "by", "runbook", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb#L262-L264
13,599
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb
Azure::Automation::Mgmt::V2015_10_31.RunbookOperations.update_with_http_info
def update_with_http_info(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:nil) update_async(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:nil) update_async(resource_group_name, automation_account_name, runbook_name, parameters, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "runbook_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Update the runbook identified by runbook name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param runbook_name [String] The runbook name. @param parameters [RunbookUpdateParameters] The update parameters for runbook. @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", "runbook", "identified", "by", "runbook", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/runbook_operations.rb#L386-L388