-
Couldn't load subscription status.
- Fork 18
[Admin] Table Storage Connection Setting #299
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
justinyoo
merged 23 commits into
aliencube:main
from
sikutisa:feature/208-table-storage-connection
Sep 12, 2024
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
d2ca462
add table storage cofig to appsettings.json
sikutisa 1e932d5
add StorageAccountSettings
sikutisa 2e267c1
add AddTableStorageService
sikutisa c491f0a
inject TableStorageClient Dependency
sikutisa a49ff98
remove container name property
sikutisa a694ff9
sync fork to upstream
sikutisa 4db5c7c
fix StorageAccountSettings
sikutisa 8f33257
fix AddTableStorageService
sikutisa dd11045
fix AddTableStorageService
sikutisa 40ade5e
refactor appsettings.json
sikutisa 3e416a1
refactor Configurations
sikutisa 1418525
refactor WithKeyVault
sikutisa cdf174c
refactor AddTableStorageService
sikutisa 5cc0d0e
sync fork to upstream
sikutisa f57decc
update KeyvaultSettings and tests
sikutisa ceaa16b
fix test
sikutisa 71d979a
Revert "fix test"
sikutisa d134ed3
sync fork to upstream
sikutisa c7f34e6
refactor KeyVaultSettings
sikutisa 4ba8666
fix tests
sikutisa 02946bc
add KeyVaultSecretNames.cs
sikutisa f4e375c
remove unnecessary using
sikutisa 6628d53
add validation for null or empty table storage secret name
sikutisa 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,18 @@ | ||
| namespace AzureOpenAIProxy.ApiApp; | ||
|
|
||
| /// <summary> | ||
| /// This represents the keyvault secret names in appsettings.json | ||
| /// </summary> | ||
| public static class KeyVaultSecretNames | ||
| { | ||
| /// <summary> | ||
| /// Keyvault secret name for OpenAI instance settings | ||
| /// </summary> | ||
| public const string OpenAI = "OpenAI"; | ||
|
|
||
| /// <summary> | ||
| /// Keyvault secret name for table storage connection string | ||
| /// </summary> | ||
| public const string Storage = "Storage"; | ||
|
|
||
| } |
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
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.