Class: Azure::Logic::Mgmt::V2018_07_01_preview::Models::RepetitionIndex
- Inherits:
-
Object
- Object
- Azure::Logic::Mgmt::V2018_07_01_preview::Models::RepetitionIndex
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-07-01-preview/generated/azure_mgmt_logic/models/repetition_index.rb
Overview
The workflow run action repetition index.
Instance Attribute Summary collapse
-
#item_index ⇒ Integer
The index.
-
#scope_name ⇒ String
The scope.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RepetitionIndex class as Ruby Hash.
Instance Attribute Details
#item_index ⇒ Integer
Returns The index.
19 20 21 |
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/repetition_index.rb', line 19 def item_index @item_index end |
#scope_name ⇒ String
Returns The scope.
16 17 18 |
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/repetition_index.rb', line 16 def scope_name @scope_name end |
Class Method Details
.mapper ⇒ Object
Mapper for RepetitionIndex 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 |
# File 'lib/2018-07-01-preview/generated/azure_mgmt_logic/models/repetition_index.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RepetitionIndex', type: { name: 'Composite', class_name: 'RepetitionIndex', model_properties: { scope_name: { client_side_validation: true, required: false, serialized_name: 'scopeName', type: { name: 'String' } }, item_index: { client_side_validation: true, required: true, serialized_name: 'itemIndex', type: { name: 'Number' } } } } } end |