diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md b/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md index be5d61ad6a3b..7371b498cd30 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md +++ b/sdk/containerregistry/azure-mgmt-containerregistry/CHANGELOG.md @@ -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** diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py index 9762b19b0e44..52310ab1e1b0 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models.py @@ -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 @@ -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]'}, @@ -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) @@ -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 @@ -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'}, @@ -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) diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py index 683cf64dffa6..fcee4707986f 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_12_01_preview/models/_models_py3.py @@ -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 @@ -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 @@ -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 @@ -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'}, @@ -1859,8 +1866,9 @@ class ImportPipeline(ProxyResource): '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 diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py index 72054155775a..e93cdec3b770 100755 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "3.0.0rc13" +VERSION = "3.0.0rc14"