Class: Google::Apis::ContainerV1beta1::TpuConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/container_v1beta1/classes.rb,
lib/google/apis/container_v1beta1/representations.rb,
lib/google/apis/container_v1beta1/representations.rb

Overview

Configuration for Cloud TPU. This message is deprecated due to the deprecation of 2VM TPU. The end of life date for 2VM TPU is 2025-04-25.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TpuConfig

Returns a new instance of TpuConfig.



9989
9990
9991
# File 'lib/google/apis/container_v1beta1/classes.rb', line 9989

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#enabledBoolean Also known as: enabled?

Whether Cloud TPU integration is enabled or not. Corresponds to the JSON property enabled

Returns:

  • (Boolean)


9975
9976
9977
# File 'lib/google/apis/container_v1beta1/classes.rb', line 9975

def enabled
  @enabled
end

#ipv4_cidr_blockString

IPv4 CIDR block reserved for Cloud TPU in the VPC. Corresponds to the JSON property ipv4CidrBlock

Returns:

  • (String)


9981
9982
9983
# File 'lib/google/apis/container_v1beta1/classes.rb', line 9981

def ipv4_cidr_block
  @ipv4_cidr_block
end

#use_service_networkingBoolean Also known as: use_service_networking?

Whether to use service networking for Cloud TPU or not. Corresponds to the JSON property useServiceNetworking

Returns:

  • (Boolean)


9986
9987
9988
# File 'lib/google/apis/container_v1beta1/classes.rb', line 9986

def use_service_networking
  @use_service_networking
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9994
9995
9996
9997
9998
# File 'lib/google/apis/container_v1beta1/classes.rb', line 9994

def update!(**args)
  @enabled = args[:enabled] if args.key?(:enabled)
  @ipv4_cidr_block = args[:ipv4_cidr_block] if args.key?(:ipv4_cidr_block)
  @use_service_networking = args[:use_service_networking] if args.key?(:use_service_networking)
end