class Azure::Automation::Mgmt::V2015_10_31::Models::RunbookCreateOrUpdateDraftParameters

The parameters supplied to the create or update runbook operation.

Attributes

runbook_content[RW]

@return [String] Content of the Runbook.

Private Class Methods

mapper() click to toggle source

Mapper for RunbookCreateOrUpdateDraftParameters 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_draft_parameters.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RunbookCreateOrUpdateDraftParameters',
    type: {
      name: 'Composite',
      class_name: 'RunbookCreateOrUpdateDraftParameters',
      model_properties: {
        runbook_content: {
          client_side_validation: true,
          required: true,
          serialized_name: 'runbookContent',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end