aws-lightsail-loadbalancertlscertificate/src/main/java/software/amazon/lightsail/loadbalancertlscertificate/helpers/handler/LoadBalancerTlsCertificateHandler.java [34:46]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected ProgressEvent<ResourceModel, CallbackContext> preUpdate(
            final ProgressEvent<ResourceModel, CallbackContext> progress) {
        val loadBalancerTlsCertificate = getLoadBalancerTlsCertificate(resourceModelRequest, proxyClient, logger);
        logger.log("Executing AWS-Lightsail-LoadBalancerTlsCertificate::Update::PreCheck...");
        return proxy
                .initiate("AWS-Lightsail-LoadBalancerTlsCertificate::Update::PreCheck", proxyClient, progress.getResourceModel(),
                        progress.getCallbackContext())
                .translateToServiceRequest(Translator::translateToReadRequest)
                .makeServiceCall((awsRequest, client) -> loadBalancerTlsCertificate.read(awsRequest))
                .handleError((awsRequest, exception, client, model, context) -> handleError(exception, model,
                        callbackContext, ImmutableList.of(), logger, this.getClass().getSimpleName()))
                .progress();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-lightsail-loadbalancertlscertificate/src/main/java/software/amazon/lightsail/loadbalancertlscertificate/helpers/handler/LoadBalancerTlsCertificateHandler.java [105:117]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected ProgressEvent<ResourceModel, CallbackContext> preDelete(
            final ProgressEvent<ResourceModel, CallbackContext> progress) {
        val loadBalancerTlsCertificate = getLoadBalancerTlsCertificate(resourceModelRequest, proxyClient, logger);
        logger.log("Executing AWS-Lightsail-LoadBalancerTlsCertificate::Delete::PreDeletionCheck..");
        return proxy
                .initiate("AWS-Lightsail-LoadBalancerTlsCertificate::Delete::PreDeletionCheck", proxyClient, progress.getResourceModel(),
                        progress.getCallbackContext())
                .translateToServiceRequest(Translator::translateToReadRequest)
                .makeServiceCall((awsRequest, client) -> loadBalancerTlsCertificate.read(awsRequest))
                .handleError((awsRequest, exception, client, model, context) -> handleError(exception, model,
                        callbackContext, ImmutableList.of(), logger, this.getClass().getSimpleName()))
                .progress();
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



