-
Notifications
You must be signed in to change notification settings - Fork 449
chore: Regional API domain processing #928
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
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
71a34d1
Chore: Regional API domain processing
manisha1997 515b1ed
Merge branch 'main' into regional-api-domain-processing
manisha1997 a26a4fa
Chore: Regional API domain processing
manisha1997 5f4ad71
Chore: Regional API domain processing
manisha1997 30246bf
Chore: Regional API domain processing
manisha1997 ee512b7
Chore: Regional API domain processing
manisha1997 931cfb4
Chore: Regional API domain processing
manisha1997 bee95a3
Chore: Regional API domain processing
manisha1997 7e275ae
Chore: Regional API domain processing
manisha1997 0b1badd
Chore: Regional API domain processing
manisha1997 6f4f17c
Chore: Regional API domain processing
manisha1997 d420db2
Chore: Regional API domain processing
manisha1997 80c8f7e
Chore: Regional API domain processing
manisha1997 f028c02
Chore: Regional API domain processing
manisha1997 b88a705
Chore: Regional API domain processing
manisha1997 0af8832
Update src/main/java/com/twilio/type/RegionEndpoints.java
manisha1997 4405a95
Update src/main/java/com/twilio/http/TwilioRestClient.java
manisha1997 1671eba
Chore: Regional API domain processing
manisha1997 d884ee3
Update src/main/java/com/twilio/Twilio.java
manisha1997 62221c4
Chore: Regional API domain processing
manisha1997 d070528
Chore: Regional API domain processing
manisha1997 9ea49f3
Chore: Regional API domain processing
manisha1997 b62be7f
Update src/main/java/com/twilio/http/TwilioRestClient.java
manisha1997 d4d255d
Update src/main/java/com/twilio/Twilio.java
manisha1997 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
Some comments aren't visible on the classic Files Changed page.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| package com.twilio.type; | ||
|
|
||
| import java.util.Collections; | ||
| import java.util.HashMap; | ||
| import java.util.Map; | ||
|
|
||
| /** | ||
| * Provides region-to-edge mappings for Twilio's regional processing. | ||
| * <p> | ||
| * This class is part of the transition away from direct edge configuration, | ||
| * allowing clients to use region identifiers that are mapped to the appropriate edge endpoints. | ||
| * It is intended to centralize and simplify region-to-edge lookups for Twilio services. | ||
| */ | ||
| public class RegionEndpoints { | ||
|
Check warning on line 14 in src/main/java/com/twilio/type/RegionEndpoints.java
|
||
| private static Map<String, String> regionMap = new HashMap<>(); | ||
manisha1997 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| static { | ||
| regionMap.put("au1", "sydney"); | ||
| regionMap.put("br1", "sao-paulo"); | ||
| regionMap.put("ie1", "dublin"); | ||
| regionMap.put("de1", "frankfurt"); | ||
| regionMap.put("jp1", "tokyo"); | ||
| regionMap.put("jp2", "osaka"); | ||
| regionMap.put("sg1", "singapore"); | ||
| regionMap.put("us1", "ashburn"); | ||
| regionMap.put("us2", "umatilla"); | ||
| } | ||
| public static Map<String, String> getRegions() { | ||
| return Collections.unmodifiableMap(regionMap); | ||
| } | ||
| } | ||
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
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.