Skip to content

Commit e2b8039

Browse files
feat: [google-cloud-datacatalog] add field template_migration_enabled_time to .google.cloud.datacatalog.v1.MigrationConfig (googleapis#13823)
- [ ] Regenerate this pull request now. PiperOrigin-RevId: 750309107 Source-Link: googleapis/googleapis@3da50fd Source-Link: https://github.com/googleapis/googleapis-gen/commit/5ffd17e5be23596888a14618ff50cb6b2ecd7059 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWNsb3VkLWRhdGFjYXRhbG9nLy5Pd2xCb3QueWFtbCIsImgiOiI1ZmZkMTdlNWJlMjM1OTY4ODhhMTQ2MThmZjUwY2I2YjJlY2Q3MDU5In0= --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 77e38cd commit e2b8039

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

packages/google-cloud-datacatalog/google/cloud/datacatalog_v1/services/data_catalog/async_client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
from google.iam.v1 import policy_pb2 # type: ignore
5151
from google.longrunning import operations_pb2 # type: ignore
5252
from google.protobuf import field_mask_pb2 # type: ignore
53+
from google.protobuf import timestamp_pb2 # type: ignore
5354

5455
from google.cloud.datacatalog_v1.services.data_catalog import pagers
5556
from google.cloud.datacatalog_v1.types import (

packages/google-cloud-datacatalog/google/cloud/datacatalog_v1/services/data_catalog/client.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
from google.iam.v1 import policy_pb2 # type: ignore
6767
from google.longrunning import operations_pb2 # type: ignore
6868
from google.protobuf import field_mask_pb2 # type: ignore
69+
from google.protobuf import timestamp_pb2 # type: ignore
6970

7071
from google.cloud.datacatalog_v1.services.data_catalog import pagers
7172
from google.cloud.datacatalog_v1.types import (

packages/google-cloud-datacatalog/google/cloud/datacatalog_v1/types/datacatalog.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
from typing import MutableMapping, MutableSequence
1919

2020
from google.protobuf import field_mask_pb2 # type: ignore
21+
from google.protobuf import timestamp_pb2 # type: ignore
2122
from google.rpc import status_pb2 # type: ignore
2223
import proto # type: ignore
2324

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

29672972
tag_template_migration: "TagTemplateMigration" = proto.Field(
@@ -2974,6 +2979,11 @@ class MigrationConfig(proto.Message):
29742979
number=2,
29752980
enum="CatalogUIExperience",
29762981
)
2982+
template_migration_enabled_time: timestamp_pb2.Timestamp = proto.Field(
2983+
proto.MESSAGE,
2984+
number=3,
2985+
message=timestamp_pb2.Timestamp,
2986+
)
29772987

29782988

29792989
__all__ = tuple(sorted(__protobuf__.manifest))

0 commit comments

Comments
 (0)