1515# specific language governing permissions and limitations
1616# under the License.
1717
18- from typing import Any , Collection , MutableMapping , Optional , Union
18+ from typing import Any , Collection , MutableMapping , Optional , Tuple , Union
1919
2020from .utils import NamespacedClient
2121
@@ -32,8 +32,10 @@ class AutoscalingClient(NamespacedClient):
3232 request_timeout : Optional [Union [int , float ]] = ...,
3333 ignore : Optional [Union [int , Collection [int ]]] = ...,
3434 opaque_id : Optional [str ] = ...,
35+ http_auth : Optional [Union [str , Tuple [str , str ]]] = ...,
36+ api_key : Optional [Union [str , Tuple [str , str ]]] = ...,
3537 params : Optional [MutableMapping [str , Any ]] = ...,
36- headers : Optional [MutableMapping [str , str ]] = ...
38+ headers : Optional [MutableMapping [str , str ]] = ...,
3739 ) -> Any : ...
3840 async def get_autoscaling_policy (
3941 self ,
@@ -47,8 +49,10 @@ class AutoscalingClient(NamespacedClient):
4749 request_timeout : Optional [Union [int , float ]] = ...,
4850 ignore : Optional [Union [int , Collection [int ]]] = ...,
4951 opaque_id : Optional [str ] = ...,
52+ http_auth : Optional [Union [str , Tuple [str , str ]]] = ...,
53+ api_key : Optional [Union [str , Tuple [str , str ]]] = ...,
5054 params : Optional [MutableMapping [str , Any ]] = ...,
51- headers : Optional [MutableMapping [str , str ]] = ...
55+ headers : Optional [MutableMapping [str , str ]] = ...,
5256 ) -> Any : ...
5357 async def put_autoscaling_policy (
5458 self ,
@@ -63,8 +67,10 @@ class AutoscalingClient(NamespacedClient):
6367 request_timeout : Optional [Union [int , float ]] = ...,
6468 ignore : Optional [Union [int , Collection [int ]]] = ...,
6569 opaque_id : Optional [str ] = ...,
70+ http_auth : Optional [Union [str , Tuple [str , str ]]] = ...,
71+ api_key : Optional [Union [str , Tuple [str , str ]]] = ...,
6672 params : Optional [MutableMapping [str , Any ]] = ...,
67- headers : Optional [MutableMapping [str , str ]] = ...
73+ headers : Optional [MutableMapping [str , str ]] = ...,
6874 ) -> Any : ...
6975 async def get_autoscaling_capacity (
7076 self ,
@@ -77,6 +83,8 @@ class AutoscalingClient(NamespacedClient):
7783 request_timeout : Optional [Union [int , float ]] = ...,
7884 ignore : Optional [Union [int , Collection [int ]]] = ...,
7985 opaque_id : Optional [str ] = ...,
86+ http_auth : Optional [Union [str , Tuple [str , str ]]] = ...,
87+ api_key : Optional [Union [str , Tuple [str , str ]]] = ...,
8088 params : Optional [MutableMapping [str , Any ]] = ...,
81- headers : Optional [MutableMapping [str , str ]] = ...
89+ headers : Optional [MutableMapping [str , str ]] = ...,
8290 ) -> Any : ...
0 commit comments