-
Notifications
You must be signed in to change notification settings - Fork 136
Keys update #6491
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
Merged
Merged
Keys update #6491
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
4c1897d
Generate files
gearama d758c5b
GetKey done
gearama 5649881
Creates done
gearama 80d79d7
GetDeletedKey
gearama f748b86
StartDeleteKey
gearama 7846149
StartRecoverDeleted
gearama bf1a043
backup/restore
gearama ff0a941
purge/rotate
gearama 0d13058
import
gearama b43d269
update properties
gearama f37e827
get/update rotation policy
gearama 7147f01
release key
gearama f61fd40
GetProps of keys
gearama 547d249
GetVersions
gearama 1e5bed5
GetDeletedKeys
gearama e86e6ac
remove test used for test
gearama d49217a
cleanup tests
gearama 36dfdb5
remove some methods
gearama 53d8906
tests
gearama 759ec75
PR pipeline
gearama 7fd50bd
more PR
gearama a008ae5
fsdfs
gearama 3fe9d59
clang
gearama 07bccfb
update to hsm
gearama 634954d
PR comments
gearama 3996b27
PR
gearama 5cc6171
rwe
gearama c7f35da
Rerecord for HSM and fix get
gearama d990cb6
gdf
gearama File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
sdk/keyvault/azure-security-keyvault-keys/src/generated/get_deleted_keys_paged_response.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
// Code generated by Microsoft (R) TypeSpec Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
|
||
#include "key_vault_client.hpp" | ||
#include "key_vault_client_paged_responses.hpp" | ||
|
||
using namespace Azure::Security::KeyVault::Keys::_detail; | ||
|
||
void GetDeletedKeysPagedResponse::OnNextPage(Core::Context const& context) | ||
{ | ||
const auto pageToken = this->NextPageToken; | ||
this->m_options.NextPageToken = pageToken.Value(); | ||
*this = this->m_client->GetDeletedKeys(this->m_options, context); | ||
this->CurrentPageToken = pageToken.Value(); | ||
} |
17 changes: 17 additions & 0 deletions
17
sdk/keyvault/azure-security-keyvault-keys/src/generated/get_key_versions_paged_response.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
// Code generated by Microsoft (R) TypeSpec Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
|
||
#include "key_vault_client.hpp" | ||
#include "key_vault_client_paged_responses.hpp" | ||
|
||
using namespace Azure::Security::KeyVault::Keys::_detail; | ||
|
||
void GetKeyVersionsPagedResponse::OnNextPage(Core::Context const& context) | ||
{ | ||
const auto pageToken = this->NextPageToken; | ||
this->m_options.NextPageToken = pageToken.Value(); | ||
*this = this->m_client->GetKeyVersions(this->m_keyName, this->m_options, context); | ||
this->CurrentPageToken = pageToken.Value(); | ||
} |
17 changes: 17 additions & 0 deletions
17
sdk/keyvault/azure-security-keyvault-keys/src/generated/get_keys_paged_response.cpp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for license information. | ||
// Code generated by Microsoft (R) TypeSpec Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is regenerated. | ||
|
||
#include "key_vault_client.hpp" | ||
#include "key_vault_client_paged_responses.hpp" | ||
|
||
using namespace Azure::Security::KeyVault::Keys::_detail; | ||
|
||
void GetKeysPagedResponse::OnNextPage(Core::Context const& context) | ||
{ | ||
const auto pageToken = this->NextPageToken; | ||
this->m_options.NextPageToken = pageToken.Value(); | ||
*this = this->m_client->GetKeys(this->m_options, context); | ||
this->CurrentPageToken = pageToken.Value(); | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.