Best Python code snippet using localstack_python
tools.py
Source:tools.py  
...330        self.save_file(result, cache_file)331        return result332    def get_vpc_endpoint_services_permission(self, key, client, service_id):333        """334        Custom cache method for ec2.describe_vpc_endpoint_service_permissions(ServiceId=service_id)335        """336        cache_file = Path(f'{self.prefix}_{key}')337        if cache_file.exists() and self.enabled:338            return pickle.load(cache_file.open(mode='rb'))339        result = client.describe_vpc_endpoint_service_permissions(340            ServiceId=service_id)341        self.save_file(result, cache_file)342        return result343def search_filter_in(asset, filter_str):344    """345    Return True if the filter_str is in the asset346    - by default -> asset.name and a lot of asset attributes347    - port:xxx -> asset.security_groups (ELB, EC2)348    - engine:xxx -> asset.engine (RDS)349    - version:xxx -> asset.version (EKS, RDS)350    """351    filter_str = filter_str.lower()352    if asset is None:353        return False...vpc_service_configuration.py
Source:vpc_service_configuration.py  
...34            service_ids35        )36        template = self.response_template(DELETE_VPC_ENDPOINT_SERVICE_CONFIGURATION)37        return template.render(missing=missing_configs)38    def describe_vpc_endpoint_service_permissions(self):39        service_id = self._get_param("ServiceId")40        principals = self.ec2_backend.describe_vpc_endpoint_service_permissions(41            service_id42        )43        template = self.response_template(DESCRIBE_VPC_ENDPOINT_SERVICE_PERMISSIONS)44        return template.render(principals=principals)45    def modify_vpc_endpoint_service_configuration(self):46        service_id = self._get_param("ServiceId")47        private_dns_name = self._get_param("PrivateDnsName")48        acceptance_required = self._get_param("AcceptanceRequired")49        add_network_lbs = self._get_multi_param("AddNetworkLoadBalancerArn")50        remove_network_lbs = self._get_multi_param("RemoveNetworkLoadBalancerArn")51        add_gateway_lbs = self._get_multi_param("AddGatewayLoadBalancerArn")52        remove_gateway_lbs = self._get_multi_param("RemoveGatewayLoadBalancerArn")53        self.ec2_backend.modify_vpc_endpoint_service_configuration(54            service_id,...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!!
