Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

[AutoPR automation/resource-manager] Changing schema from string to file #1486

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ def get_content_async(resource_group_name, automation_account_name, runbook_name
# @param resource_group_name [String] Name of an Azure Resource group.
# @param automation_account_name [String] The name of the automation account.
# @param runbook_name [String] The runbook name.
# @param runbook_content [String] The runbook draft content.
# @param runbook_content The runbook draft content.
# @param custom_headers [Hash{String => String}] A hash of custom headers that
# will be added to the HTTP request.
#
Expand All @@ -143,7 +143,7 @@ def replace_content(resource_group_name, automation_account_name, runbook_name,
# @param resource_group_name [String] Name of an Azure Resource group.
# @param automation_account_name [String] The name of the automation account.
# @param runbook_name [String] The runbook name.
# @param runbook_content [String] The runbook draft content.
# @param runbook_content The runbook draft content.
# @param custom_headers [Hash{String => String}] A hash of custom headers that
# will be added to the HTTP request.
#
Expand Down Expand Up @@ -412,7 +412,7 @@ def undo_edit_async(resource_group_name, automation_account_name, runbook_name,
# @param resource_group_name [String] Name of an Azure Resource group.
# @param automation_account_name [String] The name of the automation account.
# @param runbook_name [String] The runbook name.
# @param runbook_content [String] The runbook draft content.
# @param runbook_content The runbook draft content.
# @param custom_headers [Hash{String => String}] A hash of custom headers that
# will be added to the HTTP request.
#
Expand All @@ -429,7 +429,7 @@ def begin_replace_content(resource_group_name, automation_account_name, runbook_
# @param resource_group_name [String] Name of an Azure Resource group.
# @param automation_account_name [String] The name of the automation account.
# @param runbook_name [String] The runbook name.
# @param runbook_content [String] The runbook draft content.
# @param runbook_content The runbook draft content.
# @param custom_headers [Hash{String => String}] A hash of custom headers that
# will be added to the HTTP request.
#
Expand All @@ -445,7 +445,7 @@ def begin_replace_content_with_http_info(resource_group_name, automation_account
# @param resource_group_name [String] Name of an Azure Resource group.
# @param automation_account_name [String] The name of the automation account.
# @param runbook_name [String] The runbook name.
# @param runbook_content [String] The runbook draft content.
# @param runbook_content The runbook draft content.
# @param [Hash{String => String}] A hash of custom headers that will be added
# to the HTTP request.
#
Expand Down Expand Up @@ -473,7 +473,7 @@ def begin_replace_content_async(resource_group_name, automation_account_name, ru
required: true,
serialized_name: 'runbookContent',
type: {
name: 'String'
name: 'Stream'
}
}
request_content = @client.serialize(request_mapper, runbook_content)
Expand Down