Skip to content

Commit 979ac4c

Browse files
AbyssknightShixun Guan
andauthored
Release for mgmt container registry (Azure#12043)
* release for container registry Co-authored-by: Shixun Guan <[email protected]>
1 parent 44229aa commit 979ac4c

File tree

6 files changed

+29
-3
lines changed

6 files changed

+29
-3
lines changed

sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Release History
22

3+
## 3.0.0rc14(2020-06-15)
4+
5+
**Features**
6+
7+
- Model RunGetLogResult has a new parameter log_artifact_link
8+
39
## 3.0.0rc13(2020-05-15)
410

511
**Features**

sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2766,15 +2766,20 @@ class RunGetLogResult(Model):
27662766
27672767
:param log_link: The link to logs for a run on a azure container registry.
27682768
:type log_link: str
2769+
:param log_artifact_link: The link to logs in registry for a run on a
2770+
azure container registry.
2771+
:type log_artifact_link: str
27692772
"""
27702773

27712774
_attribute_map = {
27722775
'log_link': {'key': 'logLink', 'type': 'str'},
2776+
'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'},
27732777
}
27742778

27752779
def __init__(self, **kwargs):
27762780
super(RunGetLogResult, self).__init__(**kwargs)
27772781
self.log_link = kwargs.get('log_link', None)
2782+
self.log_artifact_link = kwargs.get('log_artifact_link', None)
27782783

27792784

27802785
class RunUpdateParameters(Model):

sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2766,15 +2766,20 @@ class RunGetLogResult(Model):
27662766
27672767
:param log_link: The link to logs for a run on a azure container registry.
27682768
:type log_link: str
2769+
:param log_artifact_link: The link to logs in registry for a run on a
2770+
azure container registry.
2771+
:type log_artifact_link: str
27692772
"""
27702773

27712774
_attribute_map = {
27722775
'log_link': {'key': 'logLink', 'type': 'str'},
2776+
'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'},
27732777
}
27742778

2775-
def __init__(self, *, log_link: str=None, **kwargs) -> None:
2779+
def __init__(self, *, log_link: str=None, log_artifact_link: str=None, **kwargs) -> None:
27762780
super(RunGetLogResult, self).__init__(**kwargs)
27772781
self.log_link = log_link
2782+
self.log_artifact_link = log_artifact_link
27782783

27792784

27802785
class RunUpdateParameters(Model):

sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3512,15 +3512,20 @@ class RunGetLogResult(Model):
35123512
35133513
:param log_link: The link to logs for a run on a azure container registry.
35143514
:type log_link: str
3515+
:param log_artifact_link: The link to logs in registry for a run on a
3516+
azure container registry.
3517+
:type log_artifact_link: str
35153518
"""
35163519

35173520
_attribute_map = {
35183521
'log_link': {'key': 'logLink', 'type': 'str'},
3522+
'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'},
35193523
}
35203524

35213525
def __init__(self, **kwargs):
35223526
super(RunGetLogResult, self).__init__(**kwargs)
35233527
self.log_link = kwargs.get('log_link', None)
3528+
self.log_artifact_link = kwargs.get('log_artifact_link', None)
35243529

35253530

35263531
class RunUpdateParameters(Model):

sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3512,15 +3512,20 @@ class RunGetLogResult(Model):
35123512
35133513
:param log_link: The link to logs for a run on a azure container registry.
35143514
:type log_link: str
3515+
:param log_artifact_link: The link to logs in registry for a run on a
3516+
azure container registry.
3517+
:type log_artifact_link: str
35153518
"""
35163519

35173520
_attribute_map = {
35183521
'log_link': {'key': 'logLink', 'type': 'str'},
3522+
'log_artifact_link': {'key': 'logArtifactLink', 'type': 'str'},
35193523
}
35203524

3521-
def __init__(self, *, log_link: str=None, **kwargs) -> None:
3525+
def __init__(self, *, log_link: str=None, log_artifact_link: str=None, **kwargs) -> None:
35223526
super(RunGetLogResult, self).__init__(**kwargs)
35233527
self.log_link = log_link
3528+
self.log_artifact_link = log_artifact_link
35243529

35253530

35263531
class RunUpdateParameters(Model):

sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "3.0.0rc13"
12+
VERSION = "3.0.0rc14"

0 commit comments

Comments
 (0)