File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -108,8 +108,12 @@ def _bound_params(
108
108
return self .__async_tool ._bound_params
109
109
110
110
@property
111
- def _required_auth_params (self ) -> Mapping [str , list [str ]]:
112
- return self .__async_tool ._required_auth_params
111
+ def _required_authn_params (self ) -> Mapping [str , list [str ]]:
112
+ return self .__async_tool ._required_authn_params
113
+
114
+ @property
115
+ def _required_authz_tokens (self ) -> Sequence [str ]:
116
+ return self .__async_tool ._required_authz_tokens
113
117
114
118
@property
115
119
def _auth_service_token_getters (
Original file line number Diff line number Diff line change @@ -155,9 +155,13 @@ def _bound_params(
155
155
return MappingProxyType (self .__bound_parameters )
156
156
157
157
@property
158
- def _required_auth_params (self ) -> Mapping [str , list [str ]]:
158
+ def _required_authn_params (self ) -> Mapping [str , list [str ]]:
159
159
return MappingProxyType (self .__required_authn_params )
160
160
161
+ @property
162
+ def _required_authz_tokens (self ) -> Sequence [str ]:
163
+ return tuple (self .__required_authz_tokens )
164
+
161
165
@property
162
166
def _auth_service_token_getters (
163
167
self ,
You can’t perform that action at this time.
0 commit comments