Class: Google::Apis::GkeonpremV1::VmwareAdminProxy
- Inherits:
-
Object
- Object
- Google::Apis::GkeonpremV1::VmwareAdminProxy
- 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
-
#no_proxy ⇒ String
A comma-separated list of IP addresses, IP address ranges, host names, and domain names that should not go through the proxy server.
-
#url ⇒ String
The HTTP address of proxy server.
Instance Method Summary collapse
-
#initialize(**args) ⇒ VmwareAdminProxy
constructor
A new instance of VmwareAdminProxy.
-
#update!(**args) ⇒ Object
Update properties of this object.
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_proxy ⇒ String
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
4521 4522 4523 |
# File 'lib/google/apis/gkeonprem_v1/classes.rb', line 4521 def no_proxy @no_proxy end |
#url ⇒ String
The HTTP address of proxy server.
Corresponds to the JSON property url
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 |