Class: Google::Apis::ContainerV1::ControlPlaneEndpointsConfig

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

Overview

Configuration for all of the cluster's control plane endpoints.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ControlPlaneEndpointsConfig

Returns a new instance of ControlPlaneEndpointsConfig.



2208
2209
2210
# File 'lib/google/apis/container_v1/classes.rb', line 2208

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

Instance Attribute Details

#dns_endpoint_configGoogle::Apis::ContainerV1::DnsEndpointConfig

Describes the configuration of a DNS endpoint. Corresponds to the JSON property dnsEndpointConfig



2201
2202
2203
# File 'lib/google/apis/container_v1/classes.rb', line 2201

def dns_endpoint_config
  @dns_endpoint_config
end

#ip_endpoints_configGoogle::Apis::ContainerV1::IpEndpointsConfig

IP endpoints configuration. Corresponds to the JSON property ipEndpointsConfig



2206
2207
2208
# File 'lib/google/apis/container_v1/classes.rb', line 2206

def ip_endpoints_config
  @ip_endpoints_config
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2213
2214
2215
2216
# File 'lib/google/apis/container_v1/classes.rb', line 2213

def update!(**args)
  @dns_endpoint_config = args[:dns_endpoint_config] if args.key?(:dns_endpoint_config)
  @ip_endpoints_config = args[:ip_endpoints_config] if args.key?(:ip_endpoints_config)
end