Skip to content
Merged
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
2 changes: 1 addition & 1 deletion sdk/keyvault/azure-keyvault-administration/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure-keyvault-certificates/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure-keyvault-keys/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
2 changes: 1 addition & 1 deletion sdk/keyvault/azure-keyvault-secrets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down