-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[AutoPR] containerregistry/resource-manager (#3467)
* Generated from 13f78c9f9be8ff71afffbe76b21c7b0687b70ea8 (#3452) Add ContextPath and source location URL for encode task and run type, add support for pull request based trigger. * Generated from 7d58dd0e73fb2740d7ebe8e534a973e959395d68 (#3477) allow specifying credentials for source registry on import image * [AutoPR containerregistry/resource-manager] [ACR] Auto Build Swagger: Added identity to registry properties (#3491) * Generated from a9ff5f330e569cbbdfded62d6506e9fe2b71f9ae Added identity to registry properties * Generated from 454d0e161ff250d2b0d4301d8375d74487249f30 CR comments * Generated from 185e2e930d7cd67eb43fee8264dd52b805f87ec0 CR comments * Generated from 185e2e930d7cd67eb43fee8264dd52b805f87ec0 CR comments * [AutoPR containerregistry/resource-manager] Xiadu/msi (#3580) * Generated from 9a9e5ed8ac100538a6ceaff6c0a24b16ad2c0e26 remove the identity properties * Generated from f3b3520c32cfe447a5f85b6491d65d59855b440a remove the identity properties * Packaging update of azure-mgmt-containerregistry * ACR 2.3.0
- Loading branch information
1 parent
11439f2
commit afc2be4
Showing
57 changed files
with
480 additions
and
171 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,4 @@ | ||
include *.rst | ||
include azure/__init__.py | ||
include azure/mgmt/__init__.py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...inerregistry/azure/mgmt/containerregistry/v2017_10_01/models/import_source_credentials.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ImportSourceCredentials(Model): | ||
"""ImportSourceCredentials. | ||
All required parameters must be populated in order to send to Azure. | ||
:param username: The username to authenticate with the source registry. | ||
:type username: str | ||
:param password: Required. The password used to authenticate with the | ||
source registry. | ||
:type password: str | ||
""" | ||
|
||
_validation = { | ||
'password': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'username': {'key': 'username', 'type': 'str'}, | ||
'password': {'key': 'password', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ImportSourceCredentials, self).__init__(**kwargs) | ||
self.username = kwargs.get('username', None) | ||
self.password = kwargs.get('password', None) |
39 changes: 39 additions & 0 deletions
39
...registry/azure/mgmt/containerregistry/v2017_10_01/models/import_source_credentials_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ImportSourceCredentials(Model): | ||
"""ImportSourceCredentials. | ||
All required parameters must be populated in order to send to Azure. | ||
:param username: The username to authenticate with the source registry. | ||
:type username: str | ||
:param password: Required. The password used to authenticate with the | ||
source registry. | ||
:type password: str | ||
""" | ||
|
||
_validation = { | ||
'password': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'username': {'key': 'username', 'type': 'str'}, | ||
'password': {'key': 'password', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, password: str, username: str=None, **kwargs) -> None: | ||
super(ImportSourceCredentials, self).__init__(**kwargs) | ||
self.username = username | ||
self.password = password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
...stry/azure/mgmt/containerregistry/v2018_02_01_preview/models/import_source_credentials.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ImportSourceCredentials(Model): | ||
"""ImportSourceCredentials. | ||
All required parameters must be populated in order to send to Azure. | ||
:param username: The username to authenticate with the source registry. | ||
:type username: str | ||
:param password: Required. The password used to authenticate with the | ||
source registry. | ||
:type password: str | ||
""" | ||
|
||
_validation = { | ||
'password': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'username': {'key': 'username', 'type': 'str'}, | ||
'password': {'key': 'password', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, **kwargs): | ||
super(ImportSourceCredentials, self).__init__(**kwargs) | ||
self.username = kwargs.get('username', None) | ||
self.password = kwargs.get('password', None) |
39 changes: 39 additions & 0 deletions
39
.../azure/mgmt/containerregistry/v2018_02_01_preview/models/import_source_credentials_py3.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# coding=utf-8 | ||
# -------------------------------------------------------------------------- | ||
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# Licensed under the MIT License. See License.txt in the project root for | ||
# license information. | ||
# | ||
# Code generated by Microsoft (R) AutoRest Code Generator. | ||
# Changes may cause incorrect behavior and will be lost if the code is | ||
# regenerated. | ||
# -------------------------------------------------------------------------- | ||
|
||
from msrest.serialization import Model | ||
|
||
|
||
class ImportSourceCredentials(Model): | ||
"""ImportSourceCredentials. | ||
All required parameters must be populated in order to send to Azure. | ||
:param username: The username to authenticate with the source registry. | ||
:type username: str | ||
:param password: Required. The password used to authenticate with the | ||
source registry. | ||
:type password: str | ||
""" | ||
|
||
_validation = { | ||
'password': {'required': True}, | ||
} | ||
|
||
_attribute_map = { | ||
'username': {'key': 'username', 'type': 'str'}, | ||
'password': {'key': 'password', 'type': 'str'}, | ||
} | ||
|
||
def __init__(self, *, password: str, username: str=None, **kwargs) -> None: | ||
super(ImportSourceCredentials, self).__init__(**kwargs) | ||
self.username = username | ||
self.password = password |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.