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
14,200
Azure/azure-sdk-for-ruby
runtime/ms_rest_azure/lib/ms_rest_azure/common/configurable.rb
MsRestAzure::Common.Configurable.setup_default_options
def setup_default_options opts = {} MsRestAzure::Common::Configurable.keys.map do |key| opts[key] = MsRestAzure::Common::Default.options[key] end opts end
ruby
def setup_default_options opts = {} MsRestAzure::Common::Configurable.keys.map do |key| opts[key] = MsRestAzure::Common::Default.options[key] end opts end
[ "def", "setup_default_options", "opts", "=", "{", "}", "MsRestAzure", "::", "Common", "::", "Configurable", ".", "keys", ".", "map", "do", "|", "key", "|", "opts", "[", "key", "]", "=", "MsRestAzure", "::", "Common", "::", "Default", ".", "options", "[", "key", "]", "end", "opts", "end" ]
configures configurable options to default values
[ "configures", "configurable", "options", "to", "default", "values" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest_azure/lib/ms_rest_azure/common/configurable.rb#L80-L87
14,201
Azure/azure-sdk-for-ruby
management/azure_mgmt_dev_spaces/lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/controllers.rb
Azure::DevSpaces::Mgmt::V2018_06_01_preview.Controllers.update_with_http_info
def update_with_http_info(resource_group_name, name, controller_update_parameters, custom_headers:nil) update_async(resource_group_name, name, controller_update_parameters, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, name, controller_update_parameters, custom_headers:nil) update_async(resource_group_name, name, controller_update_parameters, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "name", ",", "controller_update_parameters", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "name", ",", "controller_update_parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Updates an Azure Dev Spaces Controller. Updates the properties of an existing Azure Dev Spaces Controller with the specified update parameters. @param resource_group_name [String] Resource group to which the resource belongs. @param name [String] Name of the resource. @param controller_update_parameters [ControllerUpdateParameters] @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", "Azure", "Dev", "Spaces", "Controller", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_dev_spaces/lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/controllers.rb#L255-L257
14,202
Azure/azure-sdk-for-ruby
management/azure_mgmt_dev_spaces/lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/controllers.rb
Azure::DevSpaces::Mgmt::V2018_06_01_preview.Controllers.list_connection_details
def list_connection_details(resource_group_name, name, custom_headers:nil) response = list_connection_details_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_connection_details(resource_group_name, name, custom_headers:nil) response = list_connection_details_async(resource_group_name, name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_connection_details", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_connection_details_async", "(", "resource_group_name", ",", "name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Lists connection details for an Azure Dev Spaces Controller. Lists connection details for the underlying container resources of an Azure Dev Spaces Controller. @param resource_group_name [String] Resource group to which the resource belongs. @param name [String] Name of the resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ControllerConnectionDetailsList] operation results.
[ "Lists", "connection", "details", "for", "an", "Azure", "Dev", "Spaces", "Controller", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_dev_spaces/lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/controllers.rb#L549-L552
14,203
Azure/azure-sdk-for-ruby
management/azure_mgmt_dev_spaces/lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/controllers.rb
Azure::DevSpaces::Mgmt::V2018_06_01_preview.Controllers.begin_create_with_http_info
def begin_create_with_http_info(resource_group_name, name, controller, custom_headers:nil) begin_create_async(resource_group_name, name, controller, custom_headers:custom_headers).value! end
ruby
def begin_create_with_http_info(resource_group_name, name, controller, custom_headers:nil) begin_create_async(resource_group_name, name, controller, custom_headers:custom_headers).value! end
[ "def", "begin_create_with_http_info", "(", "resource_group_name", ",", "name", ",", "controller", ",", "custom_headers", ":", "nil", ")", "begin_create_async", "(", "resource_group_name", ",", "name", ",", "controller", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates an Azure Dev Spaces Controller. Creates an Azure Dev Spaces Controller with the specified create parameters. @param resource_group_name [String] Resource group to which the resource belongs. @param name [String] Name of the resource. @param controller [Controller] Controller create parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Creates", "an", "Azure", "Dev", "Spaces", "Controller", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_dev_spaces/lib/2018-06-01-preview/generated/azure_mgmt_dev_spaces/controllers.rb#L677-L679
14,204
Azure/azure-sdk-for-ruby
management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_run_action_request_histories.rb
Azure::Logic::Mgmt::V2016_06_01.WorkflowRunActionRequestHistories.list
def list(resource_group_name, workflow_name, run_name, action_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, workflow_name, run_name, action_name, custom_headers:custom_headers) first_page.get_all_items end
ruby
def list(resource_group_name, workflow_name, run_name, action_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, workflow_name, run_name, action_name, custom_headers:custom_headers) first_page.get_all_items end
[ "def", "list", "(", "resource_group_name", ",", "workflow_name", ",", "run_name", ",", "action_name", ",", "custom_headers", ":", "nil", ")", "first_page", "=", "list_as_lazy", "(", "resource_group_name", ",", "workflow_name", ",", "run_name", ",", "action_name", ",", "custom_headers", ":custom_headers", ")", "first_page", ".", "get_all_items", "end" ]
List a workflow run request history. @param resource_group_name [String] The resource group name. @param workflow_name [String] The workflow name. @param run_name [String] The workflow run name. @param action_name [String] The workflow action name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array<RequestHistory>] operation results.
[ "List", "a", "workflow", "run", "request", "history", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_run_action_request_histories.rb#L36-L39
14,205
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2019-01-21/generated/azure_mgmt_kusto/data_connections.rb
Azure::Kusto::Mgmt::V2019_01_21.DataConnections.begin_delete
def begin_delete(resource_group_name, cluster_name, database_name, data_connection_name, custom_headers:nil) response = begin_delete_async(resource_group_name, cluster_name, database_name, data_connection_name, custom_headers:custom_headers).value! nil end
ruby
def begin_delete(resource_group_name, cluster_name, database_name, data_connection_name, custom_headers:nil) response = begin_delete_async(resource_group_name, cluster_name, database_name, data_connection_name, custom_headers:custom_headers).value! nil end
[ "def", "begin_delete", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "data_connection_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "begin_delete_async", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "data_connection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Deletes the data connection with the given name. @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 data_connection_name [String] The name of the data connection. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Deletes", "the", "data", "connection", "with", "the", "given", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_kusto/lib/2019-01-21/generated/azure_mgmt_kusto/data_connections.rb#L755-L758
14,206
Azure/azure-sdk-for-ruby
management/azure_mgmt_recovery_services_site_recovery/lib/2018-01-10/generated/azure_mgmt_recovery_services_site_recovery/replication_protected_items.rb
Azure::RecoveryServicesSiteRecovery::Mgmt::V2018_01_10.ReplicationProtectedItems.get_with_http_info
def get_with_http_info(fabric_name, protection_container_name, replicated_protected_item_name, custom_headers:nil) get_async(fabric_name, protection_container_name, replicated_protected_item_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(fabric_name, protection_container_name, replicated_protected_item_name, custom_headers:nil) get_async(fabric_name, protection_container_name, replicated_protected_item_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "fabric_name", ",", "protection_container_name", ",", "replicated_protected_item_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "fabric_name", ",", "protection_container_name", ",", "replicated_protected_item_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the details of a Replication protected item. Gets the details of an ASR replication protected item. @param fabric_name [String] Fabric unique name. @param protection_container_name [String] Protection container name. @param replicated_protected_item_name [String] Replication protected item 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", "details", "of", "a", "Replication", "protected", "item", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_site_recovery/lib/2018-01-10/generated/azure_mgmt_recovery_services_site_recovery/replication_protected_items.rb#L157-L159
14,207
Azure/azure-sdk-for-ruby
management/azure_mgmt_recovery_services_site_recovery/lib/2018-01-10/generated/azure_mgmt_recovery_services_site_recovery/replication_protected_items.rb
Azure::RecoveryServicesSiteRecovery::Mgmt::V2018_01_10.ReplicationProtectedItems.list_with_http_info
def list_with_http_info(skip_token:nil, filter:nil, custom_headers:nil) list_async(skip_token:skip_token, filter:filter, custom_headers:custom_headers).value! end
ruby
def list_with_http_info(skip_token:nil, filter:nil, custom_headers:nil) list_async(skip_token:skip_token, filter:filter, custom_headers:custom_headers).value! end
[ "def", "list_with_http_info", "(", "skip_token", ":", "nil", ",", "filter", ":", "nil", ",", "custom_headers", ":", "nil", ")", "list_async", "(", "skip_token", ":skip_token", ",", "filter", ":", "filter", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the list of replication protected items. Gets the list of ASR replication protected items in the vault. @param skip_token [String] The pagination token. Possible values: "FabricId" or "FabricId_CloudId" or null @param filter [String] OData filter options. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Gets", "the", "list", "of", "replication", "protected", "items", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_site_recovery/lib/2018-01-10/generated/azure_mgmt_recovery_services_site_recovery/replication_protected_items.rb#L920-L922
14,208
Azure/azure-sdk-for-ruby
management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/sync_groups.rb
Azure::StorageSync::Mgmt::V2018_07_01.SyncGroups.delete_with_http_info
def delete_with_http_info(resource_group_name, storage_sync_service_name, sync_group_name, custom_headers:nil) delete_async(resource_group_name, storage_sync_service_name, sync_group_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, storage_sync_service_name, sync_group_name, custom_headers:nil) delete_async(resource_group_name, storage_sync_service_name, sync_group_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "sync_group_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "sync_group_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Delete a given SyncGroup. @param resource_group_name [String] The name of the resource group. The name is case insensitive. @param storage_sync_service_name [String] Name of Storage Sync Service resource. @param sync_group_name [String] Name of Sync Group 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.
[ "Delete", "a", "given", "SyncGroup", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/sync_groups.rb#L382-L384
14,209
Azure/azure-sdk-for-ruby
management/azure_mgmt_recovery_services_backup/lib/2017-07-01/generated/azure_mgmt_recovery_services_backup/backup_status.rb
Azure::RecoveryServicesBackup::Mgmt::V2017_07_01.BackupStatus.get
def get(azure_region, parameters, custom_headers:nil) response = get_async(azure_region, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get(azure_region, parameters, custom_headers:nil) response = get_async(azure_region, parameters, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get", "(", "azure_region", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_async", "(", "azure_region", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get the container backup status @param azure_region [String] Azure region to hit Api @param parameters [BackupStatusRequest] Container Backup Status Request @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [BackupStatusResponse] operation results.
[ "Get", "the", "container", "backup", "status" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_backup/lib/2017-07-01/generated/azure_mgmt_recovery_services_backup/backup_status.rb#L38-L41
14,210
Azure/azure-sdk-for-ruby
management/azure_mgmt_event_hub/lib/2017-04-01/generated/azure_mgmt_event_hub/disaster_recovery_configs.rb
Azure::EventHub::Mgmt::V2017_04_01.DisasterRecoveryConfigs.check_name_availability_with_http_info
def check_name_availability_with_http_info(resource_group_name, namespace_name, parameters, custom_headers:nil) check_name_availability_async(resource_group_name, namespace_name, parameters, custom_headers:custom_headers).value! end
ruby
def check_name_availability_with_http_info(resource_group_name, namespace_name, parameters, custom_headers:nil) check_name_availability_async(resource_group_name, namespace_name, parameters, custom_headers:custom_headers).value! end
[ "def", "check_name_availability_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "check_name_availability_async", "(", "resource_group_name", ",", "namespace_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Check the give Namespace name availability. @param resource_group_name [String] Name of the resource group within the azure subscription. @param namespace_name [String] The Namespace name @param parameters [CheckNameAvailabilityParameter] Parameters to check availability of the given Alias 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.
[ "Check", "the", "give", "Namespace", "name", "availability", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_hub/lib/2017-04-01/generated/azure_mgmt_event_hub/disaster_recovery_configs.rb#L55-L57
14,211
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/job_target_groups.rb
Azure::SQL::Mgmt::V2017_03_01_preview.JobTargetGroups.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, server_name, job_agent_name, target_group_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, server_name, job_agent_name, target_group_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, server_name, job_agent_name, target_group_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, server_name, job_agent_name, target_group_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "job_agent_name", ",", "target_group_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "server_name", ",", "job_agent_name", ",", "target_group_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates a target group. @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. @param target_group_name [String] The name of the target group. @param parameters [JobTargetGroup] The requested state of the target 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", "target", "group", "." ]
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_target_groups.rb#L270-L272
14,212
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/job_target_groups.rb
Azure::SQL::Mgmt::V2017_03_01_preview.JobTargetGroups.delete_with_http_info
def delete_with_http_info(resource_group_name, server_name, job_agent_name, target_group_name, custom_headers:nil) delete_async(resource_group_name, server_name, job_agent_name, target_group_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, server_name, job_agent_name, target_group_name, custom_headers:nil) delete_async(resource_group_name, server_name, job_agent_name, target_group_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "job_agent_name", ",", "target_group_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "server_name", ",", "job_agent_name", ",", "target_group_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a target group. @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. @param target_group_name [String] The name of the target 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.
[ "Deletes", "a", "target", "group", "." ]
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_target_groups.rb#L394-L396
14,213
Azure/azure-sdk-for-ruby
management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/pricings.rb
Azure::Security::Mgmt::V2017_08_01_preview.Pricings.get_subscription_pricing
def get_subscription_pricing(pricing_name, custom_headers:nil) response = get_subscription_pricing_async(pricing_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_subscription_pricing(pricing_name, custom_headers:nil) response = get_subscription_pricing_async(pricing_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_subscription_pricing", "(", "pricing_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_subscription_pricing_async", "(", "pricing_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Security pricing configuration in the subscriptionSecurity pricing configuration in the subscription @param pricing_name [String] name of the pricing configuration @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Pricing] operation results.
[ "Security", "pricing", "configuration", "in", "the", "subscriptionSecurity", "pricing", "configuration", "in", "the", "subscription" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/pricings.rb#L214-L217
14,214
Azure/azure-sdk-for-ruby
management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/pricings.rb
Azure::Security::Mgmt::V2017_08_01_preview.Pricings.update_subscription_pricing
def update_subscription_pricing(pricing_name, pricing, custom_headers:nil) response = update_subscription_pricing_async(pricing_name, pricing, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def update_subscription_pricing(pricing_name, pricing, custom_headers:nil) response = update_subscription_pricing_async(pricing_name, pricing, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "update_subscription_pricing", "(", "pricing_name", ",", "pricing", ",", "custom_headers", ":", "nil", ")", "response", "=", "update_subscription_pricing_async", "(", "pricing_name", ",", "pricing", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Security pricing configuration in the subscription @param pricing_name [String] name of the pricing configuration @param pricing [Pricing] Pricing object @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Pricing] operation results.
[ "Security", "pricing", "configuration", "in", "the", "subscription" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/pricings.rb#L306-L309
14,215
Azure/azure-sdk-for-ruby
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/subnets.rb
Azure::Network::Mgmt::V2019_02_01.Subnets.get_with_http_info
def get_with_http_info(resource_group_name, virtual_network_name, subnet_name, expand:nil, custom_headers:nil) get_async(resource_group_name, virtual_network_name, subnet_name, expand:expand, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, virtual_network_name, subnet_name, expand:nil, custom_headers:nil) get_async(resource_group_name, virtual_network_name, subnet_name, expand:expand, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "virtual_network_name", ",", "subnet_name", ",", "expand", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "virtual_network_name", ",", "subnet_name", ",", "expand", ":", "expand", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the specified subnet by virtual network and resource group. @param resource_group_name [String] The name of the resource group. @param virtual_network_name [String] The name of the virtual network. @param subnet_name [String] The name of the subnet. @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", "subnet", "by", "virtual", "network", "and", "resource", "group", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/subnets.rb#L93-L95
14,216
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/server_communication_links.rb
Azure::SQL::Mgmt::V2014_04_01.ServerCommunicationLinks.delete_with_http_info
def delete_with_http_info(resource_group_name, server_name, communication_link_name, custom_headers:nil) delete_async(resource_group_name, server_name, communication_link_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, server_name, communication_link_name, custom_headers:nil) delete_async(resource_group_name, server_name, communication_link_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "communication_link_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "server_name", ",", "communication_link_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a server communication link. @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 communication_link_name [String] The name of the server communication link. @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", "server", "communication", "link", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/server_communication_links.rb#L59-L61
14,217
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/server_communication_links.rb
Azure::SQL::Mgmt::V2014_04_01.ServerCommunicationLinks.get_with_http_info
def get_with_http_info(resource_group_name, server_name, communication_link_name, custom_headers:nil) get_async(resource_group_name, server_name, communication_link_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, server_name, communication_link_name, custom_headers:nil) get_async(resource_group_name, server_name, communication_link_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "communication_link_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "server_name", ",", "communication_link_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns a server communication link. @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 communication_link_name [String] The name of the server communication link. @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", "a", "server", "communication", "link", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/server_communication_links.rb#L154-L156
14,218
Azure/azure-sdk-for-ruby
management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/applications.rb
Azure::Hdinsight::Mgmt::V2015_03_01_preview.Applications.list
def list(resource_group_name, cluster_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, cluster_name, custom_headers:custom_headers) first_page.get_all_items end
ruby
def list(resource_group_name, cluster_name, custom_headers:nil) first_page = list_as_lazy(resource_group_name, cluster_name, custom_headers:custom_headers) first_page.get_all_items end
[ "def", "list", "(", "resource_group_name", ",", "cluster_name", ",", "custom_headers", ":", "nil", ")", "first_page", "=", "list_as_lazy", "(", "resource_group_name", ",", "cluster_name", ",", "custom_headers", ":custom_headers", ")", "first_page", ".", "get_all_items", "end" ]
Lists all of the applications for the HDInsight cluster. @param resource_group_name [String] The name of the resource group. @param cluster_name [String] The name of the cluster. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Array<Application>] operation results.
[ "Lists", "all", "of", "the", "applications", "for", "the", "HDInsight", "cluster", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/applications.rb#L34-L37
14,219
Azure/azure-sdk-for-ruby
management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/applications.rb
Azure::Hdinsight::Mgmt::V2015_03_01_preview.Applications.get_with_http_info
def get_with_http_info(resource_group_name, cluster_name, application_name, custom_headers:nil) get_async(resource_group_name, cluster_name, application_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, cluster_name, application_name, custom_headers:nil) get_async(resource_group_name, cluster_name, application_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "cluster_name", ",", "application_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "cluster_name", ",", "application_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Lists properties of the specified application. @param resource_group_name [String] The name of the resource group. @param cluster_name [String] The name of the cluster. @param application_name [String] The constant value for the application 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.
[ "Lists", "properties", "of", "the", "specified", "application", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/applications.rb#L143-L145
14,220
Azure/azure-sdk-for-ruby
management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/applications.rb
Azure::Hdinsight::Mgmt::V2015_03_01_preview.Applications.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, cluster_name, application_name, custom_headers:nil) begin_delete_async(resource_group_name, cluster_name, application_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, cluster_name, application_name, custom_headers:nil) begin_delete_async(resource_group_name, cluster_name, application_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "cluster_name", ",", "application_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "cluster_name", ",", "application_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes the specified application on the HDInsight cluster. @param resource_group_name [String] The name of the resource group. @param cluster_name [String] The name of the cluster. @param application_name [String] The constant value for the application 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", "the", "specified", "application", "on", "the", "HDInsight", "cluster", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_hdinsight/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/applications.rb#L431-L433
14,221
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_gateway.rb
Azure::ServiceFabric::V6_4_0_36.MeshGateway.create_or_update
def create_or_update(gateway_resource_name, gateway_resource_description, custom_headers:nil) response = create_or_update_async(gateway_resource_name, gateway_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def create_or_update(gateway_resource_name, gateway_resource_description, custom_headers:nil) response = create_or_update_async(gateway_resource_name, gateway_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "create_or_update", "(", "gateway_resource_name", ",", "gateway_resource_description", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_or_update_async", "(", "gateway_resource_name", ",", "gateway_resource_description", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Creates or updates a Gateway resource. Creates a Gateway resource with the specified name, description and properties. If Gateway resource with the same name exists, then it is updated with the specified description and properties. Use Gateway resource to provide public connectivity to application services. @param gateway_resource_name [String] The identity of the gateway. @param gateway_resource_description [GatewayResourceDescription] Description for creating a Gateway resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [GatewayResourceDescription] operation results.
[ "Creates", "or", "updates", "a", "Gateway", "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_gateway.rb#L41-L44
14,222
Azure/azure-sdk-for-ruby
management/azure_mgmt_consumption/lib/2018-01-31/generated/azure_mgmt_consumption/budgets.rb
Azure::Consumption::Mgmt::V2018_01_31.Budgets.get_by_resource_group_name
def get_by_resource_group_name(resource_group_name, budget_name, custom_headers:nil) response = get_by_resource_group_name_async(resource_group_name, budget_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_by_resource_group_name(resource_group_name, budget_name, custom_headers:nil) response = get_by_resource_group_name_async(resource_group_name, budget_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_by_resource_group_name", "(", "resource_group_name", ",", "budget_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_by_resource_group_name_async", "(", "resource_group_name", ",", "budget_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the budget for a resource group under a subscription by budget name. @param resource_group_name [String] Azure Resource Group Name. @param budget_name [String] Budget Name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Budget] operation results.
[ "Gets", "the", "budget", "for", "a", "resource", "group", "under", "a", "subscription", "by", "budget", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_consumption/lib/2018-01-31/generated/azure_mgmt_consumption/budgets.rb#L490-L493
14,223
Azure/azure-sdk-for-ruby
management/azure_mgmt_consumption/lib/2018-01-31/generated/azure_mgmt_consumption/budgets.rb
Azure::Consumption::Mgmt::V2018_01_31.Budgets.delete_by_resource_group_name
def delete_by_resource_group_name(resource_group_name, budget_name, custom_headers:nil) response = delete_by_resource_group_name_async(resource_group_name, budget_name, custom_headers:custom_headers).value! nil end
ruby
def delete_by_resource_group_name(resource_group_name, budget_name, custom_headers:nil) response = delete_by_resource_group_name_async(resource_group_name, budget_name, custom_headers:custom_headers).value! nil end
[ "def", "delete_by_resource_group_name", "(", "resource_group_name", ",", "budget_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_by_resource_group_name_async", "(", "resource_group_name", ",", "budget_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
The operation to delete a budget. @param resource_group_name [String] Azure Resource Group Name. @param budget_name [String] Budget Name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "The", "operation", "to", "delete", "a", "budget", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_consumption/lib/2018-01-31/generated/azure_mgmt_consumption/budgets.rb#L703-L706
14,224
Azure/azure-sdk-for-ruby
management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/workspace_settings.rb
Azure::Security::Mgmt::V2017_08_01_preview.WorkspaceSettings.create
def create(workspace_setting_name, workspace_setting, custom_headers:nil) response = create_async(workspace_setting_name, workspace_setting, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def create(workspace_setting_name, workspace_setting, custom_headers:nil) response = create_async(workspace_setting_name, workspace_setting, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "create", "(", "workspace_setting_name", ",", "workspace_setting", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_async", "(", "workspace_setting_name", ",", "workspace_setting", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
creating settings about where we should store your security data and logs @param workspace_setting_name [String] Name of the security setting @param workspace_setting [WorkspaceSetting] Security data setting object @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [WorkspaceSetting] operation results.
[ "creating", "settings", "about", "where", "we", "should", "store", "your", "security", "data", "and", "logs" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/workspace_settings.rb#L208-L211
14,225
Azure/azure-sdk-for-ruby
management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/workspace_settings.rb
Azure::Security::Mgmt::V2017_08_01_preview.WorkspaceSettings.update
def update(workspace_setting_name, workspace_setting, custom_headers:nil) response = update_async(workspace_setting_name, workspace_setting, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def update(workspace_setting_name, workspace_setting, custom_headers:nil) response = update_async(workspace_setting_name, workspace_setting, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "update", "(", "workspace_setting_name", ",", "workspace_setting", ",", "custom_headers", ":", "nil", ")", "response", "=", "update_async", "(", "workspace_setting_name", ",", "workspace_setting", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Settings about where we should store your security data and logs @param workspace_setting_name [String] Name of the security setting @param workspace_setting [WorkspaceSetting] Security data setting object @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [WorkspaceSetting] operation results.
[ "Settings", "about", "where", "we", "should", "store", "your", "security", "data", "and", "logs" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_security/lib/2017-08-01-preview/generated/azure_mgmt_security/workspace_settings.rb#L308-L311
14,226
Azure/azure-sdk-for-ruby
management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/power_biembedded_management_client.rb
Azure::PowerBiEmbedded::Mgmt::V2016_01_29.PowerBIEmbeddedManagementClient.get_available_operations
def get_available_operations(custom_headers:nil) response = get_available_operations_async(custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_available_operations(custom_headers:nil) response = get_available_operations_async(custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_available_operations", "(", "custom_headers", ":", "nil", ")", "response", "=", "get_available_operations_async", "(", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Indicates which operations can be performed by the Power BI Resource Provider. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [OperationList] operation results.
[ "Indicates", "which", "operations", "can", "be", "performed", "by", "the", "Power", "BI", "Resource", "Provider", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/power_biembedded_management_client.rb#L135-L138
14,227
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb
Azure::CognitiveServices::Qnamaker::V4_0.Knowledgebase.get_details
def get_details(kb_id, custom_headers:nil) response = get_details_async(kb_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_details(kb_id, custom_headers:nil) response = get_details_async(kb_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_details", "(", "kb_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_details_async", "(", "kb_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets details of a specific knowledgebase. @param kb_id [String] Knowledgebase id. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [KnowledgebaseDTO] operation results.
[ "Gets", "details", "of", "a", "specific", "knowledgebase", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb#L115-L118
14,228
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb
Azure::CognitiveServices::Qnamaker::V4_0.Knowledgebase.update
def update(kb_id, update_kb, custom_headers:nil) response = update_async(kb_id, update_kb, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def update(kb_id, update_kb, custom_headers:nil) response = update_async(kb_id, update_kb, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "update", "(", "kb_id", ",", "update_kb", ",", "custom_headers", ":", "nil", ")", "response", "=", "update_async", "(", "kb_id", ",", "update_kb", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Asynchronous operation to modify a knowledgebase. @param kb_id [String] Knowledgebase id. @param update_kb [UpdateKbOperationDTO] Post body of the request. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Operation] operation results.
[ "Asynchronous", "operation", "to", "modify", "a", "knowledgebase", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb#L445-L448
14,229
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb
Azure::CognitiveServices::Qnamaker::V4_0.Knowledgebase.create
def create(create_kb_payload, custom_headers:nil) response = create_async(create_kb_payload, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def create(create_kb_payload, custom_headers:nil) response = create_async(create_kb_payload, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "create", "(", "create_kb_payload", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_async", "(", "create_kb_payload", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Asynchronous operation to create a new knowledgebase. @param create_kb_payload [CreateKbDTO] Post body of the request. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [Operation] operation results.
[ "Asynchronous", "operation", "to", "create", "a", "new", "knowledgebase", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb#L542-L545
14,230
Azure/azure-sdk-for-ruby
data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb
Azure::CognitiveServices::Qnamaker::V4_0.Knowledgebase.download
def download(kb_id, environment, custom_headers:nil) response = download_async(kb_id, environment, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def download(kb_id, environment, custom_headers:nil) response = download_async(kb_id, environment, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "download", "(", "kb_id", ",", "environment", ",", "custom_headers", ":", "nil", ")", "response", "=", "download_async", "(", "kb_id", ",", "environment", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Download the knowledgebase. @param kb_id [String] Knowledgebase id. @param environment [EnvironmentType] Specifies whether environment is Test or Prod. Possible values include: 'Prod', 'Test' @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [QnADocumentsDTO] operation results.
[ "Download", "the", "knowledgebase", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_qnamaker/lib/4.0/generated/azure_cognitiveservices_qnamaker/knowledgebase.rb#L637-L640
14,231
Azure/azure-sdk-for-ruby
management/azure_mgmt_resources_management/lib/2018-03-01-preview/generated/azure_mgmt_resources_management/management_groups_api.rb
Azure::ResourcesManagement::Mgmt::V2018_03_01_preview.ManagementGroupsAPI.check_name_availability
def check_name_availability(check_name_availability_request, custom_headers:nil) response = check_name_availability_async(check_name_availability_request, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def check_name_availability(check_name_availability_request, custom_headers:nil) response = check_name_availability_async(check_name_availability_request, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "check_name_availability", "(", "check_name_availability_request", ",", "custom_headers", ":", "nil", ")", "response", "=", "check_name_availability_async", "(", "check_name_availability_request", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Checks if the specified management group name is valid and unique @param check_name_availability_request [CheckNameAvailabilityRequest] Management group name availability check parameters. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [CheckNameAvailabilityResult] operation results.
[ "Checks", "if", "the", "specified", "management", "group", "name", "is", "valid", "and", "unique" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_resources_management/lib/2018-03-01-preview/generated/azure_mgmt_resources_management/management_groups_api.rb#L140-L143
14,232
Azure/azure-sdk-for-ruby
management/azure_mgmt_resources_management/lib/2018-03-01-preview/generated/azure_mgmt_resources_management/management_groups_api.rb
Azure::ResourcesManagement::Mgmt::V2018_03_01_preview.ManagementGroupsAPI.start_tenant_backfill
def start_tenant_backfill(custom_headers:nil) response = start_tenant_backfill_async(custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def start_tenant_backfill(custom_headers:nil) response = start_tenant_backfill_async(custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "start_tenant_backfill", "(", "custom_headers", ":", "nil", ")", "response", "=", "start_tenant_backfill_async", "(", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Starts backfilling subscriptions for the Tenant. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [TenantBackfillStatusResult] operation results.
[ "Starts", "backfilling", "subscriptions", "for", "the", "Tenant", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_resources_management/lib/2018-03-01-preview/generated/azure_mgmt_resources_management/management_groups_api.rb#L234-L237
14,233
Azure/azure-sdk-for-ruby
management/azure_mgmt_resources_management/lib/2018-03-01-preview/generated/azure_mgmt_resources_management/management_groups_api.rb
Azure::ResourcesManagement::Mgmt::V2018_03_01_preview.ManagementGroupsAPI.tenant_backfill_status
def tenant_backfill_status(custom_headers:nil) response = tenant_backfill_status_async(custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def tenant_backfill_status(custom_headers:nil) response = tenant_backfill_status_async(custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "tenant_backfill_status", "(", "custom_headers", ":", "nil", ")", "response", "=", "tenant_backfill_status_async", "(", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets tenant backfill status @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [TenantBackfillStatusResult] operation results.
[ "Gets", "tenant", "backfill", "status" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_resources_management/lib/2018-03-01-preview/generated/azure_mgmt_resources_management/management_groups_api.rb#L316-L319
14,234
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/credential_operations.rb
Azure::Automation::Mgmt::V2015_10_31.CredentialOperations.get_with_http_info
def get_with_http_info(resource_group_name, automation_account_name, credential_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, credential_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, automation_account_name, credential_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, credential_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "credential_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "automation_account_name", ",", "credential_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieve the credential identified by credential name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param credential_name [String] The name of credential. @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", "credential", "identified", "by", "credential", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/credential_operations.rb#L139-L141
14,235
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/credential_operations.rb
Azure::Automation::Mgmt::V2015_10_31.CredentialOperations.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "credential_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "credential_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create a credential. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param credential_name [String] The parameters supplied to the create or update credential operation. @param parameters [CredentialCreateOrUpdateParameters] The parameters supplied to the create or update credential 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", "credential", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/credential_operations.rb#L244-L246
14,236
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/credential_operations.rb
Azure::Automation::Mgmt::V2015_10_31.CredentialOperations.update_with_http_info
def update_with_http_info(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:nil) update_async(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:nil) update_async(resource_group_name, automation_account_name, credential_name, parameters, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "credential_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "credential_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Update a credential. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param credential_name [String] The parameters supplied to the Update credential operation. @param parameters [CredentialUpdateParameters] The parameters supplied to the Update credential 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.
[ "Update", "a", "credential", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/credential_operations.rb#L370-L372
14,237
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/certificate.rb
Azure::ApiManagement::Mgmt::V2018_01_01.Certificate.get_with_http_info
def get_with_http_info(resource_group_name, service_name, certificate_id, custom_headers:nil) get_async(resource_group_name, service_name, certificate_id, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, service_name, certificate_id, custom_headers:nil) get_async(resource_group_name, service_name, certificate_id, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "certificate_id", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "service_name", ",", "certificate_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the details of the certificate 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 certificate_id [String] Identifier of the certificate entity. Must be unique in the current API Management service instance. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Gets", "the", "details", "of", "the", "certificate", "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/certificate.rb#L286-L288
14,238
Azure/azure-sdk-for-ruby
runtime/ms_rest/lib/ms_rest/jsonable.rb
MsRest.JSONable.to_json
def to_json(options = nil) mapper = (options.nil? || !options.key?(:mapper))? self.class.mapper: options[:mapper] object = (options.nil? || !options.key?(:object))? self: options[:object] serialize(mapper, object) end
ruby
def to_json(options = nil) mapper = (options.nil? || !options.key?(:mapper))? self.class.mapper: options[:mapper] object = (options.nil? || !options.key?(:object))? self: options[:object] serialize(mapper, object) end
[ "def", "to_json", "(", "options", "=", "nil", ")", "mapper", "=", "(", "options", ".", "nil?", "||", "!", "options", ".", "key?", "(", ":mapper", ")", ")", "?", "self", ".", "class", ".", "mapper", ":", "options", "[", ":mapper", "]", "object", "=", "(", "options", ".", "nil?", "||", "!", "options", ".", "key?", "(", ":object", ")", ")", "?", "self", ":", "options", "[", ":object", "]", "serialize", "(", "mapper", ",", "object", ")", "end" ]
Serialize the object to JSON @param options [Hash] hash map contains options to convert to json. @return [String] JSON serialized version of the object
[ "Serialize", "the", "object", "to", "JSON" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest/lib/ms_rest/jsonable.rb#L15-L19
14,239
Azure/azure-sdk-for-ruby
runtime/ms_rest/lib/ms_rest/jsonable.rb
MsRest.JSONable.from_json
def from_json(json, mapper = nil) mapper = self.class.mapper if mapper.nil? deserialize(mapper, json) end
ruby
def from_json(json, mapper = nil) mapper = self.class.mapper if mapper.nil? deserialize(mapper, json) end
[ "def", "from_json", "(", "json", ",", "mapper", "=", "nil", ")", "mapper", "=", "self", ".", "class", ".", "mapper", "if", "mapper", ".", "nil?", "deserialize", "(", "mapper", ",", "json", ")", "end" ]
Deserialize the object from JSON @param json [String] JSON string representation of the object @return [JSONable] object built from json input
[ "Deserialize", "the", "object", "from", "JSON" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest/lib/ms_rest/jsonable.rb#L26-L29
14,240
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/activity_operations.rb
Azure::Automation::Mgmt::V2015_10_31.ActivityOperations.get_with_http_info
def get_with_http_info(resource_group_name, automation_account_name, module_name, activity_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, module_name, activity_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, automation_account_name, module_name, activity_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, module_name, activity_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "module_name", ",", "activity_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "automation_account_name", ",", "module_name", ",", "activity_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieve the activity in the module identified by module name and activity name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param module_name [String] The name of module. @param activity_name [String] The name of activity. @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", "activity", "in", "the", "module", "identified", "by", "module", "name", "and", "activity", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/activity_operations.rb#L55-L57
14,241
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/schedule_operations.rb
Azure::Automation::Mgmt::V2015_10_31.ScheduleOperations.create_or_update_with_http_info
def create_or_update_with_http_info(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_or_update_with_http_info(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:nil) create_or_update_async(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_or_update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "schedule_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_or_update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "schedule_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create a schedule. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param schedule_name [String] The schedule name. @param parameters [ScheduleCreateOrUpdateParameters] The parameters supplied to the create or update schedule 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", "schedule", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/schedule_operations.rb#L55-L57
14,242
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/schedule_operations.rb
Azure::Automation::Mgmt::V2015_10_31.ScheduleOperations.update_with_http_info
def update_with_http_info(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:nil) update_async(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:nil) update_async(resource_group_name, automation_account_name, schedule_name, parameters, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "schedule_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "automation_account_name", ",", "schedule_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Update the schedule identified by schedule name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param schedule_name [String] The schedule name. @param parameters [ScheduleUpdateParameters] The parameters supplied to the update schedule 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.
[ "Update", "the", "schedule", "identified", "by", "schedule", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/schedule_operations.rb#L178-L180
14,243
Azure/azure-sdk-for-ruby
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/schedule_operations.rb
Azure::Automation::Mgmt::V2015_10_31.ScheduleOperations.get_with_http_info
def get_with_http_info(resource_group_name, automation_account_name, schedule_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, schedule_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, automation_account_name, schedule_name, custom_headers:nil) get_async(resource_group_name, automation_account_name, schedule_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "automation_account_name", ",", "schedule_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "automation_account_name", ",", "schedule_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieve the schedule identified by schedule name. @param resource_group_name [String] Name of an Azure Resource group. @param automation_account_name [String] The name of the automation account. @param schedule_name [String] The schedule 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", "schedule", "identified", "by", "schedule", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/schedule_operations.rb#L287-L289
14,244
Azure/azure-sdk-for-ruby
management/azure_mgmt_compute/lib/2018-06-01/generated/azure_mgmt_compute/gallery_image_versions.rb
Azure::Compute::Mgmt::V2018_06_01.GalleryImageVersions.get_with_http_info
def get_with_http_info(resource_group_name, gallery_name, gallery_image_name, gallery_image_version_name, expand:nil, custom_headers:nil) get_async(resource_group_name, gallery_name, gallery_image_name, gallery_image_version_name, expand:expand, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, gallery_name, gallery_image_name, gallery_image_version_name, expand:nil, custom_headers:nil) get_async(resource_group_name, gallery_name, gallery_image_name, gallery_image_version_name, expand:expand, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "gallery_name", ",", "gallery_image_name", ",", "gallery_image_version_name", ",", "expand", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "gallery_name", ",", "gallery_image_name", ",", "gallery_image_version_name", ",", "expand", ":", "expand", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Retrieves information about a gallery Image Version. @param resource_group_name [String] The name of the resource group. @param gallery_name [String] The name of the Shared Image Gallery in which the Image Definition resides. @param gallery_image_name [String] The name of the gallery Image Definition in which the Image Version resides. @param gallery_image_version_name [String] The name of the gallery Image Version to be retrieved. @param expand [ReplicationStatusTypes] The expand expression to apply on the operation. Possible values include: 'ReplicationStatus' @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", "information", "about", "a", "gallery", "Image", "Version", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-06-01/generated/azure_mgmt_compute/gallery_image_versions.rb#L123-L125
14,245
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/recommended_elastic_pools.rb
Azure::SQL::Mgmt::V2014_04_01.RecommendedElasticPools.get_with_http_info
def get_with_http_info(resource_group_name, server_name, recommended_elastic_pool_name, custom_headers:nil) get_async(resource_group_name, server_name, recommended_elastic_pool_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, server_name, recommended_elastic_pool_name, custom_headers:nil) get_async(resource_group_name, server_name, recommended_elastic_pool_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "recommended_elastic_pool_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "server_name", ",", "recommended_elastic_pool_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a recommended 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 recommended_elastic_pool_name [String] The name of the recommended elastic pool to be retrieved. @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", "recommended", "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/recommended_elastic_pools.rb#L60-L62
14,246
Azure/azure-sdk-for-ruby
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_locators.rb
Azure::MediaServices::Mgmt::V2018_07_01.StreamingLocators.get_with_http_info
def get_with_http_info(resource_group_name, account_name, streaming_locator_name, custom_headers:nil) get_async(resource_group_name, account_name, streaming_locator_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, account_name, streaming_locator_name, custom_headers:nil) get_async(resource_group_name, account_name, streaming_locator_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "streaming_locator_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "account_name", ",", "streaming_locator_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Get a Streaming Locator Get the details of a Streaming Locator in the Media Services account @param resource_group_name [String] The name of the resource group within the Azure subscription. @param account_name [String] The Media Services account name. @param streaming_locator_name [String] The Streaming Locator name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Get", "a", "Streaming", "Locator" ]
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/streaming_locators.rb#L176-L178
14,247
Azure/azure-sdk-for-ruby
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_locators.rb
Azure::MediaServices::Mgmt::V2018_07_01.StreamingLocators.delete_with_http_info
def delete_with_http_info(resource_group_name, account_name, streaming_locator_name, custom_headers:nil) delete_async(resource_group_name, account_name, streaming_locator_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, account_name, streaming_locator_name, custom_headers:nil) delete_async(resource_group_name, account_name, streaming_locator_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "streaming_locator_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "account_name", ",", "streaming_locator_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Delete a Streaming Locator Deletes a Streaming Locator in the Media Services account @param resource_group_name [String] The name of the resource group within the Azure subscription. @param account_name [String] The Media Services account name. @param streaming_locator_name [String] The Streaming Locator name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Delete", "a", "Streaming", "Locator" ]
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/streaming_locators.rb#L396-L398
14,248
Azure/azure-sdk-for-ruby
management/azure_mgmt_traffic_manager/lib/2018-04-01/generated/azure_mgmt_traffic_manager/heat_map.rb
Azure::TrafficManager::Mgmt::V2018_04_01.HeatMap.get_with_http_info
def get_with_http_info(resource_group_name, profile_name, top_left:nil, bot_right:nil, custom_headers:nil) get_async(resource_group_name, profile_name, top_left:top_left, bot_right:bot_right, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, profile_name, top_left:nil, bot_right:nil, custom_headers:nil) get_async(resource_group_name, profile_name, top_left:top_left, bot_right:bot_right, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "profile_name", ",", "top_left", ":", "nil", ",", "bot_right", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "profile_name", ",", "top_left", ":top_left", ",", "bot_right", ":bot_right", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets latest heatmap for Traffic Manager profile. @param resource_group_name [String] The name of the resource group containing the Traffic Manager endpoint. @param profile_name [String] The name of the Traffic Manager profile. @param top_left [Array<Float>] The top left latitude,longitude pair of the rectangular viewport to query for. @param bot_right [Array<Float>] The bottom right latitude,longitude pair of the rectangular viewport to query for. @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", "latest", "heatmap", "for", "Traffic", "Manager", "profile", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_traffic_manager/lib/2018-04-01/generated/azure_mgmt_traffic_manager/heat_map.rb#L59-L61
14,249
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/managed_restorable_dropped_database_backup_short_term_retention_policies.rb
Azure::SQL::Mgmt::V2017_03_01_preview.ManagedRestorableDroppedDatabaseBackupShortTermRetentionPolicies.get_with_http_info
def get_with_http_info(resource_group_name, managed_instance_name, restorable_dropped_database_id, custom_headers:nil) get_async(resource_group_name, managed_instance_name, restorable_dropped_database_id, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, managed_instance_name, restorable_dropped_database_id, custom_headers:nil) get_async(resource_group_name, managed_instance_name, restorable_dropped_database_id, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "restorable_dropped_database_id", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "restorable_dropped_database_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a dropped database's short term retention policy. @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 managed_instance_name [String] The name of the managed instance. @param restorable_dropped_database_id [String] @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", "dropped", "database", "s", "short", "term", "retention", "policy", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/managed_restorable_dropped_database_backup_short_term_retention_policies.rb#L58-L60
14,250
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/managed_restorable_dropped_database_backup_short_term_retention_policies.rb
Azure::SQL::Mgmt::V2017_03_01_preview.ManagedRestorableDroppedDatabaseBackupShortTermRetentionPolicies.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, managed_instance_name, restorable_dropped_database_id, parameters, custom_headers:nil) begin_update_async(resource_group_name, managed_instance_name, restorable_dropped_database_id, parameters, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, managed_instance_name, restorable_dropped_database_id, parameters, custom_headers:nil) begin_update_async(resource_group_name, managed_instance_name, restorable_dropped_database_id, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "restorable_dropped_database_id", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "restorable_dropped_database_id", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Sets a database's long term retention policy. @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 managed_instance_name [String] The name of the managed instance. @param restorable_dropped_database_id [String] @param parameters [ManagedBackupShortTermRetentionPolicy] The long term retention policy info. @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.
[ "Sets", "a", "database", "s", "long", "term", "retention", "policy", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/managed_restorable_dropped_database_backup_short_term_retention_policies.rb#L488-L490
14,251
Azure/azure-sdk-for-ruby
management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/workspace_collections.rb
Azure::PowerBiEmbedded::Mgmt::V2016_01_29.WorkspaceCollections.get_by_name
def get_by_name(resource_group_name, workspace_collection_name, custom_headers:nil) response = get_by_name_async(resource_group_name, workspace_collection_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_by_name(resource_group_name, workspace_collection_name, custom_headers:nil) response = get_by_name_async(resource_group_name, workspace_collection_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_by_name", "(", "resource_group_name", ",", "workspace_collection_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_by_name_async", "(", "resource_group_name", ",", "workspace_collection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Retrieves an existing Power BI Workspace Collection. @param resource_group_name [String] Azure resource group @param workspace_collection_name [String] Power BI Embedded Workspace Collection name @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [WorkspaceCollection] operation results.
[ "Retrieves", "an", "existing", "Power", "BI", "Workspace", "Collection", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/workspace_collections.rb#L36-L39
14,252
Azure/azure-sdk-for-ruby
management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/workspace_collections.rb
Azure::PowerBiEmbedded::Mgmt::V2016_01_29.WorkspaceCollections.update_with_http_info
def update_with_http_info(resource_group_name, workspace_collection_name, body, custom_headers:nil) update_async(resource_group_name, workspace_collection_name, body, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, workspace_collection_name, body, custom_headers:nil) update_async(resource_group_name, workspace_collection_name, body, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "workspace_collection_name", ",", "body", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "workspace_collection_name", ",", "body", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Update an existing Power BI Workspace Collection with the specified properties. @param resource_group_name [String] Azure resource group @param workspace_collection_name [String] Power BI Embedded Workspace Collection name @param body [UpdateWorkspaceCollectionRequest] Update workspace collection request @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Update", "an", "existing", "Power", "BI", "Workspace", "Collection", "with", "the", "specified", "properties", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/workspace_collections.rb#L268-L270
14,253
Azure/azure-sdk-for-ruby
management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/workspace_collections.rb
Azure::PowerBiEmbedded::Mgmt::V2016_01_29.WorkspaceCollections.get_access_keys
def get_access_keys(resource_group_name, workspace_collection_name, custom_headers:nil) response = get_access_keys_async(resource_group_name, workspace_collection_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_access_keys(resource_group_name, workspace_collection_name, custom_headers:nil) response = get_access_keys_async(resource_group_name, workspace_collection_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_access_keys", "(", "resource_group_name", ",", "workspace_collection_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_access_keys_async", "(", "resource_group_name", ",", "workspace_collection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Retrieves the primary and secondary access keys for the specified Power BI Workspace Collection. @param resource_group_name [String] Azure resource group @param workspace_collection_name [String] Power BI Embedded Workspace Collection name @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [WorkspaceCollectionAccessKeys] operation results.
[ "Retrieves", "the", "primary", "and", "secondary", "access", "keys", "for", "the", "specified", "Power", "BI", "Workspace", "Collection", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_powerbi_embedded/lib/2016-01-29/generated/azure_mgmt_powerbi_embedded/workspace_collections.rb#L679-L682
14,254
Azure/azure-sdk-for-ruby
management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/access_control_records.rb
Azure::StorSimple8000Series::Mgmt::V2017_06_01.AccessControlRecords.get_with_http_info
def get_with_http_info(access_control_record_name, resource_group_name, manager_name, custom_headers:nil) get_async(access_control_record_name, resource_group_name, manager_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(access_control_record_name, resource_group_name, manager_name, custom_headers:nil) get_async(access_control_record_name, resource_group_name, manager_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "access_control_record_name", ",", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "access_control_record_name", ",", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns the properties of the specified access control record name. @param access_control_record_name [String] Name of access control record 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.
[ "Returns", "the", "properties", "of", "the", "specified", "access", "control", "record", "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/access_control_records.rb#L147-L149
14,255
Azure/azure-sdk-for-ruby
management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/access_control_records.rb
Azure::StorSimple8000Series::Mgmt::V2017_06_01.AccessControlRecords.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(access_control_record_name, parameters, resource_group_name, manager_name, custom_headers:nil) begin_create_or_update_async(access_control_record_name, parameters, resource_group_name, manager_name, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(access_control_record_name, parameters, resource_group_name, manager_name, custom_headers:nil) begin_create_or_update_async(access_control_record_name, parameters, resource_group_name, manager_name, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "access_control_record_name", ",", "parameters", ",", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "access_control_record_name", ",", "parameters", ",", "resource_group_name", ",", "manager_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or Updates an access control record. @param access_control_record_name [String] The name of the access control record. @param parameters [AccessControlRecord] The access control record to be added or updated. @param resource_group_name [String] The resource group name @param manager_name [String] The manager name @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Creates", "or", "Updates", "an", "access", "control", "record", "." ]
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/access_control_records.rb#L344-L346
14,256
Azure/azure-sdk-for-ruby
management/azure_mgmt_service_fabric/lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/application_type.rb
Azure::ServiceFabric::Mgmt::V2017_07_01_preview.ApplicationType.get_with_http_info
def get_with_http_info(subscription_id, resource_group_name, cluster_name, application_type_name, api_version, custom_headers:nil) get_async(subscription_id, resource_group_name, cluster_name, application_type_name, api_version, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(subscription_id, resource_group_name, cluster_name, application_type_name, api_version, custom_headers:nil) get_async(subscription_id, resource_group_name, cluster_name, application_type_name, api_version, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "subscription_id", ",", "resource_group_name", ",", "cluster_name", ",", "application_type_name", ",", "api_version", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "subscription_id", ",", "resource_group_name", ",", "cluster_name", ",", "application_type_name", ",", "api_version", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns an application type name resource. @param subscription_id [String] The customer subscription identifier @param resource_group_name [String] The name of the resource group. @param cluster_name [String] The name of the cluster resource @param application_type_name [String] The name of the application type name resource @param api_version [String] The version of the API. @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", "an", "application", "type", "name", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_service_fabric/lib/2017-07-01-preview/generated/azure_mgmt_service_fabric/application_type.rb#L57-L59
14,257
Azure/azure-sdk-for-ruby
management/azure_mgmt_postgresql/lib/2017-12-01-preview/generated/azure_mgmt_postgresql/firewall_rules.rb
Azure::Postgresql::Mgmt::V2017_12_01_preview.FirewallRules.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, server_name, firewall_rule_name, custom_headers:nil) begin_delete_async(resource_group_name, server_name, firewall_rule_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, server_name, firewall_rule_name, custom_headers:nil) begin_delete_async(resource_group_name, server_name, firewall_rule_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "firewall_rule_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "server_name", ",", "firewall_rule_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a server firewall rule. @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 firewall_rule_name [String] The name of the server firewall rule. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Deletes", "a", "server", "firewall", "rule", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_postgresql/lib/2017-12-01-preview/generated/azure_mgmt_postgresql/firewall_rules.rb#L479-L481
14,258
Azure/azure-sdk-for-ruby
management/azure_mgmt_stream_analytics/lib/2016-03-01/generated/azure_mgmt_stream_analytics/streaming_jobs.rb
Azure::StreamAnalytics::Mgmt::V2016_03_01.StreamingJobs.get_with_http_info
def get_with_http_info(resource_group_name, job_name, expand:nil, custom_headers:nil) get_async(resource_group_name, job_name, expand:expand, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, job_name, expand:nil, custom_headers:nil) get_async(resource_group_name, job_name, expand:expand, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "job_name", ",", "expand", ":", "nil", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "job_name", ",", "expand", ":", "expand", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets details about the specified streaming job. @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 job_name [String] The name of the streaming job. @param expand [String] The $expand OData query parameter. This is a comma-separated list of additional streaming job properties to include in the response, beyond the default set returned when this parameter is absent. The default set is all streaming job properties other than 'inputs', 'transformation', 'outputs', and 'functions'. @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", "details", "about", "the", "specified", "streaming", "job", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stream_analytics/lib/2016-03-01/generated/azure_mgmt_stream_analytics/streaming_jobs.rb#L307-L309
14,259
Azure/azure-sdk-for-ruby
management/azure_mgmt_stream_analytics/lib/2016-03-01/generated/azure_mgmt_stream_analytics/streaming_jobs.rb
Azure::StreamAnalytics::Mgmt::V2016_03_01.StreamingJobs.begin_delete
def begin_delete(resource_group_name, job_name, custom_headers:nil) response = begin_delete_async(resource_group_name, job_name, custom_headers:custom_headers).value! nil end
ruby
def begin_delete(resource_group_name, job_name, custom_headers:nil) response = begin_delete_async(resource_group_name, job_name, custom_headers:custom_headers).value! nil end
[ "def", "begin_delete", "(", "resource_group_name", ",", "job_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "begin_delete_async", "(", "resource_group_name", ",", "job_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Deletes a streaming job. @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 job_name [String] The name of the streaming job. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Deletes", "a", "streaming", "job", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stream_analytics/lib/2016-03-01/generated/azure_mgmt_stream_analytics/streaming_jobs.rb#L832-L835
14,260
Azure/azure-sdk-for-ruby
management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/storage_sync_services.rb
Azure::StorageSync::Mgmt::V2018_07_01.StorageSyncServices.create_with_http_info
def create_with_http_info(resource_group_name, storage_sync_service_name, parameters, custom_headers:nil) create_async(resource_group_name, storage_sync_service_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_with_http_info(resource_group_name, storage_sync_service_name, parameters, custom_headers:nil) create_async(resource_group_name, storage_sync_service_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_with_http_info", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_async", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create a new StorageSyncService. @param resource_group_name [String] The name of the resource group. The name is case insensitive. @param storage_sync_service_name [String] Name of Storage Sync Service resource. @param parameters [StorageSyncServiceCreateParameters] Storage Sync Service resource 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.
[ "Create", "a", "new", "StorageSyncService", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/storage_sync_services.rb#L161-L163
14,261
Azure/azure-sdk-for-ruby
management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/storage_sync_services.rb
Azure::StorageSync::Mgmt::V2018_07_01.StorageSyncServices.update_with_http_info
def update_with_http_info(resource_group_name, storage_sync_service_name, parameters:nil, custom_headers:nil) update_async(resource_group_name, storage_sync_service_name, parameters:parameters, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, storage_sync_service_name, parameters:nil, custom_headers:nil) update_async(resource_group_name, storage_sync_service_name, parameters:parameters, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "parameters", ":", "nil", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "parameters", ":", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Patch a given StorageSyncService. @param resource_group_name [String] The name of the resource group. The name is case insensitive. @param storage_sync_service_name [String] Name of Storage Sync Service resource. @param parameters [StorageSyncServiceUpdateParameters] Storage Sync Service 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.
[ "Patch", "a", "given", "StorageSyncService", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/storage_sync_services.rb#L381-L383
14,262
Azure/azure-sdk-for-ruby
management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/storage_sync_services.rb
Azure::StorageSync::Mgmt::V2018_07_01.StorageSyncServices.delete
def delete(resource_group_name, storage_sync_service_name, custom_headers:nil) response = delete_async(resource_group_name, storage_sync_service_name, custom_headers:custom_headers).value! nil end
ruby
def delete(resource_group_name, storage_sync_service_name, custom_headers:nil) response = delete_async(resource_group_name, storage_sync_service_name, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "resource_group_name", ",", "storage_sync_service_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Delete a given StorageSyncService. @param resource_group_name [String] The name of the resource group. The name is case insensitive. @param storage_sync_service_name [String] Name of Storage Sync Service resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Delete", "a", "given", "StorageSyncService", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_storagesync/lib/2018-07-01/generated/azure_mgmt_storagesync/storage_sync_services.rb#L475-L478
14,263
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_database_vulnerability_assessments.rb
Azure::SQL::Mgmt::V2017_10_01_preview.ManagedDatabaseVulnerabilityAssessments.delete_with_http_info
def delete_with_http_info(resource_group_name, managed_instance_name, database_name, custom_headers:nil) delete_async(resource_group_name, managed_instance_name, database_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, managed_instance_name, database_name, custom_headers:nil) delete_async(resource_group_name, managed_instance_name, database_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "database_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "database_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Removes the database's vulnerability assessment. @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 managed_instance_name [String] The name of the managed instance. @param database_name [String] The name of the database for which the vulnerability assessment is defined. @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.
[ "Removes", "the", "database", "s", "vulnerability", "assessment", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_database_vulnerability_assessments.rb#L292-L294
14,264
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/api_management_service.rb
Azure::ApiManagement::Mgmt::V2019_01_01.ApiManagementService.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, service_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, service_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "service_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates an API Management service. This is long running operation and could take several minutes to complete. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param parameters [ApiManagementServiceResource] 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.
[ "Creates", "or", "updates", "an", "API", "Management", "service", ".", "This", "is", "long", "running", "operation", "and", "could", "take", "several", "minutes", "to", "complete", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/api_management_service.rb#L1032-L1034
14,265
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/product_api.rb
Azure::ApiManagement::Mgmt::V2018_01_01.ProductApi.check_entity_exists_with_http_info
def check_entity_exists_with_http_info(resource_group_name, service_name, product_id, api_id, custom_headers:nil) check_entity_exists_async(resource_group_name, service_name, product_id, api_id, custom_headers:custom_headers).value! end
ruby
def check_entity_exists_with_http_info(resource_group_name, service_name, product_id, api_id, custom_headers:nil) check_entity_exists_async(resource_group_name, service_name, product_id, api_id, custom_headers:custom_headers).value! end
[ "def", "check_entity_exists_with_http_info", "(", "resource_group_name", ",", "service_name", ",", "product_id", ",", "api_id", ",", "custom_headers", ":", "nil", ")", "check_entity_exists_async", "(", "resource_group_name", ",", "service_name", ",", "product_id", ",", "api_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Checks that API entity specified by identifier is associated with the Product entity. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param product_id [String] Product identifier. Must be unique in the current API Management service instance. @param api_id [String] API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number. @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.
[ "Checks", "that", "API", "entity", "specified", "by", "identifier", "is", "associated", "with", "the", "Product", "entity", "." ]
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/product_api.rb#L216-L218
14,266
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/sensitivity_labels.rb
Azure::SQL::Mgmt::V2017_03_01_preview.SensitivityLabels.get_with_http_info
def get_with_http_info(resource_group_name, server_name, database_name, schema_name, table_name, column_name, sensitivity_label_source, custom_headers:nil) get_async(resource_group_name, server_name, database_name, schema_name, table_name, column_name, sensitivity_label_source, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, server_name, database_name, schema_name, table_name, column_name, sensitivity_label_source, custom_headers:nil) get_async(resource_group_name, server_name, database_name, schema_name, table_name, column_name, sensitivity_label_source, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "database_name", ",", "schema_name", ",", "table_name", ",", "column_name", ",", "sensitivity_label_source", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "server_name", ",", "database_name", ",", "schema_name", ",", "table_name", ",", "column_name", ",", "sensitivity_label_source", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets the sensitivity label of a given column @param resource_group_name [String] The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @param server_name [String] The name of the server. @param database_name [String] The name of the database. @param schema_name [String] The name of the schema. @param table_name [String] The name of the table. @param column_name [String] The name of the column. @param sensitivity_label_source [SensitivityLabelSource] The source of the sensitivity label. Possible values include: 'current', 'recommended' @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", "sensitivity", "label", "of", "a", "given", "column" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/sensitivity_labels.rb#L504-L506
14,267
Azure/azure-sdk-for-ruby
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_policies.rb
Azure::MediaServices::Mgmt::V2018_07_01.StreamingPolicies.get_with_http_info
def get_with_http_info(resource_group_name, account_name, streaming_policy_name, custom_headers:nil) get_async(resource_group_name, account_name, streaming_policy_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, account_name, streaming_policy_name, custom_headers:nil) get_async(resource_group_name, account_name, streaming_policy_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "streaming_policy_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "account_name", ",", "streaming_policy_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Get a Streaming Policy Get the details of a Streaming Policy in the Media Services account @param resource_group_name [String] The name of the resource group within the Azure subscription. @param account_name [String] The Media Services account name. @param streaming_policy_name [String] The Streaming Policy name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Get", "a", "Streaming", "Policy" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_policies.rb#L176-L178
14,268
Azure/azure-sdk-for-ruby
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_policies.rb
Azure::MediaServices::Mgmt::V2018_07_01.StreamingPolicies.create_with_http_info
def create_with_http_info(resource_group_name, account_name, streaming_policy_name, parameters, custom_headers:nil) create_async(resource_group_name, account_name, streaming_policy_name, parameters, custom_headers:custom_headers).value! end
ruby
def create_with_http_info(resource_group_name, account_name, streaming_policy_name, parameters, custom_headers:nil) create_async(resource_group_name, account_name, streaming_policy_name, parameters, custom_headers:custom_headers).value! end
[ "def", "create_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "streaming_policy_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "create_async", "(", "resource_group_name", ",", "account_name", ",", "streaming_policy_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create a Streaming Policy Create a Streaming Policy in the Media Services account @param resource_group_name [String] The name of the resource group within the Azure subscription. @param account_name [String] The Media Services account name. @param streaming_policy_name [String] The Streaming Policy name. @param parameters [StreamingPolicy] The request parameters @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", "Streaming", "Policy" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_policies.rb#L283-L285
14,269
Azure/azure-sdk-for-ruby
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_policies.rb
Azure::MediaServices::Mgmt::V2018_07_01.StreamingPolicies.delete_with_http_info
def delete_with_http_info(resource_group_name, account_name, streaming_policy_name, custom_headers:nil) delete_async(resource_group_name, account_name, streaming_policy_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, account_name, streaming_policy_name, custom_headers:nil) delete_async(resource_group_name, account_name, streaming_policy_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "account_name", ",", "streaming_policy_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "account_name", ",", "streaming_policy_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Delete a Streaming Policy Deletes a Streaming Policy in the Media Services account @param resource_group_name [String] The name of the resource group within the Azure subscription. @param account_name [String] The Media Services account name. @param streaming_policy_name [String] The Streaming Policy name. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Delete", "a", "Streaming", "Policy" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/streaming_policies.rb#L396-L398
14,270
Azure/azure-sdk-for-ruby
management/azure_mgmt_traffic_manager/lib/2018-02-01/generated/azure_mgmt_traffic_manager/geographic_hierarchies.rb
Azure::TrafficManager::Mgmt::V2018_02_01.GeographicHierarchies.get_default
def get_default(custom_headers:nil) response = get_default_async(custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_default(custom_headers:nil) response = get_default_async(custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_default", "(", "custom_headers", ":", "nil", ")", "response", "=", "get_default_async", "(", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the default Geographic Hierarchy used by the Geographic traffic routing method. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [TrafficManagerGeographicHierarchy] operation results.
[ "Gets", "the", "default", "Geographic", "Hierarchy", "used", "by", "the", "Geographic", "traffic", "routing", "method", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_traffic_manager/lib/2018-02-01/generated/azure_mgmt_traffic_manager/geographic_hierarchies.rb#L33-L36
14,271
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb
Azure::SQL::Mgmt::V2017_10_01_preview.ManagedInstanceKeys.list_by_instance_with_http_info
def list_by_instance_with_http_info(resource_group_name, managed_instance_name, filter:nil, custom_headers:nil) list_by_instance_async(resource_group_name, managed_instance_name, filter:filter, custom_headers:custom_headers).value! end
ruby
def list_by_instance_with_http_info(resource_group_name, managed_instance_name, filter:nil, custom_headers:nil) list_by_instance_async(resource_group_name, managed_instance_name, filter:filter, custom_headers:custom_headers).value! end
[ "def", "list_by_instance_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "filter", ":", "nil", ",", "custom_headers", ":", "nil", ")", "list_by_instance_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "filter", ":", "filter", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a list of managed instance keys. @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 managed_instance_name [String] The name of the managed instance. @param filter [String] An OData filter expression that filters elements in the collection. @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", "list", "of", "managed", "instance", "keys", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb#L60-L62
14,272
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb
Azure::SQL::Mgmt::V2017_10_01_preview.ManagedInstanceKeys.get_with_http_info
def get_with_http_info(resource_group_name, managed_instance_name, key_name, custom_headers:nil) get_async(resource_group_name, managed_instance_name, key_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, managed_instance_name, key_name, custom_headers:nil) get_async(resource_group_name, managed_instance_name, key_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "key_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "key_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a managed instance key. @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 managed_instance_name [String] The name of the managed instance. @param key_name [String] The name of the managed instance key to be retrieved. @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", "managed", "instance", "key", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb#L164-L166
14,273
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb
Azure::SQL::Mgmt::V2017_10_01_preview.ManagedInstanceKeys.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, managed_instance_name, key_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, managed_instance_name, key_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, managed_instance_name, key_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, managed_instance_name, key_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "key_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "key_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates or updates a managed instance key. @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 managed_instance_name [String] The name of the managed instance. @param key_name [String] The name of the managed instance key to be operated on (updated or created). @param parameters [ManagedInstanceKey] The requested managed instance key resource state. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Creates", "or", "updates", "a", "managed", "instance", "key", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb#L371-L373
14,274
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb
Azure::SQL::Mgmt::V2017_10_01_preview.ManagedInstanceKeys.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, managed_instance_name, key_name, custom_headers:nil) begin_delete_async(resource_group_name, managed_instance_name, key_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, managed_instance_name, key_name, custom_headers:nil) begin_delete_async(resource_group_name, managed_instance_name, key_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "key_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "key_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes the managed instance key with the given name. @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 managed_instance_name [String] The name of the managed instance. @param key_name [String] The name of the managed instance key 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", "managed", "instance", "key", "with", "the", "given", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/managed_instance_keys.rb#L493-L495
14,275
Azure/azure-sdk-for-ruby
management/azure_mgmt_monitor/lib/2018-06-01-preview/generated/azure_mgmt_monitor/guest_diagnostics_settings.rb
Azure::Monitor::Mgmt::V2018_06_01_preview.GuestDiagnosticsSettings.update_with_http_info
def update_with_http_info(resource_group_name, diagnostic_settings_name, parameters, custom_headers:nil) update_async(resource_group_name, diagnostic_settings_name, parameters, custom_headers:custom_headers).value! end
ruby
def update_with_http_info(resource_group_name, diagnostic_settings_name, parameters, custom_headers:nil) update_async(resource_group_name, diagnostic_settings_name, parameters, custom_headers:custom_headers).value! end
[ "def", "update_with_http_info", "(", "resource_group_name", ",", "diagnostic_settings_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "update_async", "(", "resource_group_name", ",", "diagnostic_settings_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Updates guest diagnostics settings. @param resource_group_name [String] The name of the resource group. @param diagnostic_settings_name [String] The name of the diagnostic setting. @param parameters [GuestDiagnosticSettingsPatchResource] The configuration to patch. @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", "guest", "diagnostics", "settings", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2018-06-01-preview/generated/azure_mgmt_monitor/guest_diagnostics_settings.rb#L261-L263
14,276
Azure/azure-sdk-for-ruby
management/azure_mgmt_monitor/lib/2018-06-01-preview/generated/azure_mgmt_monitor/guest_diagnostics_settings.rb
Azure::Monitor::Mgmt::V2018_06_01_preview.GuestDiagnosticsSettings.delete
def delete(resource_group_name, diagnostic_settings_name, custom_headers:nil) response = delete_async(resource_group_name, diagnostic_settings_name, custom_headers:custom_headers).value! nil end
ruby
def delete(resource_group_name, diagnostic_settings_name, custom_headers:nil) response = delete_async(resource_group_name, diagnostic_settings_name, custom_headers:custom_headers).value! nil end
[ "def", "delete", "(", "resource_group_name", ",", "diagnostic_settings_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "delete_async", "(", "resource_group_name", ",", "diagnostic_settings_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Delete guest diagnostics settings. @param resource_group_name [String] The name of the resource group. @param diagnostic_settings_name [String] The name of the diagnostic setting. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Delete", "guest", "diagnostics", "settings", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2018-06-01-preview/generated/azure_mgmt_monitor/guest_diagnostics_settings.rb#L357-L360
14,277
Azure/azure-sdk-for-ruby
runtime/ms_rest/lib/ms_rest/http_operation_error.rb
MsRest.HttpOperationError.to_json
def to_json(*a) res_dict = response ? { body: response.body, headers: response.headers, status: response.status } : nil {message: @msg, request: request, response: res_dict}.to_json(*a) end
ruby
def to_json(*a) res_dict = response ? { body: response.body, headers: response.headers, status: response.status } : nil {message: @msg, request: request, response: res_dict}.to_json(*a) end
[ "def", "to_json", "(", "*", "a", ")", "res_dict", "=", "response", "?", "{", "body", ":", "response", ".", "body", ",", "headers", ":", "response", ".", "headers", ",", "status", ":", "response", ".", "status", "}", ":", "nil", "{", "message", ":", "@msg", ",", "request", ":", "request", ",", "response", ":", "res_dict", "}", ".", "to_json", "(", "a", ")", "end" ]
Creates and initialize new instance of the HttpOperationException class. @param [Hash] the HTTP request data (uri, body, headers). @param [Faraday::Response] the HTTP response object. @param [String] body the HTTP response body. @param [String] error message.
[ "Creates", "and", "initialize", "new", "instance", "of", "the", "HttpOperationException", "class", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest/lib/ms_rest/http_operation_error.rb#L58-L61
14,278
Azure/azure-sdk-for-ruby
management/azure_mgmt_mixedreality/lib/2019-02-28-preview/generated/azure_mgmt_mixedreality/mixed_reality_client.rb
Azure::MixedReality::Mgmt::V2019_02_28_preview.MixedRealityClient.check_name_availability_local
def check_name_availability_local(location, check_name_availability, custom_headers:nil) response = check_name_availability_local_async(location, check_name_availability, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def check_name_availability_local(location, check_name_availability, custom_headers:nil) response = check_name_availability_local_async(location, check_name_availability, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "check_name_availability_local", "(", "location", ",", "check_name_availability", ",", "custom_headers", ":", "nil", ")", "response", "=", "check_name_availability_local_async", "(", "location", ",", "check_name_availability", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Check Name Availability for global uniqueness @param location [String] The location in which uniqueness will be verified. @param check_name_availability [CheckNameAvailabilityRequest] Check Name Availability Request. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [CheckNameAvailabilityResponse] operation results.
[ "Check", "Name", "Availability", "for", "global", "uniqueness" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_mixedreality/lib/2019-02-28-preview/generated/azure_mgmt_mixedreality/mixed_reality_client.rb#L135-L138
14,279
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/recoverable_managed_databases.rb
Azure::SQL::Mgmt::V2017_10_01_preview.RecoverableManagedDatabases.get_with_http_info
def get_with_http_info(resource_group_name, managed_instance_name, recoverable_database_name, custom_headers:nil) get_async(resource_group_name, managed_instance_name, recoverable_database_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, managed_instance_name, recoverable_database_name, custom_headers:nil) get_async(resource_group_name, managed_instance_name, recoverable_database_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "managed_instance_name", ",", "recoverable_database_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "managed_instance_name", ",", "recoverable_database_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a recoverable managed database. @param resource_group_name [String] The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal. @param managed_instance_name [String] The name of the managed instance. @param recoverable_database_name [String] @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", "recoverable", "managed", "database", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-10-01-preview/generated/azure_mgmt_sql/recoverable_managed_databases.rb#L156-L158
14,280
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/clusters.rb
Azure::Kusto::Mgmt::V2018_09_07_privatepreview.Clusters.list_skus_by_resource
def list_skus_by_resource(resource_group_name, cluster_name, custom_headers:nil) response = list_skus_by_resource_async(resource_group_name, cluster_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_skus_by_resource(resource_group_name, cluster_name, custom_headers:nil) response = list_skus_by_resource_async(resource_group_name, cluster_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_skus_by_resource", "(", "resource_group_name", ",", "cluster_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_skus_by_resource_async", "(", "resource_group_name", ",", "cluster_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Returns the SKUs available for the provided resource. @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 [ListResourceSkusResult] operation results.
[ "Returns", "the", "SKUs", "available", "for", "the", "provided", "resource", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/clusters.rb#L706-L709
14,281
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/clusters.rb
Azure::Kusto::Mgmt::V2018_09_07_privatepreview.Clusters.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, cluster_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, cluster_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, cluster_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, cluster_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "cluster_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "cluster_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Create or update a 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 parameters [Cluster] The Kusto cluster parameters supplied to the CreateOrUpdate 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", "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/clusters.rb#L821-L823
14,282
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/virtual_clusters.rb
Azure::SQL::Mgmt::V2015_05_01_preview.VirtualClusters.begin_update_with_http_info
def begin_update_with_http_info(resource_group_name, virtual_cluster_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, virtual_cluster_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_update_with_http_info(resource_group_name, virtual_cluster_name, parameters, custom_headers:nil) begin_update_async(resource_group_name, virtual_cluster_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_update_with_http_info", "(", "resource_group_name", ",", "virtual_cluster_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_update_async", "(", "resource_group_name", ",", "virtual_cluster_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Updates a virtual cluster. @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 virtual_cluster_name [String] The name of the virtual cluster. @param parameters [VirtualClusterUpdate] The requested managed instance resource state. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [MsRestAzure::AzureOperationResponse] HTTP response information.
[ "Updates", "a", "virtual", "cluster", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/virtual_clusters.rb#L515-L517
14,283
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/server_dns_aliases.rb
Azure::SQL::Mgmt::V2017_03_01_preview.ServerDnsAliases.get_with_http_info
def get_with_http_info(resource_group_name, server_name, dns_alias_name, custom_headers:nil) get_async(resource_group_name, server_name, dns_alias_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, server_name, dns_alias_name, custom_headers:nil) get_async(resource_group_name, server_name, dns_alias_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "dns_alias_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "server_name", ",", "dns_alias_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets a server DNS alias. @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 that the alias is pointing to. @param dns_alias_name [String] The name of the server DNS alias. @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", "server", "DNS", "alias", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/server_dns_aliases.rb#L60-L62
14,284
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/server_dns_aliases.rb
Azure::SQL::Mgmt::V2017_03_01_preview.ServerDnsAliases.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, server_name, dns_alias_name, custom_headers:nil) begin_create_or_update_async(resource_group_name, server_name, dns_alias_name, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, server_name, dns_alias_name, custom_headers:nil) begin_create_or_update_async(resource_group_name, server_name, dns_alias_name, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "dns_alias_name", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "server_name", ",", "dns_alias_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates a server dns alias. @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 that the alias is pointing to. @param dns_alias_name [String] The name of the server DNS alias. @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", "server", "dns", "alias", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/server_dns_aliases.rb#L410-L412
14,285
Azure/azure-sdk-for-ruby
management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/server_dns_aliases.rb
Azure::SQL::Mgmt::V2017_03_01_preview.ServerDnsAliases.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, server_name, dns_alias_name, custom_headers:nil) begin_delete_async(resource_group_name, server_name, dns_alias_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, server_name, dns_alias_name, custom_headers:nil) begin_delete_async(resource_group_name, server_name, dns_alias_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "server_name", ",", "dns_alias_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "server_name", ",", "dns_alias_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes the server DNS alias with the given name. @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 that the alias is pointing to. @param dns_alias_name [String] The name of the server DNS alias. @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", "server", "DNS", "alias", "with", "the", "given", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2017-03-01-preview/generated/azure_mgmt_sql/server_dns_aliases.rb#L524-L526
14,286
Azure/azure-sdk-for-ruby
management/azure_mgmt_managed_applications/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/appliance_definitions.rb
Azure::ManagedApplications::Mgmt::V2016_09_01_preview.ApplianceDefinitions.get_by_id
def get_by_id(appliance_definition_id, custom_headers:nil) response = get_by_id_async(appliance_definition_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def get_by_id(appliance_definition_id, custom_headers:nil) response = get_by_id_async(appliance_definition_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "get_by_id", "(", "appliance_definition_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "get_by_id_async", "(", "appliance_definition_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Gets the appliance definition. @param appliance_definition_id [String] The fully qualified ID of the appliance definition, including the appliance name and the appliance definition resource type. Use the format, /subscriptions/{guid}/resourceGroups/{resource-group-name}/Microsoft.Solutions/applianceDefinitions/{applianceDefinition-name} @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [ApplianceDefinition] operation results.
[ "Gets", "the", "appliance", "definition", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_managed_applications/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/appliance_definitions.rb#L325-L328
14,287
Azure/azure-sdk-for-ruby
management/azure_mgmt_managed_applications/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/appliance_definitions.rb
Azure::ManagedApplications::Mgmt::V2016_09_01_preview.ApplianceDefinitions.begin_create_or_update_with_http_info
def begin_create_or_update_with_http_info(resource_group_name, appliance_definition_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, appliance_definition_name, parameters, custom_headers:custom_headers).value! end
ruby
def begin_create_or_update_with_http_info(resource_group_name, appliance_definition_name, parameters, custom_headers:nil) begin_create_or_update_async(resource_group_name, appliance_definition_name, parameters, custom_headers:custom_headers).value! end
[ "def", "begin_create_or_update_with_http_info", "(", "resource_group_name", ",", "appliance_definition_name", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "begin_create_or_update_async", "(", "resource_group_name", ",", "appliance_definition_name", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Creates a new appliance definition. @param resource_group_name [String] The name of the resource group. The name is case insensitive. @param appliance_definition_name [String] The name of the appliance definition. @param parameters [ApplianceDefinition] Parameters supplied to the create or update an appliance definition. @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", "appliance", "definition", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_managed_applications/lib/2016-09-01-preview/generated/azure_mgmt_managed_applications/appliance_definitions.rb#L626-L628
14,288
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/event_hub_connections.rb
Azure::Kusto::Mgmt::V2018_09_07_privatepreview.EventHubConnections.get_with_http_info
def get_with_http_info(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:nil) get_async(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:nil) get_async(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "event_hub_connection_name", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "event_hub_connection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns an Event Hub connection. @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 event_hub_connection_name [String] The name of the event hub connection. @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", "an", "Event", "Hub", "connection", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/event_hub_connections.rb#L271-L273
14,289
Azure/azure-sdk-for-ruby
management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/event_hub_connections.rb
Azure::Kusto::Mgmt::V2018_09_07_privatepreview.EventHubConnections.begin_delete_with_http_info
def begin_delete_with_http_info(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:nil) begin_delete_async(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:custom_headers).value! end
ruby
def begin_delete_with_http_info(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:nil) begin_delete_async(resource_group_name, cluster_name, database_name, event_hub_connection_name, custom_headers:custom_headers).value! end
[ "def", "begin_delete_with_http_info", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "event_hub_connection_name", ",", "custom_headers", ":", "nil", ")", "begin_delete_async", "(", "resource_group_name", ",", "cluster_name", ",", "database_name", ",", "event_hub_connection_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes the Event Hub connection with the given name. @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 event_hub_connection_name [String] The name of the event hub connection. @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", "Event", "Hub", "connection", "with", "the", "given", "name", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_kusto/lib/2017-09-07-privatepreview/generated/azure_mgmt_kusto/event_hub_connections.rb#L790-L792
14,290
Azure/azure-sdk-for-ruby
management/azure_mgmt_service_fabric/lib/2016-09-01/generated/azure_mgmt_service_fabric/cluster_versions.rb
Azure::ServiceFabric::Mgmt::V2016_09_01.ClusterVersions.get_with_http_info
def get_with_http_info(location, environment, cluster_version, custom_headers:nil) get_async(location, environment, cluster_version, custom_headers:custom_headers).value! end
ruby
def get_with_http_info(location, environment, cluster_version, custom_headers:nil) get_async(location, environment, cluster_version, custom_headers:custom_headers).value! end
[ "def", "get_with_http_info", "(", "location", ",", "environment", ",", "cluster_version", ",", "custom_headers", ":", "nil", ")", "get_async", "(", "location", ",", "environment", ",", "cluster_version", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Get cluster code versions by environment and version @param location [String] The location for the cluster code versions, this is different from cluster location @param environment [Enum] Cluster operating system, the default means all. Possible values include: 'Windows', 'Linux' @param cluster_version [String] The cluster code version @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", "cluster", "code", "versions", "by", "environment", "and", "version" ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_service_fabric/lib/2016-09-01/generated/azure_mgmt_service_fabric/cluster_versions.rb#L244-L246
14,291
Azure/azure-sdk-for-ruby
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/api_policy.rb
Azure::ApiManagement::Mgmt::V2018_01_01.ApiPolicy.list_by_api
def list_by_api(resource_group_name, service_name, api_id, custom_headers:nil) response = list_by_api_async(resource_group_name, service_name, api_id, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_by_api(resource_group_name, service_name, api_id, custom_headers:nil) response = list_by_api_async(resource_group_name, service_name, api_id, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_by_api", "(", "resource_group_name", ",", "service_name", ",", "api_id", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_api_async", "(", "resource_group_name", ",", "service_name", ",", "api_id", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Get the policy configuration at the API level. @param resource_group_name [String] The name of the resource group. @param service_name [String] The name of the API Management service. @param api_id [String] API revision identifier. Must be unique in the current API Management service instance. Non-current revision has ;rev=n as a suffix where n is the revision number. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [PolicyCollection] operation results.
[ "Get", "the", "policy", "configuration", "at", "the", "API", "level", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/api_policy.rb#L37-L40
14,292
Azure/azure-sdk-for-ruby
management/azure_mgmt_recovery_services/lib/2016-06-01/generated/azure_mgmt_recovery_services/usages.rb
Azure::RecoveryServices::Mgmt::V2016_06_01.Usages.list_by_vaults
def list_by_vaults(resource_group_name, vault_name, custom_headers:nil) response = list_by_vaults_async(resource_group_name, vault_name, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def list_by_vaults(resource_group_name, vault_name, custom_headers:nil) response = list_by_vaults_async(resource_group_name, vault_name, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "list_by_vaults", "(", "resource_group_name", ",", "vault_name", ",", "custom_headers", ":", "nil", ")", "response", "=", "list_by_vaults_async", "(", "resource_group_name", ",", "vault_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Fetches the usages of the vault. @param resource_group_name [String] The name of the resource group where the recovery services vault is present. @param vault_name [String] The name of the recovery services vault. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [VaultUsageList] operation results.
[ "Fetches", "the", "usages", "of", "the", "vault", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services/lib/2016-06-01/generated/azure_mgmt_recovery_services/usages.rb#L35-L38
14,293
Azure/azure-sdk-for-ruby
management/azure_mgmt_policy_insights/lib/2018-04-04/generated/azure_mgmt_policy_insights/policy_events.rb
Azure::PolicyInsights::Mgmt::V2018_04_04.PolicyEvents.list_query_results_for_policy_set_definition_with_http_info
def list_query_results_for_policy_set_definition_with_http_info(subscription_id, policy_set_definition_name, query_options:nil, custom_headers:nil) list_query_results_for_policy_set_definition_async(subscription_id, policy_set_definition_name, query_options:query_options, custom_headers:custom_headers).value! end
ruby
def list_query_results_for_policy_set_definition_with_http_info(subscription_id, policy_set_definition_name, query_options:nil, custom_headers:nil) list_query_results_for_policy_set_definition_async(subscription_id, policy_set_definition_name, query_options:query_options, custom_headers:custom_headers).value! end
[ "def", "list_query_results_for_policy_set_definition_with_http_info", "(", "subscription_id", ",", "policy_set_definition_name", ",", "query_options", ":", "nil", ",", "custom_headers", ":", "nil", ")", "list_query_results_for_policy_set_definition_async", "(", "subscription_id", ",", "policy_set_definition_name", ",", "query_options", ":query_options", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Queries policy events for the subscription level policy set definition. @param subscription_id [String] Microsoft Azure subscription ID. @param policy_set_definition_name [String] Policy set definition name. @param query_options [QueryOptions] 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.
[ "Queries", "policy", "events", "for", "the", "subscription", "level", "policy", "set", "definition", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-04-04/generated/azure_mgmt_policy_insights/policy_events.rb#L533-L535
14,294
Azure/azure-sdk-for-ruby
management/azure_mgmt_policy_insights/lib/2018-04-04/generated/azure_mgmt_policy_insights/policy_events.rb
Azure::PolicyInsights::Mgmt::V2018_04_04.PolicyEvents.list_query_results_for_policy_definition_with_http_info
def list_query_results_for_policy_definition_with_http_info(subscription_id, policy_definition_name, query_options:nil, custom_headers:nil) list_query_results_for_policy_definition_async(subscription_id, policy_definition_name, query_options:query_options, custom_headers:custom_headers).value! end
ruby
def list_query_results_for_policy_definition_with_http_info(subscription_id, policy_definition_name, query_options:nil, custom_headers:nil) list_query_results_for_policy_definition_async(subscription_id, policy_definition_name, query_options:query_options, custom_headers:custom_headers).value! end
[ "def", "list_query_results_for_policy_definition_with_http_info", "(", "subscription_id", ",", "policy_definition_name", ",", "query_options", ":", "nil", ",", "custom_headers", ":", "nil", ")", "list_query_results_for_policy_definition_async", "(", "subscription_id", ",", "policy_definition_name", ",", "query_options", ":query_options", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Queries policy events for the subscription level policy definition. @param subscription_id [String] Microsoft Azure subscription ID. @param policy_definition_name [String] Policy definition name. @param query_options [QueryOptions] 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.
[ "Queries", "policy", "events", "for", "the", "subscription", "level", "policy", "definition", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-04-04/generated/azure_mgmt_policy_insights/policy_events.rb#L657-L659
14,295
Azure/azure-sdk-for-ruby
management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/topics.rb
Azure::ServiceBus::Mgmt::V2015_08_01.Topics.delete_with_http_info
def delete_with_http_info(resource_group_name, namespace_name, topic_name, custom_headers:nil) delete_async(resource_group_name, namespace_name, topic_name, custom_headers:custom_headers).value! end
ruby
def delete_with_http_info(resource_group_name, namespace_name, topic_name, custom_headers:nil) delete_async(resource_group_name, namespace_name, topic_name, custom_headers:custom_headers).value! end
[ "def", "delete_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "topic_name", ",", "custom_headers", ":", "nil", ")", "delete_async", "(", "resource_group_name", ",", "namespace_name", ",", "topic_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Deletes a topic from the specified namespace and resource group. @param resource_group_name [String] Name of the Resource group within the Azure subscription. @param namespace_name [String] The namespace name @param topic_name [String] The topic 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", "topic", "from", "the", "specified", "namespace", "and", "resource", "group", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/topics.rb#L270-L272
14,296
Azure/azure-sdk-for-ruby
management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/topics.rb
Azure::ServiceBus::Mgmt::V2015_08_01.Topics.list_authorization_rules_with_http_info
def list_authorization_rules_with_http_info(resource_group_name, namespace_name, topic_name, custom_headers:nil) list_authorization_rules_async(resource_group_name, namespace_name, topic_name, custom_headers:custom_headers).value! end
ruby
def list_authorization_rules_with_http_info(resource_group_name, namespace_name, topic_name, custom_headers:nil) list_authorization_rules_async(resource_group_name, namespace_name, topic_name, custom_headers:custom_headers).value! end
[ "def", "list_authorization_rules_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "topic_name", ",", "custom_headers", ":", "nil", ")", "list_authorization_rules_async", "(", "resource_group_name", ",", "namespace_name", ",", "topic_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Gets authorization rules for a topic. @param resource_group_name [String] Name of the Resource group within the Azure subscription. @param namespace_name [String] The namespace name @param topic_name [String] The topic 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", "authorization", "rules", "for", "a", "topic", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/topics.rb#L470-L472
14,297
Azure/azure-sdk-for-ruby
management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/topics.rb
Azure::ServiceBus::Mgmt::V2015_08_01.Topics.post_authorization_rule_with_http_info
def post_authorization_rule_with_http_info(resource_group_name, namespace_name, topic_name, authorization_rule_name, custom_headers:nil) post_authorization_rule_async(resource_group_name, namespace_name, topic_name, authorization_rule_name, custom_headers:custom_headers).value! end
ruby
def post_authorization_rule_with_http_info(resource_group_name, namespace_name, topic_name, authorization_rule_name, custom_headers:nil) post_authorization_rule_async(resource_group_name, namespace_name, topic_name, authorization_rule_name, custom_headers:custom_headers).value! end
[ "def", "post_authorization_rule_with_http_info", "(", "resource_group_name", ",", "namespace_name", ",", "topic_name", ",", "authorization_rule_name", ",", "custom_headers", ":", "nil", ")", "post_authorization_rule_async", "(", "resource_group_name", ",", "namespace_name", ",", "topic_name", ",", "authorization_rule_name", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "end" ]
Returns the specified authorization rule. @param resource_group_name [String] Name of the Resource group within the Azure subscription. @param namespace_name [String] The namespace name @param topic_name [String] The topic name. @param authorization_rule_name [String] The authorization rule 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", "specified", "authorization", "rule", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/topics.rb#L702-L704
14,298
Azure/azure-sdk-for-ruby
data/azure_service_fabric/lib/6.4.0.36/generated/azure_service_fabric/mesh_network.rb
Azure::ServiceFabric::V6_4_0_36.MeshNetwork.create_or_update
def create_or_update(network_resource_name, network_resource_description, custom_headers:nil) response = create_or_update_async(network_resource_name, network_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
ruby
def create_or_update(network_resource_name, network_resource_description, custom_headers:nil) response = create_or_update_async(network_resource_name, network_resource_description, custom_headers:custom_headers).value! response.body unless response.nil? end
[ "def", "create_or_update", "(", "network_resource_name", ",", "network_resource_description", ",", "custom_headers", ":", "nil", ")", "response", "=", "create_or_update_async", "(", "network_resource_name", ",", "network_resource_description", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "response", ".", "body", "unless", "response", ".", "nil?", "end" ]
Creates or updates a Network resource. Creates a Network resource with the specified name, description and properties. If Network resource with the same name exists, then it is updated with the specified description and properties. Network resource provides connectivity between application services. @param network_resource_name [String] The identity of the network. @param network_resource_description [NetworkResourceDescription] Description for creating a Network resource. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request. @return [NetworkResourceDescription] operation results.
[ "Creates", "or", "updates", "a", "Network", "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_network.rb#L41-L44
14,299
Azure/azure-sdk-for-ruby
data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/applications.rb
Azure::GraphRbac::V1_6.Applications.patch
def patch(application_object_id, parameters, custom_headers:nil) response = patch_async(application_object_id, parameters, custom_headers:custom_headers).value! nil end
ruby
def patch(application_object_id, parameters, custom_headers:nil) response = patch_async(application_object_id, parameters, custom_headers:custom_headers).value! nil end
[ "def", "patch", "(", "application_object_id", ",", "parameters", ",", "custom_headers", ":", "nil", ")", "response", "=", "patch_async", "(", "application_object_id", ",", "parameters", ",", "custom_headers", ":custom_headers", ")", ".", "value!", "nil", "end" ]
Update an existing application. @param application_object_id [String] Application object ID. @param parameters [ApplicationUpdateParameters] Parameters to update an existing application. @param custom_headers [Hash{String => String}] A hash of custom headers that will be added to the HTTP request.
[ "Update", "an", "existing", "application", "." ]
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/applications.rb#L384-L387