Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::DatabricksNotebookActivity
- Inherits:
-
ExecutionActivity
- Object
- Activity
- ExecutionActivity
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::DatabricksNotebookActivity
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/databricks_notebook_activity.rb
Overview
DatabricksNotebook activity.
Instance Attribute Summary collapse
-
#base_parameters ⇒ Object
notebook takes a parameter that is not specified, the default value from the notebook will be used.
-
#notebook_path ⇒ Object
Workspace.
-
#type ⇒ Object
Returns the value of attribute type.
Attributes inherited from ExecutionActivity
Attributes inherited from Activity
#additional_properties, #depends_on, #description, #name
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for DatabricksNotebookActivity class as Ruby Hash.
Instance Method Summary collapse
-
#initialize ⇒ DatabricksNotebookActivity
constructor
A new instance of DatabricksNotebookActivity.
Constructor Details
#initialize ⇒ DatabricksNotebookActivity
Returns a new instance of DatabricksNotebookActivity.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/databricks_notebook_activity.rb', line 16 def initialize @type = "DatabricksNotebook" end |
Instance Attribute Details
#base_parameters ⇒ Object
notebook takes a parameter that is not specified, the default value from the notebook will be used.
30 31 32 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/databricks_notebook_activity.rb', line 30 def base_parameters @base_parameters end |
#notebook_path ⇒ Object
Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
25 26 27 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/databricks_notebook_activity.rb', line 25 def notebook_path @notebook_path end |
#type ⇒ Object
Returns the value of attribute type.
20 21 22 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/databricks_notebook_activity.rb', line 20 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for DatabricksNotebookActivity class as Ruby Hash. This will be used for serialization/deserialization.
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 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/databricks_notebook_activity.rb', line 37 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'DatabricksNotebook', type: { name: 'Composite', class_name: 'DatabricksNotebookActivity', 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' } } } }, name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, description: { client_side_validation: true, required: false, serialized_name: 'description', type: { name: 'String' } }, depends_on: { client_side_validation: true, required: false, serialized_name: 'dependsOn', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ActivityDependencyElementType', type: { name: 'Composite', class_name: 'ActivityDependency' } } } }, type: { client_side_validation: true, required: true, serialized_name: 'type', type: { name: 'String' } }, linked_service_name: { client_side_validation: true, required: false, serialized_name: 'linkedServiceName', type: { name: 'Composite', class_name: 'LinkedServiceReference' } }, policy: { client_side_validation: true, required: false, serialized_name: 'policy', type: { name: 'Composite', class_name: 'ActivityPolicy' } }, notebook_path: { client_side_validation: true, required: true, serialized_name: 'typeProperties.notebookPath', type: { name: 'Object' } }, base_parameters: { client_side_validation: true, required: false, serialized_name: 'typeProperties.baseParameters', type: { name: 'Dictionary', value: { client_side_validation: true, required: false, serialized_name: 'ObjectElementType', type: { name: 'Object' } } } } } } } end |