Class: Azure::Kusto::Mgmt::V2019_09_07::Models::DataConnectionValidation
- Inherits:
-
Object
- Object
- Azure::Kusto::Mgmt::V2019_09_07::Models::DataConnectionValidation
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-09-07/generated/azure_mgmt_kusto/models/data_connection_validation.rb
Overview
Class representing an data connection validation.
Instance Attribute Summary collapse
-
#data_connection_name ⇒ String
The name of the data connection.
-
#properties ⇒ DataConnection
The data connection properties to validate.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DataConnectionValidation class as Ruby Hash.
Instance Attribute Details
#data_connection_name ⇒ String
Returns The name of the data connection.
16 17 18 |
# File 'lib/2019-09-07/generated/azure_mgmt_kusto/models/data_connection_validation.rb', line 16 def data_connection_name @data_connection_name end |
#properties ⇒ DataConnection
Returns The data connection properties to validate.
19 20 21 |
# File 'lib/2019-09-07/generated/azure_mgmt_kusto/models/data_connection_validation.rb', line 19 def properties @properties end |
Class Method Details
.mapper ⇒ Object
Mapper for DataConnectionValidation class as Ruby Hash. This will be used for serialization/deserialization.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
# File 'lib/2019-09-07/generated/azure_mgmt_kusto/models/data_connection_validation.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DataConnectionValidation', type: { name: 'Composite', class_name: 'DataConnectionValidation', model_properties: { data_connection_name: { client_side_validation: true, required: false, serialized_name: 'dataConnectionName', type: { name: 'String' } }, properties: { client_side_validation: true, required: false, serialized_name: 'properties', type: { name: 'Composite', polymorphic_discriminator: 'kind', uber_parent: 'Resource', class_name: 'DataConnection' } } } } } end |