diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/__init__.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/__init__.py index 632004dc6fb7..3520393b8c1a 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/__init__.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/__init__.py @@ -135,6 +135,7 @@ WebhookAction, TokenCertificateName, TokenPasswordName, + TokenStatus, Status, ) @@ -211,5 +212,6 @@ 'WebhookAction', 'TokenCertificateName', 'TokenPasswordName', + 'TokenStatus', 'Status', ] diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_container_registry_management_client_enums.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_container_registry_management_client_enums.py index 192f8679b629..5ca9bb26896f 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_container_registry_management_client_enums.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_container_registry_management_client_enums.py @@ -105,6 +105,12 @@ class TokenPasswordName(str, Enum): password2 = "password2" +class TokenStatus(str, Enum): + + enabled = "enabled" + disabled = "disabled" + + class Status(str, Enum): enabled = "enabled" diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models.py index 9f23a709afce..6e8ace8ac856 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models.py @@ -1370,7 +1370,7 @@ class Token(ProxyResource): :param status: The status of the token example enabled or disabled. Possible values include: 'enabled', 'disabled' :type status: str or - ~azure.mgmt.containerregistry.v2019_05_01_preview.models.Status + ~azure.mgmt.containerregistry.v2019_05_01_preview.models.TokenStatus """ _validation = { @@ -1463,7 +1463,7 @@ class TokenPassword(Model): Variables are only populated by the server, and will be ignored when sending a request. - :param creation_time: The password created datetime of the password. + :param creation_time: The creation datetime of the password. :type creation_time: datetime :param expiry: The expiry datetime of the password. :type expiry: datetime diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models_py3.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models_py3.py index 88a6c8a6eaef..b6805861bca6 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models_py3.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_05_01_preview/models/_models_py3.py @@ -1370,7 +1370,7 @@ class Token(ProxyResource): :param status: The status of the token example enabled or disabled. Possible values include: 'enabled', 'disabled' :type status: str or - ~azure.mgmt.containerregistry.v2019_05_01_preview.models.Status + ~azure.mgmt.containerregistry.v2019_05_01_preview.models.TokenStatus """ _validation = { @@ -1463,7 +1463,7 @@ class TokenPassword(Model): Variables are only populated by the server, and will be ignored when sending a request. - :param creation_time: The password created datetime of the password. + :param creation_time: The creation datetime of the password. :type creation_time: datetime :param expiry: The expiry datetime of the password. :type expiry: datetime diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/__init__.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/__init__.py index ab873ab347ee..c7f12ac0fc03 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/__init__.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/__init__.py @@ -253,6 +253,7 @@ SecretObjectType, TokenCertificateName, TokenPasswordName, + TokenStatus, Status, ) @@ -397,5 +398,6 @@ 'SecretObjectType', 'TokenCertificateName', 'TokenPasswordName', + 'TokenStatus', 'Status', ] diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_container_registry_management_client_enums.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_container_registry_management_client_enums.py index 01a9df47ac51..e5529f9f6e7e 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_container_registry_management_client_enums.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_container_registry_management_client_enums.py @@ -215,6 +215,12 @@ class TokenPasswordName(str, Enum): password2 = "password2" +class TokenStatus(str, Enum): + + enabled = "enabled" + disabled = "disabled" + + class Status(str, Enum): enabled = "enabled" diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py index ee78a066af70..a3e4e2868c48 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models.py @@ -3407,7 +3407,7 @@ class Token(ProxyResource): :param status: The status of the token example enabled or disabled. Possible values include: 'enabled', 'disabled' :type status: str or - ~azure.mgmt.containerregistry.v2019_06_01_preview.models.Status + ~azure.mgmt.containerregistry.v2019_06_01_preview.models.TokenStatus """ _validation = { @@ -3500,7 +3500,7 @@ class TokenPassword(Model): Variables are only populated by the server, and will be ignored when sending a request. - :param creation_time: The password created datetime of the password. + :param creation_time: The creation datetime of the password. :type creation_time: datetime :param expiry: The expiry datetime of the password. :type expiry: datetime diff --git a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py index 18f9d93dcf5a..b6a9ebb8e8e3 100644 --- a/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py +++ b/sdk/containerregistry/azure-mgmt-containerregistry/azure/mgmt/containerregistry/v2019_06_01_preview/models/_models_py3.py @@ -3407,7 +3407,7 @@ class Token(ProxyResource): :param status: The status of the token example enabled or disabled. Possible values include: 'enabled', 'disabled' :type status: str or - ~azure.mgmt.containerregistry.v2019_06_01_preview.models.Status + ~azure.mgmt.containerregistry.v2019_06_01_preview.models.TokenStatus """ _validation = { @@ -3500,7 +3500,7 @@ class TokenPassword(Model): Variables are only populated by the server, and will be ignored when sending a request. - :param creation_time: The password created datetime of the password. + :param creation_time: The creation datetime of the password. :type creation_time: datetime :param expiry: The expiry datetime of the password. :type expiry: datetime