Class: Google::Apis::VmmigrationV1::SchedulePolicy

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

Overview

A policy for scheduling replications.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SchedulePolicy

Returns a new instance of SchedulePolicy.



2448
2449
2450
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2448

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

Instance Attribute Details

#idle_durationString

The idle duration between replication stages. Corresponds to the JSON property idleDuration

Returns:

  • (String)


2438
2439
2440
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2438

def idle_duration
  @idle_duration
end

#skip_os_adaptationBoolean Also known as: skip_os_adaptation?

A flag to indicate whether to skip OS adaptation during the replication sync. OS adaptation is a process where the VM's operating system undergoes changes and adaptations to fully function on Compute Engine. Corresponds to the JSON property skipOsAdaptation

Returns:

  • (Boolean)


2445
2446
2447
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2445

def skip_os_adaptation
  @skip_os_adaptation
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2453
2454
2455
2456
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 2453

def update!(**args)
  @idle_duration = args[:idle_duration] if args.key?(:idle_duration)
  @skip_os_adaptation = args[:skip_os_adaptation] if args.key?(:skip_os_adaptation)
end