Class: Google::Apis::BeyondcorpV1::ClientGateway

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

Overview

Message describing ClientGateway object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClientGateway

Returns a new instance of ClientGateway.



347
348
349
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 347

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

Instance Attribute Details

#client_connector_serviceString

Output only. The client connector service name that the client gateway is associated to. Client Connector Services, named as follows: projects/ project_id/locations/location_id/client_connector_services/ client_connector_service_id`. Corresponds to the JSON propertyclientConnectorService`

Returns:

  • (String)


320
321
322
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 320

def client_connector_service
  @client_connector_service
end

#create_timeString

Output only. [Output only] Create time stamp. Corresponds to the JSON property createTime

Returns:

  • (String)


325
326
327
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 325

def create_time
  @create_time
end

#idString

Output only. A unique identifier for the instance generated by the system. Corresponds to the JSON property id

Returns:

  • (String)


330
331
332
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 330

def id
  @id
end

#nameString

Required. name of resource. The name is ignored during creation. Corresponds to the JSON property name

Returns:

  • (String)


335
336
337
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 335

def name
  @name
end

#stateString

Output only. The operational state of the gateway. Corresponds to the JSON property state

Returns:

  • (String)


340
341
342
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 340

def state
  @state
end

#update_timeString

Output only. [Output only] Update time stamp. Corresponds to the JSON property updateTime

Returns:

  • (String)


345
346
347
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 345

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



352
353
354
355
356
357
358
359
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 352

def update!(**args)
  @client_connector_service = args[:client_connector_service] if args.key?(:client_connector_service)
  @create_time = args[:create_time] if args.key?(:create_time)
  @id = args[:id] if args.key?(:id)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end