Class: Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::PipelineRunInvokedBy
- Inherits:
-
Object
- Object
- Azure::DataFactory::Mgmt::V2017_09_01_preview::Models::PipelineRunInvokedBy
- Includes:
- MsRestAzure
- Defined in:
- lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_invoked_by.rb
Overview
Provides entity name and id that started the pipeline run.
Instance Attribute Summary collapse
-
#id ⇒ String
The ID of the entity that started the run.
-
#name ⇒ String
Name of the entity that started the pipeline run.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for PipelineRunInvokedBy class as Ruby Hash.
Instance Attribute Details
#id ⇒ String
Returns The ID of the entity that started the run.
19 20 21 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_invoked_by.rb', line 19 def id @id end |
#name ⇒ String
Returns Name of the entity that started the pipeline run.
16 17 18 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_invoked_by.rb', line 16 def name @name end |
Class Method Details
.mapper ⇒ Object
Mapper for PipelineRunInvokedBy 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 |
# File 'lib/2017-09-01-preview/generated/azure_mgmt_data_factory/models/pipeline_run_invoked_by.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'PipelineRunInvokedBy', type: { name: 'Composite', class_name: 'PipelineRunInvokedBy', model_properties: { name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, id: { client_side_validation: true, required: false, read_only: true, serialized_name: 'id', type: { name: 'String' } } } } } end |