-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
[App Config] FeatureFlag and SecretReference support #14342
Conversation
…he only signature that actually needs to change is setConfigurationSetting, and even then just to express that there are additional types that you can send in.
- Users adding in their own sync tokens (received from EventGrid) - Deserializing and working with FeatureFlags or KeyVaultReferences
…ers with a string union as the parameter.
This pull request is protected by Check Enforcer. What is Check Enforcer?Check Enforcer helps ensure all pull requests are covered by at least one check-run (typically an Azure Pipeline). When all check-runs associated with this pull request pass then Check Enforcer itself will pass. Why am I getting this message?You are getting this message because Check Enforcer did not detect any check-runs being associated with this pull request within five minutes. This may indicate that your pull request is not covered by any pipelines and so Check Enforcer is correctly blocking the pull request being merged. What should I do now?If the check-enforcer check-run is not passing and all other check-runs associated with this PR are passing (excluding license-cla) then you could try telling Check Enforcer to evaluate your pull request again. You can do this by adding a comment to this pull request as follows: What if I am onboarding a new service?Often, new services do not have validation pipelines associated with them, in order to bootstrap pipelines for a new service, you can issue the following command as a pull request comment: |
…to harshan/app-config/next-gen
### TODOs - [x] Add the new `updateSyncToken` method to `AppConfigurationClient` (Picked up pieces from @richardpark-msft's work here #14342.) - [x] Add a unit test - [x] ~~Hoping to add a live test by leveraging the eventgrid SDK~~ - [x] Changelog - [x] Hold off merging - wait for 1.1.1 to be released - [x] What's the new version number for preview? - `1.2.0-beta.1` fine? Reference: PR from .NET Azure/azure-sdk-for-net#18487
sdk/appconfiguration/app-configuration/review/app-configuration.api.md
Outdated
Show resolved
Hide resolved
sdk/appconfiguration/app-configuration/review/app-configuration.api.md
Outdated
Show resolved
Hide resolved
…to harshan/app-config/next-gen
sdk/appconfiguration/app-configuration/test/public/index.spec.ts
Outdated
Show resolved
Hide resolved
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.
Some nits, some ideas. Nothing fatal, looks pretty good for a preview.
sdk/appconfiguration/app-configuration/src/appConfigurationClient.ts
Outdated
Show resolved
Hide resolved
sdk/appconfiguration/app-configuration/test/public/index.spec.ts
Outdated
Show resolved
Hide resolved
sdk/appconfiguration/app-configuration/test/public/index.spec.ts
Outdated
Show resolved
Hide resolved
sdk/appconfiguration/app-configuration/test/public/index.spec.ts
Outdated
Show resolved
Hide resolved
sdk/appconfiguration/app-configuration/test/samplesForApiReview.ts
Outdated
Show resolved
Hide resolved
sdk/appconfiguration/app-configuration/test/public/index.spec.ts
Outdated
Show resolved
Hide resolved
Thanks for the great starter code and for all the help @richardpark-msft! |
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.
Looks great! Just one nit to mark an export as internal.
Hello @HarshaNalluru! Because this pull request has the p.s. you can customize the way I help with merging this pull request, such as holding this pull request until a specific person approves. Simply @mention me (
|
### TODOs - [x] Add the new `updateSyncToken` method to `AppConfigurationClient` (Picked up pieces from @richardpark-msft's work here Azure#14342.) - [x] Add a unit test - [x] ~~Hoping to add a live test by leveraging the eventgrid SDK~~ - [x] Changelog - [x] Hold off merging - wait for 1.1.1 to be released - [x] What's the new version number for preview? - `1.2.0-beta.1` fine? Reference: PR from .NET Azure/azure-sdk-for-net#18487
Reference: Azure/azure-sdk-for-net#18487 This PR adds the - [x] FeatureFlag support - [x] SecretReference support - [x] Tests for both - [x] Samples for both - [x] Changelog - [x] Links to the samples in the readme
Reference: Azure/azure-sdk-for-net#18487
This PR adds the