Class: Google::Apis::MigrationcenterV1alpha1::ListErrorFramesResponse

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

Overview

A response for listing error frames.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ListErrorFramesResponse

Returns a new instance of ListErrorFramesResponse.



4601
4602
4603
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4601

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

Instance Attribute Details

#error_framesArray<Google::Apis::MigrationcenterV1alpha1::ErrorFrame>

The list of error frames. Corresponds to the JSON property errorFrames



4589
4590
4591
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4589

def error_frames
  @error_frames
end

#next_page_tokenString

A token identifying a page of results the server should return. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


4594
4595
4596
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4594

def next_page_token
  @next_page_token
end

#unreachableArray<String>

Locations that could not be reached. Corresponds to the JSON property unreachable

Returns:

  • (Array<String>)


4599
4600
4601
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4599

def unreachable
  @unreachable
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4606
4607
4608
4609
4610
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4606

def update!(**args)
  @error_frames = args[:error_frames] if args.key?(:error_frames)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @unreachable = args[:unreachable] if args.key?(:unreachable)
end