aws-sdk-appmesh 1.45.0 → 1.46.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appmesh/client.rb +154 -132
- data/lib/aws-sdk-appmesh/client_api.rb +8 -0
- data/lib/aws-sdk-appmesh/types.rb +256 -204
- data/lib/aws-sdk-appmesh.rb +1 -1
- metadata +2 -2
@@ -148,6 +148,7 @@ 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')
|
151
152
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
152
153
|
ListGatewayRoutesInput = Shapes::StructureShape.new(name: 'ListGatewayRoutesInput')
|
153
154
|
ListGatewayRoutesLimit = Shapes::IntegerShape.new(name: 'ListGatewayRoutesLimit')
|
@@ -193,6 +194,7 @@ module Aws::AppMesh
|
|
193
194
|
MeshData = Shapes::StructureShape.new(name: 'MeshData')
|
194
195
|
MeshList = Shapes::ListShape.new(name: 'MeshList')
|
195
196
|
MeshRef = Shapes::StructureShape.new(name: 'MeshRef')
|
197
|
+
MeshServiceDiscovery = Shapes::StructureShape.new(name: 'MeshServiceDiscovery')
|
196
198
|
MeshSpec = Shapes::StructureShape.new(name: 'MeshSpec')
|
197
199
|
MeshStatus = Shapes::StructureShape.new(name: 'MeshStatus')
|
198
200
|
MeshStatusCode = Shapes::StringShape.new(name: 'MeshStatusCode')
|
@@ -350,6 +352,7 @@ module Aws::AppMesh
|
|
350
352
|
AwsCloudMapInstanceAttributes.member = Shapes::ShapeRef.new(shape: AwsCloudMapInstanceAttribute)
|
351
353
|
|
352
354
|
AwsCloudMapServiceDiscovery.add_member(:attributes, Shapes::ShapeRef.new(shape: AwsCloudMapInstanceAttributes, location_name: "attributes"))
|
355
|
+
AwsCloudMapServiceDiscovery.add_member(:ip_preference, Shapes::ShapeRef.new(shape: IpPreference, location_name: "ipPreference"))
|
353
356
|
AwsCloudMapServiceDiscovery.add_member(:namespace_name, Shapes::ShapeRef.new(shape: AwsCloudMapName, required: true, location_name: "namespaceName"))
|
354
357
|
AwsCloudMapServiceDiscovery.add_member(:service_name, Shapes::ShapeRef.new(shape: AwsCloudMapName, required: true, location_name: "serviceName"))
|
355
358
|
AwsCloudMapServiceDiscovery.struct_class = Types::AwsCloudMapServiceDiscovery
|
@@ -623,6 +626,7 @@ module Aws::AppMesh
|
|
623
626
|
DescribeVirtualServiceOutput[:payload_member] = DescribeVirtualServiceOutput.member(:virtual_service)
|
624
627
|
|
625
628
|
DnsServiceDiscovery.add_member(:hostname, Shapes::ShapeRef.new(shape: Hostname, required: true, location_name: "hostname"))
|
629
|
+
DnsServiceDiscovery.add_member(:ip_preference, Shapes::ShapeRef.new(shape: IpPreference, location_name: "ipPreference"))
|
626
630
|
DnsServiceDiscovery.add_member(:response_type, Shapes::ShapeRef.new(shape: DnsResponseType, location_name: "responseType"))
|
627
631
|
DnsServiceDiscovery.struct_class = Types::DnsServiceDiscovery
|
628
632
|
|
@@ -1039,7 +1043,11 @@ module Aws::AppMesh
|
|
1039
1043
|
MeshRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
1040
1044
|
MeshRef.struct_class = Types::MeshRef
|
1041
1045
|
|
1046
|
+
MeshServiceDiscovery.add_member(:ip_preference, Shapes::ShapeRef.new(shape: IpPreference, location_name: "ipPreference"))
|
1047
|
+
MeshServiceDiscovery.struct_class = Types::MeshServiceDiscovery
|
1048
|
+
|
1042
1049
|
MeshSpec.add_member(:egress_filter, Shapes::ShapeRef.new(shape: EgressFilter, location_name: "egressFilter"))
|
1050
|
+
MeshSpec.add_member(:service_discovery, Shapes::ShapeRef.new(shape: MeshServiceDiscovery, location_name: "serviceDiscovery"))
|
1043
1051
|
MeshSpec.struct_class = Types::MeshSpec
|
1044
1052
|
|
1045
1053
|
MeshStatus.add_member(:status, Shapes::ShapeRef.new(shape: MeshStatusCode, location_name: "status"))
|