Skip to content

Commit

Permalink
Release v1.50.16 (2024-02-12) (#5167)
Browse files Browse the repository at this point in the history
Release v1.50.16 (2024-02-12)
===

### Service Client Updates
* `service/appsync`: Updates service API and documentation
* `service/monitoring`: Updates service API
  * This release enables PutMetricData API request payload compression by default.
* `service/route53domains`: Updates service API and documentation
  * This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.
  • Loading branch information
aws-sdk-go-automation authored Feb 12, 2024
1 parent 6b23b06 commit b7651f2
Show file tree
Hide file tree
Showing 10 changed files with 893 additions and 120 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
Release v1.50.16 (2024-02-12)
===

### Service Client Updates
* `service/appsync`: Updates service API and documentation
* `service/monitoring`: Updates service API
* This release enables PutMetricData API request payload compression by default.
* `service/route53domains`: Updates service API and documentation
* This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.

Release v1.50.15 (2024-02-09)
===

Expand Down
2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.50.15"
const SDKVersion = "1.50.16"
100 changes: 85 additions & 15 deletions models/apis/appsync/2017-07-25/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,8 @@
{"shape":"ConcurrentModificationException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"},
{"shape":"InternalFailureException"}
{"shape":"InternalFailureException"},
{"shape":"BadRequestException"}
]
},
"CreateGraphqlApi":{
Expand Down Expand Up @@ -266,7 +267,8 @@
{"shape":"ConcurrentModificationException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"},
{"shape":"InternalFailureException"}
{"shape":"InternalFailureException"},
{"shape":"BadRequestException"}
]
},
"DeleteGraphqlApi":{
Expand Down Expand Up @@ -949,7 +951,8 @@
{"shape":"ConcurrentModificationException"},
{"shape":"NotFoundException"},
{"shape":"UnauthorizedException"},
{"shape":"InternalFailureException"}
{"shape":"InternalFailureException"},
{"shape":"BadRequestException"}
]
},
"UpdateGraphqlApi":{
Expand Down Expand Up @@ -1057,7 +1060,8 @@
"transitEncryptionEnabled":{"shape":"Boolean"},
"atRestEncryptionEnabled":{"shape":"Boolean"},
"type":{"shape":"ApiCacheType"},
"status":{"shape":"ApiCacheStatus"}
"status":{"shape":"ApiCacheStatus"},
"healthMetricsConfig":{"shape":"CacheHealthMetricsConfig"}
}
},
"ApiCacheStatus":{
Expand Down Expand Up @@ -1272,6 +1276,13 @@
"Blob":{"type":"blob"},
"Boolean":{"type":"boolean"},
"BooleanValue":{"type":"boolean"},
"CacheHealthMetricsConfig":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"CachingConfig":{
"type":"structure",
"required":["ttl"],
Expand Down Expand Up @@ -1378,7 +1389,8 @@
"transitEncryptionEnabled":{"shape":"Boolean"},
"atRestEncryptionEnabled":{"shape":"Boolean"},
"apiCachingBehavior":{"shape":"ApiCachingBehavior"},
"type":{"shape":"ApiCacheType"}
"type":{"shape":"ApiCacheType"},
"healthMetricsConfig":{"shape":"CacheHealthMetricsConfig"}
}
},
"CreateApiCacheResponse":{
Expand Down Expand Up @@ -1429,7 +1441,8 @@
"openSearchServiceConfig":{"shape":"OpenSearchServiceDataSourceConfig"},
"httpConfig":{"shape":"HttpDataSourceConfig"},
"relationalDatabaseConfig":{"shape":"RelationalDatabaseDataSourceConfig"},
"eventBridgeConfig":{"shape":"EventBridgeDataSourceConfig"}
"eventBridgeConfig":{"shape":"EventBridgeDataSourceConfig"},
"metricsConfig":{"shape":"DataSourceLevelMetricsConfig"}
}
},
"CreateDataSourceResponse":{
Expand Down Expand Up @@ -1509,7 +1522,8 @@
"ownerContact":{"shape":"String"},
"introspectionConfig":{"shape":"GraphQLApiIntrospectionConfig"},
"queryDepthLimit":{"shape":"QueryDepthLimit"},
"resolverCountLimit":{"shape":"ResolverCountLimit"}
"resolverCountLimit":{"shape":"ResolverCountLimit"},
"enhancedMetricsConfig":{"shape":"EnhancedMetricsConfig"}
}
},
"CreateGraphqlApiResponse":{
Expand Down Expand Up @@ -1546,7 +1560,8 @@
"cachingConfig":{"shape":"CachingConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"},
"runtime":{"shape":"AppSyncRuntime"},
"code":{"shape":"Code"}
"code":{"shape":"Code"},
"metricsConfig":{"shape":"ResolverLevelMetricsConfig"}
}
},
"CreateResolverResponse":{
Expand Down Expand Up @@ -1592,7 +1607,8 @@
"openSearchServiceConfig":{"shape":"OpenSearchServiceDataSourceConfig"},
"httpConfig":{"shape":"HttpDataSourceConfig"},
"relationalDatabaseConfig":{"shape":"RelationalDatabaseDataSourceConfig"},
"eventBridgeConfig":{"shape":"EventBridgeDataSourceConfig"}
"eventBridgeConfig":{"shape":"EventBridgeDataSourceConfig"},
"metricsConfig":{"shape":"DataSourceLevelMetricsConfig"}
}
},
"DataSourceIntrospectionModel":{
Expand Down Expand Up @@ -1664,6 +1680,20 @@
"SUCCESS"
]
},
"DataSourceLevelMetricsBehavior":{
"type":"string",
"enum":[
"FULL_REQUEST_DATA_SOURCE_METRICS",
"PER_DATA_SOURCE_METRICS"
]
},
"DataSourceLevelMetricsConfig":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"DataSourceType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -1988,6 +2018,19 @@
"awsRegion":{"shape":"String"}
}
},
"EnhancedMetricsConfig":{
"type":"structure",
"required":[
"resolverLevelMetricsBehavior",
"dataSourceLevelMetricsBehavior",
"operationLevelMetricsConfig"
],
"members":{
"resolverLevelMetricsBehavior":{"shape":"ResolverLevelMetricsBehavior"},
"dataSourceLevelMetricsBehavior":{"shape":"DataSourceLevelMetricsBehavior"},
"operationLevelMetricsConfig":{"shape":"OperationLevelMetricsConfig"}
}
},
"EnvironmentVariableKey":{
"type":"string",
"max":64,
Expand Down Expand Up @@ -2482,7 +2525,8 @@
"ownerContact":{"shape":"String"},
"introspectionConfig":{"shape":"GraphQLApiIntrospectionConfig"},
"queryDepthLimit":{"shape":"QueryDepthLimit"},
"resolverCountLimit":{"shape":"ResolverCountLimit"}
"resolverCountLimit":{"shape":"ResolverCountLimit"},
"enhancedMetricsConfig":{"shape":"EnhancedMetricsConfig"}
}
},
"GraphqlApis":{
Expand Down Expand Up @@ -2942,6 +2986,13 @@
"awsRegion":{"shape":"String"}
}
},
"OperationLevelMetricsConfig":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"OutputType":{
"type":"string",
"enum":[
Expand Down Expand Up @@ -3060,7 +3111,8 @@
"cachingConfig":{"shape":"CachingConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"},
"runtime":{"shape":"AppSyncRuntime"},
"code":{"shape":"Code"}
"code":{"shape":"Code"},
"metricsConfig":{"shape":"ResolverLevelMetricsConfig"}
}
},
"ResolverCountLimit":{
Expand All @@ -3075,6 +3127,20 @@
"PIPELINE"
]
},
"ResolverLevelMetricsBehavior":{
"type":"string",
"enum":[
"FULL_REQUEST_RESOLVER_METRICS",
"PER_RESOLVER_METRICS"
]
},
"ResolverLevelMetricsConfig":{
"type":"string",
"enum":[
"ENABLED",
"DISABLED"
]
},
"Resolvers":{
"type":"list",
"member":{"shape":"Resolver"}
Expand Down Expand Up @@ -3350,7 +3416,8 @@
},
"ttl":{"shape":"Long"},
"apiCachingBehavior":{"shape":"ApiCachingBehavior"},
"type":{"shape":"ApiCacheType"}
"type":{"shape":"ApiCacheType"},
"healthMetricsConfig":{"shape":"CacheHealthMetricsConfig"}
}
},
"UpdateApiCacheResponse":{
Expand Down Expand Up @@ -3413,7 +3480,8 @@
"openSearchServiceConfig":{"shape":"OpenSearchServiceDataSourceConfig"},
"httpConfig":{"shape":"HttpDataSourceConfig"},
"relationalDatabaseConfig":{"shape":"RelationalDatabaseDataSourceConfig"},
"eventBridgeConfig":{"shape":"EventBridgeDataSourceConfig"}
"eventBridgeConfig":{"shape":"EventBridgeDataSourceConfig"},
"metricsConfig":{"shape":"DataSourceLevelMetricsConfig"}
}
},
"UpdateDataSourceResponse":{
Expand Down Expand Up @@ -3501,7 +3569,8 @@
"ownerContact":{"shape":"String"},
"introspectionConfig":{"shape":"GraphQLApiIntrospectionConfig"},
"queryDepthLimit":{"shape":"QueryDepthLimit"},
"resolverCountLimit":{"shape":"ResolverCountLimit"}
"resolverCountLimit":{"shape":"ResolverCountLimit"},
"enhancedMetricsConfig":{"shape":"EnhancedMetricsConfig"}
}
},
"UpdateGraphqlApiResponse":{
Expand Down Expand Up @@ -3542,7 +3611,8 @@
"cachingConfig":{"shape":"CachingConfig"},
"maxBatchSize":{"shape":"MaxBatchSize"},
"runtime":{"shape":"AppSyncRuntime"},
"code":{"shape":"Code"}
"code":{"shape":"Code"},
"metricsConfig":{"shape":"ResolverLevelMetricsConfig"}
}
},
"UpdateResolverResponse":{
Expand Down
Loading

0 comments on commit b7651f2

Please sign in to comment.