Class: Google::Cloud::AlloyDB::V1::MigrationSource
- Inherits:
-
Object
- Object
- Google::Cloud::AlloyDB::V1::MigrationSource
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/alloydb/v1/resources.rb
Overview
Subset of the source instance configuration that is available when reading the cluster resource.
Defined Under Namespace
Modules: MigrationSourceType
Instance Attribute Summary collapse
-
#host_port ⇒ ::String
readonly
Output only.
-
#reference_id ⇒ ::String
readonly
Output only.
-
#source_type ⇒ ::Google::Cloud::AlloyDB::V1::MigrationSource::MigrationSourceType
readonly
Output only.
Instance Attribute Details
#host_port ⇒ ::String (readonly)
Returns Output only. The host and port of the on-premises instance in host:port format.
50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'proto_docs/google/cloud/alloydb/v1/resources.rb', line 50 class MigrationSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Denote the type of migration source that created this cluster. module MigrationSourceType # Migration source is unknown. MIGRATION_SOURCE_TYPE_UNSPECIFIED = 0 # DMS source means the cluster was created via DMS migration job. DMS = 1 end end |
#reference_id ⇒ ::String (readonly)
Returns Output only. Place holder for the external source identifier(e.g DMS job name) that created the cluster.
50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'proto_docs/google/cloud/alloydb/v1/resources.rb', line 50 class MigrationSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Denote the type of migration source that created this cluster. module MigrationSourceType # Migration source is unknown. MIGRATION_SOURCE_TYPE_UNSPECIFIED = 0 # DMS source means the cluster was created via DMS migration job. DMS = 1 end end |
#source_type ⇒ ::Google::Cloud::AlloyDB::V1::MigrationSource::MigrationSourceType (readonly)
Returns Output only. Type of migration source.
50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'proto_docs/google/cloud/alloydb/v1/resources.rb', line 50 class MigrationSource include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Denote the type of migration source that created this cluster. module MigrationSourceType # Migration source is unknown. MIGRATION_SOURCE_TYPE_UNSPECIFIED = 0 # DMS source means the cluster was created via DMS migration job. DMS = 1 end end |