Skip to content

Commit 36f142c

Browse files
author
SDKAuto
committed
CodeGen from PR 18230 in Azure/azure-rest-api-specs
Merge e391ee627007d598e3fff71001858711d6db15f0 into 2abe647120f14bb145968a5543ead8ed51394498
1 parent 14ff5a8 commit 36f142c

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

sdk/cosmos/azure-mgmt-cosmosdb/_meta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"@autorest/[email protected]",
55
"@autorest/[email protected]"
66
],
7-
"commit": "c731fa175f77b7b53ef0579eb877c61b5d0467d6",
7+
"commit": "85eb3e7dbe23e025b9c838bef309f11a05768f10",
88
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
9-
"autorest_command": "autorest specification/cosmos-db/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
9+
"autorest_command": "autorest specification/cosmos-db/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/[email protected] --use=@autorest/[email protected] --version=3.7.2",
1010
"readme": "specification/cosmos-db/resource-manager/readme.md"
1111
}

sdk/cosmos/azure-mgmt-cosmosdb/azure/mgmt/cosmosdb/_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 = "7.0.0b3"
9+
VERSION = "0.7.0"

sdk/cosmos/azure-mgmt-cosmosdb/azure/mgmt/cosmosdb/models/_models_py3.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6602,12 +6602,15 @@ class KeyWrapMetadata(msrest.serialization.Model):
66026602
:vartype type: str
66036603
:ivar value: Reference / link to the KeyEncryptionKey.
66046604
:vartype value: str
6605+
:ivar algorithm: Algorithm used in wrapping and unwrapping of the data encryption key.
6606+
:vartype algorithm: str
66056607
"""
66066608

66076609
_attribute_map = {
66086610
'name': {'key': 'name', 'type': 'str'},
66096611
'type': {'key': 'type', 'type': 'str'},
66106612
'value': {'key': 'value', 'type': 'str'},
6613+
'algorithm': {'key': 'algorithm', 'type': 'str'},
66116614
}
66126615

66136616
def __init__(
@@ -6616,6 +6619,7 @@ def __init__(
66166619
name: Optional[str] = None,
66176620
type: Optional[str] = None,
66186621
value: Optional[str] = None,
6622+
algorithm: Optional[str] = None,
66196623
**kwargs
66206624
):
66216625
"""
@@ -6625,11 +6629,14 @@ def __init__(
66256629
:paramtype type: str
66266630
:keyword value: Reference / link to the KeyEncryptionKey.
66276631
:paramtype value: str
6632+
:keyword algorithm: Algorithm used in wrapping and unwrapping of the data encryption key.
6633+
:paramtype algorithm: str
66286634
"""
66296635
super(KeyWrapMetadata, self).__init__(**kwargs)
66306636
self.name = name
66316637
self.type = type
66326638
self.value = value
6639+
self.algorithm = algorithm
66336640

66346641

66356642
class ListBackups(msrest.serialization.Model):

0 commit comments

Comments
 (0)