Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::WebSource
- Inherits:
-
CopySource
- Object
- CopySource
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::WebSource
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/web_source.rb
Overview
A copy activity source for web page table.
Instance Attribute Summary collapse
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from CopySource
#additional_properties, #source_retry_count, #source_retry_wait
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WebSource class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ WebSource
constructor
A new instance of WebSource.
Constructor Details
#initialize ⇒ WebSource
Returns a new instance of WebSource.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/web_source.rb', line 16 def initialize @type = "WebSource" end |
Instance Attribute Details
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/web_source.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for WebSource class as Ruby Hash. This will be used for serialization/deserialization.
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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/web_source.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WebSource', type: { name: 'Composite', class_name: 'WebSource', model_properties: { additional_properties: { client_side_validation: true, required: false, type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } }, source_retry_count: { client_side_validation: true, required: false, serialized_name: 'sourceRetryCount', type: { name: 'Object' } }, source_retry_wait: { client_side_validation: true, required: false, serialized_name: 'sourceRetryWait', type: { name: 'Object' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } } } } } end |