Class: Google::Apis::GkeonpremV1::VmwareAdminProxy

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

Overview

VmwareAdminProxy represents configuration for admin cluster proxy.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ VmwareAdminProxy

Returns a new instance of VmwareAdminProxy.



4528
4529
4530
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4528

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

Instance Attribute Details

#no_proxyString

A comma-separated list of IP addresses, IP address ranges, host names, and domain names that should not go through the proxy server. When Google Distributed Cloud sends a request to one of these addresses, hosts, or domains, the request is sent directly. Corresponds to the JSON property noProxy

Returns:

  • (String)


4521
4522
4523
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4521

def no_proxy
  @no_proxy
end

#urlString

The HTTP address of proxy server. Corresponds to the JSON property url

Returns:

  • (String)


4526
4527
4528
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4526

def url
  @url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4533
4534
4535
4536
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4533

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