How to use disassociate_route_table method in localstack

Best Python code snippet using localstack_python

route_table_manager.py

Source:route_table_manager.py Github

copy

Full Screen

...26 logger and logger.info(resp)27 return utils.get_item(('AssociateRouteTableResponse', 'associationId'), resp)28 else:29 logger and logger.error(resp)30 def disassociate_route_table(self, route_table_association_id, logger=None):31 resp = self.jclient.vpc.disassociate_route_table(association_id=route_table_association_id)32 if utils.get_status_code(resp):33 logger and logger.info(resp)34 else:35 logger and logger.error(resp)36 def delete_route_table(self, route_table_id, logger=None):37 resp = self.jclient.vpc.delete_route_table(route_table_id=route_table_id)38 if utils.get_status_code(resp):39 logger and logger.info(resp)40 else:41 logger and logger.error(resp)42 def get_all_route_table_ids_and_assoc_ids(self, vpc_id, include_main_route=False):43 route_table_ids = []44 assoc_ids = []45 res = self.jclient.vpc.describe_route_tables()46 items = utils.get_item(('DescribeRouteTablesResponse', 'routeTableSet', 'item'), res)47 if isinstance(items, list):48 for item in items:49 if item['vpcId']==vpc_id:50 if utils.get_item(('associationSet', 'item', 'routeTableAssociationId'), item):51 if not include_main_route:52 if not utils.get_item(('associationSet', 'item', 'main'), item):53 assoc_ids.append(utils.get_item(('associationSet', 'item', 'routeTableAssociationId'), item))54 route_table_ids.append(item['routeTableId'])55 else:56 assoc_ids.append(utils.get_item(('associationSet', 'item', 'routeTableAssociationId'), item))57 route_table_ids.append(item['routeTableId'])58 else:59 route_table_ids.append(item['routeTableId'])60 elif isinstance(items, dict):61 if items['vpcId'] == vpc_id:62 if utils.get_item(('associationSet', 'item', 'routeTableAssociationId'), items):63 if not include_main_route:64 if not utils.get_item(('associationSet', 'item', 'main'), items):65 assoc_ids.append(utils.get_item(('associationSet', 'item', 'routeTableAssociationId'), items))66 route_table_ids.append(items['allocationId'])67 else:68 assoc_ids.append(utils.get_item(('associationSet', 'item', 'routeTableAssociationId'), items))69 else:70 route_table_ids.append(items['allocationId'])71 return (route_table_ids, assoc_ids)72 def delete_all_route_tables(self, vpc_id, include_main_route=False, logger=None):73 route_table_ids, assoc_ids = self.get_all_route_table_ids_and_assoc_ids(vpc_id, include_main_route=include_main_route)74 logger and logger.info("......Disassociating Route Tables: {num}".format(num=len(assoc_ids)))75 for assoc_id in assoc_ids:76 resp = self.jclient.vpc.disassociate_route_table(association_id=assoc_id)77 if utils.get_status_code(resp):78 logger and logger.info(resp)79 else:80 logger and logger.error(resp)81 logger and logger.info("......Deleting Route Tables: {num}".format(num=len(route_table_ids)))82 for route_table_id in route_table_ids:83 resp = self.jclient.vpc.delete_route_table(route_table_id=route_table_id)84 if utils.get_status_code(resp):85 logger and logger.info(resp)86 else:...

Full Screen

Full Screen

clear_ch2.py

Source:clear_ch2.py Github

copy

Full Screen

...7 DestinationCidrBlock='0.0.0.0/0',8 RouteTableId=route_table_id,9 )10 print(response)11def disassociate_route_table(ec2_client, route_table_association_id):12 # https://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.disassociate_route_table13 response = ec2_client.disassociate_route_table(AssociationId=route_table_association_id)14 print(response)15def delete_route_table(ec2_client, route_table_id):16 # https://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.delete_route_table17 response = ec2_client.delete_route_table(RouteTableId=route_table_id)18 print(response)19def detach_internet_gateway_from_vpc(ec2_client, internet_gateway_id, vpc_id):20 # https://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.detach_internet_gateway21 response = ec2_client.detach_internet_gateway(22 InternetGatewayId=internet_gateway_id,23 VpcId=vpc_id,24 )25 print(response)26def delete_internet_gateway(ec2_client, internet_gateway_id):27 # https://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.delete_internet_gateway28 response = ec2_client.delete_internet_gateway(InternetGatewayId=internet_gateway_id)29 print(response)30def delete_subnet(ec2_client, subnet_id):31 # https://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.delete_subnet32 response = ec2_client.delete_subnet(SubnetId=subnet_id)33 print(response)34def delete_vpc(ec2_client, vpc_id):35 # https://boto3.readthedocs.io/en/latest/reference/services/ec2.html#EC2.Client.delete_vpc36 response = ec2_client.delete_vpc(VpcId=vpc_id)37 print(response)38def delete_each_vpc_items(ec2_client, aws):39 # 逆順に解放していく40 # デフォルトゲートウェイからインターネットゲートウェイを削除41 delete_route_from_route_table(ec2_client, aws['public_route_table_id'])42 # ルートテーブルとサブネットの関連付けを削除43 disassociate_route_table(ec2_client, aws['public_route_table_association_id'])44 # ルートテーブルの削除45 delete_route_table(ec2_client, aws['public_route_table_id'])46 # インターネットゲートウェイの削除47 # インターネットゲートウェイをVPC領域から削除48 detach_internet_gateway_from_vpc(ec2_client, aws['internet_gateway_id'], aws['vpc_id'])49 # インターネットゲートウェイの削除50 delete_internet_gateway(ec2_client, aws['internet_gateway_id'])51 # サブネットの削除52 delete_subnet(ec2_client, aws['public_subnet_id'])53 # VPC領域の削除54 delete_vpc(ec2_client, aws_keys['vpc_id'])55if __name__ == '__main__':56 # Profileをロード57 session = boto3.Session(profile_name='my-profile')...

Full Screen

Full Screen

vpcdelete.py

Source:vpcdelete.py Github

copy

Full Screen

...11#)12#print(route_delete_response)13print('route deleted successfully')1415#disassociate_routetable_response01=client.disassociate_route_table(AssociationId='rtbassoc-0763a4665055585a5')16print("disassociated rtbassoc-0763a4665055585a5 successfully ")17#disassociate_routetable_response01=client.disassociate_route_table(AssociationId='rtbassoc-05e367c5412ab068b')18print("disassociated rtbassoc-05e367c5412ab068b successfully ")19202122#igw_delete_response=client.delete_internet_gateway(InternetGatewayId='igw-0c7aa6c14d8d5c7d5')23#print(igw_delete_response)24print('igw delete successfully')2526routetable_delete_response=client.delete_route_table(RouteTableId='rtb-0dfd3cde3092122e9')27print(routetable_delete_response)28print('routetable deleted successfully')2930subnet01_delete_response=client.delete_subnet(SubnetId='subnet-0254d44604a2cd4eb')31print(subnet01_delete_response) ...

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