From 47f7ca96c6fabfadf50c86351dec7887ab400233 Mon Sep 17 00:00:00 2001 From: mccoyp Date: Wed, 15 Mar 2023 20:48:34 -0700 Subject: [PATCH] Update changelogs; tags type hint --- sdk/keyvault/azure-keyvault-administration/CHANGELOG.md | 2 +- sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md | 2 +- sdk/keyvault/azure-keyvault-keys/CHANGELOG.md | 2 +- sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md | 2 +- .../azure-keyvault-secrets/azure/keyvault/secrets/_client.py | 4 ++-- .../azure/keyvault/secrets/aio/_client.py | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md b/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md index 22bc7a2cc8f3..5cb352b33a13 100644 --- a/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md +++ b/sdk/keyvault/azure-keyvault-administration/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 4.3.0 (2023-03-15) +## 4.3.0 (2023-03-16) ### Features Added - Added support for service API version `7.4` diff --git a/sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md b/sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md index 6ff4b0473883..4efe136affda 100644 --- a/sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md +++ b/sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 4.7.0 (2023-03-15) +## 4.7.0 (2023-03-16) ### Features Added - Added support for service API version `7.4` diff --git a/sdk/keyvault/azure-keyvault-keys/CHANGELOG.md b/sdk/keyvault/azure-keyvault-keys/CHANGELOG.md index 11ec02fd29aa..c6cdf959ec52 100644 --- a/sdk/keyvault/azure-keyvault-keys/CHANGELOG.md +++ b/sdk/keyvault/azure-keyvault-keys/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 4.8.0 (2023-03-15) +## 4.8.0 (2023-03-16) ### Features Added - Added support for service API version `7.4` diff --git a/sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md b/sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md index 7011db594001..d327e3713f5b 100644 --- a/sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md +++ b/sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md @@ -1,6 +1,6 @@ # Release History -## 4.7.0 (2023-03-15) +## 4.7.0 (2023-03-16) ### Features Added - Added support for service API version `7.4` diff --git a/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/_client.py b/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/_client.py index 005b5f921aea..6909c93dda9b 100644 --- a/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/_client.py +++ b/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/_client.py @@ -89,7 +89,7 @@ def set_secret(self, name: str, value: str, **kwargs) -> KeyVaultSecret: :keyword bool enabled: Whether the secret is enabled for use. :keyword tags: Application specific metadata in the form of key-value pairs. - :paramtype tags: Dict[str, str] + :paramtype tags: Dict[str, str] or None :keyword str content_type: An arbitrary string indicating the type of the secret, e.g. 'password' :keyword ~datetime.datetime not_before: Not before date of the secret in UTC :keyword ~datetime.datetime expires_on: Expiry date of the secret in UTC @@ -146,7 +146,7 @@ def update_secret_properties(self, name: str, version: "Optional[str]" = None, * :keyword bool enabled: Whether the secret is enabled for use. :keyword tags: Application specific metadata in the form of key-value pairs. - :paramtype tags: Dict[str, str] + :paramtype tags: Dict[str, str] or None :keyword str content_type: An arbitrary string indicating the type of the secret, e.g. 'password' :keyword ~datetime.datetime not_before: Not before date of the secret in UTC :keyword ~datetime.datetime expires_on: Expiry date of the secret in UTC diff --git a/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/aio/_client.py b/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/aio/_client.py index e35a5926578e..06ba9e6d5727 100644 --- a/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/aio/_client.py +++ b/sdk/keyvault/azure-keyvault-secrets/azure/keyvault/secrets/aio/_client.py @@ -76,7 +76,7 @@ async def set_secret(self, name: str, value: str, **kwargs) -> KeyVaultSecret: :keyword bool enabled: Whether the secret is enabled for use. :keyword tags: Application specific metadata in the form of key-value pairs. - :paramtype tags: Dict[str, str] + :paramtype tags: Dict[str, str] or None :keyword str content_type: An arbitrary string indicating the type of the secret, e.g. 'password' :keyword ~datetime.datetime not_before: Not before date of the secret in UTC :keyword ~datetime.datetime expires_on: Expiry date of the secret in UTC @@ -132,7 +132,7 @@ async def update_secret_properties( :keyword bool enabled: Whether the secret is enabled for use. :keyword tags: Application specific metadata in the form of key-value pairs. - :paramtype tags: Dict[str, str] + :paramtype tags: Dict[str, str] or None :keyword str content_type: An arbitrary string indicating the type of the secret, e.g. 'password' :keyword ~datetime.datetime not_before: Not before date of the secret in UTC :keyword ~datetime.datetime expires_on: Expiry date of the secret in UTC