Class: Azure::Automation::Mgmt::V2015_10_31::Models::RunbookUpdateParameters
- Inherits:
-
Object
- Object
- Azure::Automation::Mgmt::V2015_10_31::Models::RunbookUpdateParameters
- 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
-
#description ⇒ String
Gets or sets the description of the runbook.
-
#location ⇒ String
Gets or sets the location of the resource.
-
#log_activity_trace ⇒ Integer
the runbook.
-
#log_progress ⇒ Boolean
Gets or sets progress log option.
-
#log_verbose ⇒ Boolean
Gets or sets verbose log option.
-
#name ⇒ String
Gets or sets the name of the resource.
-
#tags ⇒ Hash{String => String}
resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RunbookUpdateParameters class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns 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 |
#location ⇒ String
Returns 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_trace ⇒ Integer
the runbook.
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_progress ⇒ Boolean
Returns 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_verbose ⇒ Boolean
Returns 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 |
#name ⇒ String
Returns 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 |
#tags ⇒ Hash{String => String}
resource.
36 37 38 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/runbook_update_parameters.rb', line 36 def @tags end |
Class Method Details
.mapper ⇒ Object
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 |