Class: Google::Apis::VmmigrationV1alpha1::ReplicatingStep

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

Overview

ReplicatingStep contains specific step details.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ReplicatingStep

Returns a new instance of ReplicatingStep.



3800
3801
3802
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3800

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

Instance Attribute Details

#last_thirty_minutes_average_bytes_per_secondFixnum

The source disks replication rate for the last 30 minutes in bytes per second. Corresponds to the JSON property lastThirtyMinutesAverageBytesPerSecond

Returns:

  • (Fixnum)


3783
3784
3785
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3783

def last_thirty_minutes_average_bytes_per_second
  @last_thirty_minutes_average_bytes_per_second
end

#last_two_minutes_average_bytes_per_secondFixnum

The source disks replication rate for the last 2 minutes in bytes per second. Corresponds to the JSON property lastTwoMinutesAverageBytesPerSecond

Returns:

  • (Fixnum)


3788
3789
3790
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3788

def last_two_minutes_average_bytes_per_second
  @last_two_minutes_average_bytes_per_second
end

#replicated_bytesFixnum

Replicated bytes in the step. Corresponds to the JSON property replicatedBytes

Returns:

  • (Fixnum)


3793
3794
3795
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3793

def replicated_bytes
  @replicated_bytes
end

#total_bytesFixnum

Total bytes to be handled in the step. Corresponds to the JSON property totalBytes

Returns:

  • (Fixnum)


3798
3799
3800
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3798

def total_bytes
  @total_bytes
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3805
3806
3807
3808
3809
3810
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 3805

def update!(**args)
  @last_thirty_minutes_average_bytes_per_second = args[:last_thirty_minutes_average_bytes_per_second] if args.key?(:last_thirty_minutes_average_bytes_per_second)
  @last_two_minutes_average_bytes_per_second = args[:last_two_minutes_average_bytes_per_second] if args.key?(:last_two_minutes_average_bytes_per_second)
  @replicated_bytes = args[:replicated_bytes] if args.key?(:replicated_bytes)
  @total_bytes = args[:total_bytes] if args.key?(:total_bytes)
end