Class: Google::Apis::NetworkmanagementV1::ConnectivityTest

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

Overview

A Connectivity Test for a network reachability analysis.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConnectivityTest

Returns a new instance of ConnectivityTest.



273
274
275
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 273

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

Instance Attribute Details

#create_timeString

Output only. The time the test was created. Corresponds to the JSON property createTime

Returns:

  • (String)


218
219
220
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 218

def create_time
  @create_time
end

#descriptionString

The user-supplied description of the Connectivity Test. Maximum of 512 characters. Corresponds to the JSON property description

Returns:

  • (String)


224
225
226
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 224

def description
  @description
end

#destinationGoogle::Apis::NetworkmanagementV1::Endpoint

Source or destination of the Connectivity Test. Corresponds to the JSON property destination



229
230
231
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 229

def destination
  @destination
end

#display_nameString

Output only. The display name of a Connectivity Test. Corresponds to the JSON property displayName

Returns:

  • (String)


234
235
236
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 234

def display_name
  @display_name
end

#labelsHash<String,String>

Resource labels to represent user-provided metadata. Corresponds to the JSON property labels

Returns:

  • (Hash<String,String>)


239
240
241
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 239

def labels
  @labels
end

#nameString

Required. Unique name of the resource using the form: projects/project_id/ locations/global/connectivityTests/test_id` Corresponds to the JSON propertyname`

Returns:

  • (String)


245
246
247
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 245

def name
  @name
end

#protocolString

IP Protocol of the test. When not provided, "TCP" is assumed. Corresponds to the JSON property protocol

Returns:

  • (String)


250
251
252
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 250

def protocol
  @protocol
end

#reachability_detailsGoogle::Apis::NetworkmanagementV1::ReachabilityDetails

The details of reachability state from the latest run. Corresponds to the JSON property reachabilityDetails



255
256
257
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 255

def reachability_details
  @reachability_details
end

Other projects that may be relevant for reachability analysis. This is applicable to scenarios where a test can cross project boundaries. Corresponds to the JSON property relatedProjects

Returns:

  • (Array<String>)


261
262
263
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 261

def related_projects
  @related_projects
end

#sourceGoogle::Apis::NetworkmanagementV1::Endpoint

Source or destination of the Connectivity Test. Corresponds to the JSON property source



266
267
268
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 266

def source
  @source
end

#update_timeString

Output only. The time the test's configuration was updated. Corresponds to the JSON property updateTime

Returns:

  • (String)


271
272
273
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 271

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



278
279
280
281
282
283
284
285
286
287
288
289
290
# File 'generated/google/apis/networkmanagement_v1/classes.rb', line 278

def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @description = args[:description] if args.key?(:description)
  @destination = args[:destination] if args.key?(:destination)
  @display_name = args[:display_name] if args.key?(:display_name)
  @labels = args[:labels] if args.key?(:labels)
  @name = args[:name] if args.key?(:name)
  @protocol = args[:protocol] if args.key?(:protocol)
  @reachability_details = args[:reachability_details] if args.key?(:reachability_details)
  @related_projects = args[:related_projects] if args.key?(:related_projects)
  @source = args[:source] if args.key?(:source)
  @update_time = args[:update_time] if args.key?(:update_time)
end