File tree Expand file tree Collapse file tree 2 files changed +87
-1
lines changed
clients/client-devops-guru/src
codegen/smithy-aws-typescript-codegen/src/main/resources/software/amazon/smithy/aws/typescript/codegen Expand file tree Collapse file tree 2 files changed +87
-1
lines changed Original file line number Diff line number Diff line change 22import { getRegionInfo , PartitionHash , RegionHash } from "@aws-sdk/config-resolver" ;
33import { RegionInfoProvider , RegionInfoProviderOptions } from "@aws-sdk/types" ;
44
5- const regionHash : RegionHash = { } ;
5+ const regionHash : RegionHash = {
6+ "us-east-1" : {
7+ variants : [
8+ {
9+ hostname : "devops-guru-fips.us-east-1.amazonaws.com" ,
10+ tags : [ "fips" ] ,
11+ } ,
12+ ] ,
13+ } ,
14+ "us-east-2" : {
15+ variants : [
16+ {
17+ hostname : "devops-guru-fips.us-east-2.amazonaws.com" ,
18+ tags : [ "fips" ] ,
19+ } ,
20+ ] ,
21+ } ,
22+ "us-west-2" : {
23+ variants : [
24+ {
25+ hostname : "devops-guru-fips.us-west-2.amazonaws.com" ,
26+ tags : [ "fips" ] ,
27+ } ,
28+ ] ,
29+ } ,
30+ } ;
631
732const partitionHash : PartitionHash = {
833 aws : {
@@ -23,6 +48,9 @@ const partitionHash: PartitionHash = {
2348 "eu-west-1" ,
2449 "eu-west-2" ,
2550 "eu-west-3" ,
51+ "fips-us-east-1" ,
52+ "fips-us-east-2" ,
53+ "fips-us-west-2" ,
2654 "me-south-1" ,
2755 "sa-east-1" ,
2856 "us-east-1" ,
Original file line number Diff line number Diff line change 37913791 "us-west-2": {}
37923792 }
37933793 },
3794+ "devops-guru": {
3795+ "defaults": {
3796+ "protocols": ["https"]
3797+ },
3798+ "endpoints": {
3799+ "ap-northeast-1": {},
3800+ "ap-southeast-1": {},
3801+ "ap-southeast-2": {},
3802+ "eu-central-1": {},
3803+ "eu-north-1": {},
3804+ "eu-west-1": {},
3805+ "fips-us-east-1": {
3806+ "credentialScope": {
3807+ "region": "us-east-1"
3808+ },
3809+ "deprecated": true,
3810+ "hostname": "devops-guru-fips.us-east-1.amazonaws.com"
3811+ },
3812+ "fips-us-east-2": {
3813+ "credentialScope": {
3814+ "region": "us-east-2"
3815+ },
3816+ "deprecated": true,
3817+ "hostname": "devops-guru-fips.us-east-2.amazonaws.com"
3818+ },
3819+ "fips-us-west-2": {
3820+ "credentialScope": {
3821+ "region": "us-west-2"
3822+ },
3823+ "deprecated": true,
3824+ "hostname": "devops-guru-fips.us-west-2.amazonaws.com"
3825+ },
3826+ "us-east-1": {
3827+ "variants": [
3828+ {
3829+ "hostname": "devops-guru-fips.us-east-1.amazonaws.com",
3830+ "tags": ["fips"]
3831+ }
3832+ ]
3833+ },
3834+ "us-east-2": {
3835+ "variants": [
3836+ {
3837+ "hostname": "devops-guru-fips.us-east-2.amazonaws.com",
3838+ "tags": ["fips"]
3839+ }
3840+ ]
3841+ },
3842+ "us-west-2": {
3843+ "variants": [
3844+ {
3845+ "hostname": "devops-guru-fips.us-west-2.amazonaws.com",
3846+ "tags": ["fips"]
3847+ }
3848+ ]
3849+ }
3850+ }
3851+ },
37943852 "directconnect": {
37953853 "endpoints": {
37963854 "af-south-1": {},
You can’t perform that action at this time.
0 commit comments