class Azure::Automation::Mgmt::V2015_10_31::Models::RunbookCreateOrUpdateParameters
The parameters supplied to the create or update runbook operation.
Attributes
@return [String] Gets or sets the description of the runbook.
@return [RunbookDraft] Gets or sets the draft runbook properties.
@return [String] Gets or sets the location of the resource.
@return [Integer] Gets or sets the activity-level tracing options of the runbook.
@return [Boolean] Gets or sets progress log option.
@return [Boolean] Gets or sets verbose log option.
@return [String] Gets or sets the name of the resource.
@return [ContentLink] Gets or sets the published runbook content link.
@return [RunbookTypeEnum] Gets or sets the type of the runbook. Possible values include: 'Script', 'Graph', 'PowerShellWorkflow', 'PowerShell', 'GraphPowerShellWorkflow', 'GraphPowerShell'
Private Class Methods
Mapper for RunbookCreateOrUpdateParameters
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_create_or_update_parameters.rb, line 54 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RunbookCreateOrUpdateParameters', type: { name: 'Composite', class_name: 'RunbookCreateOrUpdateParameters', model_properties: { log_verbose: { client_side_validation: true, required: false, serialized_name: 'properties.logVerbose', type: { name: 'Boolean' } }, log_progress: { client_side_validation: true, required: false, serialized_name: 'properties.logProgress', type: { name: 'Boolean' } }, runbook_type: { client_side_validation: true, required: true, serialized_name: 'properties.runbookType', type: { name: 'String' } }, draft: { client_side_validation: true, required: false, serialized_name: 'properties.draft', type: { name: 'Composite', class_name: 'RunbookDraft' } }, publish_content_link: { client_side_validation: true, required: false, serialized_name: 'properties.publishContentLink', type: { name: 'Composite', class_name: 'ContentLink' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, log_activity_trace: { client_side_validation: true, required: false, serialized_name: 'properties.logActivityTrace', type: { name: 'Number' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, tags: { client_side_validation: true, required: false, serialized_name: 'tags', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end