Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
from google.iam.v1 import policy_pb2 # type: ignore
from google.longrunning import operations_pb2 # type: ignore
from google.protobuf import field_mask_pb2 # type: ignore
from google.protobuf import timestamp_pb2 # type: ignore

from google.cloud.datacatalog_v1.services.data_catalog import pagers
from google.cloud.datacatalog_v1.types import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@
from google.iam.v1 import policy_pb2 # type: ignore
from google.longrunning import operations_pb2 # type: ignore
from google.protobuf import field_mask_pb2 # type: ignore
from google.protobuf import timestamp_pb2 # type: ignore

from google.cloud.datacatalog_v1.services.data_catalog import pagers
from google.cloud.datacatalog_v1.types import (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
from typing import MutableMapping, MutableSequence

from google.protobuf import field_mask_pb2 # type: ignore
from google.protobuf import timestamp_pb2 # type: ignore
from google.rpc import status_pb2 # type: ignore
import proto # type: ignore

Expand Down Expand Up @@ -2962,6 +2963,10 @@ class MigrationConfig(proto.Message):
Templates to Dataplex.
catalog_ui_experience (google.cloud.datacatalog_v1.types.CatalogUIExperience):
Opt-in status for the UI switch to Dataplex.
template_migration_enabled_time (google.protobuf.timestamp_pb2.Timestamp):
The time when the Tag Template migration was
enabled. If the Tag Template migration is not
enabled, this field is not set.
"""

tag_template_migration: "TagTemplateMigration" = proto.Field(
Expand All @@ -2974,6 +2979,11 @@ class MigrationConfig(proto.Message):
number=2,
enum="CatalogUIExperience",
)
template_migration_enabled_time: timestamp_pb2.Timestamp = proto.Field(
proto.MESSAGE,
number=3,
message=timestamp_pb2.Timestamp,
)


__all__ = tuple(sorted(__protobuf__.manifest))