Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::HdfsSource

Inherits:
CopySource
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/hdfs_source.rb

Overview

A copy activity HDFS source.

Instance Attribute Summary collapse

Attributes inherited from CopySource

#additional_properties, #source_retry_count, #source_retry_wait

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeHdfsSource

Returns a new instance of HdfsSource.



16
17
18
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/hdfs_source.rb', line 16

def initialize
  @type = "HdfsSource"
end

Instance Attribute Details

#distcp_settingsDistcpSettings

Returns Specifies Distcp-related settings.

Returns:



27
28
29
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/hdfs_source.rb', line 27

def distcp_settings
  @distcp_settings
end

#recursiveObject

Default is true. Type: boolean (or Expression with resultType boolean).

Returns:

  • If true, files under the folder path will be read recursively.



24
25
26
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/hdfs_source.rb', line 24

def recursive
  @recursive
end

#typeObject

Returns the value of attribute type.



20
21
22
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/hdfs_source.rb', line 20

def type
  @type
end

Class Method Details

.mapperObject

Mapper for HdfsSource 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/hdfs_source.rb', line 34

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'HdfsSource',
    type: {
      name: 'Composite',
      class_name: 'HdfsSource',
      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'
          }
        },
        recursive: {
          client_side_validation: true,
          required: false,
          serialized_name: 'recursive',
          type: {
            name: 'Object'
          }
        },
        distcp_settings: {
          client_side_validation: true,
          required: false,
          serialized_name: 'distcpSettings',
          type: {
            name: 'Composite',
            class_name: 'DistcpSettings'
          }
        }
      }
    }
  }
end