Class: Google::Apis::ContainerV1beta1::DnsConfig

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

DNSConfig contains the desired set of options for configuring clusterDNS.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DnsConfig

Returns a new instance of DnsConfig.



2292
2293
2294
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2292

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

Instance Attribute Details

#cluster_dnsString

cluster_dns indicates which in-cluster DNS provider should be used. Corresponds to the JSON property clusterDns

Returns:

  • (String)


2280
2281
2282
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2280

def cluster_dns
  @cluster_dns
end

#cluster_dns_domainString

cluster_dns_domain is the suffix used for all cluster service records. Corresponds to the JSON property clusterDnsDomain

Returns:

  • (String)


2285
2286
2287
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2285

def cluster_dns_domain
  @cluster_dns_domain
end

#cluster_dns_scopeString

cluster_dns_scope indicates the scope of access to cluster DNS records. Corresponds to the JSON property clusterDnsScope

Returns:

  • (String)


2290
2291
2292
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2290

def cluster_dns_scope
  @cluster_dns_scope
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2297
2298
2299
2300
2301
# File 'lib/google/apis/container_v1beta1/classes.rb', line 2297

def update!(**args)
  @cluster_dns = args[:cluster_dns] if args.key?(:cluster_dns)
  @cluster_dns_domain = args[:cluster_dns_domain] if args.key?(:cluster_dns_domain)
  @cluster_dns_scope = args[:cluster_dns_scope] if args.key?(:cluster_dns_scope)
end