Class: Azure::DataFactory::Mgmt::V2018_06_01::Models::AzureDatabricksDeltaLakeSink
- Inherits:
-
CopySink
- Object
- CopySink
- Azure::DataFactory::Mgmt::V2018_06_01::Models::AzureDatabricksDeltaLakeSink
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_delta_lake_sink.rb
Overview
A copy activity Azure Databricks Delta Lake sink.
Instance Attribute Summary collapse
-
#import_settings ⇒ AzureDatabricksDeltaLakeImportCommand
Lake import settings.
-
#pre_copy_script ⇒ Object
resultType string).
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from CopySink
#additional_properties, #max_concurrent_connections, #sink_retry_count, #sink_retry_wait, #write_batch_size, #write_batch_timeout
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for AzureDatabricksDeltaLakeSink class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ AzureDatabricksDeltaLakeSink
constructor
A new instance of AzureDatabricksDeltaLakeSink.
Constructor Details
#initialize ⇒ AzureDatabricksDeltaLakeSink
Returns a new instance of AzureDatabricksDeltaLakeSink.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_delta_lake_sink.rb', line 16 def initialize @type = "AzureDatabricksDeltaLakeSink" end |
Instance Attribute Details
#import_settings ⇒ AzureDatabricksDeltaLakeImportCommand
Lake import settings.
28 29 30 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_delta_lake_sink.rb', line 28 def import_settings @import_settings end |
#pre_copy_script ⇒ Object
resultType string).
24 25 26 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_delta_lake_sink.rb', line 24 def pre_copy_script @pre_copy_script end |
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_delta_lake_sink.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for AzureDatabricksDeltaLakeSink class as Ruby Hash. This will be used for serialization/deserialization.
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 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 |
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_delta_lake_sink.rb', line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'AzureDatabricksDeltaLakeSink', type: { name: 'Composite', class_name: 'AzureDatabricksDeltaLakeSink', 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' } } } }, write_batch_size: { client_side_validation: true, required: false, serialized_name: 'writeBatchSize', type: { name: 'Object' } }, write_batch_timeout: { client_side_validation: true, required: false, serialized_name: 'writeBatchTimeout', type: { name: 'Object' } }, sink_retry_count: { client_side_validation: true, required: false, serialized_name: 'sinkRetryCount', type: { name: 'Object' } }, sink_retry_wait: { client_side_validation: true, required: false, serialized_name: 'sinkRetryWait', type: { name: 'Object' } }, max_concurrent_connections: { client_side_validation: true, required: false, serialized_name: 'maxConcurrentConnections', type: { name: 'Object' } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, pre_copy_script: { client_side_validation: true, required: false, serialized_name: 'preCopyScript', type: { name: 'Object' } }, import_settings: { client_side_validation: true, required: false, serialized_name: 'importSettings', type: { name: 'Composite', class_name: 'AzureDatabricksDeltaLakeImportCommand' } } } } } end |