Skip to content

Commit a01655c

Browse files
author
SDK Automation
committed
Generated from 66919b11aede8acb1aa80f779abe46ea9c839f5d
Add logArtifactLink property in RunGetLogResult.
1 parent 8df251d commit a01655c

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

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):

0 commit comments

Comments
 (0)