Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down