Best Python code snippet using localstack_python
models.py
Source:models.py  
...126        firewall_config: FirewallConfig127        if self.firewall_configs.get(resource_id):128            firewall_config = self.firewall_configs[resource_id]129        else:130            id = get_firewall_config_id()131            firewall_config = FirewallConfig(132                Id=id,133                ResourceId=resource_id,134                OwnerId=owner_id,135                FirewallFailOpen="DISABLED",136            )137            self.firewall_configs[resource_id] = firewall_config...utils.py
Source:utils.py  
...12def get_resolver_query_log_config_id():13    return f"rslvr-rqlc-{get_random_hex(17)}"14def get_route53_resolver_query_log_config_association_id():15    return f"rslvr-qlcassoc-{get_random_hex(17)}"16def get_firewall_config_id():17    return f"rslvr-fc-{get_random_hex(17)}"18def validate_priority(priority):19    # value of priority can be null in case of update20    if priority:21        if priority not in range(100, 9900):22            raise ValidationException(23                f"[RSLVR-02017] The priority value you provided is reserved. Provide a number between '100' and '9900'. Trace Id: '{aws_stack.get_trace_id()}'"24            )25def validate_mutation_protection(mutation_protection):26    if mutation_protection:27        if mutation_protection not in ["ENABLED", "DISABLED"]:28            raise ValidationException(29                f"[RSLVR-02018] The mutation protection value you provided is reserved. Provide a value of 'ENABLED' or 'DISABLED'. Trace Id: '{aws_stack.get_trace_id()}'"30            )...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!!
