Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release for mgmt container registry #12043

Merged
merged 2 commits into from
Jun 19, 2020
Merged
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
@@ -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**
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, **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
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "3.0.0rc13"
VERSION = "3.0.0rc14"