How to use list_health_checks method in localstack

Best Python code snippet using localstack_python

route53.py

Source:route53.py Github

copy

Full Screen

...80 :return:81 """82 resource_type = 'healthcheck'83 health_check_id = ''84 health_check_list = self.list_health_checks()85 #logging.debug((health_check_list))86 # For each of the health check, pull the tags for each ID87 for item in health_check_list['HealthChecks']:88 logging.debug(item['Id'])89 try:90 resource_tags = self.list_tags_for_resource(resource_type, item['Id'])91 logging.debug("resource_tags")92 logging.debug(resource_tags)93 # Loop through the tag list to see if we can find the key/value we want94 for a_tag in resource_tags['ResourceTagSet']['Tags']:95 if key == a_tag['Key'] and value == a_tag['Value']:96 health_check_id = item['Id']97 except botocore.exceptions.ClientError as e:98 print "Unexpected error: %s" % e99 random.uniform(1, 30)100 except:101 logging.error("An error occured while trying to retrieve the tags")102 return health_check_id103 def get_health_check_tag_value(self, ec2_instance_id, key):104 """105 Get a health check's tag with the given key106 :param health_check_id:107 :param key:108 :return:109 """110 resource_type = 'healthcheck'111 tag_value = ''112 health_check_list = self.list_health_checks()113 # For each of the health check, pull the tags for each ID114 for item in health_check_list['HealthChecks']:115 logging.debug(item['Id'])116 try:117 resource_tags = self.list_tags_for_resource(resource_type, item['Id'])118 if resource_tags is not None:119 logging.debug("resource_tags")120 logging.debug(resource_tags)121 # Loop through the tag list to see if we can find the key/value we want122 for a_tag in resource_tags['ResourceTagSet']['Tags']:123 if a_tag['Value'] == ec2_instance_id:124 # This is the health check with the matching health check ID, look for the instance-public-ip125 for a_tag2 in resource_tags['ResourceTagSet']['Tags']:126 logging.debug(a_tag2['Key'])127 logging.debug(a_tag2['Value'])128 if a_tag2['Key'] == key:129 tag_value = a_tag2['Value']130 except botocore.exceptions.ClientError as e:131 print "Unexpected error: %s" % e132 random.uniform(1, 30)133 except:134 logging.error("An error occured while trying to retrieve the tags")135 return tag_value136 def list_health_checks(self):137 """138 Get a list of health checks139 :return:140 """141 # This will only grab the first hundred. Have to implement paging for more than 100.142 response = self.client.list_health_checks()143 # Marker='string',144 # MaxItems='string'145 # )146 return response147 def list_tags_for_resource(self, resource_type, resource_id):148 """149 Gets the tags for a given resource_type and resource_id150 resource_type = 'healthcheck'|'hostedzone'151 Doc: http://boto3.readthedocs.org/en/latest/reference/services/route53.html#Route53.Client.list_tags_for_resource152 :param resource_id:153 :return:154 """155 response = None156 try:...

Full Screen

Full Screen

route53_utils.py

Source:route53_utils.py Github

copy

Full Screen

...16 )17 return zone_records18def get_route53_health_checks(marker=None):19 if marker:20 response = route53.list_health_checks(Marker=marker)21 else:22 response = route53.list_health_checks()23 health_checks = response["HealthChecks"]24 if response["IsTruncated"]:25 health_checks += get_route53_health_checks(response["NextMarker"])...

Full Screen

Full Screen

Automation Testing Tutorials

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.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run localstack automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful