Source code for azure.mgmt.containerregistry.v2018_09_01.models.docker_build_step_update_parameters_py3

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from .task_step_update_parameters_py3 import TaskStepUpdateParameters


[docs]class DockerBuildStepUpdateParameters(TaskStepUpdateParameters): """The properties for updating a docker build step. All required parameters must be populated in order to send to Azure. :param context_path: The URL(absolute or relative) of the source context for the task step. :type context_path: str :param context_access_token: The token (git PAT or SAS token of storage account blob) associated with the context for a step. :type context_access_token: str :param type: Required. Constant filled by server. :type type: str :param image_names: The fully qualified image names including the repository and tag. :type image_names: list[str] :param is_push_enabled: The value of this property indicates whether the image built should be pushed to the registry or not. :type is_push_enabled: bool :param no_cache: The value of this property indicates whether the image cache is enabled or not. :type no_cache: bool :param docker_file_path: The Docker file path relative to the source context. :type docker_file_path: str :param arguments: The collection of override arguments to be used when executing this build step. :type arguments: list[~azure.mgmt.containerregistry.v2018_09_01.models.Argument] """ _validation = { 'type': {'required': True}, } _attribute_map = { 'context_path': {'key': 'contextPath', 'type': 'str'}, 'context_access_token': {'key': 'contextAccessToken', 'type': 'str'}, 'type': {'key': 'type', 'type': 'str'}, 'image_names': {'key': 'imageNames', 'type': '[str]'}, 'is_push_enabled': {'key': 'isPushEnabled', 'type': 'bool'}, 'no_cache': {'key': 'noCache', 'type': 'bool'}, 'docker_file_path': {'key': 'dockerFilePath', 'type': 'str'}, 'arguments': {'key': 'arguments', 'type': '[Argument]'}, } def __init__(self, *, context_path: str=None, context_access_token: str=None, image_names=None, is_push_enabled: bool=None, no_cache: bool=None, docker_file_path: str=None, arguments=None, **kwargs) -> None: super(DockerBuildStepUpdateParameters, self).__init__(context_path=context_path, context_access_token=context_access_token, **kwargs) self.image_names = image_names self.is_push_enabled = is_push_enabled self.no_cache = no_cache self.docker_file_path = docker_file_path self.arguments = arguments self.type = 'Docker'