Best Python code snippet using localstack_python
client.pyi
Source:client.pyi  
...1185        Updates a documentation part.1186        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/apigateway.html#APIGateway.Client.update_documentation_part)1187        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_apigateway/client.html#update_documentation_part)1188        """1189    def update_documentation_version(1190        self,1191        *,1192        restApiId: str,1193        documentationVersion: str,1194        patchOperations: List["PatchOperationTypeDef"] = None1195    ) -> DocumentationVersionResponseMetadataTypeDef:1196        """1197        Updates a documentation version.1198        [Show boto3 documentation](https://boto3.amazonaws.com/v1/documentation/api/1.24.58/reference/services/apigateway.html#APIGateway.Client.update_documentation_version)1199        [Show boto3-stubs documentation](https://vemel.github.io/boto3_stubs_docs/mypy_boto3_apigateway/client.html#update_documentation_version)1200        """1201    def update_domain_name(1202        self, *, domainName: str, patchOperations: List["PatchOperationTypeDef"] = None1203    ) -> DomainNameResponseMetadataTypeDef:...client.py
Source:client.py  
...224    def update_deployment(self, restApiId: str, deploymentId: str, patchOperations: List = None) -> Dict:225        pass226    def update_documentation_part(self, restApiId: str, documentationPartId: str, patchOperations: List = None) -> Dict:227        pass228    def update_documentation_version(self, restApiId: str, documentationVersion: str, patchOperations: List = None) -> Dict:229        pass230    def update_domain_name(self, domainName: str, patchOperations: List = None) -> Dict:231        pass232    def update_gateway_response(self, restApiId: str, responseType: str, patchOperations: List = None) -> Dict:233        pass234    def update_integration(self, restApiId: str, resourceId: str, httpMethod: str, patchOperations: List = None) -> Dict:235        pass236    def update_integration_response(self, restApiId: str, resourceId: str, httpMethod: str, statusCode: str, patchOperations: List = None) -> Dict:237        pass238    def update_method(self, restApiId: str, resourceId: str, httpMethod: str, patchOperations: List = None) -> Dict:239        pass240    def update_method_response(self, restApiId: str, resourceId: str, httpMethod: str, statusCode: str, patchOperations: List = None) -> Dict:241        pass242    def update_model(self, restApiId: str, modelName: str, patchOperations: List = 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!!
