-
Notifications
You must be signed in to change notification settings - Fork 6.5k
/
Copy pathget_entry_group.py
46 lines (39 loc) · 1.89 KB
/
get_entry_group.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Copyright 2024 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# [START dataplex_get_entry_group]
from google.cloud import dataplex_v1
def get_entry_group(
project_id: str, location: str, entry_group_id: str
) -> dataplex_v1.EntryGroup:
"""Method to retrieve Entry Group located in project_id, location and with entry_group_id"""
# Initialize client that will be used to send requests across threads. This
# client only needs to be created once, and can be reused for multiple requests.
# After completing all of your requests, call the "__exit__()" method to safely
# clean up any remaining background resources. Alternatively, use the client as
# a context manager.
with dataplex_v1.CatalogServiceClient() as client:
# The resource name of the Entry Type
name = (
f"projects/{project_id}/locations/{location}/entryGroups/{entry_group_id}"
)
return client.get_entry_group(name=name)
if __name__ == "__main__":
# TODO(developer): Replace these variables before running the sample.
project_id = "MY_PROJECT_ID"
# Available locations: https://cloud.google.com/dataplex/docs/locations
location = "MY_LOCATION"
entry_group_id = "MY_ENTRY_GROUP_ID"
entry_group = get_entry_group(project_id, location, entry_group_id)
print(f"Entry group retrieved successfully: {entry_group.name}")
# [END dataplex_get_entry_group]