Class: Google::Apis::BeyondcorpV1::ClientConnectorService

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 ClientConnectorService object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClientConnectorService

Returns a new instance of ClientConnectorService.



235
236
237
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 235

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

Instance Attribute Details

#create_timeString

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

Returns:

  • (String)


200
201
202
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 200

def create_time
  @create_time
end

#display_nameString

Optional. User-provided name. The display name should follow certain format. * Must be 6 to 30 characters in length. * Can only contain lowercase letters, numbers, and hyphens. * Must start with a letter. Corresponds to the JSON property displayName

Returns:

  • (String)


207
208
209
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 207

def display_name
  @display_name
end

#egressGoogle::Apis::BeyondcorpV1::Egress

The details of the egress info. One of the following options should be set. Corresponds to the JSON property egress



212
213
214
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 212

def egress
  @egress
end

#ingressGoogle::Apis::BeyondcorpV1::Ingress

Settings of how to connect to the ClientGateway. One of the following options should be set. Corresponds to the JSON property ingress



218
219
220
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 218

def ingress
  @ingress
end

#nameString

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

Returns:

  • (String)


223
224
225
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 223

def name
  @name
end

#stateString

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

Returns:

  • (String)


228
229
230
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 228

def state
  @state
end

#update_timeString

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

Returns:

  • (String)


233
234
235
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 233

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



240
241
242
243
244
245
246
247
248
# File 'lib/google/apis/beyondcorp_v1/classes.rb', line 240

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @display_name = args[:display_name] if args.key?(:display_name)
  @egress = args[:egress] if args.key?(:egress)
  @ingress = args[:ingress] if args.key?(:ingress)
  @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