-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1176 from hashicorp/f-generate-partitions-regions
Add top-level `endpoints` package containing AWS partition and Region metadata
- Loading branch information
Showing
14 changed files
with
924 additions
and
176 deletions.
There are no files selected for viewing
This file contains 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 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 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,8 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package endpoints | ||
|
||
const ( | ||
AwsGlobalRegionID = "aws-global" // AWS Standard global region. | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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,6 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
//go:generate go run ../internal/generate/endpoints/main.go -- https://raw.githubusercontent.com/aws/aws-sdk-go-v2/main/codegen/smithy-aws-go-codegen/src/main/resources/software/amazon/smithy/aws/go/codegen/endpoints.json | ||
|
||
package endpoints |
This file contains 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,66 @@ | ||
// Copyright (c) HashiCorp, Inc. | ||
// SPDX-License-Identifier: MPL-2.0 | ||
|
||
package endpoints | ||
|
||
import ( | ||
"maps" | ||
"regexp" | ||
) | ||
|
||
// Partition represents an AWS partition. | ||
// See https://docs.aws.amazon.com/whitepapers/latest/aws-fault-isolation-boundaries/partitions.html. | ||
type Partition struct { | ||
id string | ||
name string | ||
dnsSuffix string | ||
regionRegex *regexp.Regexp | ||
regions map[string]Region | ||
} | ||
|
||
// ID returns the identifier of the partition. | ||
func (p Partition) ID() string { | ||
return p.id | ||
} | ||
|
||
// Name returns the name of the partition. | ||
func (p Partition) Name() string { | ||
return p.name | ||
} | ||
|
||
// DNSSuffix returns the base domain name of the partition. | ||
func (p Partition) DNSSuffix() string { | ||
return p.dnsSuffix | ||
} | ||
|
||
// RegionRegex return the regular expression that matches Region IDs for the partition. | ||
func (p Partition) RegionRegex() *regexp.Regexp { | ||
return p.regionRegex | ||
} | ||
|
||
// Regions returns a map of Regions for the partition, indexed by their ID. | ||
func (p Partition) Regions() map[string]Region { | ||
return maps.Clone(p.regions) | ||
} | ||
|
||
// DefaultPartitions returns a list of the partitions. | ||
func DefaultPartitions() []Partition { | ||
ps := make([]Partition, 0, len(partitions)) | ||
|
||
for _, p := range partitions { | ||
ps = append(ps, p) | ||
} | ||
|
||
return ps | ||
} | ||
|
||
// PartitionForRegion returns the first partition which includes the specific Region. | ||
func PartitionForRegion(ps []Partition, regionID string) (Partition, bool) { | ||
for _, p := range ps { | ||
if _, ok := p.regions[regionID]; ok || p.regionRegex.MatchString(regionID) { | ||
return p, true | ||
} | ||
} | ||
|
||
return Partition{}, false | ||
} |
Oops, something went wrong.