Class: Google::Apis::AndroidmanagementV1::ProxyInfo

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

Overview

Configuration info for an HTTP proxy. For a direct proxy, set the host, port, and excluded_hosts fields. For a PAC script proxy, set the pac_uri field.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ProxyInfo

Returns a new instance of ProxyInfo



2464
2465
2466
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2464

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

Instance Attribute Details

#excluded_hostsArray<String>

For a direct proxy, the hosts for which the proxy is bypassed. The host names may contain wildcards such as *.example.com. Corresponds to the JSON property excludedHosts

Returns:

  • (Array<String>)


2447
2448
2449
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2447

def excluded_hosts
  @excluded_hosts
end

#hostString

The host of the direct proxy. Corresponds to the JSON property host

Returns:

  • (String)


2452
2453
2454
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2452

def host
  @host
end

#pac_uriString

The URI of the PAC script used to configure the proxy. Corresponds to the JSON property pacUri

Returns:

  • (String)


2457
2458
2459
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2457

def pac_uri
  @pac_uri
end

#portFixnum

The port of the direct proxy. Corresponds to the JSON property port

Returns:

  • (Fixnum)


2462
2463
2464
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2462

def port
  @port
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2469
2470
2471
2472
2473
2474
# File 'generated/google/apis/androidmanagement_v1/classes.rb', line 2469

def update!(**args)
  @excluded_hosts = args[:excluded_hosts] if args.key?(:excluded_hosts)
  @host = args[:host] if args.key?(:host)
  @pac_uri = args[:pac_uri] if args.key?(:pac_uri)
  @port = args[:port] if args.key?(:port)
end