Class: Google::Cloud::Metastore::V1::ScalingConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/metastore/v1/metastore.rb

Overview

Represents the scaling configuration of a metastore service.

Defined Under Namespace

Modules: InstanceSize

Instance Attribute Summary collapse

Instance Attribute Details

#instance_size::Google::Cloud::Metastore::V1::ScalingConfig::InstanceSize

Returns An enum of readable instance sizes, with each instance size mapping to a float value (e.g. InstanceSize.EXTRA_SMALL = scaling_factor(0.1)).

Returns:



656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
# File 'proto_docs/google/cloud/metastore/v1/metastore.rb', line 656

class ScalingConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Metastore instance sizes.
  module InstanceSize
    # Unspecified instance size
    INSTANCE_SIZE_UNSPECIFIED = 0

    # Extra small instance size, maps to a scaling factor of 0.1.
    EXTRA_SMALL = 1

    # Small instance size, maps to a scaling factor of 0.5.
    SMALL = 2

    # Medium instance size, maps to a scaling factor of 1.0.
    MEDIUM = 3

    # Large instance size, maps to a scaling factor of 3.0.
    LARGE = 4

    # Extra large instance size, maps to a scaling factor of 6.0.
    EXTRA_LARGE = 5
  end
end

#scaling_factor::Float

Returns Scaling factor, increments of 0.1 for values less than 1.0, and increments of 1.0 for values greater than 1.0.

Returns:

  • (::Float)

    Scaling factor, increments of 0.1 for values less than 1.0, and increments of 1.0 for values greater than 1.0.



656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
# File 'proto_docs/google/cloud/metastore/v1/metastore.rb', line 656

class ScalingConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Metastore instance sizes.
  module InstanceSize
    # Unspecified instance size
    INSTANCE_SIZE_UNSPECIFIED = 0

    # Extra small instance size, maps to a scaling factor of 0.1.
    EXTRA_SMALL = 1

    # Small instance size, maps to a scaling factor of 0.5.
    SMALL = 2

    # Medium instance size, maps to a scaling factor of 1.0.
    MEDIUM = 3

    # Large instance size, maps to a scaling factor of 3.0.
    LARGE = 4

    # Extra large instance size, maps to a scaling factor of 6.0.
    EXTRA_LARGE = 5
  end
end