aws-sdk-appmesh 1.44.0 → 1.47.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appmesh/client.rb +312 -132
- data/lib/aws-sdk-appmesh/client_api.rb +42 -0
- data/lib/aws-sdk-appmesh/types.rb +552 -205
- data/lib/aws-sdk-appmesh.rb +1 -1
- metadata +4 -4
@@ -148,6 +148,11 @@ module Aws::AppMesh
|
|
148
148
|
HttpScheme = Shapes::StringShape.new(name: 'HttpScheme')
|
149
149
|
HttpTimeout = Shapes::StructureShape.new(name: 'HttpTimeout')
|
150
150
|
InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
|
151
|
+
IpPreference = Shapes::StringShape.new(name: 'IpPreference')
|
152
|
+
JsonFormat = Shapes::ListShape.new(name: 'JsonFormat')
|
153
|
+
JsonFormatRef = Shapes::StructureShape.new(name: 'JsonFormatRef')
|
154
|
+
JsonKey = Shapes::StringShape.new(name: 'JsonKey')
|
155
|
+
JsonValue = Shapes::StringShape.new(name: 'JsonValue')
|
151
156
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
152
157
|
ListGatewayRoutesInput = Shapes::StructureShape.new(name: 'ListGatewayRoutesInput')
|
153
158
|
ListGatewayRoutesLimit = Shapes::IntegerShape.new(name: 'ListGatewayRoutesLimit')
|
@@ -173,6 +178,7 @@ module Aws::AppMesh
|
|
173
178
|
ListVirtualServicesLimit = Shapes::IntegerShape.new(name: 'ListVirtualServicesLimit')
|
174
179
|
ListVirtualServicesOutput = Shapes::StructureShape.new(name: 'ListVirtualServicesOutput')
|
175
180
|
Listener = Shapes::StructureShape.new(name: 'Listener')
|
181
|
+
ListenerPort = Shapes::IntegerShape.new(name: 'ListenerPort')
|
176
182
|
ListenerTimeout = Shapes::UnionShape.new(name: 'ListenerTimeout')
|
177
183
|
ListenerTls = Shapes::StructureShape.new(name: 'ListenerTls')
|
178
184
|
ListenerTlsAcmCertificate = Shapes::StructureShape.new(name: 'ListenerTlsAcmCertificate')
|
@@ -184,6 +190,7 @@ module Aws::AppMesh
|
|
184
190
|
ListenerTlsValidationContextTrust = Shapes::UnionShape.new(name: 'ListenerTlsValidationContextTrust')
|
185
191
|
Listeners = Shapes::ListShape.new(name: 'Listeners')
|
186
192
|
Logging = Shapes::StructureShape.new(name: 'Logging')
|
193
|
+
LoggingFormat = Shapes::UnionShape.new(name: 'LoggingFormat')
|
187
194
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
188
195
|
MatchRange = Shapes::StructureShape.new(name: 'MatchRange')
|
189
196
|
MaxConnections = Shapes::IntegerShape.new(name: 'MaxConnections')
|
@@ -193,6 +200,7 @@ module Aws::AppMesh
|
|
193
200
|
MeshData = Shapes::StructureShape.new(name: 'MeshData')
|
194
201
|
MeshList = Shapes::ListShape.new(name: 'MeshList')
|
195
202
|
MeshRef = Shapes::StructureShape.new(name: 'MeshRef')
|
203
|
+
MeshServiceDiscovery = Shapes::StructureShape.new(name: 'MeshServiceDiscovery')
|
196
204
|
MeshSpec = Shapes::StructureShape.new(name: 'MeshSpec')
|
197
205
|
MeshStatus = Shapes::StructureShape.new(name: 'MeshStatus')
|
198
206
|
MeshStatusCode = Shapes::StringShape.new(name: 'MeshStatusCode')
|
@@ -240,7 +248,9 @@ module Aws::AppMesh
|
|
240
248
|
TcpRetryPolicyEvents = Shapes::ListShape.new(name: 'TcpRetryPolicyEvents')
|
241
249
|
TcpRoute = Shapes::StructureShape.new(name: 'TcpRoute')
|
242
250
|
TcpRouteAction = Shapes::StructureShape.new(name: 'TcpRouteAction')
|
251
|
+
TcpRouteMatch = Shapes::StructureShape.new(name: 'TcpRouteMatch')
|
243
252
|
TcpTimeout = Shapes::StructureShape.new(name: 'TcpTimeout')
|
253
|
+
TextFormat = Shapes::StringShape.new(name: 'TextFormat')
|
244
254
|
Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
|
245
255
|
TlsValidationContext = Shapes::StructureShape.new(name: 'TlsValidationContext')
|
246
256
|
TlsValidationContextAcmTrust = Shapes::StructureShape.new(name: 'TlsValidationContextAcmTrust')
|
@@ -350,6 +360,7 @@ module Aws::AppMesh
|
|
350
360
|
AwsCloudMapInstanceAttributes.member = Shapes::ShapeRef.new(shape: AwsCloudMapInstanceAttribute)
|
351
361
|
|
352
362
|
AwsCloudMapServiceDiscovery.add_member(:attributes, Shapes::ShapeRef.new(shape: AwsCloudMapInstanceAttributes, location_name: "attributes"))
|
363
|
+
AwsCloudMapServiceDiscovery.add_member(:ip_preference, Shapes::ShapeRef.new(shape: IpPreference, location_name: "ipPreference"))
|
353
364
|
AwsCloudMapServiceDiscovery.add_member(:namespace_name, Shapes::ShapeRef.new(shape: AwsCloudMapName, required: true, location_name: "namespaceName"))
|
354
365
|
AwsCloudMapServiceDiscovery.add_member(:service_name, Shapes::ShapeRef.new(shape: AwsCloudMapName, required: true, location_name: "serviceName"))
|
355
366
|
AwsCloudMapServiceDiscovery.struct_class = Types::AwsCloudMapServiceDiscovery
|
@@ -623,6 +634,7 @@ module Aws::AppMesh
|
|
623
634
|
DescribeVirtualServiceOutput[:payload_member] = DescribeVirtualServiceOutput.member(:virtual_service)
|
624
635
|
|
625
636
|
DnsServiceDiscovery.add_member(:hostname, Shapes::ShapeRef.new(shape: Hostname, required: true, location_name: "hostname"))
|
637
|
+
DnsServiceDiscovery.add_member(:ip_preference, Shapes::ShapeRef.new(shape: IpPreference, location_name: "ipPreference"))
|
626
638
|
DnsServiceDiscovery.add_member(:response_type, Shapes::ShapeRef.new(shape: DnsResponseType, location_name: "responseType"))
|
627
639
|
DnsServiceDiscovery.struct_class = Types::DnsServiceDiscovery
|
628
640
|
|
@@ -633,6 +645,7 @@ module Aws::AppMesh
|
|
633
645
|
EgressFilter.add_member(:type, Shapes::ShapeRef.new(shape: EgressFilterType, required: true, location_name: "type"))
|
634
646
|
EgressFilter.struct_class = Types::EgressFilter
|
635
647
|
|
648
|
+
FileAccessLog.add_member(:format, Shapes::ShapeRef.new(shape: LoggingFormat, location_name: "format"))
|
636
649
|
FileAccessLog.add_member(:path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "path"))
|
637
650
|
FileAccessLog.struct_class = Types::FileAccessLog
|
638
651
|
|
@@ -676,6 +689,7 @@ module Aws::AppMesh
|
|
676
689
|
GatewayRouteStatus.add_member(:status, Shapes::ShapeRef.new(shape: GatewayRouteStatusCode, required: true, location_name: "status"))
|
677
690
|
GatewayRouteStatus.struct_class = Types::GatewayRouteStatus
|
678
691
|
|
692
|
+
GatewayRouteTarget.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
679
693
|
GatewayRouteTarget.add_member(:virtual_service, Shapes::ShapeRef.new(shape: GatewayRouteVirtualService, required: true, location_name: "virtualService"))
|
680
694
|
GatewayRouteTarget.struct_class = Types::GatewayRouteTarget
|
681
695
|
|
@@ -692,6 +706,7 @@ module Aws::AppMesh
|
|
692
706
|
|
693
707
|
GrpcGatewayRouteMatch.add_member(:hostname, Shapes::ShapeRef.new(shape: GatewayRouteHostnameMatch, location_name: "hostname"))
|
694
708
|
GrpcGatewayRouteMatch.add_member(:metadata, Shapes::ShapeRef.new(shape: GrpcGatewayRouteMetadataList, location_name: "metadata"))
|
709
|
+
GrpcGatewayRouteMatch.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
695
710
|
GrpcGatewayRouteMatch.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "serviceName"))
|
696
711
|
GrpcGatewayRouteMatch.struct_class = Types::GrpcGatewayRouteMatch
|
697
712
|
|
@@ -739,6 +754,7 @@ module Aws::AppMesh
|
|
739
754
|
|
740
755
|
GrpcRouteMatch.add_member(:metadata, Shapes::ShapeRef.new(shape: GrpcRouteMetadataList, location_name: "metadata"))
|
741
756
|
GrpcRouteMatch.add_member(:method_name, Shapes::ShapeRef.new(shape: MethodName, location_name: "methodName"))
|
757
|
+
GrpcRouteMatch.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
742
758
|
GrpcRouteMatch.add_member(:service_name, Shapes::ShapeRef.new(shape: ServiceName, location_name: "serviceName"))
|
743
759
|
GrpcRouteMatch.struct_class = Types::GrpcRouteMatch
|
744
760
|
|
@@ -809,6 +825,7 @@ module Aws::AppMesh
|
|
809
825
|
HttpGatewayRouteMatch.add_member(:hostname, Shapes::ShapeRef.new(shape: GatewayRouteHostnameMatch, location_name: "hostname"))
|
810
826
|
HttpGatewayRouteMatch.add_member(:method, Shapes::ShapeRef.new(shape: HttpMethod, location_name: "method"))
|
811
827
|
HttpGatewayRouteMatch.add_member(:path, Shapes::ShapeRef.new(shape: HttpPathMatch, location_name: "path"))
|
828
|
+
HttpGatewayRouteMatch.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
812
829
|
HttpGatewayRouteMatch.add_member(:prefix, Shapes::ShapeRef.new(shape: String, location_name: "prefix"))
|
813
830
|
HttpGatewayRouteMatch.add_member(:query_parameters, Shapes::ShapeRef.new(shape: HttpQueryParameters, location_name: "queryParameters"))
|
814
831
|
HttpGatewayRouteMatch.struct_class = Types::HttpGatewayRouteMatch
|
@@ -862,6 +879,7 @@ module Aws::AppMesh
|
|
862
879
|
HttpRouteMatch.add_member(:headers, Shapes::ShapeRef.new(shape: HttpRouteHeaders, location_name: "headers"))
|
863
880
|
HttpRouteMatch.add_member(:method, Shapes::ShapeRef.new(shape: HttpMethod, location_name: "method"))
|
864
881
|
HttpRouteMatch.add_member(:path, Shapes::ShapeRef.new(shape: HttpPathMatch, location_name: "path"))
|
882
|
+
HttpRouteMatch.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
865
883
|
HttpRouteMatch.add_member(:prefix, Shapes::ShapeRef.new(shape: String, location_name: "prefix"))
|
866
884
|
HttpRouteMatch.add_member(:query_parameters, Shapes::ShapeRef.new(shape: HttpQueryParameters, location_name: "queryParameters"))
|
867
885
|
HttpRouteMatch.add_member(:scheme, Shapes::ShapeRef.new(shape: HttpScheme, location_name: "scheme"))
|
@@ -874,6 +892,12 @@ module Aws::AppMesh
|
|
874
892
|
InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
875
893
|
InternalServerErrorException.struct_class = Types::InternalServerErrorException
|
876
894
|
|
895
|
+
JsonFormat.member = Shapes::ShapeRef.new(shape: JsonFormatRef)
|
896
|
+
|
897
|
+
JsonFormatRef.add_member(:key, Shapes::ShapeRef.new(shape: JsonKey, required: true, location_name: "key"))
|
898
|
+
JsonFormatRef.add_member(:value, Shapes::ShapeRef.new(shape: JsonValue, required: true, location_name: "value"))
|
899
|
+
JsonFormatRef.struct_class = Types::JsonFormatRef
|
900
|
+
|
877
901
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
878
902
|
LimitExceededException.struct_class = Types::LimitExceededException
|
879
903
|
|
@@ -1018,6 +1042,14 @@ module Aws::AppMesh
|
|
1018
1042
|
Logging.add_member(:access_log, Shapes::ShapeRef.new(shape: AccessLog, location_name: "accessLog"))
|
1019
1043
|
Logging.struct_class = Types::Logging
|
1020
1044
|
|
1045
|
+
LoggingFormat.add_member(:json, Shapes::ShapeRef.new(shape: JsonFormat, location_name: "json"))
|
1046
|
+
LoggingFormat.add_member(:text, Shapes::ShapeRef.new(shape: TextFormat, location_name: "text"))
|
1047
|
+
LoggingFormat.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
1048
|
+
LoggingFormat.add_member_subclass(:json, Types::LoggingFormat::Json)
|
1049
|
+
LoggingFormat.add_member_subclass(:text, Types::LoggingFormat::Text)
|
1050
|
+
LoggingFormat.add_member_subclass(:unknown, Types::LoggingFormat::Unknown)
|
1051
|
+
LoggingFormat.struct_class = Types::LoggingFormat
|
1052
|
+
|
1021
1053
|
MatchRange.add_member(:end, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "end"))
|
1022
1054
|
MatchRange.add_member(:start, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "start"))
|
1023
1055
|
MatchRange.struct_class = Types::MatchRange
|
@@ -1039,7 +1071,11 @@ module Aws::AppMesh
|
|
1039
1071
|
MeshRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
1040
1072
|
MeshRef.struct_class = Types::MeshRef
|
1041
1073
|
|
1074
|
+
MeshServiceDiscovery.add_member(:ip_preference, Shapes::ShapeRef.new(shape: IpPreference, location_name: "ipPreference"))
|
1075
|
+
MeshServiceDiscovery.struct_class = Types::MeshServiceDiscovery
|
1076
|
+
|
1042
1077
|
MeshSpec.add_member(:egress_filter, Shapes::ShapeRef.new(shape: EgressFilter, location_name: "egressFilter"))
|
1078
|
+
MeshSpec.add_member(:service_discovery, Shapes::ShapeRef.new(shape: MeshServiceDiscovery, location_name: "serviceDiscovery"))
|
1043
1079
|
MeshSpec.struct_class = Types::MeshSpec
|
1044
1080
|
|
1045
1081
|
MeshStatus.add_member(:status, Shapes::ShapeRef.new(shape: MeshStatusCode, location_name: "status"))
|
@@ -1142,12 +1178,16 @@ module Aws::AppMesh
|
|
1142
1178
|
TcpRetryPolicyEvents.member = Shapes::ShapeRef.new(shape: TcpRetryPolicyEvent)
|
1143
1179
|
|
1144
1180
|
TcpRoute.add_member(:action, Shapes::ShapeRef.new(shape: TcpRouteAction, required: true, location_name: "action"))
|
1181
|
+
TcpRoute.add_member(:match, Shapes::ShapeRef.new(shape: TcpRouteMatch, location_name: "match"))
|
1145
1182
|
TcpRoute.add_member(:timeout, Shapes::ShapeRef.new(shape: TcpTimeout, location_name: "timeout"))
|
1146
1183
|
TcpRoute.struct_class = Types::TcpRoute
|
1147
1184
|
|
1148
1185
|
TcpRouteAction.add_member(:weighted_targets, Shapes::ShapeRef.new(shape: WeightedTargets, required: true, location_name: "weightedTargets"))
|
1149
1186
|
TcpRouteAction.struct_class = Types::TcpRouteAction
|
1150
1187
|
|
1188
|
+
TcpRouteMatch.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
1189
|
+
TcpRouteMatch.struct_class = Types::TcpRouteMatch
|
1190
|
+
|
1151
1191
|
TcpTimeout.add_member(:idle, Shapes::ShapeRef.new(shape: Duration, location_name: "idle"))
|
1152
1192
|
TcpTimeout.struct_class = Types::TcpTimeout
|
1153
1193
|
|
@@ -1315,6 +1355,7 @@ module Aws::AppMesh
|
|
1315
1355
|
VirtualGatewayData.add_member(:virtual_gateway_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualGatewayName"))
|
1316
1356
|
VirtualGatewayData.struct_class = Types::VirtualGatewayData
|
1317
1357
|
|
1358
|
+
VirtualGatewayFileAccessLog.add_member(:format, Shapes::ShapeRef.new(shape: LoggingFormat, location_name: "format"))
|
1318
1359
|
VirtualGatewayFileAccessLog.add_member(:path, Shapes::ShapeRef.new(shape: FilePath, required: true, location_name: "path"))
|
1319
1360
|
VirtualGatewayFileAccessLog.struct_class = Types::VirtualGatewayFileAccessLog
|
1320
1361
|
|
@@ -1559,6 +1600,7 @@ module Aws::AppMesh
|
|
1559
1600
|
VirtualServiceStatus.add_member(:status, Shapes::ShapeRef.new(shape: VirtualServiceStatusCode, required: true, location_name: "status"))
|
1560
1601
|
VirtualServiceStatus.struct_class = Types::VirtualServiceStatus
|
1561
1602
|
|
1603
|
+
WeightedTarget.add_member(:port, Shapes::ShapeRef.new(shape: ListenerPort, location_name: "port"))
|
1562
1604
|
WeightedTarget.add_member(:virtual_node, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualNode"))
|
1563
1605
|
WeightedTarget.add_member(:weight, Shapes::ShapeRef.new(shape: PercentInt, required: true, location_name: "weight"))
|
1564
1606
|
WeightedTarget.struct_class = Types::WeightedTarget
|