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
@@ -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 @@ -1371,6 +1371,8 @@ class ExportPipeline(ProxyResource):
:vartype name: str
:ivar type: The type of the resource.
:vartype type: str
:param location: The location of the export pipeline.
:type location: str
:param identity: The identity of the export pipeline.
:type identity:
~azure.mgmt.containerregistry.v2019_12_01_preview.models.IdentityProperties
Expand Down Expand Up @@ -1399,6 +1401,7 @@ class ExportPipeline(ProxyResource):
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'identity': {'key': 'identity', 'type': 'IdentityProperties'},
'target': {'key': 'properties.target', 'type': 'ExportPipelineTargetProperties'},
'options': {'key': 'properties.options', 'type': '[str]'},
Expand All @@ -1407,6 +1410,7 @@ class ExportPipeline(ProxyResource):

def __init__(self, **kwargs):
super(ExportPipeline, self).__init__(**kwargs)
self.location = kwargs.get('location', None)
self.identity = kwargs.get('identity', None)
self.target = kwargs.get('target', None)
self.options = kwargs.get('options', None)
Expand Down Expand Up @@ -1820,6 +1824,8 @@ class ImportPipeline(ProxyResource):
:vartype name: str
:ivar type: The type of the resource.
:vartype type: str
:param location: The location of the import pipeline.
:type location: str
:param identity: The identity of the import pipeline.
:type identity:
~azure.mgmt.containerregistry.v2019_12_01_preview.models.IdentityProperties
Expand Down Expand Up @@ -1852,6 +1858,7 @@ class ImportPipeline(ProxyResource):
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'identity': {'key': 'identity', 'type': 'IdentityProperties'},
'source': {'key': 'properties.source', 'type': 'ImportPipelineSourceProperties'},
'trigger': {'key': 'properties.trigger', 'type': 'PipelineTriggerProperties'},
Expand All @@ -1861,6 +1868,7 @@ class ImportPipeline(ProxyResource):

def __init__(self, **kwargs):
super(ImportPipeline, self).__init__(**kwargs)
self.location = kwargs.get('location', None)
self.identity = kwargs.get('identity', None)
self.source = kwargs.get('source', None)
self.trigger = kwargs.get('trigger', None)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1371,6 +1371,8 @@ class ExportPipeline(ProxyResource):
:vartype name: str
:ivar type: The type of the resource.
:vartype type: str
:param location: The location of the export pipeline.
:type location: str
:param identity: The identity of the export pipeline.
:type identity:
~azure.mgmt.containerregistry.v2019_12_01_preview.models.IdentityProperties
Expand Down Expand Up @@ -1399,14 +1401,16 @@ class ExportPipeline(ProxyResource):
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'identity': {'key': 'identity', 'type': 'IdentityProperties'},
'target': {'key': 'properties.target', 'type': 'ExportPipelineTargetProperties'},
'options': {'key': 'properties.options', 'type': '[str]'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
}

def __init__(self, *, target, identity=None, options=None, **kwargs) -> None:
def __init__(self, *, target, location: str=None, identity=None, options=None, **kwargs) -> None:
super(ExportPipeline, self).__init__(**kwargs)
self.location = location
self.identity = identity
self.target = target
self.options = options
Expand Down Expand Up @@ -1820,6 +1824,8 @@ class ImportPipeline(ProxyResource):
:vartype name: str
:ivar type: The type of the resource.
:vartype type: str
:param location: The location of the import pipeline.
:type location: str
:param identity: The identity of the import pipeline.
:type identity:
~azure.mgmt.containerregistry.v2019_12_01_preview.models.IdentityProperties
Expand Down Expand Up @@ -1852,15 +1858,17 @@ class ImportPipeline(ProxyResource):
'id': {'key': 'id', 'type': 'str'},
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'location': {'key': 'location', 'type': 'str'},
'identity': {'key': 'identity', 'type': 'IdentityProperties'},
'source': {'key': 'properties.source', 'type': 'ImportPipelineSourceProperties'},
'trigger': {'key': 'properties.trigger', 'type': 'PipelineTriggerProperties'},
'options': {'key': 'properties.options', 'type': '[str]'},
'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'},
}

def __init__(self, *, source, identity=None, trigger=None, options=None, **kwargs) -> None:
def __init__(self, *, source, location: str=None, identity=None, trigger=None, options=None, **kwargs) -> None:
super(ImportPipeline, self).__init__(**kwargs)
self.location = location
self.identity = identity
self.source = source
self.trigger = trigger
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"