Class: Azure::ServiceFabric::Mgmt::V2016_09_01::Models::ClusterCodeVersionsResult
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2016_09_01::Models::ClusterCodeVersionsResult
- Includes:
- MsRestAzure
- Defined in:
- lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb
Overview
The result of the ServiceFabric runtime versions
Instance Attribute Summary collapse
-
#code_version ⇒ String
The ServiceFabric runtime version of the cluster.
-
#environment ⇒ Enum
‘Windows’, ‘Linux’.
-
#id ⇒ String
The identification of the result.
-
#name ⇒ String
The name of the result.
-
#support_expiry_utc ⇒ String
The date of expiry of support of the version.
-
#type ⇒ String
The result resource type.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ClusterCodeVersionsResult class as Ruby Hash.
Instance Attribute Details
#code_version ⇒ String
Returns The ServiceFabric runtime version of the cluster.
25 26 27 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 25 def code_version @code_version end |
#environment ⇒ Enum
‘Windows’, ‘Linux’
32 33 34 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 32 def environment @environment end |
#id ⇒ String
Returns The identification of the result.
16 17 18 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 16 def id @id end |
#name ⇒ String
Returns The name of the result.
19 20 21 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 19 def name @name end |
#support_expiry_utc ⇒ String
Returns The date of expiry of support of the version.
28 29 30 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 28 def support_expiry_utc @support_expiry_utc end |
#type ⇒ String
Returns The result resource type.
22 23 24 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 22 def type @type end |
Class Method Details
.mapper ⇒ Object
Mapper for ClusterCodeVersionsResult class as Ruby Hash. This will be used for serialization/deserialization.
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 88 89 90 91 92 93 94 95 96 97 98 99 |
# File 'lib/2016-09-01/generated/azure_mgmt_service_fabric/models/cluster_code_versions_result.rb', line 39 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ClusterCodeVersionsResult', type: { name: 'Composite', class_name: 'ClusterCodeVersionsResult', model_properties: { id: { client_side_validation: true, required: false, serialized_name: 'id', type: { name: 'String' } }, name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, type: { client_side_validation: true, required: false, serialized_name: 'type', type: { name: 'String' } }, code_version: { client_side_validation: true, required: false, serialized_name: 'properties.codeVersion', type: { name: 'String' } }, support_expiry_utc: { client_side_validation: true, required: false, serialized_name: 'properties.supportExpiryUtc', type: { name: 'String' } }, environment: { client_side_validation: true, required: false, serialized_name: 'properties.environment', type: { name: 'String' } } } } } end |