Class: Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListPersistedScriptActionsResult
- Inherits:
-
Object
- Object
- Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ClusterListPersistedScriptActionsResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_persisted_script_actions_result.rb
Overview
The ListPersistedScriptActions operation response.
Instance Attribute Summary collapse
-
#next_link ⇒ String
The link (url) to the next page of results.
-
#value ⇒ Array<RuntimeScriptAction>
Actions.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ClusterListPersistedScriptActionsResult class as Ruby Hash.
Instance Attribute Details
#next_link ⇒ String
Returns The link (url) to the next page of results.
20 21 22 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_persisted_script_actions_result.rb', line 20 def next_link @next_link end |
#value ⇒ Array<RuntimeScriptAction>
Actions.
17 18 19 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_persisted_script_actions_result.rb', line 17 def value @value end |
Class Method Details
.mapper ⇒ Object
Mapper for ClusterListPersistedScriptActionsResult class as Ruby Hash. This will be used for serialization/deserialization.
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 57 58 59 60 61 62 63 64 65 |
# File 'lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_list_persisted_script_actions_result.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ClusterListPersistedScriptActionsResult', type: { name: 'Composite', class_name: 'ClusterListPersistedScriptActionsResult', model_properties: { value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'RuntimeScriptActionElementType', type: { name: 'Composite', class_name: 'RuntimeScriptAction' } } } }, next_link: { client_side_validation: true, required: false, read_only: true, serialized_name: 'nextLink', type: { name: 'String' } } } } } end |