@@ -87,7 +87,6 @@ def __init__(
8787 refresh_handler = None ,
8888 enable_reauth_refresh = False ,
8989 granted_scopes = None ,
90- trust_boundary = None ,
9190 universe_domain = credentials .DEFAULT_UNIVERSE_DOMAIN ,
9291 account = None ,
9392 ):
@@ -131,7 +130,6 @@ def __init__(
131130 granted_scopes (Optional[Sequence[str]]): The scopes that were consented/granted by the user.
132131 This could be different from the requested scopes and it could be empty if granted
133132 and requested scopes were same.
134- trust_boundary (str): String representation of trust boundary meta.
135133 universe_domain (Optional[str]): The universe domain. The default
136134 universe domain is googleapis.com.
137135 account (Optional[str]): The account associated with the credential.
@@ -154,7 +152,6 @@ def __init__(
154152 self ._rapt_token = rapt_token
155153 self .refresh_handler = refresh_handler
156154 self ._enable_reauth_refresh = enable_reauth_refresh
157- self ._trust_boundary = trust_boundary
158155 self ._universe_domain = universe_domain or credentials .DEFAULT_UNIVERSE_DOMAIN
159156 self ._account = account or ""
160157 self ._cred_file_path = None
@@ -192,7 +189,6 @@ def __setstate__(self, d):
192189 self ._quota_project_id = d .get ("_quota_project_id" )
193190 self ._rapt_token = d .get ("_rapt_token" )
194191 self ._enable_reauth_refresh = d .get ("_enable_reauth_refresh" )
195- self ._trust_boundary = d .get ("_trust_boundary" )
196192 self ._universe_domain = (
197193 d .get ("_universe_domain" ) or credentials .DEFAULT_UNIVERSE_DOMAIN
198194 )
@@ -300,7 +296,6 @@ def _make_copy(self):
300296 quota_project_id = self .quota_project_id ,
301297 rapt_token = self .rapt_token ,
302298 enable_reauth_refresh = self ._enable_reauth_refresh ,
303- trust_boundary = self ._trust_boundary ,
304299 universe_domain = self ._universe_domain ,
305300 account = self ._account ,
306301 )
@@ -494,7 +489,6 @@ def from_authorized_user_info(cls, info, scopes=None):
494489 quota_project_id = info .get ("quota_project_id" ), # may not exist
495490 expiry = expiry ,
496491 rapt_token = info .get ("rapt_token" ), # may not exist
497- trust_boundary = info .get ("trust_boundary" ), # may not exist
498492 universe_domain = info .get ("universe_domain" ), # may not exist
499493 account = info .get ("account" , "" ), # may not exist
500494 )
0 commit comments