Best Python code snippet using localstack_python
client.pyi
Source:client.pyi  
...927        Import API keys from an external source, such as a CSV-formatted file.928        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/apigateway.html#APIGateway.Client.import_api_keys)929        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_apigateway/client.html#import_api_keys)930        """931    def import_documentation_parts(932        self,933        *,934        restApiId: str,935        body: Union[bytes, IO[bytes], StreamingBody],936        mode: PutModeType = None,937        failOnWarnings: bool = None938    ) -> DocumentationPartIdsTypeDef:939        """940        Imports documentation parts See also: `AWS API Documentation <https://docs.aws.a941        mazon.com/goto/WebAPI/apigateway-2015-07-09/ImportDocumentationParts>`_942        **Request Syntax** response = client.import_documentation_parts(943        restApiId='string', mode='merge'|'overwrite', fail...944        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/apigateway.html#APIGateway.Client.import_documentation_parts)945        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_apigateway/client.html#import_documentation_parts)946        """947    def import_rest_api(948        self,949        *,950        body: Union[bytes, IO[bytes], StreamingBody],951        failOnWarnings: bool = None,952        parameters: Dict[str, str] = None953    ) -> RestApiResponseMetadataTypeDef:954        """955        A feature of the API Gateway control service for creating a new API from an956        external API definition file....client.py
Source:client.py  
...186    def get_waiter(self, waiter_name: str = None) -> Waiter:187        pass188    def import_api_keys(self, body: Union[bytes, IO], format: str, failOnWarnings: bool = None) -> Dict:189        pass190    def import_documentation_parts(self, restApiId: str, body: Union[bytes, IO], mode: str = None, failOnWarnings: bool = None) -> Dict:191        pass192    def import_rest_api(self, body: Union[bytes, IO], failOnWarnings: bool = None, parameters: Dict = None) -> Dict:193        pass194    def put_gateway_response(self, restApiId: str, responseType: str, statusCode: str = None, responseParameters: Dict = None, responseTemplates: Dict = None) -> Dict:195        pass196    def put_integration(self, restApiId: str, resourceId: str, httpMethod: str, type: str, integrationHttpMethod: str = None, uri: str = None, connectionType: str = None, connectionId: str = None, credentials: str = None, requestParameters: Dict = None, requestTemplates: Dict = None, passthroughBehavior: str = None, cacheNamespace: str = None, cacheKeyParameters: List = None, contentHandling: str = None, timeoutInMillis: int = None) -> Dict:197        pass198    def put_integration_response(self, restApiId: str, resourceId: str, httpMethod: str, statusCode: str, selectionPattern: str = None, responseParameters: Dict = None, responseTemplates: Dict = None, contentHandling: str = None) -> Dict:199        pass200    def put_method(self, restApiId: str, resourceId: str, httpMethod: str, authorizationType: str, authorizerId: str = None, apiKeyRequired: bool = None, operationName: str = None, requestParameters: Dict = None, requestModels: Dict = None, requestValidatorId: str = None, authorizationScopes: List = None) -> Dict:201        pass202    def put_method_response(self, restApiId: str, resourceId: str, httpMethod: str, statusCode: str, responseParameters: Dict = None, responseModels: Dict = None) -> Dict:203        pass204    def put_rest_api(self, restApiId: str, body: Union[bytes, IO], mode: str = None, failOnWarnings: bool = None, parameters: Dict = None) -> Dict:...Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!
