Class: Google::Cloud::DataCatalog::V1::OrganizationConfig
- Inherits:
-
Object
- Object
- Google::Cloud::DataCatalog::V1::OrganizationConfig
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datacatalog/v1/datacatalog.rb
Overview
The configuration related to the migration from Data Catalog to Dataplex that has been applied to an organization and any projects under it. It is the response message for RetrieveConfig.
Defined Under Namespace
Classes: ConfigEntry
Instance Attribute Summary collapse
-
#config ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::DataCatalog::V1::MigrationConfig}
Map of organizations and project resource names and their configuration.
Instance Attribute Details
#config ⇒ ::Google::Protobuf::Map{::String => ::Google::Cloud::DataCatalog::V1::MigrationConfig}
Returns Map of organizations and project resource names and their configuration.
The format for the map keys is organizations/{organizationId}
or
projects/{projectId}
.
1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 |
# File 'proto_docs/google/cloud/datacatalog/v1/datacatalog.rb', line 1715 class OrganizationConfig include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # @!attribute [rw] key # @return [::String] # @!attribute [rw] value # @return [::Google::Cloud::DataCatalog::V1::MigrationConfig] class ConfigEntry include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |