File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 24
24
from google .cloud .bigquery .model import ModelReference
25
25
from google .cloud .bigquery .routine import RoutineReference
26
26
from google .cloud .bigquery .table import TableReference
27
- from google .cloud .bigquery .table import EncryptionConfiguration
27
+ from google .cloud .bigquery .encryption_configuration import EncryptionConfiguration
28
28
29
29
30
30
def _get_table_reference (self , table_id ):
@@ -577,7 +577,7 @@ def labels(self, value):
577
577
578
578
@property
579
579
def default_encryption_configuration (self ):
580
- """google.cloud.bigquery.table .EncryptionConfiguration: Custom
580
+ """google.cloud.bigquery.encryption_configuration .EncryptionConfiguration: Custom
581
581
encryption configuration for all tables in the dataset.
582
582
583
583
Custom encryption configuration (e.g., Cloud KMS keys) or :data:`None`
Original file line number Diff line number Diff line change @@ -568,7 +568,9 @@ def test_to_api_repr_w_custom_field(self):
568
568
self .assertEqual (resource , exp_resource )
569
569
570
570
def test_default_encryption_configuration_setter (self ):
571
- from google .cloud .bigquery .table import EncryptionConfiguration
571
+ from google .cloud .bigquery .encryption_configuration import (
572
+ EncryptionConfiguration ,
573
+ )
572
574
573
575
dataset = self ._make_one (self .DS_REF )
574
576
encryption_configuration = EncryptionConfiguration (
You can’t perform that action at this time.
0 commit comments