diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md b/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md index be5d61ad6a3b..7371b498cd30 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md +++ b/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md @@ -1,5 +1,11 @@ # Release History +## 3.0.0rc14(2020-06-15) + +**Features** + + - Model RunGetLogResult has a new parameter log_artifact_link + ## 3.0.0rc13(2020-05-15) **Features** 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): diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py index 72054155775a..e93cdec3b770 100755 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "3.0.0rc13" +VERSION = "3.0.0rc14"