Skip to content

Commit c557d4a

Browse files
authored
chore: update owlbot.py to properly copy folders from googleapis-gen (googleapis#320)
1 parent b2cb49a commit c557d4a

31 files changed

+2721
-2332
lines changed

.github/.OwlBot.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ deep-remove-regex:
2020

2121
deep-copy-regex:
2222
- source: /google/bigtable/admin/(v.*)/.*-py/(.*)
23-
dest: /owl-bot-staging/admin/$1/$2
23+
dest: /owl-bot-staging/bigtable_admin/$1/$2
2424
- source: /google/bigtable/(v.*)/.*-py/(.*)
25-
dest: /owl-bot-staging/$1/$2
25+
dest: /owl-bot-staging/bigtable/$1/$2
2626

2727
begin-after-commit-hash: a21f1091413a260393548c1b2ac44b7347923f08
2828

google/cloud/bigtable_admin_v2/__init__.py

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
# -*- coding: utf-8 -*-
2-
32
# Copyright 2020 Google LLC
43
#
54
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -16,7 +15,10 @@
1615
#
1716

1817
from .services.bigtable_instance_admin import BigtableInstanceAdminClient
18+
from .services.bigtable_instance_admin import BigtableInstanceAdminAsyncClient
1919
from .services.bigtable_table_admin import BigtableTableAdminClient
20+
from .services.bigtable_table_admin import BigtableTableAdminAsyncClient
21+
2022
from .types.bigtable_instance_admin import CreateAppProfileRequest
2123
from .types.bigtable_instance_admin import CreateClusterMetadata
2224
from .types.bigtable_instance_admin import CreateClusterRequest
@@ -79,15 +81,17 @@
7981
from .types.table import EncryptionInfo
8082
from .types.table import GcRule
8183
from .types.table import RestoreInfo
82-
from .types.table import RestoreSourceType
8384
from .types.table import Snapshot
8485
from .types.table import Table
85-
86+
from .types.table import RestoreSourceType
8687

8788
__all__ = (
89+
"BigtableInstanceAdminAsyncClient",
90+
"BigtableTableAdminAsyncClient",
8891
"AppProfile",
8992
"Backup",
9093
"BackupInfo",
94+
"BigtableInstanceAdminClient",
9195
"BigtableTableAdminClient",
9296
"CheckConsistencyRequest",
9397
"CheckConsistencyResponse",
@@ -151,5 +155,4 @@
151155
"UpdateBackupRequest",
152156
"UpdateClusterMetadata",
153157
"UpdateInstanceMetadata",
154-
"BigtableInstanceAdminClient",
155158
)

0 commit comments

Comments
 (0)