Class: Azure::Automation::Mgmt::V2015_10_31::Models::DscConfigurationCreateOrUpdateParameters
- Inherits:
-
Object
- Object
- Azure::Automation::Mgmt::V2015_10_31::Models::DscConfigurationCreateOrUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb
Overview
The parameters supplied to the create or update configuration operation.
Instance Attribute Summary collapse
-
#description ⇒ String
Gets or sets the description of the configuration.
-
#location ⇒ String
Gets or sets the location of the resource.
-
#log_progress ⇒ Boolean
Gets or sets progress log option.
-
#log_verbose ⇒ Boolean
Gets or sets verbose log option.
-
#name ⇒ String
Gets or sets name of the resource.
-
#parameters ⇒ Hash{String => DscConfigurationParameter}
configuration parameters.
-
#source ⇒ ContentSource
Gets or sets the source.
-
#tags ⇒ Hash{String => String}
resource.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DscConfigurationCreateOrUpdateParameters class as Ruby Hash.
Instance Attribute Details
#description ⇒ String
Returns Gets or sets the description of the configuration.
29 30 31 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 29 def description @description end |
#location ⇒ String
Returns Gets or sets the location of the resource.
35 36 37 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 35 def location @location end |
#log_progress ⇒ Boolean
Returns Gets or sets progress log option.
19 20 21 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 19 def log_progress @log_progress end |
#log_verbose ⇒ Boolean
Returns Gets or sets verbose log option.
16 17 18 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 16 def log_verbose @log_verbose end |
#name ⇒ String
Returns Gets or sets name of the resource.
32 33 34 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 32 def name @name end |
#parameters ⇒ Hash{String => DscConfigurationParameter}
configuration parameters.
26 27 28 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 26 def parameters @parameters end |
#source ⇒ ContentSource
Returns Gets or sets the source.
22 23 24 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 22 def source @source end |
#tags ⇒ Hash{String => String}
resource.
39 40 41 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 39 def @tags end |
Class Method Details
.mapper ⇒ Object
Mapper for DscConfigurationCreateOrUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
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 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/dsc_configuration_create_or_update_parameters.rb', line 46 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DscConfigurationCreateOrUpdateParameters', type: { name: 'Composite', class_name: 'DscConfigurationCreateOrUpdateParameters', 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' } }, source: { client_side_validation: true, required: true, serialized_name: 'properties.source', type: { name: 'Composite', class_name: 'ContentSource' } }, parameters: { client_side_validation: true, required: false, serialized_name: 'properties.parameters', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'DscConfigurationParameterElementType', type: { name: 'Composite', class_name: 'DscConfigurationParameter' } } } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, 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 |