Class: Google::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig

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

Overview

Proxy Configuration of a Tenant.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig

Returns a new instance of GoogleCloudBeyondcorpPartnerservicesV1alphaProxyConfig.



2413
2414
2415
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2413

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

Instance Attribute Details

#create_timeString

Output only. Timestamp when the resource was created. Corresponds to the JSON property createTime

Returns:

  • (String)


2375
2376
2377
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2375

def create_time
  @create_time
end

#display_nameString

Optional. An arbitrary caller-provided name for the ProxyConfig. Cannot exceed 64 characters. Corresponds to the JSON property displayName

Returns:

  • (String)


2381
2382
2383
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2381

def display_name
  @display_name
end

#encryption_infoGoogle::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaEncryptionInfo

Message contains the JWT encryption information for the proxy server. Corresponds to the JSON property encryptionInfo



2386
2387
2388
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2386

def encryption_info
  @encryption_info
end

#nameString

Output only. ProxyConfig resource name. Corresponds to the JSON property name

Returns:

  • (String)


2391
2392
2393
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2391

def name
  @name
end

#proxy_uriString

Required. The URI of the proxy server. Corresponds to the JSON property proxyUri

Returns:

  • (String)


2396
2397
2398
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2396

def proxy_uri
  @proxy_uri
end

#routing_infoGoogle::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaRoutingInfo

Message contains the routing information to direct traffic to the proxy server. Corresponds to the JSON property routingInfo



2401
2402
2403
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2401

def routing_info
  @routing_info
end

#transport_infoGoogle::Apis::BeyondcorpV1alpha::GoogleCloudBeyondcorpPartnerservicesV1alphaTransportInfo

Message contains the transport layer information to verify the proxy server. Corresponds to the JSON property transportInfo



2406
2407
2408
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2406

def transport_info
  @transport_info
end

#update_timeString

Output only. Timestamp when the resource was last modified. Corresponds to the JSON property updateTime

Returns:

  • (String)


2411
2412
2413
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2411

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 2418

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @encryption_info = args[:encryption_info] if args.key?(:encryption_info)
  @name = args[:name] if args.key?(:name)
  @proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri)
  @routing_info = args[:routing_info] if args.key?(:routing_info)
  @transport_info = args[:transport_info] if args.key?(:transport_info)
  @update_time = args[:update_time] if args.key?(:update_time)
end