-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Update kv secrets sync stack #30136
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
Update kv secrets sync stack #30136
Conversation
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Show resolved
Hide resolved
kasobol-msft
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
overall lgtm.
please add couple of tests that assert that right pipeline/httpclient apis are called.
...ty-keyvault-secrets/src/main/java/com/azure/security/keyvault/secrets/SecretAsyncClient.java
Outdated
Show resolved
Hide resolved
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Show resolved
Hide resolved
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Outdated
Show resolved
Hide resolved
|
API change check APIView has identified API level changes in this PR and created following API reviews. |
...ty-keyvault-secrets/src/main/java/com/azure/security/keyvault/secrets/SecretAsyncClient.java
Show resolved
Hide resolved
...ty-keyvault-secrets/src/main/java/com/azure/security/keyvault/secrets/SecretAsyncClient.java
Outdated
Show resolved
Hide resolved
...ecurity-keyvault-secrets/src/main/java/com/azure/security/keyvault/secrets/SecretClient.java
Outdated
Show resolved
Hide resolved
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Outdated
Show resolved
Hide resolved
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Outdated
Show resolved
Hide resolved
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Show resolved
Hide resolved
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Show resolved
Hide resolved
sdk/keyvault/azure-security-keyvault-secrets/src/main/java/module-info.java
Outdated
Show resolved
Hide resolved
| Configuration buildConfiguration = | ||
| (configuration == null) ? Configuration.getGlobalConfiguration().clone() : configuration; | ||
|
|
||
| URL buildEndpoint = getBuildEndpoint(buildConfiguration); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we follow the same thing as KV keys here and return a String instead of an URL.
String buildEndpoint = getBuildEndpoint(buildConfiguration);
...crets/src/main/java/com/azure/security/keyvault/secrets/implementation/SecretClientImpl.java
Outdated
Show resolved
Hide resolved
…String to SecretServiceVersion.
…Updated POM to allow for this on tests runs for Java 9+.
Integrates Sync Stack in KV Secrets SDK.
Note: Polling and List APIs will be Syncified later as support for them lands in Azure Core.
Enables Sync Rest Proxy by default for KV APIs.