Class: Google::Cloud::CloudDMS::V1::MigrationJob::PerformanceConfig

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/clouddms/v1/clouddms_resources.rb

Overview

Performance configuration definition.

Defined Under Namespace

Modules: DumpParallelLevel

Instance Attribute Summary collapse

Instance Attribute Details

#dump_parallel_level::Google::Cloud::CloudDMS::V1::MigrationJob::PerformanceConfig::DumpParallelLevel

Returns Initial dump parallelism level.



836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
# File 'proto_docs/google/cloud/clouddms/v1/clouddms_resources.rb', line 836

class PerformanceConfig
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # Describes the parallelism level during initial dump.
  module DumpParallelLevel
    # Unknown dump parallel level. Will be defaulted to OPTIMAL.
    DUMP_PARALLEL_LEVEL_UNSPECIFIED = 0

    # Minimal parallel level.
    MIN = 1

    # Optimal parallel level.
    OPTIMAL = 2

    # Maximum parallel level.
    MAX = 3
  end
end