Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(self, *, source_location: str, platform, docker_file_path: str, image_names=None, build_arguments=None, is_push_enabled: bool=True, no_cache: bool=False, timeout: int=3600, **kwargs) -> None:
super(QuickBuildRequest, self).__init__(**kwargs)
self.image_names = image_names
self.source_location = source_location
self.build_arguments = build_arguments
self.is_push_enabled = is_push_enabled
self.no_cache = no_cache
self.timeout = timeout
self.platform = platform
self.docker_file_path = docker_file_path
self.type = 'QuickBuild'