Class: Azure::StorageSync::Mgmt::V2019_03_01::Models::RecallActionParameters
- Inherits:
-
Object
- Object
- Azure::StorageSync::Mgmt::V2019_03_01::Models::RecallActionParameters
- Includes:
- MsRestAzure
- Defined in:
- lib/2019-03-01/generated/azure_mgmt_storagesync/models/recall_action_parameters.rb
Overview
The parameters used when calling recall action on server endpoint.
Instance Attribute Summary collapse
-
#pattern ⇒ String
Pattern of the files.
-
#recall_path ⇒ String
Recall path.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for RecallActionParameters class as Ruby Hash.
Instance Attribute Details
#pattern ⇒ String
Returns Pattern of the files.
16 17 18 |
# File 'lib/2019-03-01/generated/azure_mgmt_storagesync/models/recall_action_parameters.rb', line 16 def pattern @pattern end |
#recall_path ⇒ String
Returns Recall path.
19 20 21 |
# File 'lib/2019-03-01/generated/azure_mgmt_storagesync/models/recall_action_parameters.rb', line 19 def recall_path @recall_path end |
Class Method Details
.mapper ⇒ Object
Mapper for RecallActionParameters 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/2019-03-01/generated/azure_mgmt_storagesync/models/recall_action_parameters.rb', line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'RecallActionParameters', type: { name: 'Composite', class_name: 'RecallActionParameters', model_properties: { pattern: { client_side_validation: true, required: false, serialized_name: 'pattern', type: { name: 'String' } }, recall_path: { client_side_validation: true, required: false, serialized_name: 'recallPath', type: { name: 'String' } } } } } end |