Class: Google::Apis::BeyondcorpV1alpha::ClientConnectorService

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

Message describing ClientConnectorService object.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ClientConnectorService

Returns a new instance of ClientConnectorService.



260
261
262
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 260

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)


225
226
227
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 225

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)


232
233
234
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 232

def display_name
  @display_name
end

#egressGoogle::Apis::BeyondcorpV1alpha::Egress

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



237
238
239
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 237

def egress
  @egress
end

#ingressGoogle::Apis::BeyondcorpV1alpha::Ingress

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



243
244
245
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 243

def ingress
  @ingress
end

#nameString

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

Returns:

  • (String)


248
249
250
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 248

def name
  @name
end

#stateString

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

Returns:

  • (String)


253
254
255
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 253

def state
  @state
end

#update_timeString

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

Returns:

  • (String)


258
259
260
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 258

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



265
266
267
268
269
270
271
272
273
# File 'lib/google/apis/beyondcorp_v1alpha/classes.rb', line 265

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