Class: Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ClusterVersionDetails
- Inherits:
-
Object
- Object
- Azure::ServiceFabric::Mgmt::V2018_02_01::Models::ClusterVersionDetails
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-02-01/generated/azure_mgmt_service_fabric/models/cluster_version_details.rb
Overview
The detail of the Service Fabric runtime version result
Instance Attribute Summary collapse
-
#code_version ⇒ String
The Service Fabric runtime version of the cluster.
-
#environment ⇒ Enum
operating system.
-
#support_expiry_utc ⇒ String
The date of expiry of support of the version.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ClusterVersionDetails class as Ruby Hash.
Instance Attribute Details
#code_version ⇒ String
Returns The Service Fabric runtime version of the cluster.
16 17 18 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/cluster_version_details.rb', line 16 def code_version @code_version end |
#environment ⇒ Enum
operating system. Possible values include: ‘Windows’, ‘Linux’
23 24 25 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/cluster_version_details.rb', line 23 def environment @environment end |
#support_expiry_utc ⇒ String
Returns The date of expiry of support of the version.
19 20 21 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/cluster_version_details.rb', line 19 def support_expiry_utc @support_expiry_utc end |
Class Method Details
.mapper ⇒ Object
Mapper for ClusterVersionDetails class as Ruby Hash. This will be used for serialization/deserialization.
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 66 |
# File 'lib/2018-02-01/generated/azure_mgmt_service_fabric/models/cluster_version_details.rb', line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ClusterVersionDetails', type: { name: 'Composite', class_name: 'ClusterVersionDetails', model_properties: { code_version: { client_side_validation: true, required: false, serialized_name: 'codeVersion', type: { name: 'String' } }, support_expiry_utc: { client_side_validation: true, required: false, serialized_name: 'supportExpiryUtc', type: { name: 'String' } }, environment: { client_side_validation: true, required: false, serialized_name: 'environment', type: { name: 'String' } } } } } end |