コード例 #1
0
    def __init__(self, resource_config, logger):
        """

        :param resource_config:
        :param logger:
        """
        super().__init__(resource_config, logger)
        self._request_parser = DriverRequestParser()
コード例 #2
0
    def __init__(self):
        self.image_waiter = AMIWaiter()
        self.command_result_parser = CommandResultsParser()
        self.cancellation_service = CommandCancellationService()
        self.client_err_wrapper = ClientErrorWrapper()
        self.tag_service = TagService(
            client_err_wrapper=self.client_err_wrapper)
        self.ec2_instance_waiter = InstanceWaiter(
            cancellation_service=self.cancellation_service)
        self.instance_service = InstanceService(self.tag_service,
                                                self.ec2_instance_waiter)
        self.ec2_storage_service = EC2StorageService()
        self.model_parser = AWSModelsParser()
        self.cloudshell_session_helper = CloudshellDriverHelper()
        self.aws_session_manager = AWSSessionProvider()
        self.password_waiter = PasswordWaiter(self.cancellation_service)
        self.vm_custom_params_extractor = VmCustomParamsExtractor()
        self.ami_credentials_service = InstanceCredentialsService(
            self.password_waiter)
        self.security_group_service = SecurityGroupService(self.tag_service)
        self.subnet_waiter = SubnetWaiter()
        self.subnet_service = SubnetService(self.tag_service,
                                            self.subnet_waiter)
        self.s3_service = S3BucketService()
        self.vpc_peering_waiter = VpcPeeringConnectionWaiter()
        self.key_pair_service = KeyPairService(self.s3_service)
        self.vpc_waiter = VPCWaiter()
        self.route_tables_service = RouteTablesService(self.tag_service)
        self.network_interface_service = NetworkInterfaceService(
            subnet_service=self.subnet_service,
            security_group_service=self.security_group_service,
        )
        self.elastic_ip_service = ElasticIpService()
        self.vm_details_provider = VmDetailsProvider()
        self.session_number_service = SessionNumberService()
        self.traffic_mirror_service = TrafficMirrorService()
        self.request_parser = DriverRequestParser()

        self.vpc_service = VPCService(
            tag_service=self.tag_service,
            subnet_service=self.subnet_service,
            instance_service=self.instance_service,
            vpc_waiter=self.vpc_waiter,
            vpc_peering_waiter=self.vpc_peering_waiter,
            sg_service=self.security_group_service,
            route_table_service=self.route_tables_service,
            traffic_mirror_service=self.traffic_mirror_service,
        )
        self.prepare_connectivity_operation = PrepareSandboxInfraOperation(
            vpc_service=self.vpc_service,
            security_group_service=self.security_group_service,
            key_pair_service=self.key_pair_service,
            tag_service=self.tag_service,
            route_table_service=self.route_tables_service,
            cancellation_service=self.cancellation_service,
            subnet_service=self.subnet_service,
            subnet_waiter=self.subnet_waiter,
        )

        self.deploy_ami_operation = DeployAMIOperation(
            instance_service=self.instance_service,
            ami_credential_service=self.ami_credentials_service,
            security_group_service=self.security_group_service,
            tag_service=self.tag_service,
            vpc_service=self.vpc_service,
            key_pair_service=self.key_pair_service,
            subnet_service=self.subnet_service,
            elastic_ip_service=self.elastic_ip_service,
            network_interface_service=self.network_interface_service,
            cancellation_service=self.cancellation_service,
            device_index_strategy=AllocateMissingValuesDeviceIndexStrategy(),
            vm_details_provider=self.vm_details_provider,
        )

        self.refresh_ip_operation = RefreshIpOperation(
            instance_service=self.instance_service)

        self.power_management_operation = PowerOperation(
            instance_service=self.instance_service,
            instance_waiter=self.ec2_instance_waiter,
        )

        self.delete_ami_operation = DeleteAMIOperation(
            instance_service=self.instance_service,
            ec2_storage_service=self.ec2_storage_service,
            security_group_service=self.security_group_service,
            tag_service=self.tag_service,
            elastic_ip_service=self.elastic_ip_service,
        )

        self.clean_up_operation = CleanupSandboxInfraOperation(
            vpc_service=self.vpc_service,
            key_pair_service=self.key_pair_service,
            route_table_service=self.route_tables_service,
            traffic_mirror_service=self.traffic_mirror_service,
        )

        self.deployed_app_ports_operation = DeployedAppPortsOperation(
            self.vm_custom_params_extractor,
            security_group_service=self.security_group_service,
            instance_service=self.instance_service,
        )

        self.access_key_operation = GetAccessKeyOperation(
            key_pair_service=self.key_pair_service)

        self.set_app_security_groups_operation = SetAppSecurityGroupsOperation(
            instance_service=self.instance_service,
            tag_service=self.tag_service,
            security_group_service=self.security_group_service,
        )

        self.vm_details_operation = VmDetailsOperation(
            instance_service=self.instance_service,
            vm_details_provider=self.vm_details_provider,
        )

        self.autoload_operation = AutoloadOperation()

        self.snapshot_operation = SnapshotOperation(self.instance_service,
                                                    self.image_waiter)

        self.traffic_mirroring_operation = TrafficMirrorOperation(
            tag_service=self.tag_service,
            session_number_service=self.session_number_service,
            traffic_mirror_service=self.traffic_mirror_service,
            cancellation_service=self.cancellation_service,
        )
コード例 #3
0
class AWSShell:
    CREDENTIALS_ERROR_MESSAGE = ("Oops, looks like there was a problem with "
                                 "your cloud provider credentials. "
                                 "Please check AWS Secret Access Key "
                                 "and AWS Access Key ID")

    def __init__(self):
        self.image_waiter = AMIWaiter()
        self.command_result_parser = CommandResultsParser()
        self.cancellation_service = CommandCancellationService()
        self.client_err_wrapper = ClientErrorWrapper()
        self.tag_service = TagService(
            client_err_wrapper=self.client_err_wrapper)
        self.ec2_instance_waiter = InstanceWaiter(
            cancellation_service=self.cancellation_service)
        self.instance_service = InstanceService(self.tag_service,
                                                self.ec2_instance_waiter)
        self.ec2_storage_service = EC2StorageService()
        self.model_parser = AWSModelsParser()
        self.cloudshell_session_helper = CloudshellDriverHelper()
        self.aws_session_manager = AWSSessionProvider()
        self.password_waiter = PasswordWaiter(self.cancellation_service)
        self.vm_custom_params_extractor = VmCustomParamsExtractor()
        self.ami_credentials_service = InstanceCredentialsService(
            self.password_waiter)
        self.security_group_service = SecurityGroupService(self.tag_service)
        self.subnet_waiter = SubnetWaiter()
        self.subnet_service = SubnetService(self.tag_service,
                                            self.subnet_waiter)
        self.s3_service = S3BucketService()
        self.vpc_peering_waiter = VpcPeeringConnectionWaiter()
        self.key_pair_service = KeyPairService(self.s3_service)
        self.vpc_waiter = VPCWaiter()
        self.route_tables_service = RouteTablesService(self.tag_service)
        self.network_interface_service = NetworkInterfaceService(
            subnet_service=self.subnet_service,
            security_group_service=self.security_group_service,
        )
        self.elastic_ip_service = ElasticIpService()
        self.vm_details_provider = VmDetailsProvider()
        self.session_number_service = SessionNumberService()
        self.traffic_mirror_service = TrafficMirrorService()
        self.request_parser = DriverRequestParser()

        self.vpc_service = VPCService(
            tag_service=self.tag_service,
            subnet_service=self.subnet_service,
            instance_service=self.instance_service,
            vpc_waiter=self.vpc_waiter,
            vpc_peering_waiter=self.vpc_peering_waiter,
            sg_service=self.security_group_service,
            route_table_service=self.route_tables_service,
            traffic_mirror_service=self.traffic_mirror_service,
        )
        self.prepare_connectivity_operation = PrepareSandboxInfraOperation(
            vpc_service=self.vpc_service,
            security_group_service=self.security_group_service,
            key_pair_service=self.key_pair_service,
            tag_service=self.tag_service,
            route_table_service=self.route_tables_service,
            cancellation_service=self.cancellation_service,
            subnet_service=self.subnet_service,
            subnet_waiter=self.subnet_waiter,
        )

        self.deploy_ami_operation = DeployAMIOperation(
            instance_service=self.instance_service,
            ami_credential_service=self.ami_credentials_service,
            security_group_service=self.security_group_service,
            tag_service=self.tag_service,
            vpc_service=self.vpc_service,
            key_pair_service=self.key_pair_service,
            subnet_service=self.subnet_service,
            elastic_ip_service=self.elastic_ip_service,
            network_interface_service=self.network_interface_service,
            cancellation_service=self.cancellation_service,
            device_index_strategy=AllocateMissingValuesDeviceIndexStrategy(),
            vm_details_provider=self.vm_details_provider,
        )

        self.refresh_ip_operation = RefreshIpOperation(
            instance_service=self.instance_service)

        self.power_management_operation = PowerOperation(
            instance_service=self.instance_service,
            instance_waiter=self.ec2_instance_waiter,
        )

        self.delete_ami_operation = DeleteAMIOperation(
            instance_service=self.instance_service,
            ec2_storage_service=self.ec2_storage_service,
            security_group_service=self.security_group_service,
            tag_service=self.tag_service,
            elastic_ip_service=self.elastic_ip_service,
        )

        self.clean_up_operation = CleanupSandboxInfraOperation(
            vpc_service=self.vpc_service,
            key_pair_service=self.key_pair_service,
            route_table_service=self.route_tables_service,
            traffic_mirror_service=self.traffic_mirror_service,
        )

        self.deployed_app_ports_operation = DeployedAppPortsOperation(
            self.vm_custom_params_extractor,
            security_group_service=self.security_group_service,
            instance_service=self.instance_service,
        )

        self.access_key_operation = GetAccessKeyOperation(
            key_pair_service=self.key_pair_service)

        self.set_app_security_groups_operation = SetAppSecurityGroupsOperation(
            instance_service=self.instance_service,
            tag_service=self.tag_service,
            security_group_service=self.security_group_service,
        )

        self.vm_details_operation = VmDetailsOperation(
            instance_service=self.instance_service,
            vm_details_provider=self.vm_details_provider,
        )

        self.autoload_operation = AutoloadOperation()

        self.snapshot_operation = SnapshotOperation(self.instance_service,
                                                    self.image_waiter)

        self.traffic_mirroring_operation = TrafficMirrorOperation(
            tag_service=self.tag_service,
            session_number_service=self.session_number_service,
            traffic_mirror_service=self.traffic_mirror_service,
            cancellation_service=self.cancellation_service,
        )

    def cleanup_connectivity(self, command_context, actions):
        """# noqa
        Will delete the reservation vpc and all related resources including all remaining instances
        :param ResourceCommandContext command_context:
        :param list[RequestActionBase] actions::
        :return: json string response
        :rtype: str
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Cleanup Connectivity")

            result = self.clean_up_operation.cleanup(
                ec2_client=shell_context.aws_api.ec2_client,
                ec2_session=shell_context.aws_api.ec2_session,
                s3_session=shell_context.aws_api.s3_session,
                aws_ec2_data_model=shell_context.aws_ec2_resource_model,
                reservation_id=command_context.reservation.reservation_id,
                actions=actions,
                logger=shell_context.logger,
            )
            return self.command_result_parser.set_command_result(
                {"driverResponse": {
                    "actionResults": [result]
                }})

    def prepare_connectivity(self, command_context, actions,
                             cancellation_context):
        """# noqa
        Will create a vpc for the reservation and will peer it with the management vpc
        :param ResourceCommandContext command_context: The Command Context
        :param list[RequestActionBase] actions:
        :return: json string response
        :param CancellationContext cancellation_context:
        :rtype: list[ActionResultBase]
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Prepare Connectivity")
            reservation = self.model_parser.convert_to_reservation_model(
                command_context.reservation)
            cs_subnet_service = CsSubnetService(
                shell_context.cloudshell_session, reservation.reservation_id)

            results = self.prepare_connectivity_operation.prepare_connectivity(
                ec2_client=shell_context.aws_api.ec2_client,
                ec2_session=shell_context.aws_api.ec2_session,
                s3_session=shell_context.aws_api.s3_session,
                reservation=reservation,
                aws_ec2_datamodel=shell_context.aws_ec2_resource_model,
                actions=actions,
                cancellation_context=cancellation_context,
                cs_subnet_service=cs_subnet_service,
                logger=shell_context.logger,
            )

            return results

    def get_inventory(self, command_context):
        """Validate Cloud Provider.

        :param command_context: ResourceCommandContext
        """
        try:
            with AwsShellContext(context=command_context,
                                 aws_session_manager=self.aws_session_manager
                                 ) as shell_context:
                shell_context.logger.info("Starting Autoload Operation...")
                result = self.autoload_operation.get_inventory(
                    cloud_provider_model=shell_context.aws_ec2_resource_model,
                    logger=shell_context.logger,
                    ec2_client=shell_context.aws_api.ec2_client,
                    ec2_session=shell_context.aws_api.ec2_session,
                    s3_session=shell_context.aws_api.s3_session,
                )
                shell_context.logger.info("End Autoload Operation...")
                return result

        except ClientError as ce:
            if "AuthorizationHeaderMalformed" in str(ce):
                raise Exception(self.CREDENTIALS_ERROR_MESSAGE)
            raise ce

        except NoCredentialsError:
            raise Exception(self.CREDENTIALS_ERROR_MESSAGE)

        except ValueError as ve:
            if "Invalid endpoint" in str(ve):
                raise Exception(
                    "Oops, like you didnt configure Region correctly. Please select "
                    "Region and try again ")
            else:
                raise ve

    def power_on_ami(self, command_context):
        """# noqa
        Will power on the ami
        :param ResourceRemoteCommandContext command_context:
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Power On")

            resource = command_context.remote_endpoints[0]
            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)

            self.power_management_operation.power_on(
                ec2_session=shell_context.aws_api.ec2_session,
                ami_id=data_holder.vmdetails.uid,
            )

    def power_off_ami(self, command_context):
        """# noqa
        Will power on the ami
        :param ResourceRemoteCommandContext command_context:
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Power Off")

            resource = command_context.remote_endpoints[0]
            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)

            self.power_management_operation.power_off(
                ec2_session=shell_context.aws_api.ec2_session,
                ami_id=data_holder.vmdetails.uid,
            )

    def delete_instance(self, command_context):
        """# noqa
        Will delete the ami instance
        :param ResourceRemoteCommandContext command_context:
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Delete instance")

            resource = command_context.remote_endpoints[0]
            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)

            self.delete_ami_operation.delete_instance(
                logger=shell_context.logger,
                ec2_session=shell_context.aws_api.ec2_session,
                instance_id=data_holder.vmdetails.uid,
            )

    def get_application_ports(self, command_context):
        """# noqa
        Will return the application ports in a nicely formated manner
        :param ResourceRemoteCommandContext command_context:
        :rtype: str
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Get Application Ports")
            resource = command_context.remote_endpoints[0]

            # Get instance id
            deployed_instance_id = (
                self.model_parser.
                try_get_deployed_connected_resource_instance_id(
                    command_context))

            # Get Allow all Storage Traffic on deployed resource
            allow_all_storage_traffic = self.model_parser.get_allow_all_storage_traffic_from_connected_resource_details(  # noqa
                command_context)

            return self.deployed_app_ports_operation.get_app_ports_from_cloud_provider(
                ec2_session=shell_context.aws_api.ec2_session,
                instance_id=deployed_instance_id,
                resource=resource,
                allow_all_storage_traffic=allow_all_storage_traffic,
            )

    def deploy_ami(self, command_context, actions, cancellation_context):
        """# noqa
        Will deploy Amazon Image on the cloud provider
        :param ResourceCommandContext command_context:
        :param list[RequestActionBase] actions::
        :param CancellationContext cancellation_context:
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Deploying AMI")

            deploy_action = single(actions, lambda x: isinstance(x, DeployApp))
            network_actions = [
                a for a in actions if isinstance(a, ConnectSubnet)
            ]

            deploy_data = self.deploy_ami_operation.deploy(
                ec2_session=shell_context.aws_api.ec2_session,
                s3_session=shell_context.aws_api.s3_session,
                name=deploy_action.actionParams.appName,
                reservation=self.model_parser.convert_to_reservation_model(
                    command_context.reservation),
                aws_ec2_cp_resource_model=shell_context.aws_ec2_resource_model,
                ami_deploy_action=deploy_action,
                network_actions=network_actions,
                ec2_client=shell_context.aws_api.ec2_client,
                cancellation_context=cancellation_context,
                logger=shell_context.logger,
            )

            return deploy_data

    def refresh_ip(self, command_context):
        """# noqa
        :param ResourceRemoteCommandContext command_context:
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Refresh IP")

            # Get Private Ip on deployed resource
            private_ip_on_resource = (
                self.model_parser.
                get_private_ip_from_connected_resource_details(command_context)
            )
            # Get Public IP on deployed resource

            (
                public_ip_attr_name,
                public_ip_on_resource,
            ) = self.model_parser.get_public_ip_attr_from_connected_resource_details(
                command_context)
            # Get instance id
            deployed_instance_id = (
                self.model_parser.
                try_get_deployed_connected_resource_instance_id(
                    command_context))
            # Get connected resource name
            resource_fullname = self.model_parser.get_connectd_resource_fullname(
                command_context)

            self.refresh_ip_operation.refresh_ip(
                cloudshell_session=shell_context.cloudshell_session,
                ec2_session=shell_context.aws_api.ec2_session,
                deployed_instance_id=deployed_instance_id,
                private_ip_on_resource=private_ip_on_resource,
                public_ip_on_resource=public_ip_on_resource,
                public_ip_attribute_name=public_ip_attr_name,
                resource_fullname=resource_fullname,
            )

    def get_access_key(self, command_context):
        """# noqa
        Returns the pem file for the connected resource
        :param ResourceRemoteCommandContext command_context:
        :rtype str:
        """
        with AwsShellContext(
                context=command_context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("GetAccessKey")
            reservation_id = self._get_reservation_id(command_context)
            return self.access_key_operation.get_access_key(
                s3_session=shell_context.aws_api.s3_session,
                aws_ec2_resource_model=shell_context.aws_ec2_resource_model,
                reservation_id=reservation_id,
            )

    def set_app_security_groups(self, context, request):
        """# noqa
        Set security groups (inbound rules only)
        :param context: todo - set the type of the parameter
        :param request: The json request
        :return:
        """
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Set App Security Groups")

            reservation = self.model_parser.convert_to_reservation_model(
                context.reservation)
            app_security_group_models = (
                self.model_parser.convert_to_app_security_group_models(request)
            )

            result = self.set_app_security_groups_operation.set_apps_security_groups(
                app_security_group_models=app_security_group_models,
                reservation=reservation,
                ec2_session=shell_context.aws_api.ec2_session,
                logger=shell_context.logger,
            )

            json_result = SetAppSecurityGroupActionResult.to_json(result)

            return json_result

    def get_vm_details(self, context, cancellation_context, requests_json):
        """# noqa
        Get vm details for specific deployed app
        :type context: ResourceCommandContext
        :rtype str
        """
        results = []
        vm_details_requests = [
            VmDetailsRequest(item) for item in DeployDataHolder(
                jsonpickle.decode(requests_json)).items
        ]

        for request in vm_details_requests:
            if cancellation_context.is_cancelled:
                break

            try:
                with AwsShellContext(context=context,
                                     aws_session_manager=self.
                                     aws_session_manager) as shell_context:
                    shell_context.logger.info("Get VmDetails")
                    vm_details = self.vm_details_operation.get_vm_details(
                        request.uuid, shell_context.aws_api.ec2_session)
                    vm_details.appName = request.app_name
                    results.append(vm_details)
            except Exception as e:
                result = VmDetailsData()
                result.appName = request.app_name
                result.error = str(e)
                results.append(result)

        return self.command_result_parser.set_command_result(results)

    # def remote_get_snapshots(self, context):  # noqa
    #     with AwsShellContext(context=context, aws_session_manager=self.aws_session_manager) as shell_context:  # noqa
    #         with ErrorHandlingContext(shell_context.logger):  # noqa
    #             shell_context.logger.info('Get Snapshots')  # noqa
    #
    #             resource = context.remote_endpoints[0]  # noqa
    #             resource_fullname = self.model_parser.get_connectd_resource_fullname(context)  # noqa
    #             reservation_id = self._get_reservation_id(context)  # noqa
    #
    #             return self.snapshot_operation.get(shell_context.aws_api.ec2_client,  # noqa
    #                                                reservation_id, resource_fullname)  # noqa

    def remote_get_snapshots(self, context):
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Get Snapshots")

            resource = context.remote_endpoints[0]
            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)

            return self.snapshot_operation.get_snapshots(
                shell_context.aws_api.ec2_client,
                instance_id=data_holder.vmdetails.uid)

    def remote_save_snapshot(self, context, snapshot_name):
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Save Snapshot")
            resource = context.remote_endpoints[0]
            reservation = ReservationModel(context.remote_reservation)
            tags = self.tag_service.get_default_tags(snapshot_name,
                                                     reservation)
            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)
            self.snapshot_operation.save_snapshot(
                ec2_client=shell_context.aws_api.ec2_client,
                ec2_session=shell_context.aws_api.ec2_session,
                instance_id=data_holder.vmdetails.uid,
                snapshot_name=snapshot_name,
                tags=tags,
            )

    def remote_restore_snapshot(self, context, snapshot_name):
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Save Snapshot")
            resource = context.remote_endpoints[0]
            reservation = ReservationModel(context.remote_reservation)
            tags = self.tag_service.get_default_tags(snapshot_name,
                                                     reservation)
            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)
            self.snapshot_operation.save_snapshot(
                ec2_client=shell_context.aws_api.ec2_client,
                ec2_session=shell_context.aws_api.ec2_session,
                instance_id=data_holder.vmdetails.uid,
                snapshot_name=snapshot_name,
                tags=tags,
            )

    def save_app(self, context, cancellation_context):
        """# noqa
        :param context:
        :param cancellation_context:
        :return:
        """
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Save Snapshot")

            resource = context.remote_endpoints[0]

            data_holder = self.model_parser.convert_app_resource_to_deployed_app(
                resource)
            resource_fullname = self.model_parser.get_connectd_resource_fullname(
                context)

            image_id = self.snapshot_operation.save(
                logger=shell_context.logger,
                ec2_session=shell_context.aws_api.ec2_session,
                instance_id=data_holder.vmdetails.uid,
                deployed_app_name=resource_fullname,
                snapshot_prefix="",
                no_reboot=True,
            )

            return json.dumps({"AWS EC2 Instance.AWS AMI Id": image_id})

    def add_custom_tags(self, context, request):
        """# noqa
        :param ResourceCommandContext context:
        :param str request:
        :return:
        """
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Add custom tags")

            # Get instance id
            deployed_instance_id = (
                self.model_parser.
                try_get_deployed_connected_resource_instance_id(context))

            # Expected request syntax:
            # [{  # noqa
            #     'Key': 'string',  # noqa
            #     'Value': 'string'  # noqa
            # }]  # noqa
            tags = json.loads(request)

            instance = self.instance_service.get_instance_by_id(
                shell_context.aws_api.ec2_session, deployed_instance_id)
            instance.create_tags(Tags=tags)

    def create_traffic_mirroring(self, context, cancellation_context, request):
        """# noqa
        Will create a vpc for the reservation and will peer it with the management vpc
        :param request:
        :param ResourceCommandContext context:

        :return: json string response
        :param CancellationContext cancellation_context:
        :rtype: list[ActionResultBase]
        """
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Create traffic mirroring")
            actions = self._parse_request(request, shell_context)
            self.traffic_mirroring_operation.validate_create_actions(
                actions, request, shell_context.logger)
            results = self.traffic_mirroring_operation.create(
                ec2_client=shell_context.aws_api.ec2_client,
                reservation=self.model_parser.convert_to_reservation_model(
                    context.reservation),
                actions=actions,
                cancellation_context=cancellation_context,
                logger=shell_context.logger,
                cloudshell=shell_context.cloudshell_session,
            )

            return results

    def _parse_request(self, request, shell_context):
        try:
            actions = self.request_parser.convert_driver_request_to_actions(
                request)
            if not actions:
                raise Exception("Invalid request: " + request)
        except Exception as e:
            shell_context.logger.exception("Invalid request " + request)
            raise e
        return actions

    @staticmethod
    def _get_reservation_id(context):
        reservation_id = None
        reservation = getattr(context, "reservation",
                              getattr(context, "remote_reservation", None))
        if reservation:
            reservation_id = reservation.reservation_id
        return reservation_id

    def remove_traffic_mirroring(self, context, request):
        """# noqa
        Can remove traffic mirroring sessions by session id, or all sessions associated with a traffic mirror target (by target nic id)
        :param str request:
        :param ResourceCommandContext context:
        :param ResourceCommandContext context:

        :return: json string response
        :rtype: list[ActionResultBase]
        """
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Create traffic mirroring")

            self.traffic_mirroring_operation.validate_remove_request(
                request, shell_context.logger)

            actions = self._parse_request(request, shell_context)

            results = self.traffic_mirroring_operation.remove(
                ec2_client=shell_context.aws_api.ec2_client,
                reservation=self.model_parser.convert_to_reservation_model(
                    context.reservation),
                actions=actions,
                logger=shell_context.logger,
                cloudshell=shell_context.cloudshell_session,
            )

            return results

    def assign_additional_private_ipv4s(self, context, vnic_id, new_ips):
        with AwsShellContext(
                context=context,
                aws_session_manager=self.aws_session_manager) as shell_context:
            shell_context.logger.info("Assign additional IP Addresses")

            ips = map(str.strip, new_ips.split(";"))
            try:
                response = shell_context.aws_api.ec2_client.assign_private_ip_addresses(
                    AllowReassignment=True,
                    NetworkInterfaceId=vnic_id,
                    PrivateIpAddresses=ips,
                )
                assigned_ips_response = response.get(
                    "AssignedPrivateIpAddresses", [])
                return ";".join([
                    ip.get("PrivateIpAddress") for ip in assigned_ips_response
                    if ip.get("PrivateIpAddress")
                ])
            except Exception:
                shell_context.logger.error("Failed to add ips", exc_info=1)
                return None
コード例 #4
0
    def test_convert_to_deployment_resource_model(self):
        # Arrange
        d_path = "Amazon AWS Cloud Provider Shell 2G.Amazon AWS EC2 Instance 2G"
        attributes = [
            {
                "attributeName": f"{d_path}.AWS AMI Id",
                "attributeValue": "ami_id",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Custom Tags",
                "attributeValue": "custom_tags",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.User Data URL",
                "attributeValue": "user_data_url",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.User Data Parameters",
                "attributeValue": "user_data_parameters",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Allow all Sandbox Traffic",
                "attributeValue": "True",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Instance Type",
                "attributeValue": "t.nano",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Storage Size",
                "attributeValue": "0",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Storage IOPS",
                "attributeValue": "0",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Storage Type",
                "attributeValue": "storage_type",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Inbound Ports",
                "attributeValue": "80",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Wait for IP",
                "attributeValue": "False",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Wait for Status Check",
                "attributeValue": "True",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Autoload",
                "attributeValue": "False",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Wait for Credentials",
                "attributeValue": "False",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Public IP Options",
                "attributeValue": "Elastic IP",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Root Volume Name",
                "attributeValue": "root_vol_name",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.IAM Role Name",
                "attributeValue": "top secret",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Private IP",
                "attributeValue": "",
                "type": "attribute",
            },
        ]
        json_str = json.dumps(
            {
                "driverRequest": {
                    "actions": [
                        {
                            "actionParams": {
                                "appName": "AWS",
                                "deployment": {
                                    "deploymentPath": d_path,
                                    "attributes": attributes,
                                    "type": "deployAppDeploymentInfo",
                                },
                                "appResource": {
                                    "attributes": [
                                        {
                                            "attributeName": "Password",
                                            "attributeValue": "3M3u7nkDzxWb0aJ/IZYeW==",
                                            "type": "attribute",
                                        },
                                        {
                                            "attributeName": "Public IP",
                                            "attributeValue": "",
                                            "type": "attribute",
                                        },
                                        {
                                            "attributeName": "User",
                                            "attributeValue": "",
                                            "type": "attribute",
                                        },
                                    ],
                                    "type": "appResourceInfo",
                                },
                                "type": "deployAppParams",
                            },
                            "actionId": "f09b5640-1349-440d-b66f-f16a3009369f",
                            "type": "deployApp",
                        }
                    ]
                }
            }
        )

        # Act
        self.request_parser = DriverRequestParser()
        self.request_parser.add_deployment_model(
            deployment_model_cls=DeployAWSEc2AMIInstanceResourceModel
        )
        model = self.request_parser.convert_driver_request_to_actions(json_str)[0]

        # Assert
        self.assertEquals(
            model.actionParams.deployment.customModel.aws_ami_id, "ami_id"
        )
        self.assertEquals(model.actionParams.deployment.customModel.storage_size, "0")
        self.assertEquals(model.actionParams.deployment.customModel.storage_iops, "0")
        self.assertEquals(
            model.actionParams.deployment.customModel.storage_type, "storage_type"
        )
        self.assertEquals(
            model.actionParams.deployment.customModel.instance_type, "t.nano"
        )
        self.assertEquals(
            model.actionParams.deployment.customModel.iam_role, "top secret"
        )
        self.assertEquals(
            model.actionParams.deployment.customModel.root_volume_name, "root_vol_name"
        )
        self.assertFalse(model.actionParams.deployment.customModel.wait_for_ip)
        self.assertTrue(model.actionParams.deployment.customModel.wait_for_status_check)
        self.assertFalse(model.actionParams.deployment.customModel.autoload)
        self.assertEquals(model.actionParams.deployment.customModel.inbound_ports, "80")
        self.assertFalse(model.actionParams.deployment.customModel.wait_for_credentials)
        self.assertFalse(model.actionParams.deployment.customModel.add_public_ip)
        self.assertTrue(model.actionParams.deployment.customModel.allocate_elastic_ip)
コード例 #5
0
    def test_convert_to_deployment_resource_model_with_network(self):
        json = (
            "{"
            '"driverRequest": {'
            '"actions": ['
            "{"
            '"actionParams": {'
            '"cidr": "10.0.5.0/28",'
            '"subnetId": "some_id",'
            '"isPublic": true,'
            '"subnetServiceAttributes": ['
            "{"
            '"attributeName": "QnQ",'
            '"attributeValue": "False",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "CTag",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Subnet Size",'
            '"attributeValue": "16",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Public",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Allocated CIDR",'
            '"attributeValue": "10.0.1.0/28",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Subnet Id",'
            '"attributeValue": "some_id",'
            '"type": "attribute"'
            "}"
            "],"
            '"type": "connectToSubnetParams"'
            "},"
            '"actionId": "some_id",'
            '"type": "connectSubnet"'
            "},"
            "{"
            '"actionParams": {'
            '"appName": "AWS",'
            '"deployment": {'
            '"deploymentPath": "AWS EC2 Instance",'
            '"attributes": ['
            "{"
            '"attributeName": "AWS AMI Id",'
            '"attributeValue": "ami-b7b4fedd",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Allow all Sandbox Traffic",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Wait for IP",'
            '"attributeValue": "False",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Wait for Status Check",'
            '"attributeValue": "False",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Autoload",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Wait for Credentials",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Public IP Options",'
            '"attributeValue": "No Public IP",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Root Volume Name",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "IAM Role Name",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Instance Type",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Storage Size",'
            '"attributeValue": "0",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Storage IOPS",'
            '"attributeValue": "0",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Storage Type",'
            '"attributeValue": "auto",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Inbound Ports",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "}"
            "],"
            '"type": "deployAppDeploymentInfo"'
            "},"
            '"appResource": {'
            '"attributes": ['
            "{"
            '"attributeName": "Password",'
            '"attributeValue": "3M3u7nkDzxWb0aJ/IZYeWw==",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Public IP",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "User",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "}"
            "],"
            '"type": "appResourceInfo"'
            "},"
            '"type": "deployAppParams"'
            "},"
            '"actionId": "bbf48f30-1e75-45b0-b49a-23c5d0213727",'
            '"type": "deployApp"'
            "}"
            "]"
            "}"
            "}"
        )
        resource = Mock()
        resource.name = "cloud_provider_name"

        # Act
        self.request_parser = DriverRequestParser()
        self.request_parser.add_deployment_model(
            deployment_model_cls=DeployAWSEc2AMIInstanceResourceModel
        )
        model = self.request_parser.convert_driver_request_to_actions(json)[0]

        # Assert
        self.assertEquals(model.actionId, "some_id")
        self.assertEquals(len(model.actionParams.subnetServiceAttributes), 6)
        self.assertEquals(model.actionParams.subnetServiceAttributes["Public"], "True")
        self.assertTrue(isinstance(model.actionParams, ConnectToSubnetParams))
コード例 #6
0
class TestModelParser(TestCase):
    def setUp(self):
        pass

    def test_parse_public_ip_options_attribute_elastic(self):
        # arrange
        public_ip_options_val = "Elastic IPs"

        # act
        (public, elastic) = AWSModelsParser.parse_public_ip_options_attribute(
            public_ip_options_val
        )

        # assert
        self.assertFalse(public)
        self.assertTrue(elastic)

    def test_parse_public_ip_options_attribute_public(self):
        # arrange
        public_ip_options_val = "Public IP"

        # act
        (public, elastic) = AWSModelsParser.parse_public_ip_options_attribute(
            public_ip_options_val
        )

        # assert
        self.assertTrue(public)
        self.assertFalse(elastic)

    def test_parse_public_ip_options_attribute_no_public_ip(self):
        # arrange
        public_ip_options_val = "No Public IP"

        # act
        (public, elastic) = AWSModelsParser.parse_public_ip_options_attribute(
            public_ip_options_val
        )

        # assert
        self.assertFalse(public)
        self.assertFalse(elastic)

    def test_convert_to_deployment_resource_model(self):
        # Arrange
        d_path = "Amazon AWS Cloud Provider Shell 2G.Amazon AWS EC2 Instance 2G"
        attributes = [
            {
                "attributeName": f"{d_path}.AWS AMI Id",
                "attributeValue": "ami_id",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Custom Tags",
                "attributeValue": "custom_tags",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.User Data URL",
                "attributeValue": "user_data_url",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.User Data Parameters",
                "attributeValue": "user_data_parameters",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Allow all Sandbox Traffic",
                "attributeValue": "True",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Instance Type",
                "attributeValue": "t.nano",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Storage Size",
                "attributeValue": "0",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Storage IOPS",
                "attributeValue": "0",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Storage Type",
                "attributeValue": "storage_type",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Inbound Ports",
                "attributeValue": "80",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Wait for IP",
                "attributeValue": "False",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Wait for Status Check",
                "attributeValue": "True",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Autoload",
                "attributeValue": "False",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Wait for Credentials",
                "attributeValue": "False",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Public IP Options",
                "attributeValue": "Elastic IP",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Root Volume Name",
                "attributeValue": "root_vol_name",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.IAM Role Name",
                "attributeValue": "top secret",
                "type": "attribute",
            },
            {
                "attributeName": f"{d_path}.Private IP",
                "attributeValue": "",
                "type": "attribute",
            },
        ]
        json_str = json.dumps(
            {
                "driverRequest": {
                    "actions": [
                        {
                            "actionParams": {
                                "appName": "AWS",
                                "deployment": {
                                    "deploymentPath": d_path,
                                    "attributes": attributes,
                                    "type": "deployAppDeploymentInfo",
                                },
                                "appResource": {
                                    "attributes": [
                                        {
                                            "attributeName": "Password",
                                            "attributeValue": "3M3u7nkDzxWb0aJ/IZYeW==",
                                            "type": "attribute",
                                        },
                                        {
                                            "attributeName": "Public IP",
                                            "attributeValue": "",
                                            "type": "attribute",
                                        },
                                        {
                                            "attributeName": "User",
                                            "attributeValue": "",
                                            "type": "attribute",
                                        },
                                    ],
                                    "type": "appResourceInfo",
                                },
                                "type": "deployAppParams",
                            },
                            "actionId": "f09b5640-1349-440d-b66f-f16a3009369f",
                            "type": "deployApp",
                        }
                    ]
                }
            }
        )

        # Act
        self.request_parser = DriverRequestParser()
        self.request_parser.add_deployment_model(
            deployment_model_cls=DeployAWSEc2AMIInstanceResourceModel
        )
        model = self.request_parser.convert_driver_request_to_actions(json_str)[0]

        # Assert
        self.assertEquals(
            model.actionParams.deployment.customModel.aws_ami_id, "ami_id"
        )
        self.assertEquals(model.actionParams.deployment.customModel.storage_size, "0")
        self.assertEquals(model.actionParams.deployment.customModel.storage_iops, "0")
        self.assertEquals(
            model.actionParams.deployment.customModel.storage_type, "storage_type"
        )
        self.assertEquals(
            model.actionParams.deployment.customModel.instance_type, "t.nano"
        )
        self.assertEquals(
            model.actionParams.deployment.customModel.iam_role, "top secret"
        )
        self.assertEquals(
            model.actionParams.deployment.customModel.root_volume_name, "root_vol_name"
        )
        self.assertFalse(model.actionParams.deployment.customModel.wait_for_ip)
        self.assertTrue(model.actionParams.deployment.customModel.wait_for_status_check)
        self.assertFalse(model.actionParams.deployment.customModel.autoload)
        self.assertEquals(model.actionParams.deployment.customModel.inbound_ports, "80")
        self.assertFalse(model.actionParams.deployment.customModel.wait_for_credentials)
        self.assertFalse(model.actionParams.deployment.customModel.add_public_ip)
        self.assertTrue(model.actionParams.deployment.customModel.allocate_elastic_ip)

    def test_convert_to_deployment_resource_model_with_network(self):
        json = (
            "{"
            '"driverRequest": {'
            '"actions": ['
            "{"
            '"actionParams": {'
            '"cidr": "10.0.5.0/28",'
            '"subnetId": "some_id",'
            '"isPublic": true,'
            '"subnetServiceAttributes": ['
            "{"
            '"attributeName": "QnQ",'
            '"attributeValue": "False",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "CTag",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Subnet Size",'
            '"attributeValue": "16",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Public",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Allocated CIDR",'
            '"attributeValue": "10.0.1.0/28",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Subnet Id",'
            '"attributeValue": "some_id",'
            '"type": "attribute"'
            "}"
            "],"
            '"type": "connectToSubnetParams"'
            "},"
            '"actionId": "some_id",'
            '"type": "connectSubnet"'
            "},"
            "{"
            '"actionParams": {'
            '"appName": "AWS",'
            '"deployment": {'
            '"deploymentPath": "AWS EC2 Instance",'
            '"attributes": ['
            "{"
            '"attributeName": "AWS AMI Id",'
            '"attributeValue": "ami-b7b4fedd",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Allow all Sandbox Traffic",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Wait for IP",'
            '"attributeValue": "False",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Wait for Status Check",'
            '"attributeValue": "False",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Autoload",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Wait for Credentials",'
            '"attributeValue": "True",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Public IP Options",'
            '"attributeValue": "No Public IP",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Root Volume Name",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "IAM Role Name",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Instance Type",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Storage Size",'
            '"attributeValue": "0",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Storage IOPS",'
            '"attributeValue": "0",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Storage Type",'
            '"attributeValue": "auto",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Inbound Ports",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "}"
            "],"
            '"type": "deployAppDeploymentInfo"'
            "},"
            '"appResource": {'
            '"attributes": ['
            "{"
            '"attributeName": "Password",'
            '"attributeValue": "3M3u7nkDzxWb0aJ/IZYeWw==",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "Public IP",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "},"
            "{"
            '"attributeName": "User",'
            '"attributeValue": "",'
            '"type": "attribute"'
            "}"
            "],"
            '"type": "appResourceInfo"'
            "},"
            '"type": "deployAppParams"'
            "},"
            '"actionId": "bbf48f30-1e75-45b0-b49a-23c5d0213727",'
            '"type": "deployApp"'
            "}"
            "]"
            "}"
            "}"
        )
        resource = Mock()
        resource.name = "cloud_provider_name"

        # Act
        self.request_parser = DriverRequestParser()
        self.request_parser.add_deployment_model(
            deployment_model_cls=DeployAWSEc2AMIInstanceResourceModel
        )
        model = self.request_parser.convert_driver_request_to_actions(json)[0]

        # Assert
        self.assertEquals(model.actionId, "some_id")
        self.assertEquals(len(model.actionParams.subnetServiceAttributes), 6)
        self.assertEquals(model.actionParams.subnetServiceAttributes["Public"], "True")
        self.assertTrue(isinstance(model.actionParams, ConnectToSubnetParams))

    def test_subnet_connection_params_check_is_public_subnet_true(self):
        # arrange
        test_obj = PrepareSubnetParams()
        attr1 = PrepareCloudInfra()
        attr1.name = "Some Attribute"
        attr1.value = "Some Value"
        attr2 = PrepareCloudInfra()
        attr2.name = "Public"
        attr2.value = "True"
        test_obj.subnetServiceAttributes = [attr1, attr2]

        # act
        is_public = test_obj.isPublic

        # assert
        self.assertTrue(is_public)

    def test_subnet_connection_params_check_is_public_subnet_true_when_no_attribute(
        self,
    ):
        # arrange
        test_obj = PrepareSubnetParams()
        attr1 = PrepareCloudInfra()
        attr1.name = "Some Attribute"
        attr1.value = "Some Value"
        test_obj.subnetServiceAttributes = [attr1]

        # act
        is_public = test_obj.isPublic

        # assert
        self.assertTrue(is_public)

    def test_parse_bool_value_as_string_and_as_boolean(self):
        self.assertTrue(convert_to_bool("True"))
        self.assertTrue(convert_to_bool(True))
        self.assertFalse(convert_to_bool("False"))
        self.assertFalse(convert_to_bool(False))