Skip to content
Closed
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
4 changes: 2 additions & 2 deletions sdk/cosmos/azure-mgmt-cosmosdb/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"@autorest/[email protected]",
"@autorest/[email protected]"
],
"commit": "c731fa175f77b7b53ef0579eb877c61b5d0467d6",
"commit": "85eb3e7dbe23e025b9c838bef309f11a05768f10",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"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",
"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",
"readme": "specification/cosmos-db/resource-manager/readme.md"
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "7.0.0b3"
VERSION = "0.7.0"
Original file line number Diff line number Diff line change
Expand Up @@ -6602,12 +6602,15 @@ class KeyWrapMetadata(msrest.serialization.Model):
:vartype type: str
:ivar value: Reference / link to the KeyEncryptionKey.
:vartype value: str
:ivar algorithm: Algorithm used in wrapping and unwrapping of the data encryption key.
:vartype algorithm: str
"""

_attribute_map = {
'name': {'key': 'name', 'type': 'str'},
'type': {'key': 'type', 'type': 'str'},
'value': {'key': 'value', 'type': 'str'},
'algorithm': {'key': 'algorithm', 'type': 'str'},
}

def __init__(
Expand All @@ -6616,6 +6619,7 @@ def __init__(
name: Optional[str] = None,
type: Optional[str] = None,
value: Optional[str] = None,
algorithm: Optional[str] = None,
**kwargs
):
"""
Expand All @@ -6625,11 +6629,14 @@ def __init__(
:paramtype type: str
:keyword value: Reference / link to the KeyEncryptionKey.
:paramtype value: str
:keyword algorithm: Algorithm used in wrapping and unwrapping of the data encryption key.
:paramtype algorithm: str
"""
super(KeyWrapMetadata, self).__init__(**kwargs)
self.name = name
self.type = type
self.value = value
self.algorithm = algorithm


class ListBackups(msrest.serialization.Model):
Expand Down