From a01655cc71a52e80698f9846527cbdde85b38ec1 Mon Sep 17 00:00:00 2001 From: SDK Automation Date: Fri, 12 Jun 2020 02:03:26 +0000 Subject: [PATCH] Generated from 66919b11aede8acb1aa80f779abe46ea9c839f5d Add logArtifactLink property in RunGetLogResult. --- .../v2019_06_01_preview/models/_models.py | 5 +++++ .../v2019_06_01_preview/models/_models_py3.py | 7 ++++++- .../v2019_12_01_preview/models/_models.py | 5 +++++ .../v2019_12_01_preview/models/_models_py3.py | 7 ++++++- 4 files changed, 22 insertions(+), 2 deletions(-) diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py index 08121387aa0a..b95eebff1bfa 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py @@ -2766,15 +2766,20 @@ class RunGetLogResult(Model): :param log_link: The link to logs for a run on a azure container registry. :type log_link: str + :param log_artifact_link: The link to logs in registry for a run on a + azure container registry. + :type log_artifact_link: str """ _attribute_map = { 'log_link': {'key': 'logLink', 'type': 'str'}, + 'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'}, } def __init__(self, **kwargs): super(RunGetLogResult, self).__init__(**kwargs) self.log_link = kwargs.get('log_link', None) + self.log_artifact_link = kwargs.get('log_artifact_link', None) class RunUpdateParameters(Model): diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py index 8f7d952288d1..57dc43d1ca9c 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py @@ -2766,15 +2766,20 @@ class RunGetLogResult(Model): :param log_link: The link to logs for a run on a azure container registry. :type log_link: str + :param log_artifact_link: The link to logs in registry for a run on a + azure container registry. + :type log_artifact_link: str """ _attribute_map = { 'log_link': {'key': 'logLink', 'type': 'str'}, + 'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'}, } - def __init__(self, *, log_link: str=None, **kwargs) -> None: + def __init__(self, *, log_link: str=None, log_artifact_link: str=None, **kwargs) -> None: super(RunGetLogResult, self).__init__(**kwargs) self.log_link = log_link + self.log_artifact_link = log_artifact_link class RunUpdateParameters(Model): diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py index 4c5cd5fc0c82..9762b19b0e44 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py @@ -3512,15 +3512,20 @@ class RunGetLogResult(Model): :param log_link: The link to logs for a run on a azure container registry. :type log_link: str + :param log_artifact_link: The link to logs in registry for a run on a + azure container registry. + :type log_artifact_link: str """ _attribute_map = { 'log_link': {'key': 'logLink', 'type': 'str'}, + 'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'}, } def __init__(self, **kwargs): super(RunGetLogResult, self).__init__(**kwargs) self.log_link = kwargs.get('log_link', None) + self.log_artifact_link = kwargs.get('log_artifact_link', None) class RunUpdateParameters(Model): diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py index e7513de90501..683cf64dffa6 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py @@ -3512,15 +3512,20 @@ class RunGetLogResult(Model): :param log_link: The link to logs for a run on a azure container registry. :type log_link: str + :param log_artifact_link: The link to logs in registry for a run on a + azure container registry. + :type log_artifact_link: str """ _attribute_map = { 'log_link': {'key': 'logLink', 'type': 'str'}, + 'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'}, } - def __init__(self, *, log_link: str=None, **kwargs) -> None: + def __init__(self, *, log_link: str=None, log_artifact_link: str=None, **kwargs) -> None: super(RunGetLogResult, self).__init__(**kwargs) self.log_link = log_link + self.log_artifact_link = log_artifact_link class RunUpdateParameters(Model):