Class: Azure::Automation::Mgmt::V2015_10_31::Models::ConnectionCreateOrUpdateParameters
- Inherits:
-
Object
- Object
- Azure::Automation::Mgmt::V2015_10_31::Models::ConnectionCreateOrUpdateParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-10-31/generated/azure_mgmt_automation/models/connection_create_or_update_parameters.rb
Overview
The parameters supplied to the create or update connection operation.
Instance Attribute Summary collapse
-
#connection_type ⇒ ConnectionTypeAssociationProperty
connectionType of the connection.
-
#description ⇒ String
Gets or sets the description of the connection.
-
#field_definition_values ⇒ Hash{String => String}
properties of the connection.
-
#name ⇒ String
Gets or sets the name of the connection.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ConnectionCreateOrUpdateParameters class as Ruby Hash.
Instance Attribute Details
#connection_type ⇒ ConnectionTypeAssociationProperty
connectionType of the connection.
23 24 25 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/connection_create_or_update_parameters.rb', line 23 def connection_type @connection_type end |
#description ⇒ String
Returns Gets or sets the description of the connection.
19 20 21 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/connection_create_or_update_parameters.rb', line 19 def description @description end |
#field_definition_values ⇒ Hash{String => String}
properties of the connection.
27 28 29 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/connection_create_or_update_parameters.rb', line 27 def field_definition_values @field_definition_values end |
#name ⇒ String
Returns Gets or sets the name of the connection.
16 17 18 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/connection_create_or_update_parameters.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for ConnectionCreateOrUpdateParameters class as Ruby Hash. This will be used for serialization/deserialization.
34 35 36 37 38 39 40 41 42 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 |
# File 'lib/2015-10-31/generated/azure_mgmt_automation/models/connection_create_or_update_parameters.rb', line 34 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectionCreateOrUpdateParameters', type: { name: 'Composite', class_name: 'ConnectionCreateOrUpdateParameters', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, connection_type: { client_side_validation: true, required: true, serialized_name: 'properties.connectionType', type: { name: 'Composite', class_name: 'ConnectionTypeAssociationProperty' } }, field_definition_values: { client_side_validation: true, required: false, serialized_name: 'properties.fieldDefinitionValues', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'StringElementType', type: { name: 'String' } } } } } } } end |