Class: Google::Cloud::GkeMultiCloud::V1::AwsInstancePlacement Deprecated

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

Overview

Deprecated.

This message is deprecated and may be removed in the next major version update.

Details of placement information for an instance. Limitations for using the host tenancy:

  • T3 instances that use the unlimited CPU credit option don't support host tenancy.

Defined Under Namespace

Modules: Tenancy

Instance Attribute Summary collapse

Instance Attribute Details

#tenancy::Google::Cloud::GkeMultiCloud::V1::AwsInstancePlacement::Tenancy

Returns Required. The tenancy for instance.

Returns:



825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
# File 'proto_docs/google/cloud/gkemulticloud/v1/aws_resources.rb', line 825

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

  # Tenancy defines how EC2 instances are distributed across physical hardware.
  module Tenancy
    # Not set.
    TENANCY_UNSPECIFIED = 0

    # Use default VPC tenancy.
    DEFAULT = 1

    # Run a dedicated instance.
    DEDICATED = 2

    # Launch this instance to a dedicated host.
    HOST = 3
  end
end