Skip to content

fix: change fgac database role tags #888

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Jan 23, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions samples/samples/snippets.py
Original file line number Diff line number Diff line change
Expand Up @@ -2314,7 +2314,7 @@ def list_instance_config_operations():

def add_and_drop_database_roles(instance_id, database_id):
"""Showcases how to manage a user defined database role."""
# [START spanner_add_and_drop_database_roles]
# [START spanner_add_and_drop_database_role]
# instance_id = "your-spanner-instance"
# database_id = "your-spanner-db-id"
spanner_client = spanner.Client()
Expand Down Expand Up @@ -2345,7 +2345,7 @@ def add_and_drop_database_roles(instance_id, database_id):
operation.result(OPERATION_TIMEOUT_SECONDS)
print("Revoked privileges and dropped role {}".format(role_child))

# [END spanner_add_and_drop_database_roles]
# [END spanner_add_and_drop_database_role]


def read_data_with_database_role(instance_id, database_id):
Expand Down