Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR track2_azure-mgmt-cosmosdb] update readme #9571

Closed
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/python@5.12.0",
"@autorest/modelerfour@4.19.3"
],
"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/python@5.12.0 --use=@autorest/modelerfour@4.19.3 --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/python@5.12.0 --use=@autorest/modelerfour@4.19.3 --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