forked from googleapis/google-cloud-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add get_entry sample (via synth). (googleapis#8725)
- Loading branch information
1 parent
951b9c6
commit f5ad704
Showing
2 changed files
with
82 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
# -*- coding: utf-8 -*- | ||
# | ||
# Copyright 2019 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 | ||
# | ||
# https://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. | ||
|
||
# DO NOT EDIT! This is a generated sample ("Request", "datacatalog_get_entry") | ||
|
||
# To install the latest published package dependency, execute the following: | ||
# pip install google-cloud-datacatalog | ||
|
||
# sample-metadata | ||
# title: | ||
# description: Get Entry | ||
# usage: python3 samples/v1beta1/datacatalog_get_entry.py [--project_id "[Google Cloud Project ID]"] [--location_id "[Google Cloud Location ID]"] [--entry_group_id "[Entry Group ID]"] [--entry_id "[Entry ID]"] | ||
import sys | ||
|
||
# [START datacatalog_get_entry] | ||
|
||
from google.cloud import datacatalog_v1beta1 | ||
from google.cloud.datacatalog_v1beta1 import enums | ||
|
||
|
||
def sample_get_entry(project_id, location_id, entry_group_id, entry_id): | ||
""" | ||
Get Entry | ||
Args: | ||
project_id Your Google Cloud project ID | ||
location_id Google Cloud region, e.g. us-central1 | ||
entry_group_id ID of the Entry Group, e.g. @bigquery, @pubsub, my_entry_group | ||
entry_id ID of the Entry | ||
""" | ||
|
||
client = datacatalog_v1beta1.DataCatalogClient() | ||
|
||
# project_id = '[Google Cloud Project ID]' | ||
# location_id = '[Google Cloud Location ID]' | ||
# entry_group_id = '[Entry Group ID]' | ||
# entry_id = '[Entry ID]' | ||
name = client.entry_path(project_id, location_id, entry_group_id, entry_id) | ||
|
||
response = client.get_entry(name) | ||
entry = response | ||
print(u"Entry name: {}".format(entry.name)) | ||
print(u"Entry type: {}".format(enums.EntryType(entry.type).name)) | ||
print(u"Linked resource: {}".format(entry.linked_resource)) | ||
|
||
|
||
# [END datacatalog_get_entry] | ||
|
||
|
||
def main(): | ||
import argparse | ||
|
||
parser = argparse.ArgumentParser() | ||
parser.add_argument("--project_id", type=str, default="[Google Cloud Project ID]") | ||
parser.add_argument("--location_id", type=str, default="[Google Cloud Location ID]") | ||
parser.add_argument("--entry_group_id", type=str, default="[Entry Group ID]") | ||
parser.add_argument("--entry_id", type=str, default="[Entry ID]") | ||
args = parser.parse_args() | ||
|
||
sample_get_entry( | ||
args.project_id, args.location_id, args.entry_group_id, args.entry_id | ||
) | ||
|
||
|
||
if __name__ == "__main__": | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters