def check_deployment_status(archive_path, platform, region, stage, api_name): if platform in SERVERLESS_PLATFORMS: deployment = ServerlessDeployment(archive_path, platform, region, stage) elif platform == 'aws-sagemaker': deployment = SagemakerDeployment(archive_path, api_name, region) else: raise BentoMLException('check deployment status with --platform=%s' % platform + 'is not supported in the current version of BentoML') deployment.check_status() return
def check_deployment_status(archive_path, platform, region, stage, api_name): if platform in SERVERLESS_PLATFORMS: deployment = ServerlessDeployment(archive_path, platform, region, stage) elif platform == "aws-sagemaker": deployment = SagemakerDeployment(archive_path, api_name, region) else: _echo( "check deployment status with --platform=%s is not supported in the " "current version of BentoML" % platform, CLI_COLOR_ERROR, ) return deployment.check_status()