Class: Azure::Logic::Mgmt::V2015_02_01_preview::Models::WorkflowAccessKey
- Inherits:
-
SubResource
- Object
- SubResource
- Azure::Logic::Mgmt::V2015_02_01_preview::Models::WorkflowAccessKey
- Includes:
- MsRestAzure
- Defined in:
- lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#name ⇒ String
Gets the workflow access key name.
-
#not_after ⇒ DateTime
Gets or sets the not-after time.
-
#not_before ⇒ DateTime
Gets or sets the not-before time.
-
#type ⇒ String
Gets the workflow access key type.
Attributes inherited from SubResource
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for WorkflowAccessKey class as Ruby Hash.
Instance Attribute Details
#name ⇒ String
Returns Gets the workflow access key name.
23 24 25 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb', line 23 def name @name end |
#not_after ⇒ DateTime
Returns Gets or sets the not-after time.
20 21 22 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb', line 20 def not_after @not_after end |
#not_before ⇒ DateTime
Returns Gets or sets the not-before time.
17 18 19 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb', line 17 def not_before @not_before end |
#type ⇒ String
Returns Gets the workflow access key type.
26 27 28 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb', line 26 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for WorkflowAccessKey class as Ruby Hash. This will be used for serialization/deserialization.
33 34 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 |
# File 'lib/2015-02-01-preview/generated/azure_mgmt_logic/models/workflow_access_key.rb', line 33 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'WorkflowAccessKey', type: { name: 'Composite', class_name: 'WorkflowAccessKey', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, not_before: { client_side_validation: true, required: false, serialized_name: 'properties.notBefore', type: { name: 'DateTime' } }, not_after: { client_side_validation: true, required: false, serialized_name: 'properties.notAfter', type: { name: 'DateTime' } }, name: { client_side_validation: true, required: false, read_only: true, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, read_only: true, serialized_name: 'type', type: { name: 'String' } } } } } end |