mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-05-20 02:17:44 +08:00

vendor github.com/aws/aws-sdk-go-v2/config v1.26.6 and related dependencies. Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
81 lines
2.5 KiB
Go
81 lines
2.5 KiB
Go
package http
|
|
|
|
import smithy "github.com/aws/smithy-go"
|
|
|
|
type (
|
|
sigV4SigningNameKey struct{}
|
|
sigV4SigningRegionKey struct{}
|
|
|
|
sigV4ASigningNameKey struct{}
|
|
sigV4ASigningRegionsKey struct{}
|
|
|
|
isUnsignedPayloadKey struct{}
|
|
disableDoubleEncodingKey struct{}
|
|
)
|
|
|
|
// GetSigV4SigningName gets the signing name from Properties.
|
|
func GetSigV4SigningName(p *smithy.Properties) (string, bool) {
|
|
v, ok := p.Get(sigV4SigningNameKey{}).(string)
|
|
return v, ok
|
|
}
|
|
|
|
// SetSigV4SigningName sets the signing name on Properties.
|
|
func SetSigV4SigningName(p *smithy.Properties, name string) {
|
|
p.Set(sigV4SigningNameKey{}, name)
|
|
}
|
|
|
|
// GetSigV4SigningRegion gets the signing region from Properties.
|
|
func GetSigV4SigningRegion(p *smithy.Properties) (string, bool) {
|
|
v, ok := p.Get(sigV4SigningRegionKey{}).(string)
|
|
return v, ok
|
|
}
|
|
|
|
// SetSigV4SigningRegion sets the signing region on Properties.
|
|
func SetSigV4SigningRegion(p *smithy.Properties, region string) {
|
|
p.Set(sigV4SigningRegionKey{}, region)
|
|
}
|
|
|
|
// GetSigV4ASigningName gets the v4a signing name from Properties.
|
|
func GetSigV4ASigningName(p *smithy.Properties) (string, bool) {
|
|
v, ok := p.Get(sigV4ASigningNameKey{}).(string)
|
|
return v, ok
|
|
}
|
|
|
|
// SetSigV4ASigningName sets the signing name on Properties.
|
|
func SetSigV4ASigningName(p *smithy.Properties, name string) {
|
|
p.Set(sigV4ASigningNameKey{}, name)
|
|
}
|
|
|
|
// GetSigV4ASigningRegion gets the v4a signing region set from Properties.
|
|
func GetSigV4ASigningRegions(p *smithy.Properties) ([]string, bool) {
|
|
v, ok := p.Get(sigV4ASigningRegionsKey{}).([]string)
|
|
return v, ok
|
|
}
|
|
|
|
// SetSigV4ASigningRegions sets the v4a signing region set on Properties.
|
|
func SetSigV4ASigningRegions(p *smithy.Properties, regions []string) {
|
|
p.Set(sigV4ASigningRegionsKey{}, regions)
|
|
}
|
|
|
|
// GetIsUnsignedPayload gets whether the payload is unsigned from Properties.
|
|
func GetIsUnsignedPayload(p *smithy.Properties) (bool, bool) {
|
|
v, ok := p.Get(isUnsignedPayloadKey{}).(bool)
|
|
return v, ok
|
|
}
|
|
|
|
// SetIsUnsignedPayload sets whether the payload is unsigned on Properties.
|
|
func SetIsUnsignedPayload(p *smithy.Properties, isUnsignedPayload bool) {
|
|
p.Set(isUnsignedPayloadKey{}, isUnsignedPayload)
|
|
}
|
|
|
|
// GetDisableDoubleEncoding gets whether the payload is unsigned from Properties.
|
|
func GetDisableDoubleEncoding(p *smithy.Properties) (bool, bool) {
|
|
v, ok := p.Get(disableDoubleEncodingKey{}).(bool)
|
|
return v, ok
|
|
}
|
|
|
|
// SetDisableDoubleEncoding sets whether the payload is unsigned on Properties.
|
|
func SetDisableDoubleEncoding(p *smithy.Properties, disableDoubleEncoding bool) {
|
|
p.Set(disableDoubleEncodingKey{}, disableDoubleEncoding)
|
|
}
|