id int32 0 24.9k | repo stringlengths 5 58 | path stringlengths 9 168 | func_name stringlengths 9 130 | original_string stringlengths 66 10.5k | language stringclasses 1 value | code stringlengths 66 10.5k | code_tokens list | docstring stringlengths 8 16k | docstring_tokens list | sha stringlengths 40 40 | url stringlengths 94 266 |
|---|---|---|---|---|---|---|---|---|---|---|---|
13,600 | Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_storage_classification_mappings.rb | Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10.ReplicationStorageClassificationMappings.get_with_http_info | def get_with_http_info(fabric_name, storage_classification_name, storage_classification_mapping_name, custom_headers:nil)
get_async(fabric_name, storage_classification_name, storage_classification_mapping_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(fabric_name, storage_classification_name, storage_classification_mapping_name, custom_headers:nil)
get_async(fabric_name, storage_classification_name, storage_classification_mapping_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"fabric_name",
",",
"storage_classification_name",
",",
"storage_classification_mapping_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"fabric_name",
",",
"storage_classification_name",
",",
"storage_classification_mapping_nam... | Gets the details of a storage classification mapping.
Gets the details of the specified storage classification mapping.
@param fabric_name [String] Fabric name.
@param storage_classification_name [String] Storage classification name.
@param storage_classification_mapping_name [String] Storage classification
mapping 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",
"storage",
"classification",
"mapping",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_storage_classification_mappings.rb#L57-L59 |
13,601 | Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_luisauthoring/lib/2.0/generated/azure_cognitiveservices_luisauthoring/examples.rb | Azure::CognitiveServices::LuisAuthoring::V2_0.Examples.delete_with_http_info | def delete_with_http_info(app_id, version_id, example_id, custom_headers:nil)
delete_async(app_id, version_id, example_id, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(app_id, version_id, example_id, custom_headers:nil)
delete_async(app_id, version_id, example_id, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"app_id",
",",
"version_id",
",",
"example_id",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"app_id",
",",
"version_id",
",",
"example_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] | Deletes the labeled example utterances with the specified ID from a version
of the application.
@param app_id The application ID.
@param version_id [String] The version ID.
@param example_id [Integer] The example ID.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Deletes",
"the",
"labeled",
"example",
"utterances",
"with",
"the",
"specified",
"ID",
"from",
"a",
"version",
"of",
"the",
"application",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_luisauthoring/lib/2.0/generated/azure_cognitiveservices_luisauthoring/examples.rb#L441-L443 |
13,602 | Azure/azure-sdk-for-ruby | management/azure_mgmt_authorization/lib/2015-07-01/generated/azure_mgmt_authorization/permissions.rb | Azure::Authorization::Mgmt::V2015_07_01.Permissions.list_for_resource_group_as_lazy | def list_for_resource_group_as_lazy(resource_group_name, custom_headers:nil)
response = list_for_resource_group_async(resource_group_name, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_for_resource_group_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | ruby | def list_for_resource_group_as_lazy(resource_group_name, custom_headers:nil)
response = list_for_resource_group_async(resource_group_name, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_for_resource_group_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | [
"def",
"list_for_resource_group_as_lazy",
"(",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_for_resource_group_async",
"(",
"resource_group_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"unless",
"response",
... | Gets all permissions the caller has for a resource group.
@param resource_group_name [String] The name of the resource group to get the
permissions for. The name is case insensitive.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [PermissionGetResult] which provide lazy access to pages of the
response. | [
"Gets",
"all",
"permissions",
"the",
"caller",
"has",
"for",
"a",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_authorization/lib/2015-07-01/generated/azure_mgmt_authorization/permissions.rb#L420-L429 |
13,603 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb | Azure::ContainerService::Mgmt::V2019_02_01.ManagedClusters.get_upgrade_profile | def get_upgrade_profile(resource_group_name, resource_name, custom_headers:nil)
response = get_upgrade_profile_async(resource_group_name, resource_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_upgrade_profile(resource_group_name, resource_name, custom_headers:nil)
response = get_upgrade_profile_async(resource_group_name, resource_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_upgrade_profile",
"(",
"resource_group_name",
",",
"resource_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_upgrade_profile_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"v... | Gets upgrade profile for a managed cluster.
Gets the details of the upgrade profile for a managed cluster with a
specified resource group and name.
@param resource_group_name [String] The name of the resource group.
@param resource_name [String] The name of the managed cluster resource.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ManagedClusterUpgradeProfile] operation results. | [
"Gets",
"upgrade",
"profile",
"for",
"a",
"managed",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb#L228-L231 |
13,604 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb | Azure::ContainerService::Mgmt::V2019_02_01.ManagedClusters.list_cluster_admin_credentials | def list_cluster_admin_credentials(resource_group_name, resource_name, custom_headers:nil)
response = list_cluster_admin_credentials_async(resource_group_name, resource_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_cluster_admin_credentials(resource_group_name, resource_name, custom_headers:nil)
response = list_cluster_admin_credentials_async(resource_group_name, resource_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_cluster_admin_credentials",
"(",
"resource_group_name",
",",
"resource_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_cluster_admin_credentials_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"custom_headers",
":custom_header... | Gets cluster admin credential of a managed cluster.
Gets cluster admin credential of the managed cluster with a specified
resource group and name.
@param resource_group_name [String] The name of the resource group.
@param resource_name [String] The name of the managed cluster resource.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CredentialResults] operation results. | [
"Gets",
"cluster",
"admin",
"credential",
"of",
"a",
"managed",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb#L439-L442 |
13,605 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb | Azure::ContainerService::Mgmt::V2019_02_01.ManagedClusters.list_cluster_user_credentials | def list_cluster_user_credentials(resource_group_name, resource_name, custom_headers:nil)
response = list_cluster_user_credentials_async(resource_group_name, resource_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_cluster_user_credentials(resource_group_name, resource_name, custom_headers:nil)
response = list_cluster_user_credentials_async(resource_group_name, resource_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_cluster_user_credentials",
"(",
"resource_group_name",
",",
"resource_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_cluster_user_credentials_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"custom_headers",
":custom_headers"... | Gets cluster user credential of a managed cluster.
Gets cluster user credential of the managed cluster with a specified resource
group and name.
@param resource_group_name [String] The name of the resource group.
@param resource_name [String] The name of the managed cluster resource.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CredentialResults] operation results. | [
"Gets",
"cluster",
"user",
"credential",
"of",
"a",
"managed",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb#L541-L544 |
13,606 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb | Azure::ContainerService::Mgmt::V2019_02_01.ManagedClusters.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, resource_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, resource_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, resource_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, resource_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"resource_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"resource_name",
",",
"parameters",
",",
"custom_headers",
"... | Updates tags on a managed cluster.
Updates a managed cluster with the specified tags.
@param resource_group_name [String] The name of the resource group.
@param resource_name [String] The name of the managed cluster resource.
@param parameters [TagsObject] Parameters supplied to the Update Managed
Cluster Tags operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"tags",
"on",
"a",
"managed",
"cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2019-02-01/generated/azure_mgmt_container_service/managed_clusters.rb#L1116-L1118 |
13,607 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_service/lib/2017-07-01/generated/azure_mgmt_container_service/container_services.rb | Azure::ContainerService::Mgmt::V2017_07_01.ContainerServices.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, container_service_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, container_service_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, container_service_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, container_service_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"container_service_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"container_service_name",
",",
"parameters",
... | Creates or updates a container service.
Creates or updates a container service with the specified configuration of
orchestrator, masters, and agents.
@param resource_group_name [String] The name of the resource group.
@param container_service_name [String] The name of the container service in
the specified subscription and resource group.
@param parameters [ContainerService] Parameters supplied to the Create or
Update a Container 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",
"a",
"container",
"service",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_service/lib/2017-07-01/generated/azure_mgmt_container_service/container_services.rb#L467-L469 |
13,608 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_runs.rb | Azure::Logic::Mgmt::V2016_06_01.WorkflowRuns.list | def list(resource_group_name, workflow_name, top:nil, filter:nil, custom_headers:nil)
first_page = list_as_lazy(resource_group_name, workflow_name, top:top, filter:filter, custom_headers:custom_headers)
first_page.get_all_items
end | ruby | def list(resource_group_name, workflow_name, top:nil, filter:nil, custom_headers:nil)
first_page = list_as_lazy(resource_group_name, workflow_name, top:top, filter:filter, custom_headers:custom_headers)
first_page.get_all_items
end | [
"def",
"list",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"top",
":",
"nil",
",",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"first_page",
"=",
"list_as_lazy",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"top",
":",
... | Gets a list of workflow runs.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param top [Integer] The number of items to be included in the result.
@param filter [String] The filter to apply on the operation. Options for
filters include: Status, StartTime, and ClientTrackingId.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array<WorkflowRun>] operation results. | [
"Gets",
"a",
"list",
"of",
"workflow",
"runs",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_runs.rb#L37-L40 |
13,609 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_runs.rb | Azure::Logic::Mgmt::V2016_06_01.WorkflowRuns.get_with_http_info | def get_with_http_info(resource_group_name, workflow_name, run_name, custom_headers:nil)
get_async(resource_group_name, workflow_name, run_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, workflow_name, run_name, custom_headers:nil)
get_async(resource_group_name, workflow_name, run_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"run_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"run_name",
",",
"custom_headers",
":custom_headers",
")",
".",
... | Gets a workflow run.
@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 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",
"workflow",
"run",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_runs.rb#L152-L154 |
13,610 | Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/group.rb | Azure::ApiManagement::Mgmt::V2018_01_01.Group.get_with_http_info | def get_with_http_info(resource_group_name, service_name, group_id, custom_headers:nil)
get_async(resource_group_name, service_name, group_id, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, service_name, group_id, custom_headers:nil)
get_async(resource_group_name, service_name, group_id, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"group_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"group_id",
",",
"custom_headers",
":custom_headers",
")",
".",
... | Gets the details of the group 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 group_id [String] Group identifier. Must be unique in the current API
Management service instance.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"details",
"of",
"the",
"group",
"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/group.rb#L286-L288 |
13,611 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/available_resource_group_delegations.rb | Azure::Network::Mgmt::V2019_02_01.AvailableResourceGroupDelegations.list | def list(location, resource_group_name, custom_headers:nil)
first_page = list_as_lazy(location, resource_group_name, custom_headers:custom_headers)
first_page.get_all_items
end | ruby | def list(location, resource_group_name, custom_headers:nil)
first_page = list_as_lazy(location, resource_group_name, custom_headers:custom_headers)
first_page.get_all_items
end | [
"def",
"list",
"(",
"location",
",",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"first_page",
"=",
"list_as_lazy",
"(",
"location",
",",
"resource_group_name",
",",
"custom_headers",
":custom_headers",
")",
"first_page",
".",
"get_all_items",
"en... | Gets all of the available subnet delegations for this resource group in this
region.
@param location [String] The location of the domain name.
@param resource_group_name [String] The name of the resource group.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array<AvailableDelegation>] operation results. | [
"Gets",
"all",
"of",
"the",
"available",
"subnet",
"delegations",
"for",
"this",
"resource",
"group",
"in",
"this",
"region",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/available_resource_group_delegations.rb#L35-L38 |
13,612 | Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_images.rb | Azure::Compute::Mgmt::V2018_04_01.VirtualMachineImages.list_offers | def list_offers(location, publisher_name, custom_headers:nil)
response = list_offers_async(location, publisher_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_offers(location, publisher_name, custom_headers:nil)
response = list_offers_async(location, publisher_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_offers",
"(",
"location",
",",
"publisher_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_offers_async",
"(",
"location",
",",
"publisher_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body... | Gets a list of virtual machine image offers for the specified location and
publisher.
@param location [String] The name of a supported Azure region.
@param publisher_name [String] A valid image publisher.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array] operation results. | [
"Gets",
"a",
"list",
"of",
"virtual",
"machine",
"image",
"offers",
"for",
"the",
"specified",
"location",
"and",
"publisher",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_images.rb#L267-L270 |
13,613 | Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_images.rb | Azure::Compute::Mgmt::V2018_04_01.VirtualMachineImages.list_publishers | def list_publishers(location, custom_headers:nil)
response = list_publishers_async(location, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_publishers(location, custom_headers:nil)
response = list_publishers_async(location, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_publishers",
"(",
"location",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_publishers_async",
"(",
"location",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
... | Gets a list of virtual machine image publishers for the specified Azure
location.
@param location [String] The name of a supported Azure region.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array] operation results. | [
"Gets",
"a",
"list",
"of",
"virtual",
"machine",
"image",
"publishers",
"for",
"the",
"specified",
"Azure",
"location",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/virtual_machine_images.rb#L377-L380 |
13,614 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.cancel_at_management_group | def cancel_at_management_group(management_group_id, remediation_name, custom_headers:nil)
response = cancel_at_management_group_async(management_group_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def cancel_at_management_group(management_group_id, remediation_name, custom_headers:nil)
response = cancel_at_management_group_async(management_group_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"cancel_at_management_group",
"(",
"management_group_id",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"cancel_at_management_group_async",
"(",
"management_group_id",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers"... | Cancels a remediation at management group scope.
@param management_group_id [String] Management group ID.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Cancels",
"a",
"remediation",
"at",
"management",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L133-L136 |
13,615 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.create_or_update_at_management_group_with_http_info | def create_or_update_at_management_group_with_http_info(management_group_id, remediation_name, parameters, custom_headers:nil)
create_or_update_at_management_group_async(management_group_id, remediation_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_at_management_group_with_http_info(management_group_id, remediation_name, parameters, custom_headers:nil)
create_or_update_at_management_group_async(management_group_id, remediation_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_at_management_group_with_http_info",
"(",
"management_group_id",
",",
"remediation_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_at_management_group_async",
"(",
"management_group_id",
",",
"remediation_name",
",",
... | Creates or updates a remediation at management group scope.
@param management_group_id [String] Management group ID.
@param remediation_name [String] The name of the remediation.
@param parameters [Remediation] The remediation 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",
"or",
"updates",
"a",
"remediation",
"at",
"management",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L341-L343 |
13,616 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.get_at_management_group | def get_at_management_group(management_group_id, remediation_name, custom_headers:nil)
response = get_at_management_group_async(management_group_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_at_management_group(management_group_id, remediation_name, custom_headers:nil)
response = get_at_management_group_async(management_group_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_at_management_group",
"(",
"management_group_id",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_at_management_group_async",
"(",
"management_group_id",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")... | Gets an existing remediation at management group scope.
@param management_group_id [String] Management group ID.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Gets",
"an",
"existing",
"remediation",
"at",
"management",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L437-L440 |
13,617 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.delete_at_management_group | def delete_at_management_group(management_group_id, remediation_name, custom_headers:nil)
response = delete_at_management_group_async(management_group_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def delete_at_management_group(management_group_id, remediation_name, custom_headers:nil)
response = delete_at_management_group_async(management_group_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"delete_at_management_group",
"(",
"management_group_id",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_at_management_group_async",
"(",
"management_group_id",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers"... | Deletes an existing remediation at management group scope.
@param management_group_id [String] Management group ID.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Deletes",
"an",
"existing",
"remediation",
"at",
"management",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L529-L532 |
13,618 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.cancel_at_subscription | def cancel_at_subscription(remediation_name, custom_headers:nil)
response = cancel_at_subscription_async(remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def cancel_at_subscription(remediation_name, custom_headers:nil)
response = cancel_at_subscription_async(remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"cancel_at_subscription",
"(",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"cancel_at_subscription_async",
"(",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
... | Cancels a remediation at subscription scope.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Cancels",
"a",
"remediation",
"at",
"subscription",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L715-L718 |
13,619 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.create_or_update_at_subscription | def create_or_update_at_subscription(remediation_name, parameters, custom_headers:nil)
response = create_or_update_at_subscription_async(remediation_name, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create_or_update_at_subscription(remediation_name, parameters, custom_headers:nil)
response = create_or_update_at_subscription_async(remediation_name, parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create_or_update_at_subscription",
"(",
"remediation_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_at_subscription_async",
"(",
"remediation_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")... | Creates or updates a remediation at subscription scope.
@param remediation_name [String] The name of the remediation.
@param parameters [Remediation] The remediation parameters.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Creates",
"or",
"updates",
"a",
"remediation",
"at",
"subscription",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L899-L902 |
13,620 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.get_at_subscription | def get_at_subscription(remediation_name, custom_headers:nil)
response = get_at_subscription_async(remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_at_subscription(remediation_name, custom_headers:nil)
response = get_at_subscription_async(remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_at_subscription",
"(",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_at_subscription_async",
"(",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"resp... | Gets an existing remediation at subscription scope.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Gets",
"an",
"existing",
"remediation",
"at",
"subscription",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L1007-L1010 |
13,621 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.delete_at_subscription | def delete_at_subscription(remediation_name, custom_headers:nil)
response = delete_at_subscription_async(remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def delete_at_subscription(remediation_name, custom_headers:nil)
response = delete_at_subscription_async(remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"delete_at_subscription",
"(",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_at_subscription_async",
"(",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
... | Deletes an existing remediation at subscription scope.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Deletes",
"an",
"existing",
"remediation",
"at",
"subscription",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L1095-L1098 |
13,622 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.cancel_at_resource_group | def cancel_at_resource_group(resource_group_name, remediation_name, custom_headers:nil)
response = cancel_at_resource_group_async(resource_group_name, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def cancel_at_resource_group(resource_group_name, remediation_name, custom_headers:nil)
response = cancel_at_resource_group_async(resource_group_name, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"cancel_at_resource_group",
"(",
"resource_group_name",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"cancel_at_resource_group_async",
"(",
"resource_group_name",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
... | Cancels a remediation at resource group scope.
@param resource_group_name [String] Resource group name.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Cancels",
"a",
"remediation",
"at",
"resource",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L1283-L1286 |
13,623 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.get_at_resource_group | def get_at_resource_group(resource_group_name, remediation_name, custom_headers:nil)
response = get_at_resource_group_async(resource_group_name, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_at_resource_group(resource_group_name, remediation_name, custom_headers:nil)
response = get_at_resource_group_async(resource_group_name, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_at_resource_group",
"(",
"resource_group_name",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_at_resource_group_async",
"(",
"resource_group_name",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
... | Gets an existing remediation at resource group scope.
@param resource_group_name [String] Resource group name.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Gets",
"an",
"existing",
"remediation",
"at",
"resource",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L1587-L1590 |
13,624 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.delete_at_resource_group | def delete_at_resource_group(resource_group_name, remediation_name, custom_headers:nil)
response = delete_at_resource_group_async(resource_group_name, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def delete_at_resource_group(resource_group_name, remediation_name, custom_headers:nil)
response = delete_at_resource_group_async(resource_group_name, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"delete_at_resource_group",
"(",
"resource_group_name",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_at_resource_group_async",
"(",
"resource_group_name",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
... | Deletes an existing remediation at resource group scope.
@param resource_group_name [String] Resource group name.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Deletes",
"an",
"existing",
"remediation",
"at",
"resource",
"group",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L1679-L1682 |
13,625 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.cancel_at_resource | def cancel_at_resource(resource_id, remediation_name, custom_headers:nil)
response = cancel_at_resource_async(resource_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def cancel_at_resource(resource_id, remediation_name, custom_headers:nil)
response = cancel_at_resource_async(resource_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"cancel_at_resource",
"(",
"resource_id",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"cancel_at_resource_async",
"(",
"resource_id",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"r... | Cancel a remediation at resource scope.
@param resource_id [String] Resource ID.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Cancel",
"a",
"remediation",
"at",
"resource",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L1870-L1873 |
13,626 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.get_at_resource | def get_at_resource(resource_id, remediation_name, custom_headers:nil)
response = get_at_resource_async(resource_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_at_resource(resource_id, remediation_name, custom_headers:nil)
response = get_at_resource_async(resource_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_at_resource",
"(",
"resource_id",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_at_resource_async",
"(",
"resource_id",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"respons... | Gets an existing remediation at resource scope.
@param resource_id [String] Resource ID.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Gets",
"an",
"existing",
"remediation",
"at",
"resource",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L2173-L2176 |
13,627 | Azure/azure-sdk-for-ruby | management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb | Azure::PolicyInsights::Mgmt::V2018_07_01_preview.Remediations.delete_at_resource | def delete_at_resource(resource_id, remediation_name, custom_headers:nil)
response = delete_at_resource_async(resource_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def delete_at_resource(resource_id, remediation_name, custom_headers:nil)
response = delete_at_resource_async(resource_id, remediation_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"delete_at_resource",
"(",
"resource_id",
",",
"remediation_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_at_resource_async",
"(",
"resource_id",
",",
"remediation_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"r... | Deletes an existing remediation at individual resource scope.
@param resource_id [String] Resource ID.
@param remediation_name [String] The name of the remediation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Remediation] operation results. | [
"Deletes",
"an",
"existing",
"remediation",
"at",
"individual",
"resource",
"scope",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2018-07-01-preview/generated/azure_mgmt_policy_insights/remediations.rb#L2265-L2268 |
13,628 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_registry/lib/2016-06-27-preview/generated/azure_mgmt_container_registry/registries.rb | Azure::ContainerRegistry::Mgmt::V2016_06_27_preview.Registries.check_name_availability | def check_name_availability(registry_name_check_request, custom_headers:nil)
response = check_name_availability_async(registry_name_check_request, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def check_name_availability(registry_name_check_request, custom_headers:nil)
response = check_name_availability_async(registry_name_check_request, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"check_name_availability",
"(",
"registry_name_check_request",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"check_name_availability_async",
"(",
"registry_name_check_request",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",... | Checks whether the container registry name is available for use. The name
must contain only alphanumeric characters, be globally unique, and between 5
and 60 characters in length.
@param registry_name_check_request [RegistryNameCheckRequest] The object
containing information for the availability request.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RegistryNameStatus] operation results. | [
"Checks",
"whether",
"the",
"container",
"registry",
"name",
"is",
"available",
"for",
"use",
".",
"The",
"name",
"must",
"contain",
"only",
"alphanumeric",
"characters",
"be",
"globally",
"unique",
"and",
"between",
"5",
"and",
"60",
"characters",
"in",
"leng... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_registry/lib/2016-06-27-preview/generated/azure_mgmt_container_registry/registries.rb#L36-L39 |
13,629 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_registry/lib/2016-06-27-preview/generated/azure_mgmt_container_registry/registries.rb | Azure::ContainerRegistry::Mgmt::V2016_06_27_preview.Registries.get_credentials | def get_credentials(resource_group_name, registry_name, custom_headers:nil)
response = get_credentials_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_credentials(resource_group_name, registry_name, custom_headers:nil)
response = get_credentials_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_credentials",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_credentials_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
... | Gets the administrator login credentials for the specified container
registry.
@param resource_group_name [String] The name of the resource group to which
the container registry belongs.
@param registry_name [String] The name of the container registry.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RegistryCredentials] operation results. | [
"Gets",
"the",
"administrator",
"login",
"credentials",
"for",
"the",
"specified",
"container",
"registry",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_registry/lib/2016-06-27-preview/generated/azure_mgmt_container_registry/registries.rb#L718-L721 |
13,630 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_registry/lib/2016-06-27-preview/generated/azure_mgmt_container_registry/registries.rb | Azure::ContainerRegistry::Mgmt::V2016_06_27_preview.Registries.regenerate_credentials | def regenerate_credentials(resource_group_name, registry_name, custom_headers:nil)
response = regenerate_credentials_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def regenerate_credentials(resource_group_name, registry_name, custom_headers:nil)
response = regenerate_credentials_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"regenerate_credentials",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"regenerate_credentials_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":custom_headers",
")",
"."... | Regenerates the administrator login credentials for the specified container
registry.
@param resource_group_name [String] The name of the resource group to which
the container registry belongs.
@param registry_name [String] The name of the container registry.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RegistryCredentials] operation results. | [
"Regenerates",
"the",
"administrator",
"login",
"credentials",
"for",
"the",
"specified",
"container",
"registry",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_registry/lib/2016-06-27-preview/generated/azure_mgmt_container_registry/registries.rb#L816-L819 |
13,631 | Azure/azure-sdk-for-ruby | management/azure_mgmt_resources/lib/2016-02-01/generated/azure_mgmt_resources/tags.rb | Azure::Resources::Mgmt::V2016_02_01.Tags.delete_value | def delete_value(tag_name, tag_value, custom_headers:nil)
response = delete_value_async(tag_name, tag_value, custom_headers:custom_headers).value!
nil
end | ruby | def delete_value(tag_name, tag_value, custom_headers:nil)
response = delete_value_async(tag_name, tag_value, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete_value",
"(",
"tag_name",
",",
"tag_value",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_value_async",
"(",
"tag_name",
",",
"tag_value",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Delete a subscription resource tag value.
@param tag_name [String] The name of the tag.
@param tag_value [String] The value of the tag.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Delete",
"a",
"subscription",
"resource",
"tag",
"value",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_resources/lib/2016-02-01/generated/azure_mgmt_resources/tags.rb#L33-L36 |
13,632 | Azure/azure-sdk-for-ruby | management/azure_mgmt_resources/lib/2016-02-01/generated/azure_mgmt_resources/tags.rb | Azure::Resources::Mgmt::V2016_02_01.Tags.create_or_update_value | def create_or_update_value(tag_name, tag_value, custom_headers:nil)
response = create_or_update_value_async(tag_name, tag_value, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create_or_update_value(tag_name, tag_value, custom_headers:nil)
response = create_or_update_value_async(tag_name, tag_value, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create_or_update_value",
"(",
"tag_name",
",",
"tag_value",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_value_async",
"(",
"tag_name",
",",
"tag_value",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
... | Create a subscription resource tag value.
@param tag_name [String] The name of the tag.
@param tag_value [String] The value of the tag.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [TagValue] operation results. | [
"Create",
"a",
"subscription",
"resource",
"tag",
"value",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_resources/lib/2016-02-01/generated/azure_mgmt_resources/tags.rb#L115-L118 |
13,633 | Azure/azure-sdk-for-ruby | management/azure_mgmt_resources/lib/2016-02-01/generated/azure_mgmt_resources/tags.rb | Azure::Resources::Mgmt::V2016_02_01.Tags.create_or_update | def create_or_update(tag_name, custom_headers:nil)
response = create_or_update_async(tag_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def create_or_update(tag_name, custom_headers:nil)
response = create_or_update_async(tag_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"create_or_update",
"(",
"tag_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_async",
"(",
"tag_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?"... | Create a subscription resource tag.
@param tag_name [String] The name of the tag.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [TagDetails] operation results. | [
"Create",
"a",
"subscription",
"resource",
"tag",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_resources/lib/2016-02-01/generated/azure_mgmt_resources/tags.rb#L216-L219 |
13,634 | Azure/azure-sdk-for-ruby | management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_compilation_job_operations.rb | Azure::Automation::Mgmt::V2015_10_31.DscCompilationJobOperations.get_with_http_info | def get_with_http_info(resource_group_name, automation_account_name, compilation_job_id, custom_headers:nil)
get_async(resource_group_name, automation_account_name, compilation_job_id, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, automation_account_name, compilation_job_id, custom_headers:nil)
get_async(resource_group_name, automation_account_name, compilation_job_id, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"compilation_job_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"compilation_job_id",
",",
"custom_heade... | Retrieve the Dsc configuration compilation job identified by job id.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param compilation_job_id The Dsc configuration compilation job id.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Retrieve",
"the",
"Dsc",
"configuration",
"compilation",
"job",
"identified",
"by",
"job",
"id",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/dsc_compilation_job_operations.rb#L164-L166 |
13,635 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_registry/lib/2017-06-01-preview/generated/azure_mgmt_container_registry/registries.rb | Azure::ContainerRegistry::Mgmt::V2017_06_01_preview.Registries.list_credentials | def list_credentials(resource_group_name, registry_name, custom_headers:nil)
response = list_credentials_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_credentials(resource_group_name, registry_name, custom_headers:nil)
response = list_credentials_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_credentials",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_credentials_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!"... | Lists the login credentials for the specified container registry.
@param resource_group_name [String] The name of the resource group to which
the container registry belongs.
@param registry_name [String] The name of the container registry.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [RegistryListCredentialsResult] operation results. | [
"Lists",
"the",
"login",
"credentials",
"for",
"the",
"specified",
"container",
"registry",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_registry/lib/2017-06-01-preview/generated/azure_mgmt_container_registry/registries.rb#L546-L549 |
13,636 | Azure/azure-sdk-for-ruby | management/azure_mgmt_event_hub/lib/2018-01-01-preview/generated/azure_mgmt_event_hub/clusters.rb | Azure::EventHub::Mgmt::V2018_01_01_preview.Clusters.list_available_clusters | def list_available_clusters(custom_headers:nil)
response = list_available_clusters_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_available_clusters(custom_headers:nil)
response = list_available_clusters_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_available_clusters",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_available_clusters_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | List the quantity of available pre-provisioned Event Hubs Clusters, indexed
by Azure region.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [AvailableClustersList] operation results. | [
"List",
"the",
"quantity",
"of",
"available",
"pre",
"-",
"provisioned",
"Event",
"Hubs",
"Clusters",
"indexed",
"by",
"Azure",
"region",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_hub/lib/2018-01-01-preview/generated/azure_mgmt_event_hub/clusters.rb#L34-L37 |
13,637 | Azure/azure-sdk-for-ruby | management/azure_mgmt_event_hub/lib/2018-01-01-preview/generated/azure_mgmt_event_hub/clusters.rb | Azure::EventHub::Mgmt::V2018_01_01_preview.Clusters.list_namespaces | def list_namespaces(resource_group_name, cluster_name, custom_headers:nil)
response = list_namespaces_async(resource_group_name, cluster_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_namespaces(resource_group_name, cluster_name, custom_headers:nil)
response = list_namespaces_async(resource_group_name, cluster_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_namespaces",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_namespaces_async",
"(",
"resource_group_name",
",",
"cluster_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
... | List all Event Hubs Namespace IDs in an Event Hubs Dedicated Cluster.
@param resource_group_name [String] Name of the resource group within the
Azure subscription.
@param cluster_name [String] The name of the Event Hubs Cluster.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EHNamespaceIdListResult] operation results. | [
"List",
"all",
"Event",
"Hubs",
"Namespace",
"IDs",
"in",
"an",
"Event",
"Hubs",
"Dedicated",
"Cluster",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_hub/lib/2018-01-01-preview/generated/azure_mgmt_event_hub/clusters.rb#L448-L451 |
13,638 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_instance/lib/2018-06-01/generated/azure_mgmt_container_instance/container_groups.rb | Azure::ContainerInstance::Mgmt::V2018_06_01.ContainerGroups.stop | def stop(resource_group_name, container_group_name, custom_headers:nil)
response = stop_async(resource_group_name, container_group_name, custom_headers:custom_headers).value!
nil
end | ruby | def stop(resource_group_name, container_group_name, custom_headers:nil)
response = stop_async(resource_group_name, container_group_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"stop",
"(",
"resource_group_name",
",",
"container_group_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"stop_async",
"(",
"resource_group_name",
",",
"container_group_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",... | Stops all containers in a container group.
Stops all containers in a contaienr group. Compute resources will be
deallocated and billing will stop.
@param resource_group_name [String] The name of the resource group.
@param container_group_name [String] The name of the container group.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Stops",
"all",
"containers",
"in",
"a",
"container",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_instance/lib/2018-06-01/generated/azure_mgmt_container_instance/container_groups.rb#L653-L656 |
13,639 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_triggers.rb | Azure::Logic::Mgmt::V2016_06_01.WorkflowTriggers.list_callback_url_with_http_info | def list_callback_url_with_http_info(resource_group_name, workflow_name, trigger_name, custom_headers:nil)
list_callback_url_async(resource_group_name, workflow_name, trigger_name, custom_headers:custom_headers).value!
end | ruby | def list_callback_url_with_http_info(resource_group_name, workflow_name, trigger_name, custom_headers:nil)
list_callback_url_async(resource_group_name, workflow_name, trigger_name, custom_headers:custom_headers).value!
end | [
"def",
"list_callback_url_with_http_info",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"trigger_name",
",",
"custom_headers",
":",
"nil",
")",
"list_callback_url_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"trigger_name",
",",
"custom_headers",... | Get the callback URL for a workflow trigger.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param trigger_name [String] The workflow trigger 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",
"the",
"callback",
"URL",
"for",
"a",
"workflow",
"trigger",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_triggers.rb#L611-L613 |
13,640 | Azure/azure-sdk-for-ruby | management/azure_mgmt_event_grid/lib/2018-01-01/generated/azure_mgmt_event_grid/event_subscriptions.rb | Azure::EventGrid::Mgmt::V2018_01_01.EventSubscriptions.get_full_url | def get_full_url(scope, event_subscription_name, custom_headers:nil)
response = get_full_url_async(scope, event_subscription_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_full_url(scope, event_subscription_name, custom_headers:nil)
response = get_full_url_async(scope, event_subscription_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_full_url",
"(",
"scope",
",",
"event_subscription_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_full_url_async",
"(",
"scope",
",",
"event_subscription_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
... | Get full URL of an event subscription
Get the full endpoint URL for an event subscription
@param scope [String] The scope of the event subscription. The scope can be a
subscription, or a resource group, or a top level resource belonging to a
resource provider namespace, or an EventGrid topic. For example, use
'/subscriptions/{subscriptionId}/' for a subscription,
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}' for a
resource group, and
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}'
for a resource, and
'/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.EventGrid/topics/{topicName}'
for an EventGrid topic.
@param event_subscription_name [String] Name of the event subscription
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [EventSubscriptionFullUrl] operation results. | [
"Get",
"full",
"URL",
"of",
"an",
"event",
"subscription"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_event_grid/lib/2018-01-01/generated/azure_mgmt_event_grid/event_subscriptions.rb#L369-L372 |
13,641 | Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb | Azure::GraphRbac::V1_6.ServicePrincipals.list_owners | def list_owners(object_id, custom_headers:nil)
response = list_owners_async(object_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_owners(object_id, custom_headers:nil)
response = list_owners_async(object_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_owners",
"(",
"object_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_owners_async",
"(",
"object_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end... | Directory objects that are owners of this service principal.
The owners are a set of non-admin users who are allowed to modify this
object.
@param object_id [String] The object ID of the service principal for which to
get owners.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [DirectoryObjectListResult] operation results. | [
"Directory",
"objects",
"that",
"are",
"owners",
"of",
"this",
"service",
"principal",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb#L387-L390 |
13,642 | Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb | Azure::GraphRbac::V1_6.ServicePrincipals.list_key_credentials | def list_key_credentials(object_id, custom_headers:nil)
response = list_key_credentials_async(object_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_key_credentials(object_id, custom_headers:nil)
response = list_key_credentials_async(object_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_key_credentials",
"(",
"object_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_key_credentials_async",
"(",
"object_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
"."... | Get the keyCredentials associated with the specified service principal.
@param object_id [String] The object ID of the service principal for which to
get keyCredentials.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [KeyCredentialListResult] operation results. | [
"Get",
"the",
"keyCredentials",
"associated",
"with",
"the",
"specified",
"service",
"principal",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb#L484-L487 |
13,643 | Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb | Azure::GraphRbac::V1_6.ServicePrincipals.update_key_credentials | def update_key_credentials(object_id, parameters, custom_headers:nil)
response = update_key_credentials_async(object_id, parameters, custom_headers:custom_headers).value!
nil
end | ruby | def update_key_credentials(object_id, parameters, custom_headers:nil)
response = update_key_credentials_async(object_id, parameters, custom_headers:custom_headers).value!
nil
end | [
"def",
"update_key_credentials",
"(",
"object_id",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_key_credentials_async",
"(",
"object_id",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"... | Update the keyCredentials associated with a service principal.
@param object_id [String] The object ID for which to get service principal
information.
@param parameters [KeyCredentialsUpdateParameters] Parameters to update the
keyCredentials of an existing service principal.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Update",
"the",
"keyCredentials",
"associated",
"with",
"a",
"service",
"principal",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb#L576-L579 |
13,644 | Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb | Azure::GraphRbac::V1_6.ServicePrincipals.list_password_credentials | def list_password_credentials(object_id, custom_headers:nil)
response = list_password_credentials_async(object_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_password_credentials(object_id, custom_headers:nil)
response = list_password_credentials_async(object_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_password_credentials",
"(",
"object_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_password_credentials_async",
"(",
"object_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"respon... | Gets the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [PasswordCredentialListResult] operation results. | [
"Gets",
"the",
"passwordCredentials",
"associated",
"with",
"a",
"service",
"principal",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb#L668-L671 |
13,645 | Azure/azure-sdk-for-ruby | data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb | Azure::GraphRbac::V1_6.ServicePrincipals.update_password_credentials | def update_password_credentials(object_id, parameters, custom_headers:nil)
response = update_password_credentials_async(object_id, parameters, custom_headers:custom_headers).value!
nil
end | ruby | def update_password_credentials(object_id, parameters, custom_headers:nil)
response = update_password_credentials_async(object_id, parameters, custom_headers:custom_headers).value!
nil
end | [
"def",
"update_password_credentials",
"(",
"object_id",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_password_credentials_async",
"(",
"object_id",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
... | Updates the passwordCredentials associated with a service principal.
@param object_id [String] The object ID of the service principal.
@param parameters [PasswordCredentialsUpdateParameters] Parameters to update
the passwordCredentials of an existing service principal.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Updates",
"the",
"passwordCredentials",
"associated",
"with",
"a",
"service",
"principal",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_graph_rbac/lib/1.6/generated/azure_graph_rbac/service_principals.rb#L757-L760 |
13,646 | Azure/azure-sdk-for-ruby | management/azure_mgmt_postgresql/lib/2017-12-01-preview/generated/azure_mgmt_postgresql/check_name_availability.rb | Azure::Postgresql::Mgmt::V2017_12_01_preview.CheckNameAvailability.execute | def execute(name_availability_request, custom_headers:nil)
response = execute_async(name_availability_request, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def execute(name_availability_request, custom_headers:nil)
response = execute_async(name_availability_request, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"execute",
"(",
"name_availability_request",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"execute_async",
"(",
"name_availability_request",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",... | Check the availability of name for resource
@param name_availability_request [NameAvailabilityRequest] The required
parameters for checking if resource name is available.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [NameAvailability] operation results. | [
"Check",
"the",
"availability",
"of",
"name",
"for",
"resource"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_postgresql/lib/2017-12-01-preview/generated/azure_mgmt_postgresql/check_name_availability.rb#L37-L40 |
13,647 | Azure/azure-sdk-for-ruby | management/azure_mgmt_machine_learning_services/lib/2018-03-01-preview/generated/azure_mgmt_machine_learning_services/machine_learning_compute.rb | Azure::MachineLearningServices::Mgmt::V2018_03_01_preview.MachineLearningCompute.list_by_workspace_with_http_info | def list_by_workspace_with_http_info(resource_group_name, workspace_name, skiptoken:nil, custom_headers:nil)
list_by_workspace_async(resource_group_name, workspace_name, skiptoken:skiptoken, custom_headers:custom_headers).value!
end | ruby | def list_by_workspace_with_http_info(resource_group_name, workspace_name, skiptoken:nil, custom_headers:nil)
list_by_workspace_async(resource_group_name, workspace_name, skiptoken:skiptoken, custom_headers:custom_headers).value!
end | [
"def",
"list_by_workspace_with_http_info",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"skiptoken",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"list_by_workspace_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"skiptoken",
":",
"skip... | Gets computes in specified workspace.
@param resource_group_name [String] Name of the resource group in which
workspace is located.
@param workspace_name [String] Name of Azure Machine Learning workspace.
@param skiptoken [String] Continuation token for pagination.
@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",
"computes",
"in",
"specified",
"workspace",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_machine_learning_services/lib/2018-03-01-preview/generated/azure_mgmt_machine_learning_services/machine_learning_compute.rb#L54-L56 |
13,648 | Azure/azure-sdk-for-ruby | management/azure_mgmt_machine_learning_services/lib/2018-03-01-preview/generated/azure_mgmt_machine_learning_services/machine_learning_compute.rb | Azure::MachineLearningServices::Mgmt::V2018_03_01_preview.MachineLearningCompute.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, workspace_name, compute_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, workspace_name, compute_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, workspace_name, compute_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, workspace_name, compute_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"compute_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"comput... | Creates or updates compute. This call will overwrite a compute if it exists.
This is a nonrecoverable operation. If your intent is to create a new
compute, do a GET first to verify that it does not exist yet.
@param resource_group_name [String] Name of the resource group in which
workspace is located.
@param workspace_name [String] Name of Azure Machine Learning workspace.
@param compute_name [String] Name of the Azure Machine Learning compute.
@param parameters [ComputeResource] Payload with Machine Learning compute
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",
"or",
"updates",
"compute",
".",
"This",
"call",
"will",
"overwrite",
"a",
"compute",
"if",
"it",
"exists",
".",
"This",
"is",
"a",
"nonrecoverable",
"operation",
".",
"If",
"your",
"intent",
"is",
"to",
"create",
"a",
"new",
"compute",
"do",
... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_machine_learning_services/lib/2018-03-01-preview/generated/azure_mgmt_machine_learning_services/machine_learning_compute.rb#L500-L502 |
13,649 | Azure/azure-sdk-for-ruby | management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb | Azure::ServiceBus::Mgmt::V2015_08_01.Queues.delete_with_http_info | def delete_with_http_info(resource_group_name, namespace_name, queue_name, custom_headers:nil)
delete_async(resource_group_name, namespace_name, queue_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, namespace_name, queue_name, custom_headers:nil)
delete_async(resource_group_name, namespace_name, queue_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"custom_headers",
":custom_headers",
... | Deletes a queue from the specified namespace in a resource group.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param namespace_name [String] The namespace name
@param queue_name [String] The queue 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",
"queue",
"from",
"the",
"specified",
"namespace",
"in",
"a",
"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/queues.rb#L270-L272 |
13,650 | Azure/azure-sdk-for-ruby | management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb | Azure::ServiceBus::Mgmt::V2015_08_01.Queues.get_with_http_info | def get_with_http_info(resource_group_name, namespace_name, queue_name, custom_headers:nil)
get_async(resource_group_name, namespace_name, queue_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, namespace_name, queue_name, custom_headers:nil)
get_async(resource_group_name, namespace_name, queue_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"custom_headers",
":custom_headers",
")",
... | Returns a description for the specified queue.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param namespace_name [String] The namespace name
@param queue_name [String] The queue 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",
"a",
"description",
"for",
"the",
"specified",
"queue",
"."
] | 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/queues.rb#L365-L367 |
13,651 | Azure/azure-sdk-for-ruby | management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb | Azure::ServiceBus::Mgmt::V2015_08_01.Queues.list_authorization_rules_with_http_info | def list_authorization_rules_with_http_info(resource_group_name, namespace_name, queue_name, custom_headers:nil)
list_authorization_rules_async(resource_group_name, namespace_name, queue_name, custom_headers:custom_headers).value!
end | ruby | def list_authorization_rules_with_http_info(resource_group_name, namespace_name, queue_name, custom_headers:nil)
list_authorization_rules_async(resource_group_name, namespace_name, queue_name, custom_headers:custom_headers).value!
end | [
"def",
"list_authorization_rules_with_http_info",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"custom_headers",
":",
"nil",
")",
"list_authorization_rules_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"cust... | Gets all authorization rules for a queue.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param namespace_name [String] The namespace name
@param queue_name [String] The queue 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",
"all",
"authorization",
"rules",
"for",
"a",
"queue",
"."
] | 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/queues.rb#L470-L472 |
13,652 | Azure/azure-sdk-for-ruby | management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb | Azure::ServiceBus::Mgmt::V2015_08_01.Queues.list_keys | def list_keys(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:nil)
response = list_keys_async(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_keys(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:nil)
response = list_keys_async(resource_group_name, namespace_name, queue_name, authorization_rule_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_keys",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
",",
"authorization_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_keys_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"queue_name",
... | Primary and secondary connection strings to the queue.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param namespace_name [String] The namespace name
@param queue_name [String] The queue 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 [ResourceListKeys] operation results. | [
"Primary",
"and",
"secondary",
"connection",
"strings",
"to",
"the",
"queue",
"."
] | 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/queues.rb#L1006-L1009 |
13,653 | Azure/azure-sdk-for-ruby | management/azure_mgmt_service_bus/lib/2015-08-01/generated/azure_mgmt_service_bus/queues.rb | Azure::ServiceBus::Mgmt::V2015_08_01.Queues.list_all_as_lazy | def list_all_as_lazy(resource_group_name, namespace_name, custom_headers:nil)
response = list_all_async(resource_group_name, namespace_name, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_all_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | ruby | def list_all_as_lazy(resource_group_name, namespace_name, custom_headers:nil)
response = list_all_async(resource_group_name, namespace_name, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_all_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | [
"def",
"list_all_as_lazy",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_all_async",
"(",
"resource_group_name",
",",
"namespace_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"u... | Gets the queues within a namespace.
@param resource_group_name [String] Name of the Resource group within the
Azure subscription.
@param namespace_name [String] The namespace name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [QueueListResult] which provide lazy access to pages of the response. | [
"Gets",
"the",
"queues",
"within",
"a",
"namespace",
"."
] | 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/queues.rb#L1416-L1425 |
13,654 | Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2017-12-01/generated/azure_mgmt_compute/virtual_machines.rb | Azure::Compute::Mgmt::V2017_12_01.VirtualMachines.instance_view | def instance_view(resource_group_name, vm_name, custom_headers:nil)
response = instance_view_async(resource_group_name, vm_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def instance_view(resource_group_name, vm_name, custom_headers:nil)
response = instance_view_async(resource_group_name, vm_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"instance_view",
"(",
"resource_group_name",
",",
"vm_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"instance_view_async",
"(",
"resource_group_name",
",",
"vm_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
... | Retrieves information about the run-time state of a virtual machine.
@param resource_group_name [String] The name of the resource group.
@param vm_name [String] The name of the virtual machine.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [VirtualMachineInstanceView] operation results. | [
"Retrieves",
"information",
"about",
"the",
"run",
"-",
"time",
"state",
"of",
"a",
"virtual",
"machine",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2017-12-01/generated/azure_mgmt_compute/virtual_machines.rb#L509-L512 |
13,655 | Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2017-12-01/generated/azure_mgmt_compute/virtual_machines.rb | Azure::Compute::Mgmt::V2017_12_01.VirtualMachines.begin_update_with_http_info | def begin_update_with_http_info(resource_group_name, vm_name, parameters, custom_headers:nil)
begin_update_async(resource_group_name, vm_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_with_http_info(resource_group_name, vm_name, parameters, custom_headers:nil)
begin_update_async(resource_group_name, vm_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_with_http_info",
"(",
"resource_group_name",
",",
"vm_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_async",
"(",
"resource_group_name",
",",
"vm_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")... | The operation to update a virtual machine.
@param resource_group_name [String] The name of the resource group.
@param vm_name [String] The name of the virtual machine.
@param parameters [VirtualMachineUpdate] Parameters supplied to the Update
Virtual Machine 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. | [
"The",
"operation",
"to",
"update",
"a",
"virtual",
"machine",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2017-12-01/generated/azure_mgmt_compute/virtual_machines.rb#L1554-L1556 |
13,656 | Azure/azure-sdk-for-ruby | management/azure_mgmt_compute/lib/2017-12-01/generated/azure_mgmt_compute/virtual_machines.rb | Azure::Compute::Mgmt::V2017_12_01.VirtualMachines.list_by_location_as_lazy | def list_by_location_as_lazy(location, custom_headers:nil)
response = list_by_location_async(location, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_by_location_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | ruby | def list_by_location_as_lazy(location, custom_headers:nil)
response = list_by_location_async(location, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_by_location_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end | [
"def",
"list_by_location_as_lazy",
"(",
"location",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_location_async",
"(",
"location",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"unless",
"response",
".",
"nil?",
"page",
"=",
"r... | Gets all the virtual machines under the specified subscription for the
specified location.
@param location [String] The location for which virtual machines under the
subscription are queried.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [VirtualMachineListResult] which provide lazy access to pages of the
response. | [
"Gets",
"all",
"the",
"virtual",
"machines",
"under",
"the",
"specified",
"subscription",
"for",
"the",
"specified",
"location",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2017-12-01/generated/azure_mgmt_compute/virtual_machines.rb#L2780-L2789 |
13,657 | Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/server_azure_adadministrators.rb | Azure::SQL::Mgmt::V2014_04_01.ServerAzureADAdministrators.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, server_name, properties, custom_headers:nil)
begin_create_or_update_async(resource_group_name, server_name, properties, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, server_name, properties, custom_headers:nil)
begin_create_or_update_async(resource_group_name, server_name, properties, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"properties",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"properties",
",",
"custom_headers... | Creates a new Server Active Directory Administrator or updates an existing
server Active Directory Administrator.
@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 properties [ServerAzureADAdministrator] The required parameters for
creating or updating an Active Directory Administrator.
@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",
"Server",
"Active",
"Directory",
"Administrator",
"or",
"updates",
"an",
"existing",
"server",
"Active",
"Directory",
"Administrator",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/server_azure_adadministrators.rb#L356-L358 |
13,658 | Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/cache.rb | Azure::ApiManagement::Mgmt::V2019_01_01.Cache.get_with_http_info | def get_with_http_info(resource_group_name, service_name, cache_id, custom_headers:nil)
get_async(resource_group_name, service_name, cache_id, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, service_name, cache_id, custom_headers:nil)
get_async(resource_group_name, service_name, cache_id, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"cache_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"cache_id",
",",
"custom_headers",
":custom_headers",
")",
".",
... | Gets the details of the Cache 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 cache_id [String] Identifier of the Cache entity. Cache identifier
(should be either 'default' or valid Azure region identifier).
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"details",
"of",
"the",
"Cache",
"specified",
"by",
"its",
"identifier",
"."
] | 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/cache.rb#L253-L255 |
13,659 | Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_backup/lib/2017-07-01/generated/azure_mgmt_recovery_services_backup/protection_intent_operations.rb | Azure::RecoveryServicesBackup::Mgmt::V2017_07_01.ProtectionIntentOperations.create_or_update_with_http_info | def create_or_update_with_http_info(vault_name, resource_group_name, fabric_name, intent_object_name, parameters, custom_headers:nil)
create_or_update_async(vault_name, resource_group_name, fabric_name, intent_object_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(vault_name, resource_group_name, fabric_name, intent_object_name, parameters, custom_headers:nil)
create_or_update_async(vault_name, resource_group_name, fabric_name, intent_object_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"intent_object_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"vault_name",
",",
"resource_group_name",
",",... | Create Intent for Enabling backup of an item. This is a synchronous
operation.
@param vault_name [String] The name of the recovery services vault.
@param resource_group_name [String] The name of the resource group where the
recovery services vault is present.
@param fabric_name [String] Fabric name associated with the backup item.
@param intent_object_name [String] Intent object name.
@param parameters [ProtectionIntentResource] resource backed up item
@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",
"Intent",
"for",
"Enabling",
"backup",
"of",
"an",
"item",
".",
"This",
"is",
"a",
"synchronous",
"operation",
"."
] | 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/protection_intent_operations.rb#L174-L176 |
13,660 | Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/device_settings.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.DeviceSettings.get_network_settings_with_http_info | def get_network_settings_with_http_info(device_name, resource_group_name, manager_name, custom_headers:nil)
get_network_settings_async(device_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
end | ruby | def get_network_settings_with_http_info(device_name, resource_group_name, manager_name, custom_headers:nil)
get_network_settings_async(device_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
end | [
"def",
"get_network_settings_with_http_info",
"(",
"device_name",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"get_network_settings_async",
"(",
"device_name",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers... | Gets the network settings of the specified device.
@param device_name [String] The device name
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"network",
"settings",
"of",
"the",
"specified",
"device",
"."
] | 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/device_settings.rb#L195-L197 |
13,661 | Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/user.rb | Azure::ApiManagement::Mgmt::V2018_01_01.User.get_identity | def get_identity(resource_group_name, service_name, custom_headers:nil)
response = get_identity_async(resource_group_name, service_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_identity(resource_group_name, service_name, custom_headers:nil)
response = get_identity_async(resource_group_name, service_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_identity",
"(",
"resource_group_name",
",",
"service_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_identity_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"respo... | Returns calling user identity information.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CurrentUserIdentity] operation results. | [
"Returns",
"calling",
"user",
"identity",
"information",
"."
] | 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/user.rb#L34-L37 |
13,662 | Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/product_policy.rb | Azure::ApiManagement::Mgmt::V2018_01_01.ProductPolicy.get_entity_tag_with_http_info | def get_entity_tag_with_http_info(resource_group_name, service_name, product_id, custom_headers:nil)
get_entity_tag_async(resource_group_name, service_name, product_id, custom_headers:custom_headers).value!
end | ruby | def get_entity_tag_with_http_info(resource_group_name, service_name, product_id, custom_headers:nil)
get_entity_tag_async(resource_group_name, service_name, product_id, custom_headers:custom_headers).value!
end | [
"def",
"get_entity_tag_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"product_id",
",",
"custom_headers",
":",
"nil",
")",
"get_entity_tag_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"product_id",
",",
"custom_headers",
":custom_... | Get the ETag of the policy configuration at the Product level.
@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 custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"the",
"ETag",
"of",
"the",
"policy",
"configuration",
"at",
"the",
"Product",
"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/product_policy.rb#L157-L159 |
13,663 | Azure/azure-sdk-for-ruby | management/azure_mgmt_monitor/lib/2015-04-01/generated/azure_mgmt_monitor/autoscale_settings.rb | Azure::Monitor::Mgmt::V2015_04_01.AutoscaleSettings.create_or_update_with_http_info | def create_or_update_with_http_info(resource_group_name, autoscale_setting_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, autoscale_setting_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(resource_group_name, autoscale_setting_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, autoscale_setting_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"autoscale_setting_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"autoscale_setting_name",
",",
"parameters",
",",
"cust... | Creates or updates an autoscale setting.
@param resource_group_name [String] The name of the resource group.
@param autoscale_setting_name [String] The autoscale setting name.
@param parameters [AutoscaleSettingResource] Parameters supplied to the
operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"an",
"autoscale",
"setting",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2015-04-01/generated/azure_mgmt_monitor/autoscale_settings.rb#L141-L143 |
13,664 | Azure/azure-sdk-for-ruby | management/azure_mgmt_monitor/lib/2015-04-01/generated/azure_mgmt_monitor/autoscale_settings.rb | Azure::Monitor::Mgmt::V2015_04_01.AutoscaleSettings.delete | def delete(resource_group_name, autoscale_setting_name, custom_headers:nil)
response = delete_async(resource_group_name, autoscale_setting_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, autoscale_setting_name, custom_headers:nil)
response = delete_async(resource_group_name, autoscale_setting_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"autoscale_setting_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"autoscale_setting_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
... | Deletes and autoscale setting
@param resource_group_name [String] The name of the resource group.
@param autoscale_setting_name [String] The autoscale setting name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"and",
"autoscale",
"setting"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2015-04-01/generated/azure_mgmt_monitor/autoscale_settings.rb#L237-L240 |
13,665 | Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/server_keys.rb | Azure::SQL::Mgmt::V2015_05_01_preview.ServerKeys.get_with_http_info | def get_with_http_info(resource_group_name, server_name, key_name, custom_headers:nil)
get_async(resource_group_name, server_name, key_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, server_name, key_name, custom_headers:nil)
get_async(resource_group_name, server_name, key_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"key_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"key_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"v... | Gets a server 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 server_name [String] The name of the server.
@param key_name [String] The name of the server 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",
"server",
"key",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2015-05-01-preview/generated/azure_mgmt_sql/server_keys.rb#L156-L158 |
13,666 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-12-01/generated/azure_mgmt_network/p2s_vpn_gateways.rb | Azure::Network::Mgmt::V2018_12_01.P2sVpnGateways.delete | def delete(resource_group_name, gateway_name, custom_headers:nil)
response = delete_async(resource_group_name, gateway_name, custom_headers:custom_headers).value!
nil
end | ruby | def delete(resource_group_name, gateway_name, custom_headers:nil)
response = delete_async(resource_group_name, gateway_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"delete",
"(",
"resource_group_name",
",",
"gateway_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"resource_group_name",
",",
"gateway_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Deletes a virtual wan p2s vpn gateway.
@param resource_group_name [String] The resource group name of the
P2SVpnGateway.
@param gateway_name [String] The name of the gateway.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"a",
"virtual",
"wan",
"p2s",
"vpn",
"gateway",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-12-01/generated/azure_mgmt_network/p2s_vpn_gateways.rb#L225-L228 |
13,667 | Azure/azure-sdk-for-ruby | management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connectors.rb | Azure::CustomerInsights::Mgmt::V2017_01_01.Connectors.get_with_http_info | def get_with_http_info(resource_group_name, hub_name, connector_name, custom_headers:nil)
get_async(resource_group_name, hub_name, connector_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, hub_name, connector_name, custom_headers:nil)
get_async(resource_group_name, hub_name, connector_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"custom_headers",
":custom_headers",
")",
"."... | Gets a connector in the hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param connector_name [String] The name of the connector.
@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",
"connector",
"in",
"the",
"hub",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connectors.rb#L102-L104 |
13,668 | Azure/azure-sdk-for-ruby | management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connectors.rb | Azure::CustomerInsights::Mgmt::V2017_01_01.Connectors.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, hub_name, connector_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, hub_name, connector_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, hub_name, connector_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, hub_name, connector_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",... | Creates a connector or updates an existing connector in the hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param connector_name [String] The name of the connector.
@param parameters [ConnectorResourceFormat] Parameters supplied to the
CreateOrUpdate Connector 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",
"a",
"connector",
"or",
"updates",
"an",
"existing",
"connector",
"in",
"the",
"hub",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connectors.rb#L334-L336 |
13,669 | Azure/azure-sdk-for-ruby | management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connectors.rb | Azure::CustomerInsights::Mgmt::V2017_01_01.Connectors.begin_delete_with_http_info | def begin_delete_with_http_info(resource_group_name, hub_name, connector_name, custom_headers:nil)
begin_delete_async(resource_group_name, hub_name, connector_name, custom_headers:custom_headers).value!
end | ruby | def begin_delete_with_http_info(resource_group_name, hub_name, connector_name, custom_headers:nil)
begin_delete_async(resource_group_name, hub_name, connector_name, custom_headers:custom_headers).value!
end | [
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"custom_headers",
":custom_head... | Deletes a connector in the hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param connector_name [String] The name of the connector.
@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",
"connector",
"in",
"the",
"hub",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connectors.rb#L442-L444 |
13,670 | Azure/azure-sdk-for-ruby | management/azure_mgmt_container_registry/lib/2018-09-01/generated/azure_mgmt_container_registry/tasks.rb | Azure::ContainerRegistry::Mgmt::V2018_09_01.Tasks.get_with_http_info | def get_with_http_info(resource_group_name, registry_name, task_name, custom_headers:nil)
get_async(resource_group_name, registry_name, task_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, registry_name, task_name, custom_headers:nil)
get_async(resource_group_name, registry_name, task_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"registry_name",
",",
"task_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"task_name",
",",
"custom_headers",
":custom_headers",
")",
"."... | Get the properties of a specified task.
@param resource_group_name [String] The name of the resource group to which
the container registry belongs.
@param registry_name [String] The name of the container registry.
@param task_name [String] The name of the container registry task.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Get",
"the",
"properties",
"of",
"a",
"specified",
"task",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_container_registry/lib/2018-09-01/generated/azure_mgmt_container_registry/tasks.rb#L152-L154 |
13,671 | Azure/azure-sdk-for-ruby | management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/certificate_operations.rb | Azure::Batch::Mgmt::V2017_09_01.CertificateOperations.get_with_http_info | def get_with_http_info(resource_group_name, account_name, certificate_name, custom_headers:nil)
get_async(resource_group_name, account_name, certificate_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, account_name, certificate_name, custom_headers:nil)
get_async(resource_group_name, account_name, certificate_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"certificate_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"certificate_name",
",",
"custom_headers",
":custom_headers",
... | Gets information about the specified certificate.
@param resource_group_name [String] The name of the resource group that
contains the Batch account.
@param account_name [String] The name of the Batch account.
@param certificate_name [String] The identifier for the certificate. This
must be made up of algorithm and thumbprint separated by a dash, and must
match the certificate data in the request. For example SHA1-a3d1c5.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"information",
"about",
"the",
"specified",
"certificate",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/certificate_operations.rb#L428-L430 |
13,672 | Azure/azure-sdk-for-ruby | management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/certificate_operations.rb | Azure::Batch::Mgmt::V2017_09_01.CertificateOperations.begin_delete_with_http_info | def begin_delete_with_http_info(resource_group_name, account_name, certificate_name, custom_headers:nil)
begin_delete_async(resource_group_name, account_name, certificate_name, custom_headers:custom_headers).value!
end | ruby | def begin_delete_with_http_info(resource_group_name, account_name, certificate_name, custom_headers:nil)
begin_delete_async(resource_group_name, account_name, certificate_name, custom_headers:custom_headers).value!
end | [
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"certificate_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"certificate_name",
",",
"custom_headers",
"... | Deletes the specified certificate.
@param resource_group_name [String] The name of the resource group that
contains the Batch account.
@param account_name [String] The name of the Batch account.
@param certificate_name [String] The identifier for the certificate. This
must be made up of algorithm and thumbprint separated by a dash, and must
match the certificate data in the request. For example SHA1-a3d1c5.
@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",
"certificate",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_batch/lib/2017-09-01/generated/azure_mgmt_batch/certificate_operations.rb#L821-L823 |
13,673 | Azure/azure-sdk-for-ruby | data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term.rb | Azure::CognitiveServices::ContentModerator::V1_0.ListManagementTerm.delete_all_terms | def delete_all_terms(list_id, language, custom_headers:nil)
response = delete_all_terms_async(list_id, language, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def delete_all_terms(list_id, language, custom_headers:nil)
response = delete_all_terms_async(list_id, language, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"delete_all_terms",
"(",
"list_id",
",",
"language",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_all_terms_async",
"(",
"list_id",
",",
"language",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
... | Deletes all terms from the list with list Id equal to the list Id passed.
@param list_id [String] List Id of the image list.
@param language [String] Language of the terms.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [String] operation results. | [
"Deletes",
"all",
"terms",
"from",
"the",
"list",
"with",
"list",
"Id",
"equal",
"to",
"the",
"list",
"Id",
"passed",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term.rb#L331-L334 |
13,674 | Azure/azure-sdk-for-ruby | management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/quota_by_counter_keys.rb | Azure::ApiManagement::Mgmt::V2018_01_01.QuotaByCounterKeys.list_by_service_with_http_info | def list_by_service_with_http_info(resource_group_name, service_name, quota_counter_key, custom_headers:nil)
list_by_service_async(resource_group_name, service_name, quota_counter_key, custom_headers:custom_headers).value!
end | ruby | def list_by_service_with_http_info(resource_group_name, service_name, quota_counter_key, custom_headers:nil)
list_by_service_async(resource_group_name, service_name, quota_counter_key, custom_headers:custom_headers).value!
end | [
"def",
"list_by_service_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"quota_counter_key",
",",
"custom_headers",
":",
"nil",
")",
"list_by_service_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"quota_counter_key",
",",
"custom_heade... | Lists a collection of current quota counter periods associated with the
counter-key configured in the policy on the specified service instance. The
api does not support paging yet.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param quota_counter_key [String] Quota counter key identifier.This is the
result of expression defined in counter-key attribute of the quota-by-key
policy.For Example, if you specify counter-key="boo" in the policy, then it’s
accessible by "boo" counter key. But if it’s defined as
counter-key="@("b"+"a")" then it will be accessible by "ba" key
@param 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",
"a",
"collection",
"of",
"current",
"quota",
"counter",
"periods",
"associated",
"with",
"the",
"counter",
"-",
"key",
"configured",
"in",
"the",
"policy",
"on",
"the",
"specified",
"service",
"instance",
".",
"The",
"api",
"does",
"not",
"support",
... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/quota_by_counter_keys.rb#L63-L65 |
13,675 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb | Azure::Network::Mgmt::V2018_08_01.NetworkWatchers.create_or_update_with_http_info | def create_or_update_with_http_info(resource_group_name, network_watcher_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, network_watcher_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(resource_group_name, network_watcher_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, network_watcher_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"network_watcher_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"network_watcher_name",
",",
"parameters",
",",
"custom_h... | Creates or updates a network watcher in the specified resource group.
@param resource_group_name [String] The name of the resource group.
@param network_watcher_name [String] The name of the network watcher.
@param parameters [NetworkWatcher] Parameters that define the network watcher
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. | [
"Creates",
"or",
"updates",
"a",
"network",
"watcher",
"in",
"the",
"specified",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb#L53-L55 |
13,676 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb | Azure::Network::Mgmt::V2018_08_01.NetworkWatchers.update_tags_with_http_info | def update_tags_with_http_info(resource_group_name, network_watcher_name, parameters, custom_headers:nil)
update_tags_async(resource_group_name, network_watcher_name, parameters, custom_headers:custom_headers).value!
end | ruby | def update_tags_with_http_info(resource_group_name, network_watcher_name, parameters, custom_headers:nil)
update_tags_async(resource_group_name, network_watcher_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"update_tags_with_http_info",
"(",
"resource_group_name",
",",
"network_watcher_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_tags_async",
"(",
"resource_group_name",
",",
"network_watcher_name",
",",
"parameters",
",",
"custom_headers",
... | Updates a network watcher tags.
@param resource_group_name [String] The name of the resource group.
@param network_watcher_name [String] The name of the network watcher.
@param parameters [TagsObject] Parameters supplied to update network watcher
tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"a",
"network",
"watcher",
"tags",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb#L299-L301 |
13,677 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb | Azure::Network::Mgmt::V2018_08_01.NetworkWatchers.list_all | def list_all(custom_headers:nil)
response = list_all_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_all(custom_headers:nil)
response = list_all_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_all",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_all_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Gets all network watchers by subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [NetworkWatcherListResult] operation results. | [
"Gets",
"all",
"network",
"watchers",
"by",
"subscription",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb#L472-L475 |
13,678 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb | Azure::Network::Mgmt::V2018_08_01.NetworkWatchers.begin_delete | def begin_delete(resource_group_name, network_watcher_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, network_watcher_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_delete(resource_group_name, network_watcher_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, network_watcher_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"network_watcher_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"network_watcher_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"v... | Deletes the specified network watcher resource.
@param resource_group_name [String] The name of the resource group.
@param network_watcher_name [String] The name of the network watcher.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"specified",
"network",
"watcher",
"resource",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-08-01/generated/azure_mgmt_network/network_watchers.rb#L1199-L1202 |
13,679 | Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/firewall_rules.rb | Azure::SQL::Mgmt::V2014_04_01.FirewallRules.create_or_update_with_http_info | def create_or_update_with_http_info(resource_group_name, server_name, firewall_rule_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, server_name, firewall_rule_name, parameters, custom_headers:custom_headers).value!
end | ruby | def create_or_update_with_http_info(resource_group_name, server_name, firewall_rule_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, server_name, firewall_rule_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"firewall_rule_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"firewall_rule_name... | Creates or updates a 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 firewall rule.
@param parameters [FirewallRule] The required parameters for creating or
updating a 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. | [
"Creates",
"or",
"updates",
"a",
"firewall",
"rule",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/firewall_rules.rb#L62-L64 |
13,680 | Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/firewall_rules.rb | Azure::SQL::Mgmt::V2014_04_01.FirewallRules.delete_with_http_info | def delete_with_http_info(resource_group_name, server_name, firewall_rule_name, custom_headers:nil)
delete_async(resource_group_name, server_name, firewall_rule_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(resource_group_name, server_name, firewall_rule_name, custom_headers:nil)
delete_async(resource_group_name, server_name, firewall_rule_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":custom_he... | Deletes a 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 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",
"firewall",
"rule",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/firewall_rules.rb#L183-L185 |
13,681 | Azure/azure-sdk-for-ruby | management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/firewall_rules.rb | Azure::SQL::Mgmt::V2014_04_01.FirewallRules.get_with_http_info | def get_with_http_info(resource_group_name, server_name, firewall_rule_name, custom_headers:nil)
get_async(resource_group_name, server_name, firewall_rule_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, server_name, firewall_rule_name, custom_headers:nil)
get_async(resource_group_name, server_name, firewall_rule_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"firewall_rule_name",
",",
"custom_headers",
":custom_headers"... | Gets a 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 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. | [
"Gets",
"a",
"firewall",
"rule",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/firewall_rules.rb#L275-L277 |
13,682 | Azure/azure-sdk-for-ruby | management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/hubs.rb | Azure::CustomerInsights::Mgmt::V2017_01_01.Hubs.update_with_http_info | def update_with_http_info(resource_group_name, hub_name, parameters, custom_headers:nil)
update_async(resource_group_name, hub_name, parameters, custom_headers:custom_headers).value!
end | ruby | def update_with_http_info(resource_group_name, hub_name, parameters, custom_headers:nil)
update_async(resource_group_name, hub_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
... | Updates a Hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the Hub.
@param parameters [Hub] Parameters supplied to the Update Hub operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"a",
"Hub",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/hubs.rb#L173-L175 |
13,683 | Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_backup/lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/protection_policies.rb | Azure::RecoveryServicesBackup::Mgmt::V2016_06_01.ProtectionPolicies.get_with_http_info | def get_with_http_info(vault_name, resource_group_name, policy_name, custom_headers:nil)
get_async(vault_name, resource_group_name, policy_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(vault_name, resource_group_name, policy_name, custom_headers:nil)
get_async(vault_name, resource_group_name, policy_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"vault_name",
",",
"resource_group_name",
",",
"policy_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"vault_name",
",",
"resource_group_name",
",",
"policy_name",
",",
"custom_headers",
":custom_headers",
")",
".",
... | Gets the details of the backup policy associated with the Recovery Services
vault. This is an asynchronous operation. Use the GetPolicyOperationResult
API to Get the operation status.
@param vault_name [String] The name of the Recovery Services vault.
@param resource_group_name [String] The name of the resource group associated
with the Recovery Services vault.
@param policy_name [String] The backup policy name used in this GET
operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"details",
"of",
"the",
"backup",
"policy",
"associated",
"with",
"the",
"Recovery",
"Services",
"vault",
".",
"This",
"is",
"an",
"asynchronous",
"operation",
".",
"Use",
"the",
"GetPolicyOperationResult",
"API",
"to",
"Get",
"the",
"operation",
... | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_backup/lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/protection_policies.rb#L63-L65 |
13,684 | Azure/azure-sdk-for-ruby | management/azure_mgmt_recovery_services_backup/lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/protection_policies.rb | Azure::RecoveryServicesBackup::Mgmt::V2016_06_01.ProtectionPolicies.delete_with_http_info | def delete_with_http_info(vault_name, resource_group_name, policy_name, custom_headers:nil)
delete_async(vault_name, resource_group_name, policy_name, custom_headers:custom_headers).value!
end | ruby | def delete_with_http_info(vault_name, resource_group_name, policy_name, custom_headers:nil)
delete_async(vault_name, resource_group_name, policy_name, custom_headers:custom_headers).value!
end | [
"def",
"delete_with_http_info",
"(",
"vault_name",
",",
"resource_group_name",
",",
"policy_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"vault_name",
",",
"resource_group_name",
",",
"policy_name",
",",
"custom_headers",
":custom_headers",
")",
... | Deletes the specified backup policy from your Recovery Services vault. This
is an asynchronous operation. Use the GetPolicyOperationResult API to Get the
operation status.
@param vault_name [String] The name of the Recovery Services vault.
@param resource_group_name [String] The name of the resource group associated
with the Recovery Services vault.
@param policy_name [String] The name of the backup policy 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",
"specified",
"backup",
"policy",
"from",
"your",
"Recovery",
"Services",
"vault",
".",
"This",
"is",
"an",
"asynchronous",
"operation",
".",
"Use",
"the",
"GetPolicyOperationResult",
"API",
"to",
"Get",
"the",
"operation",
"status",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_backup/lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/protection_policies.rb#L284-L286 |
13,685 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_custom_policies.rb | Azure::Network::Mgmt::V2019_02_01.DdosCustomPolicies.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"ddos_custom_policy_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"ddos_custom_policy_name",
",",
"parameters",
... | Creates or updates a DDoS custom policy.
@param resource_group_name [String] The name of the resource group.
@param ddos_custom_policy_name [String] The name of the DDoS custom policy.
@param parameters [DdosCustomPolicy] Parameters supplied to the create or
update operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"a",
"DDoS",
"custom",
"policy",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_custom_policies.rb#L356-L358 |
13,686 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_custom_policies.rb | Azure::Network::Mgmt::V2019_02_01.DdosCustomPolicies.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, ddos_custom_policy_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"ddos_custom_policy_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"ddos_custom_policy_name",
",",
"parameters",
",",
"... | Update a DDoS custom policy tags
@param resource_group_name [String] The name of the resource group.
@param ddos_custom_policy_name [String] The name of the DDoS custom policy.
@param parameters [TagsObject] Parameters supplied to the update DDoS custom
policy resource tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Update",
"a",
"DDoS",
"custom",
"policy",
"tags"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_custom_policies.rb#L472-L474 |
13,687 | Azure/azure-sdk-for-ruby | management/azure_mgmt_managed_applications/lib/2018-06-01/generated/azure_mgmt_managed_applications/applications.rb | Azure::ManagedApplications::Mgmt::V2018_06_01.Applications.get_by_id | def get_by_id(application_id, custom_headers:nil)
response = get_by_id_async(application_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_by_id(application_id, custom_headers:nil)
response = get_by_id_async(application_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_by_id",
"(",
"application_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_by_id_async",
"(",
"application_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
... | Gets the managed application.
@param application_id [String] The fully qualified ID of the managed
application, including the managed application name and the managed
application resource type. Use the format,
/subscriptions/{guid}/resourceGroups/{resource-group-name}/Microsoft.Solutions/applications/{application-name}
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Application] operation results. | [
"Gets",
"the",
"managed",
"application",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_managed_applications/lib/2018-06-01/generated/azure_mgmt_managed_applications/applications.rb#L518-L521 |
13,688 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb | Azure::Logic::Mgmt::V2016_06_01.Workflows.list_by_subscription_with_http_info | def list_by_subscription_with_http_info(top:nil, filter:nil, custom_headers:nil)
list_by_subscription_async(top:top, filter:filter, custom_headers:custom_headers).value!
end | ruby | def list_by_subscription_with_http_info(top:nil, filter:nil, custom_headers:nil)
list_by_subscription_async(top:top, filter:filter, custom_headers:custom_headers).value!
end | [
"def",
"list_by_subscription_with_http_info",
"(",
"top",
":",
"nil",
",",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"list_by_subscription_async",
"(",
"top",
":",
"top",
",",
"filter",
":",
"filter",
",",
"custom_headers",
":custom_headers",
... | Gets a list of workflows by subscription.
@param top [Integer] The number of items to be included in the result.
@param filter [String] The filter to apply on the operation. Options for
filters include: State, Trigger, and ReferencedResourceId.
@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",
"workflows",
"by",
"subscription",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb#L51-L53 |
13,689 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb | Azure::Logic::Mgmt::V2016_06_01.Workflows.disable | def disable(resource_group_name, workflow_name, custom_headers:nil)
response = disable_async(resource_group_name, workflow_name, custom_headers:custom_headers).value!
nil
end | ruby | def disable(resource_group_name, workflow_name, custom_headers:nil)
response = disable_async(resource_group_name, workflow_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"disable",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"disable_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"... | Disables a workflow.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Disables",
"a",
"workflow",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb#L612-L615 |
13,690 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb | Azure::Logic::Mgmt::V2016_06_01.Workflows.enable | def enable(resource_group_name, workflow_name, custom_headers:nil)
response = enable_async(resource_group_name, workflow_name, custom_headers:custom_headers).value!
nil
end | ruby | def enable(resource_group_name, workflow_name, custom_headers:nil)
response = enable_async(resource_group_name, workflow_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"enable",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"enable_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] | Enables a workflow.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Enables",
"a",
"workflow",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb#L693-L696 |
13,691 | Azure/azure-sdk-for-ruby | management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb | Azure::Logic::Mgmt::V2016_06_01.Workflows.list_swagger | def list_swagger(resource_group_name, workflow_name, custom_headers:nil)
response = list_swagger_async(resource_group_name, workflow_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def list_swagger(resource_group_name, workflow_name, custom_headers:nil)
response = list_swagger_async(resource_group_name, workflow_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"list_swagger",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_swagger_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"res... | Gets an OpenAPI definition for the workflow.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Object] operation results. | [
"Gets",
"an",
"OpenAPI",
"definition",
"for",
"the",
"workflow",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflows.rb#L977-L980 |
13,692 | Azure/azure-sdk-for-ruby | management/azure_mgmt_iot_hub/lib/2018-04-01/generated/azure_mgmt_iot_hub/resource_provider_common.rb | Azure::IotHub::Mgmt::V2018_04_01.ResourceProviderCommon.get_subscription_quota | def get_subscription_quota(custom_headers:nil)
response = get_subscription_quota_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | ruby | def get_subscription_quota(custom_headers:nil)
response = get_subscription_quota_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end | [
"def",
"get_subscription_quota",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_subscription_quota_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] | Get the number of iot hubs in the subscription
Get the number of free and paid iot hubs in the subscription
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [UserSubscriptionQuotaListResult] operation results. | [
"Get",
"the",
"number",
"of",
"iot",
"hubs",
"in",
"the",
"subscription"
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_iot_hub/lib/2018-04-01/generated/azure_mgmt_iot_hub/resource_provider_common.rb#L34-L37 |
13,693 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb | Azure::Network::Mgmt::V2018_07_01.RouteTables.get_with_http_info | def get_with_http_info(resource_group_name, route_table_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, route_table_name, expand:expand, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(resource_group_name, route_table_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, route_table_name, expand:expand, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"expand",
":",
"expand",
",",
"custom_headers"... | Gets the specified route table.
@param resource_group_name [String] The name of the resource group.
@param route_table_name [String] The name of the route table.
@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",
"route",
"table",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb#L89-L91 |
13,694 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb | Azure::Network::Mgmt::V2018_07_01.RouteTables.begin_delete | def begin_delete(resource_group_name, route_table_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, route_table_name, custom_headers:custom_headers).value!
nil
end | ruby | def begin_delete(resource_group_name, route_table_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, route_table_name, custom_headers:custom_headers).value!
nil
end | [
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
... | Deletes the specified route table.
@param resource_group_name [String] The name of the resource group.
@param route_table_name [String] The name of the route table.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request. | [
"Deletes",
"the",
"specified",
"route",
"table",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb#L430-L433 |
13,695 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb | Azure::Network::Mgmt::V2018_07_01.RouteTables.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, route_table_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, route_table_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, route_table_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, route_table_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"parameters",
",",
"cust... | Create or updates a route table in a specified resource group.
@param resource_group_name [String] The name of the resource group.
@param route_table_name [String] The name of the route table.
@param parameters [RouteTable] Parameters supplied to the create or update
route table 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",
"updates",
"a",
"route",
"table",
"in",
"a",
"specified",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb#L531-L533 |
13,696 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb | Azure::Network::Mgmt::V2018_07_01.RouteTables.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, route_table_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, route_table_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, route_table_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, route_table_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"parameters",
",",
"custom_headers... | Updates a route table tags.
@param resource_group_name [String] The name of the resource group.
@param route_table_name [String] The name of the route table.
@param parameters [TagsObject] Parameters supplied to update route table
tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"a",
"route",
"table",
"tags",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/route_tables.rb#L647-L649 |
13,697 | Azure/azure-sdk-for-ruby | management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/jobs.rb | Azure::StorSimple8000Series::Mgmt::V2017_06_01.Jobs.get_with_http_info | def get_with_http_info(device_name, job_name, resource_group_name, manager_name, custom_headers:nil)
get_async(device_name, job_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
end | ruby | def get_with_http_info(device_name, job_name, resource_group_name, manager_name, custom_headers:nil)
get_async(device_name, job_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
end | [
"def",
"get_with_http_info",
"(",
"device_name",
",",
"job_name",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"device_name",
",",
"job_name",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom... | Gets the details of the specified job name.
@param device_name [String] The device name
@param job_name [String] The job Name.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Gets",
"the",
"details",
"of",
"the",
"specified",
"job",
"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/jobs.rb#L158-L160 |
13,698 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/local_network_gateways.rb | Azure::Network::Mgmt::V2018_07_01.LocalNetworkGateways.begin_create_or_update_with_http_info | def begin_create_or_update_with_http_info(resource_group_name, local_network_gateway_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, local_network_gateway_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_create_or_update_with_http_info(resource_group_name, local_network_gateway_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, local_network_gateway_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"local_network_gateway_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"local_network_gateway_name",
",",
"paramet... | Creates or updates a local network gateway in the specified resource group.
@param resource_group_name [String] The name of the resource group.
@param local_network_gateway_name [String] The name of the local network
gateway.
@param parameters [LocalNetworkGateway] Parameters supplied to the create or
update local network gateway operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Creates",
"or",
"updates",
"a",
"local",
"network",
"gateway",
"in",
"the",
"specified",
"resource",
"group",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/local_network_gateways.rb#L375-L377 |
13,699 | Azure/azure-sdk-for-ruby | management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/local_network_gateways.rb | Azure::Network::Mgmt::V2018_07_01.LocalNetworkGateways.begin_update_tags_with_http_info | def begin_update_tags_with_http_info(resource_group_name, local_network_gateway_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, local_network_gateway_name, parameters, custom_headers:custom_headers).value!
end | ruby | def begin_update_tags_with_http_info(resource_group_name, local_network_gateway_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, local_network_gateway_name, parameters, custom_headers:custom_headers).value!
end | [
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"local_network_gateway_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"local_network_gateway_name",
",",
"parameters",
",... | Updates a local network gateway tags.
@param resource_group_name [String] The name of the resource group.
@param local_network_gateway_name [String] The name of the local network
gateway.
@param parameters [TagsObject] Parameters supplied to update local network
gateway tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information. | [
"Updates",
"a",
"local",
"network",
"gateway",
"tags",
"."
] | 78eedacf8f8cbd65c2d8a2af421405eaa4373d8e | https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/local_network_gateways.rb#L580-L582 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.