Class: Com::Vmware::Appliance::Health::Swap::HealthLevel
- Inherits:
-
VAPI::Bindings::VapiEnum
- Object
- VAPI::Bindings::VapiEnum
- Com::Vmware::Appliance::Health::Swap::HealthLevel
- Defined in:
- /build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb
Overview
``Com::Vmware::Appliance::Health::Swap::HealthLevel`` enumerated type Defines health levels
Constant Summary
- ORANGE =
HealthLevel.new('ORANGE')
- GRAY =
HealthLevel.new('GRAY')
- GREEN =
HealthLevel.new('GREEN')
- RED =
HealthLevel.new('RED')
- YELLOW =
HealthLevel.new('YELLOW')
Instance Attribute Summary (collapse)
-
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) gray
No health data is available for this service.
-
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) green
Service is healthy.
-
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) orange
The service health is degraded.
-
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) red
The service is unavaiable and is not functioning properly or will stop functioning soon.
-
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) yellow
The service is healthy state, but experiencing some levels of problems.
Class Method Summary (collapse)
-
+ (VAPI::Bindings::EnumType) binding_type
Holds (gets or creates) the binding type metadata for this enumeration type.
-
+ (HealthLevel) from_string(value)
Converts from a string value (perhaps off the wire) to an instance of this enum type.
Instance Attribute Details
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) gray
No health data is available for this service.
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 774 class HealthLevel < VAPI::Bindings::VapiEnum class << self # Holds (gets or creates) the binding type metadata for this enumeration type. # @scope class # @return [VAPI::Bindings::EnumType] the binding type def binding_type @binding_type ||= VAPI::Bindings::EnumType.new( 'com.vmware.appliance.health.swap.health_level', HealthLevel) end # Converts from a string value (perhaps off the wire) to an instance # of this enum type. # @param value [String] the actual value of the enum instance # @return [HealthLevel] the instance found for the value, otherwise # an unknown instance will be built for the value def from_string(value) begin const_get(value) rescue NameError HealthLevel.new('UNKNOWN', value) end end end private # Constructs a new instance. # @param value [String] the actual value of the enum instance # @param unknown [String] the unknown value when value is 'UKNOWN' def initialize(value, unknown=nil) super(self.class.binding_type, value, unknown) end public # @!attribute [rw] orange # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service health is degraded. The service might have serious problems ORANGE = HealthLevel.new('ORANGE') # @!attribute [rw] gray # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # No health data is available for this service. GRAY = HealthLevel.new('GRAY') # @!attribute [rw] green # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # Service is healthy. GREEN = HealthLevel.new('GREEN') # @!attribute [rw] red # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is unavaiable and is not functioning properly or will stop functioning soon. RED = HealthLevel.new('RED') # @!attribute [rw] yellow # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is healthy state, but experiencing some levels of problems. YELLOW = HealthLevel.new('YELLOW') end |
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) green
Service is healthy.
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 774 class HealthLevel < VAPI::Bindings::VapiEnum class << self # Holds (gets or creates) the binding type metadata for this enumeration type. # @scope class # @return [VAPI::Bindings::EnumType] the binding type def binding_type @binding_type ||= VAPI::Bindings::EnumType.new( 'com.vmware.appliance.health.swap.health_level', HealthLevel) end # Converts from a string value (perhaps off the wire) to an instance # of this enum type. # @param value [String] the actual value of the enum instance # @return [HealthLevel] the instance found for the value, otherwise # an unknown instance will be built for the value def from_string(value) begin const_get(value) rescue NameError HealthLevel.new('UNKNOWN', value) end end end private # Constructs a new instance. # @param value [String] the actual value of the enum instance # @param unknown [String] the unknown value when value is 'UKNOWN' def initialize(value, unknown=nil) super(self.class.binding_type, value, unknown) end public # @!attribute [rw] orange # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service health is degraded. The service might have serious problems ORANGE = HealthLevel.new('ORANGE') # @!attribute [rw] gray # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # No health data is available for this service. GRAY = HealthLevel.new('GRAY') # @!attribute [rw] green # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # Service is healthy. GREEN = HealthLevel.new('GREEN') # @!attribute [rw] red # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is unavaiable and is not functioning properly or will stop functioning soon. RED = HealthLevel.new('RED') # @!attribute [rw] yellow # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is healthy state, but experiencing some levels of problems. YELLOW = HealthLevel.new('YELLOW') end |
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) orange
The service health is degraded. The service might have serious problems
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 774 class HealthLevel < VAPI::Bindings::VapiEnum class << self # Holds (gets or creates) the binding type metadata for this enumeration type. # @scope class # @return [VAPI::Bindings::EnumType] the binding type def binding_type @binding_type ||= VAPI::Bindings::EnumType.new( 'com.vmware.appliance.health.swap.health_level', HealthLevel) end # Converts from a string value (perhaps off the wire) to an instance # of this enum type. # @param value [String] the actual value of the enum instance # @return [HealthLevel] the instance found for the value, otherwise # an unknown instance will be built for the value def from_string(value) begin const_get(value) rescue NameError HealthLevel.new('UNKNOWN', value) end end end private # Constructs a new instance. # @param value [String] the actual value of the enum instance # @param unknown [String] the unknown value when value is 'UKNOWN' def initialize(value, unknown=nil) super(self.class.binding_type, value, unknown) end public # @!attribute [rw] orange # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service health is degraded. The service might have serious problems ORANGE = HealthLevel.new('ORANGE') # @!attribute [rw] gray # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # No health data is available for this service. GRAY = HealthLevel.new('GRAY') # @!attribute [rw] green # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # Service is healthy. GREEN = HealthLevel.new('GREEN') # @!attribute [rw] red # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is unavaiable and is not functioning properly or will stop functioning soon. RED = HealthLevel.new('RED') # @!attribute [rw] yellow # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is healthy state, but experiencing some levels of problems. YELLOW = HealthLevel.new('YELLOW') end |
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) red
The service is unavaiable and is not functioning properly or will stop functioning soon.
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 774 class HealthLevel < VAPI::Bindings::VapiEnum class << self # Holds (gets or creates) the binding type metadata for this enumeration type. # @scope class # @return [VAPI::Bindings::EnumType] the binding type def binding_type @binding_type ||= VAPI::Bindings::EnumType.new( 'com.vmware.appliance.health.swap.health_level', HealthLevel) end # Converts from a string value (perhaps off the wire) to an instance # of this enum type. # @param value [String] the actual value of the enum instance # @return [HealthLevel] the instance found for the value, otherwise # an unknown instance will be built for the value def from_string(value) begin const_get(value) rescue NameError HealthLevel.new('UNKNOWN', value) end end end private # Constructs a new instance. # @param value [String] the actual value of the enum instance # @param unknown [String] the unknown value when value is 'UKNOWN' def initialize(value, unknown=nil) super(self.class.binding_type, value, unknown) end public # @!attribute [rw] orange # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service health is degraded. The service might have serious problems ORANGE = HealthLevel.new('ORANGE') # @!attribute [rw] gray # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # No health data is available for this service. GRAY = HealthLevel.new('GRAY') # @!attribute [rw] green # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # Service is healthy. GREEN = HealthLevel.new('GREEN') # @!attribute [rw] red # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is unavaiable and is not functioning properly or will stop functioning soon. RED = HealthLevel.new('RED') # @!attribute [rw] yellow # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is healthy state, but experiencing some levels of problems. YELLOW = HealthLevel.new('YELLOW') end |
- (Com::Vmware::Appliance::Health::Swap::HealthLevel) yellow
The service is healthy state, but experiencing some levels of problems.
774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 774 class HealthLevel < VAPI::Bindings::VapiEnum class << self # Holds (gets or creates) the binding type metadata for this enumeration type. # @scope class # @return [VAPI::Bindings::EnumType] the binding type def binding_type @binding_type ||= VAPI::Bindings::EnumType.new( 'com.vmware.appliance.health.swap.health_level', HealthLevel) end # Converts from a string value (perhaps off the wire) to an instance # of this enum type. # @param value [String] the actual value of the enum instance # @return [HealthLevel] the instance found for the value, otherwise # an unknown instance will be built for the value def from_string(value) begin const_get(value) rescue NameError HealthLevel.new('UNKNOWN', value) end end end private # Constructs a new instance. # @param value [String] the actual value of the enum instance # @param unknown [String] the unknown value when value is 'UKNOWN' def initialize(value, unknown=nil) super(self.class.binding_type, value, unknown) end public # @!attribute [rw] orange # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service health is degraded. The service might have serious problems ORANGE = HealthLevel.new('ORANGE') # @!attribute [rw] gray # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # No health data is available for this service. GRAY = HealthLevel.new('GRAY') # @!attribute [rw] green # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # Service is healthy. GREEN = HealthLevel.new('GREEN') # @!attribute [rw] red # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is unavaiable and is not functioning properly or will stop functioning soon. RED = HealthLevel.new('RED') # @!attribute [rw] yellow # @return [Com::Vmware::Appliance::Health::Swap::HealthLevel] # The service is healthy state, but experiencing some levels of problems. YELLOW = HealthLevel.new('YELLOW') end |
Class Method Details
+ (VAPI::Bindings::EnumType) binding_type
Holds (gets or creates) the binding type metadata for this enumeration type.
780 781 782 783 784 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 780 def binding_type @binding_type ||= VAPI::Bindings::EnumType.new( 'com.vmware.appliance.health.swap.health_level', HealthLevel) end |
+ (HealthLevel) from_string(value)
Converts from a string value (perhaps off the wire) to an instance of this enum type.
791 792 793 794 795 796 797 |
# File '/build/mts/release/bora-4571906/build/sdk/aggregated-bindings/ruby/com/vmware/appliance/health.rb', line 791 def from_string(value) begin const_get(value) rescue NameError HealthLevel.new('UNKNOWN', value) end end |