Skip to content

Commit b5590b3

Browse files
Azure CLI BotSDKAutomsyyc
authored
[AutoRelease] t2-keyvault-2021-11-11-01788 (#21712)
* CodeGen from PR 16536 in Azure/azure-rest-api-specs Add {release|rotate}-related AKV key permissions for 2021-06-01-preview. (#16536) * version,CHANGELOG * test * version Co-authored-by: SDKAuto <[email protected]> Co-authored-by: PythonSdkPipelines <PythonSdkPipelines> Co-authored-by: msyyc <[email protected]>
1 parent a44dd20 commit b5590b3

File tree

12 files changed

+1178
-603
lines changed

12 files changed

+1178
-603
lines changed

sdk/keyvault/azure-mgmt-keyvault/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Release History
22

3+
## 9.3.0 (2021-11-11)
4+
5+
**Features**
6+
7+
- Added some enum value
8+
9+
310
## 9.2.0 (2021-10-15)
411

512
**Features**

sdk/keyvault/azure-mgmt-keyvault/_meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"@autorest/[email protected]",
55
"@autorest/[email protected]"
66
],
7-
"commit": "fd05d0501b380a63a6a02dadfee7afd1a5c697ba",
7+
"commit": "f2aaaa76e3853dbfbee6558a29cee9b7c66798dc",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
99
"autorest_command": "autorest specification/keyvault/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.4.5",
1010
"readme": "specification/keyvault/resource-manager/readme.md"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@
55
# license information.
66
# --------------------------------------------------------------------------
77

8-
VERSION = "9.2.0"
8+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2016_10_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "9.2.0"
9+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2018_02_14/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "9.2.0"
9+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2019_09_01/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "9.2.0"
9+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2020_04_01_preview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "9.2.0"
9+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2021_04_01_preview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "9.2.0"
9+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2021_06_01_preview/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
77
# --------------------------------------------------------------------------
88

9-
VERSION = "9.2.0"
9+
VERSION = "9.3.0"

sdk/keyvault/azure-mgmt-keyvault/azure/mgmt/keyvault/v2021_06_01_preview/models/_key_vault_management_client_enums.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ class JsonWebKeyOperation(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
106106
WRAP_KEY = "wrapKey"
107107
UNWRAP_KEY = "unwrapKey"
108108
IMPORT_ENUM = "import"
109+
RELEASE = "release"
109110

110111
class JsonWebKeyType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
111112
"""The type of the key. For valid values, see JsonWebKeyType.
@@ -135,8 +136,10 @@ class KeyPermissions(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
135136
RESTORE = "restore"
136137
RECOVER = "recover"
137138
PURGE = "purge"
138-
RELEASE = "release"
139139
ROTATE = "rotate"
140+
GETROTATIONPOLICY = "getrotationpolicy"
141+
SETROTATIONPOLICY = "setrotationpolicy"
142+
RELEASE = "release"
140143

141144
class KeyRotationPolicyActionType(with_metaclass(_CaseInsensitiveEnumMeta, str, Enum)):
142145
"""The type of action.

0 commit comments

Comments
 (0)