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,900
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/views.rb
|
Azure::CustomerInsights::Mgmt::V2017_01_01.Views.get_with_http_info
|
def get_with_http_info(resource_group_name, hub_name, view_name, user_id, custom_headers:nil)
get_async(resource_group_name, hub_name, view_name, user_id, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, hub_name, view_name, user_id, custom_headers:nil)
get_async(resource_group_name, hub_name, view_name, user_id, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"view_name",
",",
"user_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"view_name",
",",
"user_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets a view in the hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param view_name [String] The name of the view.
@param user_id [String] The user ID. Use * to retreive hub level view.
@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",
"view",
"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/views.rb#L264-L266
|
13,901
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_reservations/lib/2019-04-01-preview/generated/azure_mgmt_reservations/reservation_order.rb
|
Azure::Reservations::Mgmt::V2019_04_01_preview.ReservationOrder.calculate
|
def calculate(body, custom_headers:nil)
response = calculate_async(body, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def calculate(body, custom_headers:nil)
response = calculate_async(body, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"calculate",
"(",
"body",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"calculate_async",
"(",
"body",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Calculate price for a `ReservationOrder`.
Calculate price for placing a `ReservationOrder`.
@param body [PurchaseRequest] Information needed for calculate or purchase
reservation
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [CalculatePriceResponse] operation results.
|
[
"Calculate",
"price",
"for",
"a",
"ReservationOrder",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_reservations/lib/2019-04-01-preview/generated/azure_mgmt_reservations/reservation_order.rb#L36-L39
|
13,902
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connector_mappings.rb
|
Azure::CustomerInsights::Mgmt::V2017_01_01.ConnectorMappings.create_or_update_with_http_info
|
def create_or_update_with_http_info(resource_group_name, hub_name, connector_name, mapping_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, hub_name, connector_name, mapping_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def create_or_update_with_http_info(resource_group_name, hub_name, connector_name, mapping_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, hub_name, connector_name, mapping_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"mapping_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"mapping_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates a connector mapping or updates an existing connector mapping in the
connector.
@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 mapping_name [String] The name of the connector mapping.
@param parameters [ConnectorMappingResourceFormat] Parameters supplied to the
CreateOrUpdate Connector Mapping 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",
"mapping",
"or",
"updates",
"an",
"existing",
"connector",
"mapping",
"in",
"the",
"connector",
"."
] |
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/connector_mappings.rb#L62-L64
|
13,903
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/connector_mappings.rb
|
Azure::CustomerInsights::Mgmt::V2017_01_01.ConnectorMappings.delete_with_http_info
|
def delete_with_http_info(resource_group_name, hub_name, connector_name, mapping_name, custom_headers:nil)
delete_async(resource_group_name, hub_name, connector_name, mapping_name, custom_headers:custom_headers).value!
end
|
ruby
|
def delete_with_http_info(resource_group_name, hub_name, connector_name, mapping_name, custom_headers:nil)
delete_async(resource_group_name, hub_name, connector_name, mapping_name, custom_headers:custom_headers).value!
end
|
[
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"mapping_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"connector_name",
",",
"mapping_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Deletes a connector mapping in the connector.
@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 mapping_name [String] The name of the connector mapping.
@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",
"mapping",
"in",
"the",
"connector",
"."
] |
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/connector_mappings.rb#L285-L287
|
13,904
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_monitor/lib/2018-04-16/generated/azure_mgmt_monitor/scheduled_query_rules.rb
|
Azure::Monitor::Mgmt::V2018_04_16.ScheduledQueryRules.update_with_http_info
|
def update_with_http_info(resource_group_name, rule_name, parameters, custom_headers:nil)
update_async(resource_group_name, rule_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def update_with_http_info(resource_group_name, rule_name, parameters, custom_headers:nil)
update_async(resource_group_name, rule_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"rule_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"rule_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Update log search Rule.
@param resource_group_name [String] The name of the resource group.
@param rule_name [String] The name of the rule.
@param parameters [LogSearchRuleResourcePatch] The parameters of the rule to
update.
@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",
"log",
"search",
"Rule",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2018-04-16/generated/azure_mgmt_monitor/scheduled_query_rules.rb#L261-L263
|
13,905
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_monitor/lib/2018-04-16/generated/azure_mgmt_monitor/scheduled_query_rules.rb
|
Azure::Monitor::Mgmt::V2018_04_16.ScheduledQueryRules.list_by_subscription
|
def list_by_subscription(filter:nil, custom_headers:nil)
response = list_by_subscription_async(filter:filter, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_by_subscription(filter:nil, custom_headers:nil)
response = list_by_subscription_async(filter:filter, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_by_subscription",
"(",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_subscription_async",
"(",
"filter",
":",
"filter",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
List the Log Search rules within a subscription group.
@param filter [String] The filter to apply on the operation. For more
information please see
https://msdn.microsoft.com/en-us/library/azure/dn931934.aspx
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [LogSearchRuleResourceCollection] operation results.
|
[
"List",
"the",
"Log",
"Search",
"rules",
"within",
"a",
"subscription",
"group",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2018-04-16/generated/azure_mgmt_monitor/scheduled_query_rules.rb#L430-L433
|
13,906
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_datalake_store/lib/2015-10-01-preview/generated/azure_mgmt_datalake_store/account.rb
|
Azure::DataLakeStore::Mgmt::V2015_10_01_preview.Account.enable_key_vault
|
def enable_key_vault(resource_group_name, account_name, custom_headers:nil)
response = enable_key_vault_async(resource_group_name, account_name, custom_headers:custom_headers).value!
nil
end
|
ruby
|
def enable_key_vault(resource_group_name, account_name, custom_headers:nil)
response = enable_key_vault_async(resource_group_name, account_name, custom_headers:custom_headers).value!
nil
end
|
[
"def",
"enable_key_vault",
"(",
"resource_group_name",
",",
"account_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"enable_key_vault_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] |
Attempts to enable a user managed key vault for encryption of the specified
Data Lake Store account.
@param resource_group_name [String] The name of the Azure resource group that
contains the Data Lake Store account.
@param account_name [String] The name of the Data Lake Store account to
attempt to enable the Key Vault for.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
|
[
"Attempts",
"to",
"enable",
"a",
"user",
"managed",
"key",
"vault",
"for",
"encryption",
"of",
"the",
"specified",
"Data",
"Lake",
"Store",
"account",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_datalake_store/lib/2015-10-01-preview/generated/azure_mgmt_datalake_store/account.rb#L685-L688
|
13,907
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_versions.rb
|
Azure::Logic::Mgmt::V2016_06_01.WorkflowVersions.get_with_http_info
|
def get_with_http_info(resource_group_name, workflow_name, version_id, custom_headers:nil)
get_async(resource_group_name, workflow_name, version_id, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, workflow_name, version_id, custom_headers:nil)
get_async(resource_group_name, workflow_name, version_id, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"version_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"version_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets a workflow version.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param version_id [String] The workflow versionId.
@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",
"version",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_versions.rb#L146-L148
|
13,908
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_versions.rb
|
Azure::Logic::Mgmt::V2016_06_01.WorkflowVersions.list_callback_url_with_http_info
|
def list_callback_url_with_http_info(resource_group_name, workflow_name, version_id, trigger_name, parameters:nil, custom_headers:nil)
list_callback_url_async(resource_group_name, workflow_name, version_id, trigger_name, parameters:parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def list_callback_url_with_http_info(resource_group_name, workflow_name, version_id, trigger_name, parameters:nil, custom_headers:nil)
list_callback_url_async(resource_group_name, workflow_name, version_id, trigger_name, parameters:parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"list_callback_url_with_http_info",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"version_id",
",",
"trigger_name",
",",
"parameters",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"list_callback_url_async",
"(",
"resource_group_name",
",",
"workflow_name",
",",
"version_id",
",",
"trigger_name",
",",
"parameters",
":",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Get the callback url for a trigger of a workflow version.
@param resource_group_name [String] The resource group name.
@param workflow_name [String] The workflow name.
@param version_id [String] The workflow versionId.
@param trigger_name [String] The workflow trigger name.
@param parameters [GetCallbackUrlParameters] The callback URL 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.
|
[
"Get",
"the",
"callback",
"url",
"for",
"a",
"trigger",
"of",
"a",
"workflow",
"version",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_logic/lib/2016-06-01/generated/azure_mgmt_logic/workflow_versions.rb#L246-L248
|
13,909
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/interactions.rb
|
Azure::CustomerInsights::Mgmt::V2017_01_01.Interactions.get_with_http_info
|
def get_with_http_info(resource_group_name, hub_name, interaction_name, locale_code:'en-us', custom_headers:nil)
get_async(resource_group_name, hub_name, interaction_name, locale_code:locale_code, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, hub_name, interaction_name, locale_code:'en-us', custom_headers:nil)
get_async(resource_group_name, hub_name, interaction_name, locale_code:locale_code, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"interaction_name",
",",
"locale_code",
":",
"'en-us'",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"interaction_name",
",",
"locale_code",
":locale_code",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets information about the specified interaction.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param interaction_name [String] The name of the interaction.
@param locale_code [String] Locale of interaction to retrieve, default is
en-us.
@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",
"interaction",
"."
] |
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/interactions.rb#L106-L108
|
13,910
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_customer_insights/lib/2017-01-01/generated/azure_mgmt_customer_insights/interactions.rb
|
Azure::CustomerInsights::Mgmt::V2017_01_01.Interactions.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, hub_name, interaction_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, hub_name, interaction_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, hub_name, interaction_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, hub_name, interaction_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"hub_name",
",",
"interaction_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"hub_name",
",",
"interaction_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates an interaction or updates an existing interaction within a hub.
@param resource_group_name [String] The name of the resource group.
@param hub_name [String] The name of the hub.
@param interaction_name [String] The name of the interaction.
@param parameters [InteractionResourceFormat] Parameters supplied to the
CreateOrUpdate Interaction 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",
"an",
"interaction",
"or",
"updates",
"an",
"existing",
"interaction",
"within",
"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/interactions.rb#L402-L404
|
13,911
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_policy_insights/lib/2017-08-09-preview/generated/azure_mgmt_policy_insights/policy_events.rb
|
Azure::PolicyInsights::Mgmt::V2017_08_09_preview.PolicyEvents.list_query_results_for_subscription
|
def list_query_results_for_subscription(subscription_id, query_options:nil, custom_headers:nil)
response = list_query_results_for_subscription_async(subscription_id, query_options:query_options, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_query_results_for_subscription(subscription_id, query_options:nil, custom_headers:nil)
response = list_query_results_for_subscription_async(subscription_id, query_options:query_options, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_query_results_for_subscription",
"(",
"subscription_id",
",",
"query_options",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_query_results_for_subscription_async",
"(",
"subscription_id",
",",
"query_options",
":query_options",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Queries policy events for the resources under the subscription.
@param subscription_id [String] Microsoft Azure subscription ID.
@param query_options [QueryOptions] Additional parameters for the operation
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [PolicyEventsQueryResults] operation results.
|
[
"Queries",
"policy",
"events",
"for",
"the",
"resources",
"under",
"the",
"subscription",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy_insights/lib/2017-08-09-preview/generated/azure_mgmt_policy_insights/policy_events.rb#L154-L157
|
13,912
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/diagnostic_logger.rb
|
Azure::ApiManagement::Mgmt::V2018_01_01.DiagnosticLogger.delete_with_http_info
|
def delete_with_http_info(resource_group_name, service_name, diagnostic_id, loggerid, custom_headers:nil)
delete_async(resource_group_name, service_name, diagnostic_id, loggerid, custom_headers:custom_headers).value!
end
|
ruby
|
def delete_with_http_info(resource_group_name, service_name, diagnostic_id, loggerid, custom_headers:nil)
delete_async(resource_group_name, service_name, diagnostic_id, loggerid, custom_headers:custom_headers).value!
end
|
[
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"diagnostic_id",
",",
"loggerid",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"diagnostic_id",
",",
"loggerid",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Deletes the specified Logger from Diagnostic.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param diagnostic_id [String] Diagnostic identifier. Must be unique in the
current API Management service instance.
@param loggerid [String] Logger identifier. Must be unique in the 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.
|
[
"Deletes",
"the",
"specified",
"Logger",
"from",
"Diagnostic",
"."
] |
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/diagnostic_logger.rb#L419-L421
|
13,913
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_stream_analytics/lib/2016-03-01/generated/azure_mgmt_stream_analytics/subscriptions.rb
|
Azure::StreamAnalytics::Mgmt::V2016_03_01.Subscriptions.list_quotas
|
def list_quotas(location, custom_headers:nil)
response = list_quotas_async(location, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_quotas(location, custom_headers:nil)
response = list_quotas_async(location, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_quotas",
"(",
"location",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_quotas_async",
"(",
"location",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Retrieves the subscription's current quota information in a particular
region.
@param location [String] The region in which to retrieve the subscription's
quota information. You can find out which regions Azure Stream Analytics is
supported in here: https://azure.microsoft.com/en-us/regions/
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SubscriptionQuotasListResult] operation results.
|
[
"Retrieves",
"the",
"subscription",
"s",
"current",
"quota",
"information",
"in",
"a",
"particular",
"region",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_stream_analytics/lib/2016-03-01/generated/azure_mgmt_stream_analytics/subscriptions.rb#L36-L39
|
13,914
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services/lib/2016-06-01/generated/azure_mgmt_recovery_services/vault_extended_info_operations.rb
|
Azure::RecoveryServices::Mgmt::V2016_06_01.VaultExtendedInfoOperations.create_or_update_with_http_info
|
def create_or_update_with_http_info(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:nil)
create_or_update_async(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:custom_headers).value!
end
|
ruby
|
def create_or_update_with_http_info(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:nil)
create_or_update_async(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:custom_headers).value!
end
|
[
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"vault_name",
",",
"resource_resource_extended_info_details",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"vault_name",
",",
"resource_resource_extended_info_details",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Create vault extended info.
@param resource_group_name [String] The name of the resource group where the
recovery services vault is present.
@param vault_name [String] The name of the recovery services vault.
@param resource_resource_extended_info_details [VaultExtendedInfoResource]
Details of ResourceExtendedInfo
@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",
"vault",
"extended",
"info",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services/lib/2016-06-01/generated/azure_mgmt_recovery_services/vault_extended_info_operations.rb#L150-L152
|
13,915
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services/lib/2016-06-01/generated/azure_mgmt_recovery_services/vault_extended_info_operations.rb
|
Azure::RecoveryServices::Mgmt::V2016_06_01.VaultExtendedInfoOperations.update_with_http_info
|
def update_with_http_info(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:nil)
update_async(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:custom_headers).value!
end
|
ruby
|
def update_with_http_info(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:nil)
update_async(resource_group_name, vault_name, resource_resource_extended_info_details, custom_headers:custom_headers).value!
end
|
[
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"vault_name",
",",
"resource_resource_extended_info_details",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"vault_name",
",",
"resource_resource_extended_info_details",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Update vault extended info.
@param resource_group_name [String] The name of the resource group where the
recovery services vault is present.
@param vault_name [String] The name of the recovery services vault.
@param resource_resource_extended_info_details [VaultExtendedInfoResource]
Details of ResourceExtendedInfo
@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",
"vault",
"extended",
"info",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services/lib/2016-06-01/generated/azure_mgmt_recovery_services/vault_extended_info_operations.rb#L259-L261
|
13,916
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/cdn_management_client.rb
|
Azure::CDN::Mgmt::V2016_10_02.CdnManagementClient.list_operations_next
|
def list_operations_next(next_page_link, custom_headers:nil)
response = list_operations_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_operations_next(next_page_link, custom_headers:nil)
response = list_operations_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_operations_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_operations_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Lists all of the available CDN REST API operations.
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [OperationListResult] operation results.
|
[
"Lists",
"all",
"of",
"the",
"available",
"CDN",
"REST",
"API",
"operations",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2016-10-02/generated/azure_mgmt_cdn/cdn_management_client.rb#L506-L509
|
13,917
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_container_registry/lib/2017-06-01-preview/generated/azure_mgmt_container_registry/replications.rb
|
Azure::ContainerRegistry::Mgmt::V2017_06_01_preview.Replications.get_with_http_info
|
def get_with_http_info(resource_group_name, registry_name, replication_name, custom_headers:nil)
get_async(resource_group_name, registry_name, replication_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, registry_name, replication_name, custom_headers:nil)
get_async(resource_group_name, registry_name, replication_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"registry_name",
",",
"replication_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"replication_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the properties of the specified replication.
@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 replication_name [String] The name of the replication.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Gets",
"the",
"properties",
"of",
"the",
"specified",
"replication",
"."
] |
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/replications.rb#L53-L55
|
13,918
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_container_registry/lib/2017-06-01-preview/generated/azure_mgmt_container_registry/replications.rb
|
Azure::ContainerRegistry::Mgmt::V2017_06_01_preview.Replications.begin_delete_with_http_info
|
def begin_delete_with_http_info(resource_group_name, registry_name, replication_name, custom_headers:nil)
begin_delete_async(resource_group_name, registry_name, replication_name, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_delete_with_http_info(resource_group_name, registry_name, replication_name, custom_headers:nil)
begin_delete_async(resource_group_name, registry_name, replication_name, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"registry_name",
",",
"replication_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"replication_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Deletes a replication from a 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 replication_name [String] The name of the replication.
@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",
"replication",
"from",
"a",
"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/replications.rb#L521-L523
|
13,919
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/interface_endpoints.rb
|
Azure::Network::Mgmt::V2019_02_01.InterfaceEndpoints.get_with_http_info
|
def get_with_http_info(resource_group_name, interface_endpoint_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, interface_endpoint_name, expand:expand, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, interface_endpoint_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, interface_endpoint_name, expand:expand, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"interface_endpoint_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"interface_endpoint_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the specified interface endpoint by resource group.
@param resource_group_name [String] The name of the resource group.
@param interface_endpoint_name [String] The name of the interface endpoint.
@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",
"interface",
"endpoint",
"by",
"resource",
"group",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/interface_endpoints.rb#L89-L91
|
13,920
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/interface_endpoints.rb
|
Azure::Network::Mgmt::V2019_02_01.InterfaceEndpoints.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, interface_endpoint_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, interface_endpoint_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, interface_endpoint_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, interface_endpoint_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"interface_endpoint_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"interface_endpoint_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates or updates an interface endpoint in the specified resource group.
@param resource_group_name [String] The name of the resource group.
@param interface_endpoint_name [String] The name of the interface endpoint.
@param parameters [InterfaceEndpoint] Parameters supplied to the create or
update interface endpoint 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",
"interface",
"endpoint",
"in",
"the",
"specified",
"resource",
"group",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/interface_endpoints.rb#L485-L487
|
13,921
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/environments.rb
|
Azure::Labservices::Mgmt::V2018_10_15.Environments.begin_delete_with_http_info
|
def begin_delete_with_http_info(resource_group_name, lab_account_name, lab_name, environment_setting_name, environment_name, custom_headers:nil)
begin_delete_async(resource_group_name, lab_account_name, lab_name, environment_setting_name, environment_name, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_delete_with_http_info(resource_group_name, lab_account_name, lab_name, environment_setting_name, environment_name, custom_headers:nil)
begin_delete_async(resource_group_name, lab_account_name, lab_name, environment_setting_name, environment_name, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"lab_name",
",",
"environment_setting_name",
",",
"environment_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"lab_name",
",",
"environment_setting_name",
",",
"environment_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Delete environment. This operation can take a while to complete
@param resource_group_name [String] The name of the resource group.
@param lab_account_name [String] The name of the lab Account.
@param lab_name [String] The name of the lab.
@param environment_setting_name [String] The name of the environment Setting.
@param environment_name [String] The name of the environment.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Delete",
"environment",
".",
"This",
"operation",
"can",
"take",
"a",
"while",
"to",
"complete"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/environments.rb#L801-L803
|
13,922
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_edgegateway/lib/2019-03-01/generated/azure_mgmt_edgegateway/roles.rb
|
Azure::EdgeGateway::Mgmt::V2019_03_01.Roles.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(device_name, name, role, resource_group_name, custom_headers:nil)
begin_create_or_update_async(device_name, name, role, resource_group_name, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(device_name, name, role, resource_group_name, custom_headers:nil)
begin_create_or_update_async(device_name, name, role, resource_group_name, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"device_name",
",",
"name",
",",
"role",
",",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"device_name",
",",
"name",
",",
"role",
",",
"resource_group_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Create or update a role.
@param device_name [String] The device name.
@param name [String] The role name.
@param role [Role] The role properties.
@param resource_group_name [String] The resource group name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Create",
"or",
"update",
"a",
"role",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_edgegateway/lib/2019-03-01/generated/azure_mgmt_edgegateway/roles.rb#L327-L329
|
13,923
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_api_management/lib/2017-03-01/generated/azure_mgmt_api_management/tenant_configuration.rb
|
Azure::ApiManagement::Mgmt::V2017_03_01.TenantConfiguration.get_sync_state
|
def get_sync_state(resource_group_name, service_name, custom_headers:nil)
response = get_sync_state_async(resource_group_name, service_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_sync_state(resource_group_name, service_name, custom_headers:nil)
response = get_sync_state_async(resource_group_name, service_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_sync_state",
"(",
"resource_group_name",
",",
"service_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_sync_state_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets the status of the most recent synchronization between the configuration
database and the Git repository.
@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 [TenantConfigurationSyncStateContract] operation results.
|
[
"Gets",
"the",
"status",
"of",
"the",
"most",
"recent",
"synchronization",
"between",
"the",
"configuration",
"database",
"and",
"the",
"Git",
"repository",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2017-03-01/generated/azure_mgmt_api_management/tenant_configuration.rb#L176-L179
|
13,924
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_sql/lib/2018-06-01-preview/generated/azure_mgmt_sql/database_schemas.rb
|
Azure::SQL::Mgmt::V2018_06_01_preview.DatabaseSchemas.list_by_database_with_http_info
|
def list_by_database_with_http_info(resource_group_name, server_name, database_name, filter:nil, custom_headers:nil)
list_by_database_async(resource_group_name, server_name, database_name, filter:filter, custom_headers:custom_headers).value!
end
|
ruby
|
def list_by_database_with_http_info(resource_group_name, server_name, database_name, filter:nil, custom_headers:nil)
list_by_database_async(resource_group_name, server_name, database_name, filter:filter, custom_headers:custom_headers).value!
end
|
[
"def",
"list_by_database_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"database_name",
",",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"list_by_database_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"database_name",
",",
"filter",
":",
"filter",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
List database schemas
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server.
@param database_name [String] The name of the database.
@param filter [String] An OData filter expression that filters elements in
the collection.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"List",
"database",
"schemas"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2018-06-01-preview/generated/azure_mgmt_sql/database_schemas.rb#L62-L64
|
13,925
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_compute/lib/2018-06-01/generated/azure_mgmt_compute/gallery_images.rb
|
Azure::Compute::Mgmt::V2018_06_01.GalleryImages.get_with_http_info
|
def get_with_http_info(resource_group_name, gallery_name, gallery_image_name, custom_headers:nil)
get_async(resource_group_name, gallery_name, gallery_image_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, gallery_name, gallery_image_name, custom_headers:nil)
get_async(resource_group_name, gallery_name, gallery_image_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"gallery_name",
",",
"gallery_image_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"gallery_name",
",",
"gallery_image_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Retrieves information about a gallery Image Definition.
@param resource_group_name [String] The name of the resource group.
@param gallery_name [String] The name of the Shared Image Gallery from which
the Image Definitions are to be retrieved.
@param gallery_image_name [String] The name of the gallery Image Definition
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.
|
[
"Retrieves",
"information",
"about",
"a",
"gallery",
"Image",
"Definition",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-06-01/generated/azure_mgmt_compute/gallery_images.rb#L111-L113
|
13,926
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/images.rb
|
Azure::Compute::Mgmt::V2018_04_01.Images.get_with_http_info
|
def get_with_http_info(resource_group_name, image_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, image_name, expand:expand, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, image_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, image_name, expand:expand, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"image_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"image_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets an image.
@param resource_group_name [String] The name of the resource group.
@param image_name [String] The name of the image.
@param expand [String] The expand expression to apply on the operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Gets",
"an",
"image",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/images.rb#L179-L181
|
13,927
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/images.rb
|
Azure::Compute::Mgmt::V2018_04_01.Images.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, image_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, image_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, image_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, image_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"image_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"image_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Create or update an image.
@param resource_group_name [String] The name of the resource group.
@param image_name [String] The name of the image.
@param parameters [Image] Parameters supplied to the Create Image operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Create",
"or",
"update",
"an",
"image",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/images.rb#L452-L454
|
13,928
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/images.rb
|
Azure::Compute::Mgmt::V2018_04_01.Images.begin_update_with_http_info
|
def begin_update_with_http_info(resource_group_name, image_name, parameters, custom_headers:nil)
begin_update_async(resource_group_name, image_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_update_with_http_info(resource_group_name, image_name, parameters, custom_headers:nil)
begin_update_async(resource_group_name, image_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_update_with_http_info",
"(",
"resource_group_name",
",",
"image_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_async",
"(",
"resource_group_name",
",",
"image_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Update an image.
@param resource_group_name [String] The name of the resource group.
@param image_name [String] The name of the image.
@param parameters [ImageUpdate] Parameters supplied to the Update Image
operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Update",
"an",
"image",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_compute/lib/2018-04-01/generated/azure_mgmt_compute/images.rb#L567-L569
|
13,929
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-04-01/generated/azure_mgmt_network/express_route_cross_connections.rb
|
Azure::Network::Mgmt::V2018_04_01.ExpressRouteCrossConnections.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, cross_connection_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, cross_connection_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, cross_connection_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, cross_connection_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"cross_connection_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"cross_connection_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Update the specified ExpressRouteCrossConnection.
@param resource_group_name [String] The name of the resource group.
@param cross_connection_name [String] The name of the
ExpressRouteCrossConnection.
@param parameters [ExpressRouteCrossConnection] Parameters supplied to the
update express route crossConnection operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Update",
"the",
"specified",
"ExpressRouteCrossConnection",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-04-01/generated/azure_mgmt_network/express_route_cross_connections.rb#L567-L569
|
13,930
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-04-01/generated/azure_mgmt_network/express_route_cross_connections.rb
|
Azure::Network::Mgmt::V2018_04_01.ExpressRouteCrossConnections.begin_list_arp_table_with_http_info
|
def begin_list_arp_table_with_http_info(resource_group_name, cross_connection_name, peering_name, device_path, custom_headers:nil)
begin_list_arp_table_async(resource_group_name, cross_connection_name, peering_name, device_path, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_list_arp_table_with_http_info(resource_group_name, cross_connection_name, peering_name, device_path, custom_headers:nil)
begin_list_arp_table_async(resource_group_name, cross_connection_name, peering_name, device_path, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_list_arp_table_with_http_info",
"(",
"resource_group_name",
",",
"cross_connection_name",
",",
"peering_name",
",",
"device_path",
",",
"custom_headers",
":",
"nil",
")",
"begin_list_arp_table_async",
"(",
"resource_group_name",
",",
"cross_connection_name",
",",
"peering_name",
",",
"device_path",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the currently advertised ARP table associated with the express route
cross connection in a resource group.
@param resource_group_name [String] The name of the resource group.
@param cross_connection_name [String] The name of the
ExpressRouteCrossConnection.
@param peering_name [String] The name of the peering.
@param device_path [String] The path of the device
@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",
"currently",
"advertised",
"ARP",
"table",
"associated",
"with",
"the",
"express",
"route",
"cross",
"connection",
"in",
"a",
"resource",
"group",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-04-01/generated/azure_mgmt_network/express_route_cross_connections.rb#L784-L786
|
13,931
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_protection_plans.rb
|
Azure::Network::Mgmt::V2019_02_01.DdosProtectionPlans.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"ddos_protection_plan_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"ddos_protection_plan_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates or updates a DDoS protection plan.
@param resource_group_name [String] The name of the resource group.
@param ddos_protection_plan_name [String] The name of the DDoS protection
plan.
@param parameters [DdosProtectionPlan] 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",
"protection",
"plan",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_protection_plans.rb#L542-L544
|
13,932
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2019-02-01/generated/azure_mgmt_network/ddos_protection_plans.rb
|
Azure::Network::Mgmt::V2019_02_01.DdosProtectionPlans.begin_update_tags_with_http_info
|
def begin_update_tags_with_http_info(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_update_tags_with_http_info(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, ddos_protection_plan_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"ddos_protection_plan_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"ddos_protection_plan_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Update a DDoS protection plan tags
@param resource_group_name [String] The name of the resource group.
@param ddos_protection_plan_name [String] The name of the DDoS protection
plan.
@param parameters [TagsObject] Parameters supplied to the update DDoS
protection plan 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",
"protection",
"plan",
"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_protection_plans.rb#L661-L663
|
13,933
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/capabilities.rb
|
Azure::SQL::Mgmt::V2014_04_01.Capabilities.list_by_location
|
def list_by_location(location_id, custom_headers:nil)
response = list_by_location_async(location_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_by_location(location_id, custom_headers:nil)
response = list_by_location_async(location_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_by_location",
"(",
"location_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_location_async",
"(",
"location_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets the capabilities available for the specified location.
@param location_id [String] The location id whose capabilities are retrieved.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [LocationCapabilities] operation results.
|
[
"Gets",
"the",
"capabilities",
"available",
"for",
"the",
"specified",
"location",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2014-04-01/generated/azure_mgmt_sql/capabilities.rb#L36-L39
|
13,934
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services_backup/lib/2016-06-01/generated/azure_mgmt_recovery_services_backup/protection_containers.rb
|
Azure::RecoveryServicesBackup::Mgmt::V2016_06_01.ProtectionContainers.refresh_with_http_info
|
def refresh_with_http_info(vault_name, resource_group_name, fabric_name, custom_headers:nil)
refresh_async(vault_name, resource_group_name, fabric_name, custom_headers:custom_headers).value!
end
|
ruby
|
def refresh_with_http_info(vault_name, resource_group_name, fabric_name, custom_headers:nil)
refresh_async(vault_name, resource_group_name, fabric_name, custom_headers:custom_headers).value!
end
|
[
"def",
"refresh_with_http_info",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"custom_headers",
":",
"nil",
")",
"refresh_async",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Discovers the containers in the subscription that can be protected in a
Recovery Services vault. This is an asynchronous operation. To learn the
status of the operation, use the GetRefreshOperationResult API.
@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 fabric_name [String] The fabric name associated with the container.
@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.
|
[
"Discovers",
"the",
"containers",
"in",
"the",
"subscription",
"that",
"can",
"be",
"protected",
"in",
"a",
"Recovery",
"Services",
"vault",
".",
"This",
"is",
"an",
"asynchronous",
"operation",
".",
"To",
"learn",
"the",
"status",
"of",
"the",
"operation",
"use",
"the",
"GetRefreshOperationResult",
"API",
"."
] |
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_containers.rb#L279-L281
|
13,935
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_network_gateway_connections.rb
|
Azure::Network::Mgmt::V2018_07_01.VirtualNetworkGatewayConnections.get_shared_key
|
def get_shared_key(resource_group_name, virtual_network_gateway_connection_name, custom_headers:nil)
response = get_shared_key_async(resource_group_name, virtual_network_gateway_connection_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_shared_key(resource_group_name, virtual_network_gateway_connection_name, custom_headers:nil)
response = get_shared_key_async(resource_group_name, virtual_network_gateway_connection_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_shared_key",
"(",
"resource_group_name",
",",
"virtual_network_gateway_connection_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_shared_key_async",
"(",
"resource_group_name",
",",
"virtual_network_gateway_connection_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
The Get VirtualNetworkGatewayConnectionSharedKey operation retrieves
information about the specified virtual network gateway connection shared key
through Network resource provider.
@param resource_group_name [String] The name of the resource group.
@param virtual_network_gateway_connection_name [String] The virtual network
gateway connection shared key name.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ConnectionSharedKey] operation results.
|
[
"The",
"Get",
"VirtualNetworkGatewayConnectionSharedKey",
"operation",
"retrieves",
"information",
"about",
"the",
"specified",
"virtual",
"network",
"gateway",
"connection",
"shared",
"key",
"through",
"Network",
"resource",
"provider",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_network_gateway_connections.rb#L321-L324
|
13,936
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_network_gateway_connections.rb
|
Azure::Network::Mgmt::V2018_07_01.VirtualNetworkGatewayConnections.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"virtual_network_gateway_connection_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"virtual_network_gateway_connection_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates or updates a virtual network gateway connection in the specified
resource group.
@param resource_group_name [String] The name of the resource group.
@param virtual_network_gateway_connection_name [String] The name of the
virtual network gateway connection.
@param parameters [VirtualNetworkGatewayConnection] Parameters supplied to
the create or update virtual network gateway connection operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Creates",
"or",
"updates",
"a",
"virtual",
"network",
"gateway",
"connection",
"in",
"the",
"specified",
"resource",
"group",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_network_gateway_connections.rb#L586-L588
|
13,937
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_network_gateway_connections.rb
|
Azure::Network::Mgmt::V2018_07_01.VirtualNetworkGatewayConnections.begin_update_tags_with_http_info
|
def begin_update_tags_with_http_info(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_update_tags_with_http_info(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, virtual_network_gateway_connection_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"virtual_network_gateway_connection_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"virtual_network_gateway_connection_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Updates a virtual network gateway connection tags.
@param resource_group_name [String] The name of the resource group.
@param virtual_network_gateway_connection_name [String] The name of the
virtual network gateway connection.
@param parameters [TagsObject] Parameters supplied to update virtual network
gateway connection tags.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Updates",
"a",
"virtual",
"network",
"gateway",
"connection",
"tags",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/virtual_network_gateway_connections.rb#L790-L792
|
13,938
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/linked_services.rb
|
Azure::OperationalInsights::Mgmt::V2015_11_01_preview.LinkedServices.delete_with_http_info
|
def delete_with_http_info(resource_group_name, workspace_name, linked_service_name, custom_headers:nil)
delete_async(resource_group_name, workspace_name, linked_service_name, custom_headers:custom_headers).value!
end
|
ruby
|
def delete_with_http_info(resource_group_name, workspace_name, linked_service_name, custom_headers:nil)
delete_async(resource_group_name, workspace_name, linked_service_name, custom_headers:custom_headers).value!
end
|
[
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"linked_service_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"linked_service_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Deletes a linked service instance.
@param resource_group_name [String] The name of the resource group to get.
The name is case insensitive.
@param workspace_name [String] Name of the Log Analytics Workspace that
contains the linkedServices resource
@param linked_service_name [String] Name of the linked service.
@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",
"linked",
"service",
"instance",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/linked_services.rb#L183-L185
|
13,939
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/linked_services.rb
|
Azure::OperationalInsights::Mgmt::V2015_11_01_preview.LinkedServices.get_with_http_info
|
def get_with_http_info(resource_group_name, workspace_name, linked_service_name, custom_headers:nil)
get_async(resource_group_name, workspace_name, linked_service_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, workspace_name, linked_service_name, custom_headers:nil)
get_async(resource_group_name, workspace_name, linked_service_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"linked_service_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"linked_service_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets a linked service instance.
@param resource_group_name [String] The name of the resource group to get.
The name is case insensitive.
@param workspace_name [String] Name of the Log Analytics Workspace that
contains the linkedServices resource
@param linked_service_name [String] Name of the linked service.
@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",
"linked",
"service",
"instance",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/linked_services.rb#L278-L280
|
13,940
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/linked_services.rb
|
Azure::OperationalInsights::Mgmt::V2015_11_01_preview.LinkedServices.list_by_workspace
|
def list_by_workspace(resource_group_name, workspace_name, custom_headers:nil)
response = list_by_workspace_async(resource_group_name, workspace_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_by_workspace(resource_group_name, workspace_name, custom_headers:nil)
response = list_by_workspace_async(resource_group_name, workspace_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_by_workspace",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_workspace_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets the linked services instances in a workspace.
@param resource_group_name [String] The name of the resource group to get.
The name is case insensitive.
@param workspace_name [String] Name of the Log Analytics Workspace that
contains the linked services.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [LinkedServiceListResult] operation results.
|
[
"Gets",
"the",
"linked",
"services",
"instances",
"in",
"a",
"workspace",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/linked_services.rb#L364-L367
|
13,941
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/node_reports.rb
|
Azure::Automation::Mgmt::V2015_10_31.NodeReports.get_with_http_info
|
def get_with_http_info(resource_group_name, automation_account_name, node_id, report_id, custom_headers:nil)
get_async(resource_group_name, automation_account_name, node_id, report_id, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, automation_account_name, node_id, report_id, custom_headers:nil)
get_async(resource_group_name, automation_account_name, node_id, report_id, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_id",
",",
"report_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"node_id",
",",
"report_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Retrieve the Dsc node report data by node id and report id.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param node_id [String] The Dsc node id.
@param report_id [String] The report 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",
"node",
"report",
"data",
"by",
"node",
"id",
"and",
"report",
"id",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/node_reports.rb#L155-L157
|
13,942
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_network_mappings.rb
|
Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10.ReplicationNetworkMappings.get_with_http_info
|
def get_with_http_info(fabric_name, network_name, network_mapping_name, custom_headers:nil)
get_async(fabric_name, network_name, network_mapping_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(fabric_name, network_name, network_mapping_name, custom_headers:nil)
get_async(fabric_name, network_name, network_mapping_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"fabric_name",
",",
"network_name",
",",
"network_mapping_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"fabric_name",
",",
"network_name",
",",
"network_mapping_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets network mapping by name.
Gets the details of an ASR network mapping
@param fabric_name [String] Primary fabric name.
@param network_name [String] Primary network name.
@param network_mapping_name [String] Network 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",
"network",
"mapping",
"by",
"name",
"."
] |
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_network_mappings.rb#L247-L249
|
13,943
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services_site_recovery/lib/2016-08-10/generated/azure_mgmt_recovery_services_site_recovery/replication_network_mappings.rb
|
Azure::RecoveryServicesSiteRecovery::Mgmt::V2016_08_10.ReplicationNetworkMappings.begin_create_with_http_info
|
def begin_create_with_http_info(fabric_name, network_name, network_mapping_name, input, custom_headers:nil)
begin_create_async(fabric_name, network_name, network_mapping_name, input, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_with_http_info(fabric_name, network_name, network_mapping_name, input, custom_headers:nil)
begin_create_async(fabric_name, network_name, network_mapping_name, input, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_with_http_info",
"(",
"fabric_name",
",",
"network_name",
",",
"network_mapping_name",
",",
"input",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_async",
"(",
"fabric_name",
",",
"network_name",
",",
"network_mapping_name",
",",
"input",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates network mapping.
The operation to create an ASR network mapping.
@param fabric_name [String] Primary fabric name.
@param network_name [String] Primary network name.
@param network_mapping_name [String] Network mapping name.
@param input [CreateNetworkMappingInput] Create network mapping input.
@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",
"network",
"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_network_mappings.rb#L491-L493
|
13,944
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_policy/lib/2018-05-01/generated/azure_mgmt_policy/policy_definitions.rb
|
Azure::Policy::Mgmt::V2018_05_01.PolicyDefinitions.get_built_in
|
def get_built_in(policy_definition_name, custom_headers:nil)
response = get_built_in_async(policy_definition_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_built_in(policy_definition_name, custom_headers:nil)
response = get_built_in_async(policy_definition_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_built_in",
"(",
"policy_definition_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_built_in_async",
"(",
"policy_definition_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Retrieves a built-in policy definition.
This operation retrieves the built-in policy definition with the given name.
@param policy_definition_name [String] The name of the built-in policy
definition to get.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [PolicyDefinition] operation results.
|
[
"Retrieves",
"a",
"built",
"-",
"in",
"policy",
"definition",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy/lib/2018-05-01/generated/azure_mgmt_policy/policy_definitions.rb#L337-L340
|
13,945
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_policy/lib/2018-05-01/generated/azure_mgmt_policy/policy_definitions.rb
|
Azure::Policy::Mgmt::V2018_05_01.PolicyDefinitions.delete_at_management_group
|
def delete_at_management_group(policy_definition_name, management_group_id, custom_headers:nil)
response = delete_at_management_group_async(policy_definition_name, management_group_id, custom_headers:custom_headers).value!
nil
end
|
ruby
|
def delete_at_management_group(policy_definition_name, management_group_id, custom_headers:nil)
response = delete_at_management_group_async(policy_definition_name, management_group_id, custom_headers:custom_headers).value!
nil
end
|
[
"def",
"delete_at_management_group",
"(",
"policy_definition_name",
",",
"management_group_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_at_management_group_async",
"(",
"policy_definition_name",
",",
"management_group_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] |
Deletes a policy definition in a management group.
This operation deletes the policy definition in the given management group
with the given name.
@param policy_definition_name [String] The name of the policy definition to
delete.
@param management_group_id [String] The ID of the management group.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
|
[
"Deletes",
"a",
"policy",
"definition",
"in",
"a",
"management",
"group",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_policy/lib/2018-05-01/generated/azure_mgmt_policy/policy_definitions.rb#L548-L551
|
13,946
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_cdn/lib/2015-06-01/generated/azure_mgmt_cdn/origins.rb
|
Azure::CDN::Mgmt::V2015_06_01.Origins.delete_if_exists
|
def delete_if_exists(origin_name, endpoint_name, profile_name, resource_group_name, custom_headers:nil)
response = delete_if_exists_async(origin_name, endpoint_name, profile_name, resource_group_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def delete_if_exists(origin_name, endpoint_name, profile_name, resource_group_name, custom_headers:nil)
response = delete_if_exists_async(origin_name, endpoint_name, profile_name, resource_group_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"delete_if_exists",
"(",
"origin_name",
",",
"endpoint_name",
",",
"profile_name",
",",
"resource_group_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_if_exists_async",
"(",
"origin_name",
",",
"endpoint_name",
",",
"profile_name",
",",
"resource_group_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Deletes an existing CDN origin within an endpoint.
@param origin_name [String] Name of the origin. Must be unique within
endpoint.
@param endpoint_name [String] Name of the endpoint within the CDN profile.
@param profile_name [String] Name of the CDN profile within the resource
group.
@param resource_group_name [String] Name of the resource group within the
Azure subscription.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Origin] operation results.
|
[
"Deletes",
"an",
"existing",
"CDN",
"origin",
"within",
"an",
"endpoint",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_cdn/lib/2015-06-01/generated/azure_mgmt_cdn/origins.rb#L361-L364
|
13,947
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_sql/lib/2018-06-01-preview/generated/azure_mgmt_sql/managed_database_schemas.rb
|
Azure::SQL::Mgmt::V2018_06_01_preview.ManagedDatabaseSchemas.list_by_database_as_lazy
|
def list_by_database_as_lazy(resource_group_name, managed_instance_name, database_name, filter:nil, custom_headers:nil)
response = list_by_database_async(resource_group_name, managed_instance_name, database_name, filter:filter, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_by_database_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end
|
ruby
|
def list_by_database_as_lazy(resource_group_name, managed_instance_name, database_name, filter:nil, custom_headers:nil)
response = list_by_database_async(resource_group_name, managed_instance_name, database_name, filter:filter, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_by_database_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end
|
[
"def",
"list_by_database_as_lazy",
"(",
"resource_group_name",
",",
"managed_instance_name",
",",
"database_name",
",",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_database_async",
"(",
"resource_group_name",
",",
"managed_instance_name",
",",
"database_name",
",",
"filter",
":",
"filter",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"unless",
"response",
".",
"nil?",
"page",
"=",
"response",
".",
"body",
"page",
".",
"next_method",
"=",
"Proc",
".",
"new",
"do",
"|",
"next_page_link",
"|",
"list_by_database_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
"end",
"page",
"end",
"end"
] |
List managed database schemas
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param managed_instance_name [String] The name of the managed instance.
@param database_name [String] The name of the database.
@param filter [String] An OData filter expression that filters elements in
the collection.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [DatabaseSchemaListResult] which provide lazy access to pages of the
response.
|
[
"List",
"managed",
"database",
"schemas"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_sql/lib/2018-06-01-preview/generated/azure_mgmt_sql/managed_database_schemas.rb#L345-L354
|
13,948
|
Azure/azure-sdk-for-ruby
|
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb
|
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementTermLists.get_details
|
def get_details(list_id, custom_headers:nil)
response = get_details_async(list_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_details(list_id, custom_headers:nil)
response = get_details_async(list_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_details",
"(",
"list_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_details_async",
"(",
"list_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Returns list Id details of the term list with list Id equal to list Id
passed.
@param list_id [String] List Id of the image list.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [TermList] operation results.
|
[
"Returns",
"list",
"Id",
"details",
"of",
"the",
"term",
"list",
"with",
"list",
"Id",
"equal",
"to",
"list",
"Id",
"passed",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb#L44-L47
|
13,949
|
Azure/azure-sdk-for-ruby
|
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb
|
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementTermLists.delete
|
def delete(list_id, custom_headers:nil)
response = delete_async(list_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def delete(list_id, custom_headers:nil)
response = delete_async(list_id, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"delete",
"(",
"list_id",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"delete_async",
"(",
"list_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Deletes term list with the list Id equal to list Id passed.
@param list_id [String] List Id of the image list.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [String] operation results.
|
[
"Deletes",
"term",
"list",
"with",
"the",
"list",
"Id",
"equal",
"to",
"list",
"Id",
"passed",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb#L133-L136
|
13,950
|
Azure/azure-sdk-for-ruby
|
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb
|
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementTermLists.create
|
def create(content_type, body, custom_headers:nil)
response = create_async(content_type, body, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def create(content_type, body, custom_headers:nil)
response = create_async(content_type, body, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"create",
"(",
"content_type",
",",
"body",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_async",
"(",
"content_type",
",",
"body",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Creates a Term List
@param content_type [String] The content type.
@param body [Body] Schema of the body.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [TermList] operation results.
|
[
"Creates",
"a",
"Term",
"List"
] |
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_lists.rb#L331-L334
|
13,951
|
Azure/azure-sdk-for-ruby
|
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb
|
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementTermLists.get_all_term_lists
|
def get_all_term_lists(custom_headers:nil)
response = get_all_term_lists_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_all_term_lists(custom_headers:nil)
response = get_all_term_lists_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_all_term_lists",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_all_term_lists_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
gets all the Term Lists
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array] operation results.
|
[
"gets",
"all",
"the",
"Term",
"Lists"
] |
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_lists.rb#L427-L430
|
13,952
|
Azure/azure-sdk-for-ruby
|
data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb
|
Azure::CognitiveServices::ContentModerator::V1_0.ListManagementTermLists.refresh_index_method
|
def refresh_index_method(list_id, language, custom_headers:nil)
response = refresh_index_method_async(list_id, language, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def refresh_index_method(list_id, language, custom_headers:nil)
response = refresh_index_method_async(list_id, language, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"refresh_index_method",
"(",
"list_id",
",",
"language",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"refresh_index_method_async",
"(",
"list_id",
",",
"language",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Refreshes the index of the list with list Id equal to 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 [RefreshIndex] operation results.
|
[
"Refreshes",
"the",
"index",
"of",
"the",
"list",
"with",
"list",
"Id",
"equal",
"to",
"list",
"ID",
"passed",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/data/azure_cognitiveservices_contentmoderator/lib/1.0/generated/azure_cognitiveservices_contentmoderator/list_management_term_lists.rb#L527-L530
|
13,953
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/routes.rb
|
Azure::Network::Mgmt::V2018_07_01.Routes.get_with_http_info
|
def get_with_http_info(resource_group_name, route_table_name, route_name, custom_headers:nil)
get_async(resource_group_name, route_table_name, route_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, route_table_name, route_name, custom_headers:nil)
get_async(resource_group_name, route_table_name, route_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"route_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"route_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the specified route from a 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 route_name [String] The name of the route.
@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",
"from",
"a",
"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/routes.rb#L91-L93
|
13,954
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/routes.rb
|
Azure::Network::Mgmt::V2018_07_01.Routes.list
|
def list(resource_group_name, route_table_name, custom_headers:nil)
first_page = list_as_lazy(resource_group_name, route_table_name, custom_headers:custom_headers)
first_page.get_all_items
end
|
ruby
|
def list(resource_group_name, route_table_name, custom_headers:nil)
first_page = list_as_lazy(resource_group_name, route_table_name, custom_headers:custom_headers)
first_page.get_all_items
end
|
[
"def",
"list",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"custom_headers",
":",
"nil",
")",
"first_page",
"=",
"list_as_lazy",
"(",
"resource_group_name",
",",
"route_table_name",
",",
"custom_headers",
":custom_headers",
")",
"first_page",
".",
"get_all_items",
"end"
] |
Gets all routes in a 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.
@return [Array<Route>] operation results.
|
[
"Gets",
"all",
"routes",
"in",
"a",
"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/routes.rb#L218-L221
|
13,955
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_monitor/lib/2018-11-27-preview/generated/azure_mgmt_monitor/vminsights.rb
|
Azure::Monitor::Mgmt::V2018_11_27_preview.VMInsights.get_onboarding_status
|
def get_onboarding_status(resource_uri, custom_headers:nil)
response = get_onboarding_status_async(resource_uri, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_onboarding_status(resource_uri, custom_headers:nil)
response = get_onboarding_status_async(resource_uri, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_onboarding_status",
"(",
"resource_uri",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_onboarding_status_async",
"(",
"resource_uri",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Retrieves the VM Insights onboarding status for the specified resource or
resource scope.
@param resource_uri [String] The fully qualified Azure Resource manager
identifier of the resource, or scope, whose status to retrieve.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [VMInsightsOnboardingStatus] operation results.
|
[
"Retrieves",
"the",
"VM",
"Insights",
"onboarding",
"status",
"for",
"the",
"specified",
"resource",
"or",
"resource",
"scope",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2018-11-27-preview/generated/azure_mgmt_monitor/vminsights.rb#L35-L38
|
13,956
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/variable_operations.rb
|
Azure::Automation::Mgmt::V2015_10_31.VariableOperations.create_or_update_with_http_info
|
def create_or_update_with_http_info(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def create_or_update_with_http_info(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:nil)
create_or_update_async(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"variable_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"create_or_update_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"variable_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Create a variable.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param variable_name [String] The variable name.
@param parameters [VariableCreateOrUpdateParameters] The parameters supplied
to the create or update variable operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Create",
"a",
"variable",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/variable_operations.rb#L55-L57
|
13,957
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/variable_operations.rb
|
Azure::Automation::Mgmt::V2015_10_31.VariableOperations.update_with_http_info
|
def update_with_http_info(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:nil)
update_async(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def update_with_http_info(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:nil)
update_async(resource_group_name, automation_account_name, variable_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"update_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"variable_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"update_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"variable_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Update a variable.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param variable_name [String] The variable name.
@param parameters [VariableUpdateParameters] The parameters supplied to the
update variable operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Update",
"a",
"variable",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/variable_operations.rb#L178-L180
|
13,958
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/variable_operations.rb
|
Azure::Automation::Mgmt::V2015_10_31.VariableOperations.get_with_http_info
|
def get_with_http_info(resource_group_name, automation_account_name, variable_name, custom_headers:nil)
get_async(resource_group_name, automation_account_name, variable_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, automation_account_name, variable_name, custom_headers:nil)
get_async(resource_group_name, automation_account_name, variable_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"variable_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"automation_account_name",
",",
"variable_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Retrieve the variable identified by variable name.
@param resource_group_name [String] Name of an Azure Resource group.
@param automation_account_name [String] The name of the automation account.
@param variable_name [String] The name of variable.
@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",
"variable",
"identified",
"by",
"variable",
"name",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_automation/lib/2015-10-31/generated/azure_mgmt_automation/variable_operations.rb#L375-L377
|
13,959
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/public_ipprefixes.rb
|
Azure::Network::Mgmt::V2018_07_01.PublicIPPrefixes.get_with_http_info
|
def get_with_http_info(resource_group_name, public_ip_prefix_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, public_ip_prefix_name, expand:expand, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, public_ip_prefix_name, expand:nil, custom_headers:nil)
get_async(resource_group_name, public_ip_prefix_name, expand:expand, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"public_ip_prefix_name",
",",
"expand",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"public_ip_prefix_name",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the specified public IP prefix in a specified resource group.
@param resource_group_name [String] The name of the resource group.
@param public_ip_prefix_name [String] The name of the Public IP Prefix.
@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",
"public",
"IP",
"prefix",
"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/public_ipprefixes.rb#L89-L91
|
13,960
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/public_ipprefixes.rb
|
Azure::Network::Mgmt::V2018_07_01.PublicIPPrefixes.begin_create_or_update_with_http_info
|
def begin_create_or_update_with_http_info(resource_group_name, public_ip_prefix_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, public_ip_prefix_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_or_update_with_http_info(resource_group_name, public_ip_prefix_name, parameters, custom_headers:nil)
begin_create_or_update_async(resource_group_name, public_ip_prefix_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_or_update_with_http_info",
"(",
"resource_group_name",
",",
"public_ip_prefix_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_or_update_async",
"(",
"resource_group_name",
",",
"public_ip_prefix_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates or updates a static or dynamic public IP prefix.
@param resource_group_name [String] The name of the resource group.
@param public_ip_prefix_name [String] The name of the public IP prefix.
@param parameters [PublicIPPrefix] Parameters supplied to the create or
update public IP prefix 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",
"static",
"or",
"dynamic",
"public",
"IP",
"prefix",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/public_ipprefixes.rb#L531-L533
|
13,961
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/public_ipprefixes.rb
|
Azure::Network::Mgmt::V2018_07_01.PublicIPPrefixes.begin_update_tags_with_http_info
|
def begin_update_tags_with_http_info(resource_group_name, public_ip_prefix_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, public_ip_prefix_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_update_tags_with_http_info(resource_group_name, public_ip_prefix_name, parameters, custom_headers:nil)
begin_update_tags_async(resource_group_name, public_ip_prefix_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_update_tags_with_http_info",
"(",
"resource_group_name",
",",
"public_ip_prefix_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_update_tags_async",
"(",
"resource_group_name",
",",
"public_ip_prefix_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Updates public IP prefix tags.
@param resource_group_name [String] The name of the resource group.
@param public_ip_prefix_name [String] The name of the public IP prefix.
@param parameters [TagsObject] Parameters supplied to update public IP prefix
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",
"public",
"IP",
"prefix",
"tags",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/public_ipprefixes.rb#L647-L649
|
13,962
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/load_balancer_probes.rb
|
Azure::Network::Mgmt::V2018_07_01.LoadBalancerProbes.get_with_http_info
|
def get_with_http_info(resource_group_name, load_balancer_name, probe_name, custom_headers:nil)
get_async(resource_group_name, load_balancer_name, probe_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, load_balancer_name, probe_name, custom_headers:nil)
get_async(resource_group_name, load_balancer_name, probe_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"load_balancer_name",
",",
"probe_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"load_balancer_name",
",",
"probe_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets load balancer probe.
@param resource_group_name [String] The name of the resource group.
@param load_balancer_name [String] The name of the load balancer.
@param probe_name [String] The name of the probe.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Gets",
"load",
"balancer",
"probe",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/load_balancer_probes.rb#L143-L145
|
13,963
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/express_route_circuit_peerings.rb
|
Azure::Network::Mgmt::V2018_07_01.ExpressRouteCircuitPeerings.begin_delete_with_http_info
|
def begin_delete_with_http_info(resource_group_name, circuit_name, peering_name, custom_headers:nil)
begin_delete_async(resource_group_name, circuit_name, peering_name, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_delete_with_http_info(resource_group_name, circuit_name, peering_name, custom_headers:nil)
begin_delete_async(resource_group_name, circuit_name, peering_name, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"circuit_name",
",",
"peering_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"circuit_name",
",",
"peering_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Deletes the specified peering from the specified express route circuit.
@param resource_group_name [String] The name of the resource group.
@param circuit_name [String] The name of the express route circuit.
@param peering_name [String] The name of the peering.
@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",
"peering",
"from",
"the",
"specified",
"express",
"route",
"circuit",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_network/lib/2018-07-01/generated/azure_mgmt_network/express_route_circuit_peerings.rb#L326-L328
|
13,964
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/gallery_images.rb
|
Azure::Labservices::Mgmt::V2018_10_15.GalleryImages.delete_with_http_info
|
def delete_with_http_info(resource_group_name, lab_account_name, gallery_image_name, custom_headers:nil)
delete_async(resource_group_name, lab_account_name, gallery_image_name, custom_headers:custom_headers).value!
end
|
ruby
|
def delete_with_http_info(resource_group_name, lab_account_name, gallery_image_name, custom_headers:nil)
delete_async(resource_group_name, lab_account_name, gallery_image_name, custom_headers:custom_headers).value!
end
|
[
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"gallery_image_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"gallery_image_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Delete gallery image.
@param resource_group_name [String] The name of the resource group.
@param lab_account_name [String] The name of the lab Account.
@param gallery_image_name [String] The name of the gallery Image.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Delete",
"gallery",
"image",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/gallery_images.rb#L385-L387
|
13,965
|
Azure/azure-sdk-for-ruby
|
runtime/ms_rest/lib/ms_rest/http_operation_request.rb
|
MsRest.HttpOperationRequest.build_path
|
def build_path
template = path_template.dup
path_params.each{ |key, value| template["{#{key}}"] = ERB::Util.url_encode(value) if template.include?("{#{key}}") } unless path_params.nil?
skip_encoding_path_params.each{ |key, value| template["{#{key}}"] = value } unless skip_encoding_path_params.nil?
path = URI.parse(template.gsub(/([^:]|\A)\/\//, '\1/'))
unless skip_encoding_query_params.nil?
path.query = [(path.query || ""), skip_encoding_query_params.reject{|_, v| v.nil?}.map{|k,v| "#{k}=#{v}"}].join('&')
end
path
end
|
ruby
|
def build_path
template = path_template.dup
path_params.each{ |key, value| template["{#{key}}"] = ERB::Util.url_encode(value) if template.include?("{#{key}}") } unless path_params.nil?
skip_encoding_path_params.each{ |key, value| template["{#{key}}"] = value } unless skip_encoding_path_params.nil?
path = URI.parse(template.gsub(/([^:]|\A)\/\//, '\1/'))
unless skip_encoding_query_params.nil?
path.query = [(path.query || ""), skip_encoding_query_params.reject{|_, v| v.nil?}.map{|k,v| "#{k}=#{v}"}].join('&')
end
path
end
|
[
"def",
"build_path",
"template",
"=",
"path_template",
".",
"dup",
"path_params",
".",
"each",
"{",
"|",
"key",
",",
"value",
"|",
"template",
"[",
"\"{#{key}}\"",
"]",
"=",
"ERB",
"::",
"Util",
".",
"url_encode",
"(",
"value",
")",
"if",
"template",
".",
"include?",
"(",
"\"{#{key}}\"",
")",
"}",
"unless",
"path_params",
".",
"nil?",
"skip_encoding_path_params",
".",
"each",
"{",
"|",
"key",
",",
"value",
"|",
"template",
"[",
"\"{#{key}}\"",
"]",
"=",
"value",
"}",
"unless",
"skip_encoding_path_params",
".",
"nil?",
"path",
"=",
"URI",
".",
"parse",
"(",
"template",
".",
"gsub",
"(",
"/",
"\\A",
"\\/",
"\\/",
"/",
",",
"'\\1/'",
")",
")",
"unless",
"skip_encoding_query_params",
".",
"nil?",
"path",
".",
"query",
"=",
"[",
"(",
"path",
".",
"query",
"||",
"\"\"",
")",
",",
"skip_encoding_query_params",
".",
"reject",
"{",
"|",
"_",
",",
"v",
"|",
"v",
".",
"nil?",
"}",
".",
"map",
"{",
"|",
"k",
",",
"v",
"|",
"\"#{k}=#{v}\"",
"}",
"]",
".",
"join",
"(",
"'&'",
")",
"end",
"path",
"end"
] |
Creates a path from the path template and the path_params and skip_encoding_path_params
@return [URI] body the HTTP response body.
|
[
"Creates",
"a",
"path",
"from",
"the",
"path",
"template",
"and",
"the",
"path_params",
"and",
"skip_encoding_path_params"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/runtime/ms_rest/lib/ms_rest/http_operation_request.rb#L98-L107
|
13,966
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.get_publishing_user
|
def get_publishing_user(custom_headers:nil)
response = get_publishing_user_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_publishing_user(custom_headers:nil)
response = get_publishing_user_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_publishing_user",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_publishing_user_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets publishing user
Gets publishing user
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [User] operation results.
|
[
"Gets",
"publishing",
"user"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L156-L159
|
13,967
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.update_publishing_user
|
def update_publishing_user(user_details, custom_headers:nil)
response = update_publishing_user_async(user_details, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def update_publishing_user(user_details, custom_headers:nil)
response = update_publishing_user_async(user_details, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"update_publishing_user",
"(",
"user_details",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_publishing_user_async",
"(",
"user_details",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Updates publishing user
Updates publishing user
@param user_details [User] Details of publishing user
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [User] operation results.
|
[
"Updates",
"publishing",
"user"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L245-L248
|
13,968
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.get_source_control
|
def get_source_control(source_control_type, custom_headers:nil)
response = get_source_control_async(source_control_type, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_source_control(source_control_type, custom_headers:nil)
response = get_source_control_async(source_control_type, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_source_control",
"(",
"source_control_type",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_source_control_async",
"(",
"source_control_type",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets source control token
Gets source control token
@param source_control_type [String] Type of source control
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SourceControl] operation results.
|
[
"Gets",
"source",
"control",
"token"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L432-L435
|
13,969
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.update_source_control
|
def update_source_control(source_control_type, request_message, custom_headers:nil)
response = update_source_control_async(source_control_type, request_message, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def update_source_control(source_control_type, request_message, custom_headers:nil)
response = update_source_control_async(source_control_type, request_message, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"update_source_control",
"(",
"source_control_type",
",",
"request_message",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"update_source_control_async",
"(",
"source_control_type",
",",
"request_message",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Updates source control token
Updates source control token
@param source_control_type [String] Type of source control
@param request_message [SourceControl] Source control token information
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SourceControl] operation results.
|
[
"Updates",
"source",
"control",
"token"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L526-L529
|
13,970
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.get_subscription_deployment_locations
|
def get_subscription_deployment_locations(custom_headers:nil)
response = get_subscription_deployment_locations_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_subscription_deployment_locations(custom_headers:nil)
response = get_subscription_deployment_locations_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_subscription_deployment_locations",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_subscription_deployment_locations_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets list of available geo regions plus ministamps
Gets list of available geo regions plus ministamps
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [DeploymentLocations] operation results.
|
[
"Gets",
"list",
"of",
"available",
"geo",
"regions",
"plus",
"ministamps"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L751-L754
|
13,971
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.list_skus
|
def list_skus(custom_headers:nil)
response = list_skus_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_skus(custom_headers:nil)
response = list_skus_async(custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_skus",
"(",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_skus_async",
"(",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
List all SKUs.
List all SKUs.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SkuInfos] operation results.
|
[
"List",
"all",
"SKUs",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1137-L1140
|
13,972
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.verify_hosting_environment_vnet
|
def verify_hosting_environment_vnet(parameters, custom_headers:nil)
response = verify_hosting_environment_vnet_async(parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def verify_hosting_environment_vnet(parameters, custom_headers:nil)
response = verify_hosting_environment_vnet_async(parameters, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"verify_hosting_environment_vnet",
"(",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"verify_hosting_environment_vnet_async",
"(",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Verifies if this VNET is compatible with an App Service Environment by
analyzing the Network Security Group rules.
Verifies if this VNET is compatible with an App Service Environment by
analyzing the Network Security Group rules.
@param parameters [VnetParameters] VNET information
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [VnetValidationFailureDetails] operation results.
|
[
"Verifies",
"if",
"this",
"VNET",
"is",
"compatible",
"with",
"an",
"App",
"Service",
"Environment",
"by",
"analyzing",
"the",
"Network",
"Security",
"Group",
"rules",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1230-L1233
|
13,973
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.move
|
def move(resource_group_name, move_resource_envelope, custom_headers:nil)
response = move_async(resource_group_name, move_resource_envelope, custom_headers:custom_headers).value!
nil
end
|
ruby
|
def move(resource_group_name, move_resource_envelope, custom_headers:nil)
response = move_async(resource_group_name, move_resource_envelope, custom_headers:custom_headers).value!
nil
end
|
[
"def",
"move",
"(",
"resource_group_name",
",",
"move_resource_envelope",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"move_async",
"(",
"resource_group_name",
",",
"move_resource_envelope",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] |
Move resources between resource groups.
Move resources between resource groups.
@param resource_group_name [String] Name of the resource group to which the
resource belongs.
@param move_resource_envelope [CsmMoveResourceEnvelope] Object that
represents the resource to move.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
|
[
"Move",
"resources",
"between",
"resource",
"groups",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1337-L1340
|
13,974
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.validate
|
def validate(resource_group_name, validate_request, custom_headers:nil)
response = validate_async(resource_group_name, validate_request, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def validate(resource_group_name, validate_request, custom_headers:nil)
response = validate_async(resource_group_name, validate_request, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"validate",
"(",
"resource_group_name",
",",
"validate_request",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"validate_async",
"(",
"resource_group_name",
",",
"validate_request",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Validate if a resource can be created.
Validate if a resource can be created.
@param resource_group_name [String] Name of the resource group to which the
resource belongs.
@param validate_request [ValidateRequest] Request with the resources to
validate.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [ValidateResponse] operation results.
|
[
"Validate",
"if",
"a",
"resource",
"can",
"be",
"created",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1441-L1444
|
13,975
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.validate_move
|
def validate_move(resource_group_name, move_resource_envelope, custom_headers:nil)
response = validate_move_async(resource_group_name, move_resource_envelope, custom_headers:custom_headers).value!
nil
end
|
ruby
|
def validate_move(resource_group_name, move_resource_envelope, custom_headers:nil)
response = validate_move_async(resource_group_name, move_resource_envelope, custom_headers:custom_headers).value!
nil
end
|
[
"def",
"validate_move",
"(",
"resource_group_name",
",",
"move_resource_envelope",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"validate_move_async",
"(",
"resource_group_name",
",",
"move_resource_envelope",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] |
Validate whether a resource can be moved.
Validate whether a resource can be moved.
@param resource_group_name [String] Name of the resource group to which the
resource belongs.
@param move_resource_envelope [CsmMoveResourceEnvelope] Object that
represents the resource to move.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
|
[
"Validate",
"whether",
"a",
"resource",
"can",
"be",
"moved",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1554-L1557
|
13,976
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.list_source_controls_next
|
def list_source_controls_next(next_page_link, custom_headers:nil)
response = list_source_controls_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_source_controls_next(next_page_link, custom_headers:nil)
response = list_source_controls_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_source_controls_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_source_controls_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets the source controls available for Azure websites.
Gets the source controls available for Azure websites.
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SourceControlCollection] operation results.
|
[
"Gets",
"the",
"source",
"controls",
"available",
"for",
"Azure",
"websites",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1656-L1659
|
13,977
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.list_site_identifiers_assigned_to_host_name_next
|
def list_site_identifiers_assigned_to_host_name_next(next_page_link, custom_headers:nil)
response = list_site_identifiers_assigned_to_host_name_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_site_identifiers_assigned_to_host_name_next(next_page_link, custom_headers:nil)
response = list_site_identifiers_assigned_to_host_name_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_site_identifiers_assigned_to_host_name_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_site_identifiers_assigned_to_host_name_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
List all apps that are assigned to a hostname.
List all apps that are assigned to a hostname.
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [IdentifierCollection] operation results.
|
[
"List",
"all",
"apps",
"that",
"are",
"assigned",
"to",
"a",
"hostname",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1844-L1847
|
13,978
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb
|
Azure::Web::Mgmt::V2016_03_01.WebSiteManagementClient.list_premier_add_on_offers_next
|
def list_premier_add_on_offers_next(next_page_link, custom_headers:nil)
response = list_premier_add_on_offers_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_premier_add_on_offers_next(next_page_link, custom_headers:nil)
response = list_premier_add_on_offers_next_async(next_page_link, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_premier_add_on_offers_next",
"(",
"next_page_link",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_premier_add_on_offers_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
List all premier add-on offers.
List all premier add-on offers.
@param next_page_link [String] The NextLink from the previous successful call
to List operation.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [PremierAddOnOfferCollection] operation results.
|
[
"List",
"all",
"premier",
"add",
"-",
"on",
"offers",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_web/lib/2016-03-01/generated/azure_mgmt_web/web_site_management_client.rb#L1938-L1941
|
13,979
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/cloud_appliances.rb
|
Azure::StorSimple8000Series::Mgmt::V2017_06_01.CloudAppliances.list_supported_configurations
|
def list_supported_configurations(resource_group_name, manager_name, custom_headers:nil)
response = list_supported_configurations_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_supported_configurations(resource_group_name, manager_name, custom_headers:nil)
response = list_supported_configurations_async(resource_group_name, manager_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_supported_configurations",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_supported_configurations_async",
"(",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Lists supported cloud appliance models and supported configurations.
@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 [CloudApplianceConfigurationList] operation results.
|
[
"Lists",
"supported",
"cloud",
"appliance",
"models",
"and",
"supported",
"configurations",
"."
] |
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/cloud_appliances.rb#L34-L37
|
13,980
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/alert_rule_incidents.rb
|
Azure::Monitor::Mgmt::V2016_03_01.AlertRuleIncidents.get_with_http_info
|
def get_with_http_info(resource_group_name, rule_name, incident_name, custom_headers:nil)
get_async(resource_group_name, rule_name, incident_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, rule_name, incident_name, custom_headers:nil)
get_async(resource_group_name, rule_name, incident_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"rule_name",
",",
"incident_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"rule_name",
",",
"incident_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets an incident associated to an alert rule
@param resource_group_name [String] The name of the resource group.
@param rule_name [String] The name of the rule.
@param incident_name [String] The name of the incident to retrieve.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Gets",
"an",
"incident",
"associated",
"to",
"an",
"alert",
"rule"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/alert_rule_incidents.rb#L51-L53
|
13,981
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/alert_rule_incidents.rb
|
Azure::Monitor::Mgmt::V2016_03_01.AlertRuleIncidents.list_by_alert_rule
|
def list_by_alert_rule(resource_group_name, rule_name, custom_headers:nil)
response = list_by_alert_rule_async(resource_group_name, rule_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def list_by_alert_rule(resource_group_name, rule_name, custom_headers:nil)
response = list_by_alert_rule_async(resource_group_name, rule_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"list_by_alert_rule",
"(",
"resource_group_name",
",",
"rule_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_alert_rule_async",
"(",
"resource_group_name",
",",
"rule_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Gets a list of incidents associated to an alert rule
@param resource_group_name [String] The name of the resource group.
@param rule_name [String] The name of the rule.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [IncidentListResult] operation results.
|
[
"Gets",
"a",
"list",
"of",
"incidents",
"associated",
"to",
"an",
"alert",
"rule"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_monitor/lib/2016-03-01/generated/azure_mgmt_monitor/alert_rule_incidents.rb#L130-L133
|
13,982
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_container_registry/lib/2018-09-01/generated/azure_mgmt_container_registry/runs.rb
|
Azure::ContainerRegistry::Mgmt::V2018_09_01.Runs.get_with_http_info
|
def get_with_http_info(resource_group_name, registry_name, run_id, custom_headers:nil)
get_async(resource_group_name, registry_name, run_id, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, registry_name, run_id, custom_headers:nil)
get_async(resource_group_name, registry_name, run_id, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"registry_name",
",",
"run_id",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"run_id",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the detailed information for a given run.
@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 run_id [String] The run 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.
|
[
"Gets",
"the",
"detailed",
"information",
"for",
"a",
"given",
"run",
"."
] |
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/runs.rb#L167-L169
|
13,983
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/api_issue.rb
|
Azure::ApiManagement::Mgmt::V2019_01_01.ApiIssue.list_by_service_as_lazy
|
def list_by_service_as_lazy(resource_group_name, service_name, api_id, filter:nil, expand_comments_attachments:nil, top:nil, skip:nil, custom_headers:nil)
response = list_by_service_async(resource_group_name, service_name, api_id, filter:filter, expand_comments_attachments:expand_comments_attachments, top:top, skip:skip, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_by_service_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end
|
ruby
|
def list_by_service_as_lazy(resource_group_name, service_name, api_id, filter:nil, expand_comments_attachments:nil, top:nil, skip:nil, custom_headers:nil)
response = list_by_service_async(resource_group_name, service_name, api_id, filter:filter, expand_comments_attachments:expand_comments_attachments, top:top, skip:skip, custom_headers:custom_headers).value!
unless response.nil?
page = response.body
page.next_method = Proc.new do |next_page_link|
list_by_service_next_async(next_page_link, custom_headers:custom_headers)
end
page
end
end
|
[
"def",
"list_by_service_as_lazy",
"(",
"resource_group_name",
",",
"service_name",
",",
"api_id",
",",
"filter",
":",
"nil",
",",
"expand_comments_attachments",
":",
"nil",
",",
"top",
":",
"nil",
",",
"skip",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"list_by_service_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"api_id",
",",
"filter",
":",
"filter",
",",
"expand_comments_attachments",
":expand_comments_attachments",
",",
"top",
":",
"top",
",",
"skip",
":",
"skip",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"unless",
"response",
".",
"nil?",
"page",
"=",
"response",
".",
"body",
"page",
".",
"next_method",
"=",
"Proc",
".",
"new",
"do",
"|",
"next_page_link",
"|",
"list_by_service_next_async",
"(",
"next_page_link",
",",
"custom_headers",
":custom_headers",
")",
"end",
"page",
"end",
"end"
] |
Lists all issues associated with the specified API.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param api_id [String] API identifier. Must be unique in the current API
Management service instance.
@param filter [String] | Field | Usage | Supported
operators | Supported functions
|</br>|-------------|-------------|-------------|-------------|</br>| name |
filter | ge, le, eq, ne, gt, lt | substringof, contains, startswith, endswith
| </br>| userId | filter | ge, le, eq, ne, gt, lt | substringof, contains,
startswith, endswith | </br>| state | filter | eq | | </br>
@param expand_comments_attachments [Boolean] Expand the comment attachments.
@param top [Integer] Number of records to return.
@param skip [Integer] Number of records to skip.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [IssueCollection] which provide lazy access to pages of the response.
|
[
"Lists",
"all",
"issues",
"associated",
"with",
"the",
"specified",
"API",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2019-01-01/generated/azure_mgmt_api_management/api_issue.rb#L876-L885
|
13,984
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/subscription.rb
|
Azure::ApiManagement::Mgmt::V2018_01_01.Subscription.list_with_http_info
|
def list_with_http_info(resource_group_name, service_name, filter:nil, top:nil, skip:nil, custom_headers:nil)
list_async(resource_group_name, service_name, filter:filter, top:top, skip:skip, custom_headers:custom_headers).value!
end
|
ruby
|
def list_with_http_info(resource_group_name, service_name, filter:nil, top:nil, skip:nil, custom_headers:nil)
list_async(resource_group_name, service_name, filter:filter, top:top, skip:skip, custom_headers:custom_headers).value!
end
|
[
"def",
"list_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"filter",
":",
"nil",
",",
"top",
":",
"nil",
",",
"skip",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"list_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"filter",
":",
"filter",
",",
"top",
":",
"top",
",",
"skip",
":",
"skip",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Lists all subscriptions of the API Management service instance.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param filter [String] | Field | Supported operators | Supported
functions |
|--------------|------------------------|---------------------------------------------|
| id | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| name | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| stateComment | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| userId | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| productId | ge, le, eq, ne, gt, lt | substringof, contains, startswith,
endswith |
| state | eq |
|
@param top [Integer] Number of records to return.
@param skip [Integer] Number of records to skip.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Lists",
"all",
"subscriptions",
"of",
"the",
"API",
"Management",
"service",
"instance",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/subscription.rb#L83-L85
|
13,985
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/subscription.rb
|
Azure::ApiManagement::Mgmt::V2018_01_01.Subscription.get_with_http_info
|
def get_with_http_info(resource_group_name, service_name, sid, custom_headers:nil)
get_async(resource_group_name, service_name, sid, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, service_name, sid, custom_headers:nil)
get_async(resource_group_name, service_name, sid, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"service_name",
",",
"sid",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"sid",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets the specified Subscription entity.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param sid [String] Subscription entity Identifier. The entity represents the
association between a user and a product in API Management.
@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",
"Subscription",
"entity",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/subscription.rb#L297-L299
|
13,986
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_api_management/lib/2018-01-01/generated/azure_mgmt_api_management/subscription.rb
|
Azure::ApiManagement::Mgmt::V2018_01_01.Subscription.create_or_update
|
def create_or_update(resource_group_name, service_name, sid, parameters, notify:nil, if_match:nil, custom_headers:nil)
response = create_or_update_async(resource_group_name, service_name, sid, parameters, notify:notify, if_match:if_match, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def create_or_update(resource_group_name, service_name, sid, parameters, notify:nil, if_match:nil, custom_headers:nil)
response = create_or_update_async(resource_group_name, service_name, sid, parameters, notify:notify, if_match:if_match, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"create_or_update",
"(",
"resource_group_name",
",",
"service_name",
",",
"sid",
",",
"parameters",
",",
"notify",
":",
"nil",
",",
"if_match",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_async",
"(",
"resource_group_name",
",",
"service_name",
",",
"sid",
",",
"parameters",
",",
"notify",
":",
"notify",
",",
"if_match",
":if_match",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Creates or updates the subscription of specified user to the specified
product.
@param resource_group_name [String] The name of the resource group.
@param service_name [String] The name of the API Management service.
@param sid [String] Subscription entity Identifier. The entity represents the
association between a user and a product in API Management.
@param parameters [SubscriptionCreateParameters] Create parameters.
@param notify [Boolean] Notify change in Subscription State.
- If false, do not send any email notification for change of state of
subscription
- If true, send email notification of change of state of subscription
@param if_match [String] ETag of the Entity. Not required when creating an
entity, but required when updating an entity.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [SubscriptionContract] operation results.
|
[
"Creates",
"or",
"updates",
"the",
"subscription",
"of",
"specified",
"user",
"to",
"the",
"specified",
"product",
"."
] |
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/subscription.rb#L392-L395
|
13,987
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_data_migration/lib/2018-04-19/generated/azure_mgmt_data_migration/projects.rb
|
Azure::DataMigration::Mgmt::V2018_04_19.Projects.list_by_resource_group
|
def list_by_resource_group(group_name, service_name, custom_headers:nil)
first_page = list_by_resource_group_as_lazy(group_name, service_name, custom_headers:custom_headers)
first_page.get_all_items
end
|
ruby
|
def list_by_resource_group(group_name, service_name, custom_headers:nil)
first_page = list_by_resource_group_as_lazy(group_name, service_name, custom_headers:custom_headers)
first_page.get_all_items
end
|
[
"def",
"list_by_resource_group",
"(",
"group_name",
",",
"service_name",
",",
"custom_headers",
":",
"nil",
")",
"first_page",
"=",
"list_by_resource_group_as_lazy",
"(",
"group_name",
",",
"service_name",
",",
"custom_headers",
":custom_headers",
")",
"first_page",
".",
"get_all_items",
"end"
] |
Get projects in a service
The project resource is a nested resource representing a stored migration
project. This method returns a list of projects owned by a service resource.
@param group_name [String] Name of the resource group
@param service_name [String] Name of the service
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [Array<Project>] operation results.
|
[
"Get",
"projects",
"in",
"a",
"service"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_data_migration/lib/2018-04-19/generated/azure_mgmt_data_migration/projects.rb#L37-L40
|
13,988
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_data_migration/lib/2018-04-19/generated/azure_mgmt_data_migration/projects.rb
|
Azure::DataMigration::Mgmt::V2018_04_19.Projects.get_with_http_info
|
def get_with_http_info(group_name, service_name, project_name, custom_headers:nil)
get_async(group_name, service_name, project_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(group_name, service_name, project_name, custom_headers:nil)
get_async(group_name, service_name, project_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"group_name",
",",
"service_name",
",",
"project_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"group_name",
",",
"service_name",
",",
"project_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Get project information
The project resource is a nested resource representing a stored migration
project. The GET method retrieves information about a project.
@param group_name [String] Name of the resource group
@param service_name [String] Name of the service
@param project_name [String] Name of the project
@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",
"project",
"information"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_data_migration/lib/2018-04-19/generated/azure_mgmt_data_migration/projects.rb#L284-L286
|
13,989
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/data_sources.rb
|
Azure::OperationalInsights::Mgmt::V2015_11_01_preview.DataSources.delete_with_http_info
|
def delete_with_http_info(resource_group_name, workspace_name, data_source_name, custom_headers:nil)
delete_async(resource_group_name, workspace_name, data_source_name, custom_headers:custom_headers).value!
end
|
ruby
|
def delete_with_http_info(resource_group_name, workspace_name, data_source_name, custom_headers:nil)
delete_async(resource_group_name, workspace_name, data_source_name, custom_headers:custom_headers).value!
end
|
[
"def",
"delete_with_http_info",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"data_source_name",
",",
"custom_headers",
":",
"nil",
")",
"delete_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"data_source_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Deletes a data source instance.
@param resource_group_name [String] The name of the resource group to get.
The name is case insensitive.
@param workspace_name [String] Name of the Log Analytics Workspace that
contains the datasource.
@param data_source_name [String] Name of the datasource.
@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",
"data",
"source",
"instance",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/data_sources.rb#L183-L185
|
13,990
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/data_sources.rb
|
Azure::OperationalInsights::Mgmt::V2015_11_01_preview.DataSources.get_with_http_info
|
def get_with_http_info(resource_group_name, workspace_name, data_source_name, custom_headers:nil)
get_async(resource_group_name, workspace_name, data_source_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, workspace_name, data_source_name, custom_headers:nil)
get_async(resource_group_name, workspace_name, data_source_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"data_source_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"workspace_name",
",",
"data_source_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets a datasource instance.
@param resource_group_name [String] The name of the resource group to get.
The name is case insensitive.
@param workspace_name [String] Name of the Log Analytics Workspace that
contains the datasource.
@param data_source_name [String] Name of the datasource
@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",
"datasource",
"instance",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_operational_insights/lib/2015-11-01-preview/generated/azure_mgmt_operational_insights/data_sources.rb#L278-L280
|
13,991
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/labs.rb
|
Azure::Labservices::Mgmt::V2018_10_15.Labs.begin_delete
|
def begin_delete(resource_group_name, lab_account_name, lab_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, lab_account_name, lab_name, custom_headers:custom_headers).value!
nil
end
|
ruby
|
def begin_delete(resource_group_name, lab_account_name, lab_name, custom_headers:nil)
response = begin_delete_async(resource_group_name, lab_account_name, lab_name, custom_headers:custom_headers).value!
nil
end
|
[
"def",
"begin_delete",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"lab_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"begin_delete_async",
"(",
"resource_group_name",
",",
"lab_account_name",
",",
"lab_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] |
Delete lab. This operation can take a while to complete
@param resource_group_name [String] The name of the resource group.
@param lab_account_name [String] The name of the lab Account.
@param lab_name [String] The name of the lab.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
|
[
"Delete",
"lab",
".",
"This",
"operation",
"can",
"take",
"a",
"while",
"to",
"complete"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_labservices/lib/2018-10-15/generated/azure_mgmt_labservices/labs.rb#L697-L700
|
13,992
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_authorization/lib/2015-07-01/generated/azure_mgmt_authorization/provider_operations_metadata_operations.rb
|
Azure::Authorization::Mgmt::V2015_07_01.ProviderOperationsMetadataOperations.list_with_http_info
|
def list_with_http_info(api_version, expand:'resourceTypes', custom_headers:nil)
list_async(api_version, expand:expand, custom_headers:custom_headers).value!
end
|
ruby
|
def list_with_http_info(api_version, expand:'resourceTypes', custom_headers:nil)
list_async(api_version, expand:expand, custom_headers:custom_headers).value!
end
|
[
"def",
"list_with_http_info",
"(",
"api_version",
",",
"expand",
":",
"'resourceTypes'",
",",
"custom_headers",
":",
"nil",
")",
"list_async",
"(",
"api_version",
",",
"expand",
":",
"expand",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Gets provider operations metadata for all resource providers.
@param api_version [String] The API version to use for this operation.
@param expand [String] Specifies whether to expand the values.
@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",
"provider",
"operations",
"metadata",
"for",
"all",
"resource",
"providers",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_authorization/lib/2015-07-01/generated/azure_mgmt_authorization/provider_operations_metadata_operations.rb#L149-L151
|
13,993
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services_backup/lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/protected_items.rb
|
Azure::RecoveryServicesBackup::Mgmt::V2016_12_01.ProtectedItems.get_with_http_info
|
def get_with_http_info(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, filter:nil, custom_headers:nil)
get_async(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, filter:filter, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, filter:nil, custom_headers:nil)
get_async(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, filter:filter, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"container_name",
",",
"protected_item_name",
",",
"filter",
":",
"nil",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"container_name",
",",
"protected_item_name",
",",
"filter",
":",
"filter",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Provides the details of the backed up item. This is an asynchronous
operation. To know the status of the operation,
call the GetItemOperationResult API.
@param vault_name [String] The name of the recovery services vault.
@param resource_group_name [String] The name of the resource group where the
recovery services vault is present.
@param fabric_name [String] Fabric name associated with the backed up item.
@param container_name [String] Container name associated with the backed up
item.
@param protected_item_name [String] Backed up item name whose details are to
be fetched.
@param filter [String] OData filter options.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Provides",
"the",
"details",
"of",
"the",
"backed",
"up",
"item",
".",
"This",
"is",
"an",
"asynchronous",
"operation",
".",
"To",
"know",
"the",
"status",
"of",
"the",
"operation",
"call",
"the",
"GetItemOperationResult",
"API",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_backup/lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/protected_items.rb#L71-L73
|
13,994
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_recovery_services_backup/lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/protected_items.rb
|
Azure::RecoveryServicesBackup::Mgmt::V2016_12_01.ProtectedItems.create_or_update
|
def create_or_update(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, parameters, custom_headers:nil)
response = create_or_update_async(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, parameters, custom_headers:custom_headers).value!
nil
end
|
ruby
|
def create_or_update(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, parameters, custom_headers:nil)
response = create_or_update_async(vault_name, resource_group_name, fabric_name, container_name, protected_item_name, parameters, custom_headers:custom_headers).value!
nil
end
|
[
"def",
"create_or_update",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"container_name",
",",
"protected_item_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"create_or_update_async",
"(",
"vault_name",
",",
"resource_group_name",
",",
"fabric_name",
",",
"container_name",
",",
"protected_item_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"nil",
"end"
] |
Enables backup of an item or to modifies the backup policy information of an
already backed up item. This is an
asynchronous operation. To know the status of the operation, call the
GetItemOperationResult API.
@param vault_name [String] The name of the recovery services vault.
@param resource_group_name [String] The name of the resource group where the
recovery services vault is present.
@param fabric_name [String] Fabric name associated with the backup item.
@param container_name [String] Container name associated with the backup
item.
@param protected_item_name [String] Item name to be backed up.
@param parameters [ProtectedItemResource] resource backed up item
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
|
[
"Enables",
"backup",
"of",
"an",
"item",
"or",
"to",
"modifies",
"the",
"backup",
"policy",
"information",
"of",
"an",
"already",
"backed",
"up",
"item",
".",
"This",
"is",
"an",
"asynchronous",
"operation",
".",
"To",
"know",
"the",
"status",
"of",
"the",
"operation",
"call",
"the",
"GetItemOperationResult",
"API",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_recovery_services_backup/lib/2016-12-01/generated/azure_mgmt_recovery_services_backup/protected_items.rb#L168-L171
|
13,995
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_stor_simple8000_series/lib/2017-06-01/generated/azure_mgmt_stor_simple8000_series/bandwidth_settings.rb
|
Azure::StorSimple8000Series::Mgmt::V2017_06_01.BandwidthSettings.get_with_http_info
|
def get_with_http_info(bandwidth_setting_name, resource_group_name, manager_name, custom_headers:nil)
get_async(bandwidth_setting_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(bandwidth_setting_name, resource_group_name, manager_name, custom_headers:nil)
get_async(bandwidth_setting_name, resource_group_name, manager_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"bandwidth_setting_name",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"bandwidth_setting_name",
",",
"resource_group_name",
",",
"manager_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Returns the properties of the specified bandwidth setting name.
@param bandwidth_setting_name [String] The name of bandwidth setting to be
fetched.
@param resource_group_name [String] The resource group name
@param manager_name [String] The manager name
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Returns",
"the",
"properties",
"of",
"the",
"specified",
"bandwidth",
"setting",
"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/bandwidth_settings.rb#L147-L149
|
13,996
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_container_registry/lib/2018-09-01/generated/azure_mgmt_container_registry/registries.rb
|
Azure::ContainerRegistry::Mgmt::V2018_09_01.Registries.get_build_source_upload_url
|
def get_build_source_upload_url(resource_group_name, registry_name, custom_headers:nil)
response = get_build_source_upload_url_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
ruby
|
def get_build_source_upload_url(resource_group_name, registry_name, custom_headers:nil)
response = get_build_source_upload_url_async(resource_group_name, registry_name, custom_headers:custom_headers).value!
response.body unless response.nil?
end
|
[
"def",
"get_build_source_upload_url",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":",
"nil",
")",
"response",
"=",
"get_build_source_upload_url_async",
"(",
"resource_group_name",
",",
"registry_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"response",
".",
"body",
"unless",
"response",
".",
"nil?",
"end"
] |
Get the upload location for the user to be able to upload the source.
@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 [SourceUploadDefinition] operation results.
|
[
"Get",
"the",
"upload",
"location",
"for",
"the",
"user",
"to",
"be",
"able",
"to",
"upload",
"the",
"source",
"."
] |
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/registries.rb#L84-L87
|
13,997
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/live_outputs.rb
|
Azure::MediaServices::Mgmt::V2018_07_01.LiveOutputs.get_with_http_info
|
def get_with_http_info(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:nil)
get_async(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:custom_headers).value!
end
|
ruby
|
def get_with_http_info(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:nil)
get_async(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:custom_headers).value!
end
|
[
"def",
"get_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"live_event_name",
",",
"live_output_name",
",",
"custom_headers",
":",
"nil",
")",
"get_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"live_event_name",
",",
"live_output_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Get Live Output
Gets a Live Output.
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param live_event_name [String] The name of the Live Event.
@param live_output_name [String] The name of the Live Output.
@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",
"Live",
"Output"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/live_outputs.rb#L167-L169
|
13,998
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/live_outputs.rb
|
Azure::MediaServices::Mgmt::V2018_07_01.LiveOutputs.begin_delete_with_http_info
|
def begin_delete_with_http_info(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:nil)
begin_delete_async(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_delete_with_http_info(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:nil)
begin_delete_async(resource_group_name, account_name, live_event_name, live_output_name, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_delete_with_http_info",
"(",
"resource_group_name",
",",
"account_name",
",",
"live_event_name",
",",
"live_output_name",
",",
"custom_headers",
":",
"nil",
")",
"begin_delete_async",
"(",
"resource_group_name",
",",
"account_name",
",",
"live_event_name",
",",
"live_output_name",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Delete Live Output
Deletes a Live Output.
@param resource_group_name [String] The name of the resource group within the
Azure subscription.
@param account_name [String] The Media Services account name.
@param live_event_name [String] The name of the Live Event.
@param live_output_name [String] The name of the Live Output.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Delete",
"Live",
"Output"
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_media_services/lib/2018-07-01/generated/azure_mgmt_media_services/live_outputs.rb#L515-L517
|
13,999
|
Azure/azure-sdk-for-ruby
|
management/azure_mgmt_postgresql/lib/2017-12-01-preview/generated/azure_mgmt_postgresql/servers.rb
|
Azure::Postgresql::Mgmt::V2017_12_01_preview.Servers.begin_create_with_http_info
|
def begin_create_with_http_info(resource_group_name, server_name, parameters, custom_headers:nil)
begin_create_async(resource_group_name, server_name, parameters, custom_headers:custom_headers).value!
end
|
ruby
|
def begin_create_with_http_info(resource_group_name, server_name, parameters, custom_headers:nil)
begin_create_async(resource_group_name, server_name, parameters, custom_headers:custom_headers).value!
end
|
[
"def",
"begin_create_with_http_info",
"(",
"resource_group_name",
",",
"server_name",
",",
"parameters",
",",
"custom_headers",
":",
"nil",
")",
"begin_create_async",
"(",
"resource_group_name",
",",
"server_name",
",",
"parameters",
",",
"custom_headers",
":custom_headers",
")",
".",
"value!",
"end"
] |
Creates a new server, or will overwrite an existing server.
@param resource_group_name [String] The name of the resource group that
contains the resource. You can obtain this value from the Azure Resource
Manager API or the portal.
@param server_name [String] The name of the server.
@param parameters [ServerForCreate] The required parameters for creating or
updating a server.
@param custom_headers [Hash{String => String}] A hash of custom headers that
will be added to the HTTP request.
@return [MsRestAzure::AzureOperationResponse] HTTP response information.
|
[
"Creates",
"a",
"new",
"server",
"or",
"will",
"overwrite",
"an",
"existing",
"server",
"."
] |
78eedacf8f8cbd65c2d8a2af421405eaa4373d8e
|
https://github.com/Azure/azure-sdk-for-ruby/blob/78eedacf8f8cbd65c2d8a2af421405eaa4373d8e/management/azure_mgmt_postgresql/lib/2017-12-01-preview/generated/azure_mgmt_postgresql/servers.rb#L479-L481
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.