-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(datacatalog): add sample to create a fileset entry (#9590)
Fixes #9589
- Loading branch information
1 parent
ed37540
commit f72ab40
Showing
3 changed files
with
142 additions
and
0 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
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,30 @@ | ||
# 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. | ||
|
||
|
||
import re | ||
|
||
from ..v1beta1 import create_fileset_entry | ||
|
||
|
||
def test_create_fileset_entry(capsys, client, random_entry_name): | ||
|
||
entry_name_pattern = "(?P<entry_group_name>.+?)/entries/(?P<entry_id>.+?$)" | ||
entry_name_matches = re.match(entry_name_pattern, random_entry_name) | ||
entry_group_name = entry_name_matches.group("entry_group_name") | ||
entry_id = entry_name_matches.group("entry_id") | ||
|
||
create_fileset_entry.create_fileset_entry(client, entry_group_name, entry_id) | ||
out, err = capsys.readouterr() | ||
assert "Created entry {}".format(random_entry_name) in out |
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,86 @@ | ||
# 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. | ||
|
||
|
||
def create_fileset_entry(client, entry_group_name, entry_id): | ||
|
||
# [START datacatalog_create_fileset_tag] | ||
from google.cloud import datacatalog_v1beta1 | ||
|
||
# TODO(developer): Construct a Data Catalog client object. | ||
# client = datacatalog_v1beta1.DataCatalogClient() | ||
|
||
# TODO(developer): Set entry_group_name to the Name of the entry group | ||
# the entry will belong. | ||
# entry_group_name = "your_entry_group_name" | ||
|
||
# TODO(developer): Set entry_id to the ID of the entry to create. | ||
# entry_id = "your_entry_id" | ||
|
||
# Construct a full Entry object to send to the API. | ||
entry = datacatalog_v1beta1.types.Entry() | ||
entry.display_name = "My Fileset" | ||
entry.description = "This Fileset consists of ..." | ||
entry.gcs_fileset_spec.file_patterns.append("gs://my_bucket/*") | ||
entry.type = datacatalog_v1beta1.enums.EntryType.FILESET | ||
|
||
# Create the Schema, for example when you have a csv file. | ||
columns = [] | ||
columns.append( | ||
datacatalog_v1beta1.types.ColumnSchema( | ||
column="first_name", | ||
description="First name", | ||
mode="REQUIRED", | ||
type="STRING", | ||
) | ||
) | ||
|
||
columns.append( | ||
datacatalog_v1beta1.types.ColumnSchema( | ||
column="last_name", description="Last name", mode="REQUIRED", type="STRING" | ||
) | ||
) | ||
|
||
# Create sub columns for the addresses parent column | ||
subcolumns = [] | ||
subcolumns.append( | ||
datacatalog_v1beta1.types.ColumnSchema( | ||
column="city", description="City", mode="NULLABLE", type="STRING" | ||
) | ||
) | ||
|
||
subcolumns.append( | ||
datacatalog_v1beta1.types.ColumnSchema( | ||
column="state", description="State", mode="NULLABLE", type="STRING" | ||
) | ||
) | ||
|
||
columns.append( | ||
datacatalog_v1beta1.types.ColumnSchema( | ||
column="addresses", | ||
description="Addresses", | ||
mode="REPEATED", | ||
subcolumns=subcolumns, | ||
type="RECORD", | ||
) | ||
) | ||
|
||
entry.schema.columns.extend(columns) | ||
|
||
# Send the entry to the API for creation. | ||
# Raises google.api_core.exceptions.AlreadyExists if the Entry already | ||
# exists within the project. | ||
entry = client.create_entry(entry_group_name, entry_id, entry) | ||
print("Created entry {}".format(entry.name)) | ||
# [END datacatalog_create_fileset_tag] |