Class: Google::Cloud::GkeMultiCloud::V1::AwsInstancePlacement
- Inherits:
-
Object
- Object
- Google::Cloud::GkeMultiCloud::V1::AwsInstancePlacement
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/gkemulticloud/v1/aws_resources.rb
Overview
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.
802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 |
# File 'proto_docs/google/cloud/gkemulticloud/v1/aws_resources.rb', line 802 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 |