Class: Azure::Automation::Mgmt::V2015_10_31::Models::RunbookUpdateParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb

Overview

The parameters supplied to the update runbook operation.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#descriptionString

Returns Gets or sets the description of the runbook.

Returns:

  • (String)

    Gets or sets the description of the runbook.



16
17
18
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 16

def description
  @description
end

#locationString

Returns Gets or sets the location of the resource.

Returns:

  • (String)

    Gets or sets the location of the resource.



32
33
34
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 32

def location
  @location
end

#log_activity_traceInteger

the runbook.

Returns:

  • (Integer)

    Gets or sets the activity-level tracing options of



26
27
28
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 26

def log_activity_trace
  @log_activity_trace
end

#log_progressBoolean

Returns Gets or sets progress log option.

Returns:

  • (Boolean)

    Gets or sets progress log option.



22
23
24
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 22

def log_progress
  @log_progress
end

#log_verboseBoolean

Returns Gets or sets verbose log option.

Returns:

  • (Boolean)

    Gets or sets verbose log option.



19
20
21
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 19

def log_verbose
  @log_verbose
end

#nameString

Returns Gets or sets the name of the resource.

Returns:

  • (String)

    Gets or sets the name of the resource.



29
30
31
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 29

def name
  @name
end

#tagsHash{String => String}

resource.

Returns:

  • (Hash{String => String})

    Gets or sets the tags attached to the



36
37
38
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 36

def tags
  @tags
end

Class Method Details

.mapperObject

Mapper for RunbookUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.



43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 43

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'RunbookUpdateParameters',
    type: {
      name: 'Composite',
      class_name: 'RunbookUpdateParameters',
      model_properties: {
        description: {
          client_side_validation: true,
          required: false,
          serialized_name: 'properties.description',
          type: {
            name: 'String'
          }
        },
        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'
          }
        },
        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