aws-sdk-appmesh 1.20.0 → 1.25.1
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 +5 -5
- data/lib/aws-sdk-appmesh.rb +1 -1
- data/lib/aws-sdk-appmesh/client.rb +116 -40
- data/lib/aws-sdk-appmesh/client_api.rb +16 -0
- data/lib/aws-sdk-appmesh/errors.rb +4 -18
- data/lib/aws-sdk-appmesh/resource.rb +1 -7
- data/lib/aws-sdk-appmesh/types.rb +71 -11
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 59eee3f413ada4736dc1464cfaf939a693a975cd850ac94385de252d0be2067e
|
4
|
+
data.tar.gz: 31fcd3bae754aa2c11e1a1ebb70bb8ab2e075f08587166326ba757062fe9adbe
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab6d8f3fd9e91f87e5932971970e3022d593a8694ff4736ddad80469e0e5d60fc3664c95f5e8ddb151e8dedd2e5260cce4597713cc753b2184b7eb801e832fca
|
7
|
+
data.tar.gz: 522da79f8a8e262cc4ebf823279281d3a2aeb692330eadd9db3fd79f2d5b44837cae1f6cb7fbcc6511c3938578687cae04df111a1e1df62157fdf242ace42629
|
data/lib/aws-sdk-appmesh.rb
CHANGED
@@ -24,20 +24,23 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
24
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
25
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
26
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
27
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
28
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
29
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
30
|
|
30
31
|
Aws::Plugins::GlobalConfiguration.add_identifier(:appmesh)
|
31
32
|
|
32
33
|
module Aws::AppMesh
|
33
|
-
# An API client for AppMesh. To construct a client, you need to configure a
|
34
|
+
# An API client for AppMesh. To construct a client, you need to configure a `:region` and `:credentials`.
|
35
|
+
#
|
34
36
|
# client = Aws::AppMesh::Client.new(
|
35
37
|
# region: region_name,
|
36
38
|
# credentials: credentials,
|
37
39
|
# # ...
|
38
40
|
# )
|
41
|
+
#
|
39
42
|
# For details on configuring region and credentials see
|
40
|
-
# the
|
43
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
41
44
|
#
|
42
45
|
# See {#initialize} for a full list of supported configuration options.
|
43
46
|
class Client < Seahorse::Client::Base
|
@@ -67,6 +70,7 @@ module Aws::AppMesh
|
|
67
70
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
68
71
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
69
72
|
add_plugin(Aws::Plugins::TransferEncoding)
|
73
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
70
74
|
add_plugin(Aws::Plugins::SignatureV4)
|
71
75
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
72
76
|
|
@@ -103,7 +107,7 @@ module Aws::AppMesh
|
|
103
107
|
# @option options [required, String] :region
|
104
108
|
# The AWS region to connect to. The configured `:region` is
|
105
109
|
# used to determine the service `:endpoint`. When not passed,
|
106
|
-
# a default `:region` is
|
110
|
+
# a default `:region` is searched for in the following locations:
|
107
111
|
#
|
108
112
|
# * `Aws.config[:region]`
|
109
113
|
# * `ENV['AWS_REGION']`
|
@@ -118,6 +122,12 @@ module Aws::AppMesh
|
|
118
122
|
# When set to `true`, a thread polling for endpoints will be running in
|
119
123
|
# the background every 60 secs (default). Defaults to `false`.
|
120
124
|
#
|
125
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
126
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
127
|
+
# until there is sufficent client side capacity to retry the request.
|
128
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
129
|
+
# not retry instead of sleeping.
|
130
|
+
#
|
121
131
|
# @option options [Boolean] :client_side_monitoring (false)
|
122
132
|
# When `true`, client-side metrics will be collected for all API requests from
|
123
133
|
# this client.
|
@@ -142,6 +152,10 @@ module Aws::AppMesh
|
|
142
152
|
# When `true`, an attempt is made to coerce request parameters into
|
143
153
|
# the required types.
|
144
154
|
#
|
155
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
156
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
157
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
158
|
+
#
|
145
159
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
146
160
|
# Set to true to disable SDK automatically adding host prefix
|
147
161
|
# to default service endpoint when available.
|
@@ -149,7 +163,7 @@ module Aws::AppMesh
|
|
149
163
|
# @option options [String] :endpoint
|
150
164
|
# The client endpoint is normally constructed from the `:region`
|
151
165
|
# option. You should only configure an `:endpoint` when connecting
|
152
|
-
# to test endpoints. This should be
|
166
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
153
167
|
#
|
154
168
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
155
169
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -164,7 +178,7 @@ module Aws::AppMesh
|
|
164
178
|
# requests fetching endpoints information. Defaults to 60 sec.
|
165
179
|
#
|
166
180
|
# @option options [Boolean] :endpoint_discovery (false)
|
167
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
181
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
168
182
|
#
|
169
183
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
170
184
|
# The log formatter.
|
@@ -176,15 +190,29 @@ module Aws::AppMesh
|
|
176
190
|
# The Logger instance to send log messages to. If this option
|
177
191
|
# is not set, logging will be disabled.
|
178
192
|
#
|
193
|
+
# @option options [Integer] :max_attempts (3)
|
194
|
+
# An integer representing the maximum number attempts that will be made for
|
195
|
+
# a single request, including the initial attempt. For example,
|
196
|
+
# setting this value to 5 will result in a request being retried up to
|
197
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
198
|
+
#
|
179
199
|
# @option options [String] :profile ("default")
|
180
200
|
# Used when loading credentials from the shared credentials file
|
181
201
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
182
202
|
#
|
203
|
+
# @option options [Proc] :retry_backoff
|
204
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
205
|
+
# This option is only used in the `legacy` retry mode.
|
206
|
+
#
|
183
207
|
# @option options [Float] :retry_base_delay (0.3)
|
184
|
-
# The base delay in seconds used by the default backoff function.
|
208
|
+
# The base delay in seconds used by the default backoff function. This option
|
209
|
+
# is only used in the `legacy` retry mode.
|
185
210
|
#
|
186
211
|
# @option options [Symbol] :retry_jitter (:none)
|
187
|
-
# A delay randomiser function used by the default backoff function.
|
212
|
+
# A delay randomiser function used by the default backoff function.
|
213
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
214
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
215
|
+
# in the `legacy` retry mode.
|
188
216
|
#
|
189
217
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
190
218
|
#
|
@@ -192,11 +220,30 @@ module Aws::AppMesh
|
|
192
220
|
# The maximum number of times to retry failed requests. Only
|
193
221
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
194
222
|
# are retried. Generally, these are throttling errors, data
|
195
|
-
# checksum errors, networking errors, timeout errors
|
196
|
-
# errors from expired credentials.
|
223
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
224
|
+
# endpoint discovery, and errors from expired credentials.
|
225
|
+
# This option is only used in the `legacy` retry mode.
|
197
226
|
#
|
198
227
|
# @option options [Integer] :retry_max_delay (0)
|
199
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
228
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
229
|
+
# used by the default backoff function. This option is only used in the
|
230
|
+
# `legacy` retry mode.
|
231
|
+
#
|
232
|
+
# @option options [String] :retry_mode ("legacy")
|
233
|
+
# Specifies which retry algorithm to use. Values are:
|
234
|
+
#
|
235
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
236
|
+
# no retry mode is provided.
|
237
|
+
#
|
238
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
239
|
+
# This includes support for retry quotas, which limit the number of
|
240
|
+
# unsuccessful retries a client can make.
|
241
|
+
#
|
242
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
243
|
+
# functionality of `standard` mode along with automatic client side
|
244
|
+
# throttling. This is a provisional mode that may change behavior
|
245
|
+
# in the future.
|
246
|
+
#
|
200
247
|
#
|
201
248
|
# @option options [String] :secret_access_key
|
202
249
|
#
|
@@ -224,8 +271,7 @@ module Aws::AppMesh
|
|
224
271
|
#
|
225
272
|
# @option options [Integer] :http_read_timeout (60) The default
|
226
273
|
# number of seconds to wait for response data. This value can
|
227
|
-
# safely be set
|
228
|
-
# per-request on the session yielded by {#session_for}.
|
274
|
+
# safely be set per-request on the session.
|
229
275
|
#
|
230
276
|
# @option options [Float] :http_idle_timeout (5) The number of
|
231
277
|
# seconds a connection is allowed to sit idle before it is
|
@@ -237,7 +283,7 @@ module Aws::AppMesh
|
|
237
283
|
# request body. This option has no effect unless the request has
|
238
284
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
239
285
|
# disables this behaviour. This value can safely be set per
|
240
|
-
# request on the session
|
286
|
+
# request on the session.
|
241
287
|
#
|
242
288
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
243
289
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -264,12 +310,19 @@ module Aws::AppMesh
|
|
264
310
|
|
265
311
|
# @!group API Operations
|
266
312
|
|
267
|
-
# Creates a service mesh.
|
268
|
-
#
|
313
|
+
# Creates a service mesh.
|
314
|
+
#
|
315
|
+
# A service mesh is a logical boundary for network traffic between
|
316
|
+
# services that are represented by resources within the mesh. After you
|
317
|
+
# create your service mesh, you can create virtual services, virtual
|
318
|
+
# nodes, virtual routers, and routes to distribute traffic between the
|
319
|
+
# applications in your mesh.
|
269
320
|
#
|
270
|
-
#
|
271
|
-
#
|
272
|
-
#
|
321
|
+
# For more information about service meshes, see [Service meshes][1].
|
322
|
+
#
|
323
|
+
#
|
324
|
+
#
|
325
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/meshes.html
|
273
326
|
#
|
274
327
|
# @option params [String] :client_token
|
275
328
|
# Unique, case-sensitive identifier that you provide to ensure the
|
@@ -338,13 +391,8 @@ module Aws::AppMesh
|
|
338
391
|
|
339
392
|
# Creates a route that is associated with a virtual router.
|
340
393
|
#
|
341
|
-
# You can
|
342
|
-
#
|
343
|
-
# name is `my-service.local` and you want the route to match requests to
|
344
|
-
# `my-service.local/metrics`, your prefix should be `/metrics`.
|
345
|
-
#
|
346
|
-
# If your route matches a request, you can distribute traffic to one or
|
347
|
-
# more target virtual nodes with relative weighting.
|
394
|
+
# You can route several different protocols and define a retry policy
|
395
|
+
# for a route. Traffic can be routed to one or more virtual nodes.
|
348
396
|
#
|
349
397
|
# For more information about routes, see [Routes][1].
|
350
398
|
#
|
@@ -644,11 +692,13 @@ module Aws::AppMesh
|
|
644
692
|
# A virtual node acts as a logical pointer to a particular task group,
|
645
693
|
# such as an Amazon ECS service or a Kubernetes deployment. When you
|
646
694
|
# create a virtual node, you can specify the service discovery
|
647
|
-
# information for your task group
|
695
|
+
# information for your task group, and whether the proxy running in a
|
696
|
+
# task group will communicate with other proxies using Transport Layer
|
697
|
+
# Security (TLS).
|
648
698
|
#
|
649
|
-
#
|
650
|
-
#
|
651
|
-
# to
|
699
|
+
# You define a `listener` for any inbound traffic that your virtual node
|
700
|
+
# expects. Any virtual service that your virtual node expects to
|
701
|
+
# communicate to is specified as a `backend`.
|
652
702
|
#
|
653
703
|
# The response metadata for your new virtual node contains the `arn`
|
654
704
|
# that is associated with the virtual node. Set this value (either the
|
@@ -666,7 +716,7 @@ module Aws::AppMesh
|
|
666
716
|
#
|
667
717
|
# </note>
|
668
718
|
#
|
669
|
-
# For more information about virtual nodes, see [Virtual
|
719
|
+
# For more information about virtual nodes, see [Virtual nodes][1].
|
670
720
|
#
|
671
721
|
#
|
672
722
|
#
|
@@ -879,15 +929,14 @@ module Aws::AppMesh
|
|
879
929
|
|
880
930
|
# Creates a virtual router within a service mesh.
|
881
931
|
#
|
882
|
-
#
|
883
|
-
#
|
884
|
-
#
|
885
|
-
#
|
886
|
-
#
|
887
|
-
#
|
888
|
-
# different virtual nodes.
|
932
|
+
# Specify a `listener` for any inbound traffic that your virtual router
|
933
|
+
# receives. Create a virtual router for each protocol and port that you
|
934
|
+
# need to route. Virtual routers handle traffic for one or more virtual
|
935
|
+
# services within your mesh. After you create your virtual router,
|
936
|
+
# create and associate routes for your virtual router that direct
|
937
|
+
# incoming requests to different virtual nodes.
|
889
938
|
#
|
890
|
-
# For more information about virtual routers, see [Virtual
|
939
|
+
# For more information about virtual routers, see [Virtual routers][1].
|
891
940
|
#
|
892
941
|
#
|
893
942
|
#
|
@@ -992,7 +1041,7 @@ module Aws::AppMesh
|
|
992
1041
|
# virtual service.
|
993
1042
|
#
|
994
1043
|
# For more information about virtual services, see [Virtual
|
995
|
-
#
|
1044
|
+
# services][1].
|
996
1045
|
#
|
997
1046
|
#
|
998
1047
|
#
|
@@ -1858,6 +1907,8 @@ module Aws::AppMesh
|
|
1858
1907
|
# * {Types::ListMeshesOutput#meshes #meshes} => Array<Types::MeshRef>
|
1859
1908
|
# * {Types::ListMeshesOutput#next_token #next_token} => String
|
1860
1909
|
#
|
1910
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1911
|
+
#
|
1861
1912
|
# @example Request syntax with placeholder values
|
1862
1913
|
#
|
1863
1914
|
# resp = client.list_meshes({
|
@@ -1869,9 +1920,12 @@ module Aws::AppMesh
|
|
1869
1920
|
#
|
1870
1921
|
# resp.meshes #=> Array
|
1871
1922
|
# resp.meshes[0].arn #=> String
|
1923
|
+
# resp.meshes[0].created_at #=> Time
|
1924
|
+
# resp.meshes[0].last_updated_at #=> Time
|
1872
1925
|
# resp.meshes[0].mesh_name #=> String
|
1873
1926
|
# resp.meshes[0].mesh_owner #=> String
|
1874
1927
|
# resp.meshes[0].resource_owner #=> String
|
1928
|
+
# resp.meshes[0].version #=> Integer
|
1875
1929
|
# resp.next_token #=> String
|
1876
1930
|
#
|
1877
1931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListMeshes AWS API Documentation
|
@@ -1922,6 +1976,8 @@ module Aws::AppMesh
|
|
1922
1976
|
# * {Types::ListRoutesOutput#next_token #next_token} => String
|
1923
1977
|
# * {Types::ListRoutesOutput#routes #routes} => Array<Types::RouteRef>
|
1924
1978
|
#
|
1979
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
1980
|
+
#
|
1925
1981
|
# @example Request syntax with placeholder values
|
1926
1982
|
#
|
1927
1983
|
# resp = client.list_routes({
|
@@ -1937,10 +1993,13 @@ module Aws::AppMesh
|
|
1937
1993
|
# resp.next_token #=> String
|
1938
1994
|
# resp.routes #=> Array
|
1939
1995
|
# resp.routes[0].arn #=> String
|
1996
|
+
# resp.routes[0].created_at #=> Time
|
1997
|
+
# resp.routes[0].last_updated_at #=> Time
|
1940
1998
|
# resp.routes[0].mesh_name #=> String
|
1941
1999
|
# resp.routes[0].mesh_owner #=> String
|
1942
2000
|
# resp.routes[0].resource_owner #=> String
|
1943
2001
|
# resp.routes[0].route_name #=> String
|
2002
|
+
# resp.routes[0].version #=> Integer
|
1944
2003
|
# resp.routes[0].virtual_router_name #=> String
|
1945
2004
|
#
|
1946
2005
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListRoutes AWS API Documentation
|
@@ -1979,6 +2038,8 @@ module Aws::AppMesh
|
|
1979
2038
|
# * {Types::ListTagsForResourceOutput#next_token #next_token} => String
|
1980
2039
|
# * {Types::ListTagsForResourceOutput#tags #tags} => Array<Types::TagRef>
|
1981
2040
|
#
|
2041
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2042
|
+
#
|
1982
2043
|
# @example Request syntax with placeholder values
|
1983
2044
|
#
|
1984
2045
|
# resp = client.list_tags_for_resource({
|
@@ -2039,6 +2100,8 @@ module Aws::AppMesh
|
|
2039
2100
|
# * {Types::ListVirtualNodesOutput#next_token #next_token} => String
|
2040
2101
|
# * {Types::ListVirtualNodesOutput#virtual_nodes #virtual_nodes} => Array<Types::VirtualNodeRef>
|
2041
2102
|
#
|
2103
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2104
|
+
#
|
2042
2105
|
# @example Request syntax with placeholder values
|
2043
2106
|
#
|
2044
2107
|
# resp = client.list_virtual_nodes({
|
@@ -2053,9 +2116,12 @@ module Aws::AppMesh
|
|
2053
2116
|
# resp.next_token #=> String
|
2054
2117
|
# resp.virtual_nodes #=> Array
|
2055
2118
|
# resp.virtual_nodes[0].arn #=> String
|
2119
|
+
# resp.virtual_nodes[0].created_at #=> Time
|
2120
|
+
# resp.virtual_nodes[0].last_updated_at #=> Time
|
2056
2121
|
# resp.virtual_nodes[0].mesh_name #=> String
|
2057
2122
|
# resp.virtual_nodes[0].mesh_owner #=> String
|
2058
2123
|
# resp.virtual_nodes[0].resource_owner #=> String
|
2124
|
+
# resp.virtual_nodes[0].version #=> Integer
|
2059
2125
|
# resp.virtual_nodes[0].virtual_node_name #=> String
|
2060
2126
|
#
|
2061
2127
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualNodes AWS API Documentation
|
@@ -2103,6 +2169,8 @@ module Aws::AppMesh
|
|
2103
2169
|
# * {Types::ListVirtualRoutersOutput#next_token #next_token} => String
|
2104
2170
|
# * {Types::ListVirtualRoutersOutput#virtual_routers #virtual_routers} => Array<Types::VirtualRouterRef>
|
2105
2171
|
#
|
2172
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2173
|
+
#
|
2106
2174
|
# @example Request syntax with placeholder values
|
2107
2175
|
#
|
2108
2176
|
# resp = client.list_virtual_routers({
|
@@ -2117,9 +2185,12 @@ module Aws::AppMesh
|
|
2117
2185
|
# resp.next_token #=> String
|
2118
2186
|
# resp.virtual_routers #=> Array
|
2119
2187
|
# resp.virtual_routers[0].arn #=> String
|
2188
|
+
# resp.virtual_routers[0].created_at #=> Time
|
2189
|
+
# resp.virtual_routers[0].last_updated_at #=> Time
|
2120
2190
|
# resp.virtual_routers[0].mesh_name #=> String
|
2121
2191
|
# resp.virtual_routers[0].mesh_owner #=> String
|
2122
2192
|
# resp.virtual_routers[0].resource_owner #=> String
|
2193
|
+
# resp.virtual_routers[0].version #=> Integer
|
2123
2194
|
# resp.virtual_routers[0].virtual_router_name #=> String
|
2124
2195
|
#
|
2125
2196
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualRouters AWS API Documentation
|
@@ -2167,6 +2238,8 @@ module Aws::AppMesh
|
|
2167
2238
|
# * {Types::ListVirtualServicesOutput#next_token #next_token} => String
|
2168
2239
|
# * {Types::ListVirtualServicesOutput#virtual_services #virtual_services} => Array<Types::VirtualServiceRef>
|
2169
2240
|
#
|
2241
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
2242
|
+
#
|
2170
2243
|
# @example Request syntax with placeholder values
|
2171
2244
|
#
|
2172
2245
|
# resp = client.list_virtual_services({
|
@@ -2181,9 +2254,12 @@ module Aws::AppMesh
|
|
2181
2254
|
# resp.next_token #=> String
|
2182
2255
|
# resp.virtual_services #=> Array
|
2183
2256
|
# resp.virtual_services[0].arn #=> String
|
2257
|
+
# resp.virtual_services[0].created_at #=> Time
|
2258
|
+
# resp.virtual_services[0].last_updated_at #=> Time
|
2184
2259
|
# resp.virtual_services[0].mesh_name #=> String
|
2185
2260
|
# resp.virtual_services[0].mesh_owner #=> String
|
2186
2261
|
# resp.virtual_services[0].resource_owner #=> String
|
2262
|
+
# resp.virtual_services[0].version #=> Integer
|
2187
2263
|
# resp.virtual_services[0].virtual_service_name #=> String
|
2188
2264
|
#
|
2189
2265
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListVirtualServices AWS API Documentation
|
@@ -2948,7 +3024,7 @@ module Aws::AppMesh
|
|
2948
3024
|
params: params,
|
2949
3025
|
config: config)
|
2950
3026
|
context[:gem_name] = 'aws-sdk-appmesh'
|
2951
|
-
context[:gem_version] = '1.
|
3027
|
+
context[:gem_version] = '1.25.1'
|
2952
3028
|
Seahorse::Client::Request.new(handlers, context)
|
2953
3029
|
end
|
2954
3030
|
|
@@ -610,9 +610,12 @@ module Aws::AppMesh
|
|
610
610
|
MeshList.member = Shapes::ShapeRef.new(shape: MeshRef)
|
611
611
|
|
612
612
|
MeshRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
613
|
+
MeshRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
614
|
+
MeshRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
613
615
|
MeshRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
614
616
|
MeshRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
615
617
|
MeshRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
618
|
+
MeshRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
616
619
|
MeshRef.struct_class = Types::MeshRef
|
617
620
|
|
618
621
|
MeshSpec.add_member(:egress_filter, Shapes::ShapeRef.new(shape: EgressFilter, location_name: "egressFilter"))
|
@@ -653,10 +656,13 @@ module Aws::AppMesh
|
|
653
656
|
RouteList.member = Shapes::ShapeRef.new(shape: RouteRef)
|
654
657
|
|
655
658
|
RouteRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
659
|
+
RouteRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
660
|
+
RouteRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
656
661
|
RouteRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
657
662
|
RouteRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
658
663
|
RouteRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
659
664
|
RouteRef.add_member(:route_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "routeName"))
|
665
|
+
RouteRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
660
666
|
RouteRef.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
|
661
667
|
RouteRef.struct_class = Types::RouteRef
|
662
668
|
|
@@ -793,9 +799,12 @@ module Aws::AppMesh
|
|
793
799
|
VirtualNodeList.member = Shapes::ShapeRef.new(shape: VirtualNodeRef)
|
794
800
|
|
795
801
|
VirtualNodeRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
802
|
+
VirtualNodeRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
803
|
+
VirtualNodeRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
796
804
|
VirtualNodeRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
797
805
|
VirtualNodeRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
798
806
|
VirtualNodeRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
807
|
+
VirtualNodeRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
799
808
|
VirtualNodeRef.add_member(:virtual_node_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualNodeName"))
|
800
809
|
VirtualNodeRef.struct_class = Types::VirtualNodeRef
|
801
810
|
|
@@ -827,9 +836,12 @@ module Aws::AppMesh
|
|
827
836
|
VirtualRouterListeners.member = Shapes::ShapeRef.new(shape: VirtualRouterListener)
|
828
837
|
|
829
838
|
VirtualRouterRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
839
|
+
VirtualRouterRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
840
|
+
VirtualRouterRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
830
841
|
VirtualRouterRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
831
842
|
VirtualRouterRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
832
843
|
VirtualRouterRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
844
|
+
VirtualRouterRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
833
845
|
VirtualRouterRef.add_member(:virtual_router_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "virtualRouterName"))
|
834
846
|
VirtualRouterRef.struct_class = Types::VirtualRouterRef
|
835
847
|
|
@@ -860,9 +872,12 @@ module Aws::AppMesh
|
|
860
872
|
VirtualServiceProvider.struct_class = Types::VirtualServiceProvider
|
861
873
|
|
862
874
|
VirtualServiceRef.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "arn"))
|
875
|
+
VirtualServiceRef.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "createdAt"))
|
876
|
+
VirtualServiceRef.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "lastUpdatedAt"))
|
863
877
|
VirtualServiceRef.add_member(:mesh_name, Shapes::ShapeRef.new(shape: ResourceName, required: true, location_name: "meshName"))
|
864
878
|
VirtualServiceRef.add_member(:mesh_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "meshOwner"))
|
865
879
|
VirtualServiceRef.add_member(:resource_owner, Shapes::ShapeRef.new(shape: AccountId, required: true, location_name: "resourceOwner"))
|
880
|
+
VirtualServiceRef.add_member(:version, Shapes::ShapeRef.new(shape: Long, required: true, location_name: "version"))
|
866
881
|
VirtualServiceRef.add_member(:virtual_service_name, Shapes::ShapeRef.new(shape: ServiceName, required: true, location_name: "virtualServiceName"))
|
867
882
|
VirtualServiceRef.struct_class = Types::VirtualServiceRef
|
868
883
|
|
@@ -1046,6 +1061,7 @@ module Aws::AppMesh
|
|
1046
1061
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1047
1062
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1048
1063
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1064
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceInUseException)
|
1049
1065
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1050
1066
|
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1051
1067
|
end)
|
@@ -11,22 +11,17 @@ module Aws::AppMesh
|
|
11
11
|
# These errors all extend Aws::AppMesh::Errors::ServiceError < {Aws::Errors::ServiceError}
|
12
12
|
#
|
13
13
|
# You can rescue all AppMesh errors using ServiceError:
|
14
|
+
#
|
14
15
|
# begin
|
15
16
|
# # do stuff
|
16
17
|
# rescue Aws::AppMesh::Errors::ServiceError
|
17
18
|
# # rescues all AppMesh API errors
|
18
19
|
# end
|
19
20
|
#
|
21
|
+
#
|
20
22
|
# ## Request Context
|
21
23
|
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
22
|
-
# information about the request that generated the error
|
23
|
-
# *
|
24
|
-
# * #params - The request params
|
25
|
-
# * #operation_name - Name of the API operation invoked
|
26
|
-
# * #http_request
|
27
|
-
# * #http_response
|
28
|
-
# * etc ...
|
29
|
-
#
|
24
|
+
# information about the request that generated the error.
|
30
25
|
# See {Seahorse::Client::RequestContext} for more information.
|
31
26
|
#
|
32
27
|
# ## Error Classes
|
@@ -40,6 +35,7 @@ module Aws::AppMesh
|
|
40
35
|
# * {LimitExceededException}
|
41
36
|
# * {TooManyRequestsException}
|
42
37
|
# * {TooManyTagsException}
|
38
|
+
#
|
43
39
|
# Additionally, error classes are dynamically generated for service errors based on the error code
|
44
40
|
# if they are not defined above.
|
45
41
|
module Errors
|
@@ -59,7 +55,6 @@ module Aws::AppMesh
|
|
59
55
|
def message
|
60
56
|
@message || @data[:message]
|
61
57
|
end
|
62
|
-
|
63
58
|
end
|
64
59
|
|
65
60
|
class BadRequestException < ServiceError
|
@@ -75,7 +70,6 @@ module Aws::AppMesh
|
|
75
70
|
def message
|
76
71
|
@message || @data[:message]
|
77
72
|
end
|
78
|
-
|
79
73
|
end
|
80
74
|
|
81
75
|
class ConflictException < ServiceError
|
@@ -91,7 +85,6 @@ module Aws::AppMesh
|
|
91
85
|
def message
|
92
86
|
@message || @data[:message]
|
93
87
|
end
|
94
|
-
|
95
88
|
end
|
96
89
|
|
97
90
|
class InternalServerErrorException < ServiceError
|
@@ -107,7 +100,6 @@ module Aws::AppMesh
|
|
107
100
|
def message
|
108
101
|
@message || @data[:message]
|
109
102
|
end
|
110
|
-
|
111
103
|
end
|
112
104
|
|
113
105
|
class ForbiddenException < ServiceError
|
@@ -123,7 +115,6 @@ module Aws::AppMesh
|
|
123
115
|
def message
|
124
116
|
@message || @data[:message]
|
125
117
|
end
|
126
|
-
|
127
118
|
end
|
128
119
|
|
129
120
|
class NotFoundException < ServiceError
|
@@ -139,7 +130,6 @@ module Aws::AppMesh
|
|
139
130
|
def message
|
140
131
|
@message || @data[:message]
|
141
132
|
end
|
142
|
-
|
143
133
|
end
|
144
134
|
|
145
135
|
class ServiceUnavailableException < ServiceError
|
@@ -155,7 +145,6 @@ module Aws::AppMesh
|
|
155
145
|
def message
|
156
146
|
@message || @data[:message]
|
157
147
|
end
|
158
|
-
|
159
148
|
end
|
160
149
|
|
161
150
|
class LimitExceededException < ServiceError
|
@@ -171,7 +160,6 @@ module Aws::AppMesh
|
|
171
160
|
def message
|
172
161
|
@message || @data[:message]
|
173
162
|
end
|
174
|
-
|
175
163
|
end
|
176
164
|
|
177
165
|
class TooManyRequestsException < ServiceError
|
@@ -187,7 +175,6 @@ module Aws::AppMesh
|
|
187
175
|
def message
|
188
176
|
@message || @data[:message]
|
189
177
|
end
|
190
|
-
|
191
178
|
end
|
192
179
|
|
193
180
|
class TooManyTagsException < ServiceError
|
@@ -203,7 +190,6 @@ module Aws::AppMesh
|
|
203
190
|
def message
|
204
191
|
@message || @data[:message]
|
205
192
|
end
|
206
|
-
|
207
193
|
end
|
208
194
|
|
209
195
|
end
|
@@ -6,13 +6,7 @@
|
|
6
6
|
# WARNING ABOUT GENERATED CODE
|
7
7
|
|
8
8
|
module Aws::AppMesh
|
9
|
-
|
10
|
-
# To create a resource object:
|
11
|
-
# resource = Aws::AppMesh::Resource.new(region: 'us-west-2')
|
12
|
-
# You can supply a client object with custom configuration that will be used for all resource operations.
|
13
|
-
# If you do not pass +:client+, a default client will be constructed.
|
14
|
-
# client = Aws::AppMesh::Client.new(region: 'us-west-2')
|
15
|
-
# resource = Aws::AppMesh::Resource.new(client: client)
|
9
|
+
|
16
10
|
class Resource
|
17
11
|
|
18
12
|
# @param options ({})
|
@@ -184,7 +184,7 @@ module Aws::AppMesh
|
|
184
184
|
#
|
185
185
|
# @!attribute [rw] resource_owner
|
186
186
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
187
|
-
# not your own, then it's the ID of the mesh owner
|
187
|
+
# not your own, then it's the ID of the mesh owner or of another
|
188
188
|
# account that the mesh is shared with. For more information about
|
189
189
|
# mesh sharing, see [Working with Shared Meshes][1].
|
190
190
|
#
|
@@ -1203,6 +1203,12 @@ module Aws::AppMesh
|
|
1203
1203
|
# The full Amazon Resource Name (ARN) for the route.
|
1204
1204
|
# @return [String]
|
1205
1205
|
#
|
1206
|
+
# @!attribute [rw] created_at
|
1207
|
+
# @return [Time]
|
1208
|
+
#
|
1209
|
+
# @!attribute [rw] last_updated_at
|
1210
|
+
# @return [Time]
|
1211
|
+
#
|
1206
1212
|
# @!attribute [rw] mesh_name
|
1207
1213
|
# The name of the service mesh that the route resides in.
|
1208
1214
|
# @return [String]
|
@@ -1220,7 +1226,7 @@ module Aws::AppMesh
|
|
1220
1226
|
#
|
1221
1227
|
# @!attribute [rw] resource_owner
|
1222
1228
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
1223
|
-
# not your own, then it's the ID of the mesh owner
|
1229
|
+
# not your own, then it's the ID of the mesh owner or of another
|
1224
1230
|
# account that the mesh is shared with. For more information about
|
1225
1231
|
# mesh sharing, see [Working with Shared Meshes][1].
|
1226
1232
|
#
|
@@ -1233,6 +1239,9 @@ module Aws::AppMesh
|
|
1233
1239
|
# The name of the route.
|
1234
1240
|
# @return [String]
|
1235
1241
|
#
|
1242
|
+
# @!attribute [rw] version
|
1243
|
+
# @return [Integer]
|
1244
|
+
#
|
1236
1245
|
# @!attribute [rw] virtual_router_name
|
1237
1246
|
# The virtual router that the route is associated with.
|
1238
1247
|
# @return [String]
|
@@ -1241,10 +1250,13 @@ module Aws::AppMesh
|
|
1241
1250
|
#
|
1242
1251
|
class RouteRef < Struct.new(
|
1243
1252
|
:arn,
|
1253
|
+
:created_at,
|
1254
|
+
:last_updated_at,
|
1244
1255
|
:mesh_name,
|
1245
1256
|
:mesh_owner,
|
1246
1257
|
:resource_owner,
|
1247
1258
|
:route_name,
|
1259
|
+
:version,
|
1248
1260
|
:virtual_router_name)
|
1249
1261
|
include Aws::Structure
|
1250
1262
|
end
|
@@ -2780,6 +2792,12 @@ module Aws::AppMesh
|
|
2780
2792
|
# The full Amazon Resource Name (ARN) for the virtual service.
|
2781
2793
|
# @return [String]
|
2782
2794
|
#
|
2795
|
+
# @!attribute [rw] created_at
|
2796
|
+
# @return [Time]
|
2797
|
+
#
|
2798
|
+
# @!attribute [rw] last_updated_at
|
2799
|
+
# @return [Time]
|
2800
|
+
#
|
2783
2801
|
# @!attribute [rw] mesh_name
|
2784
2802
|
# The name of the service mesh that the virtual service resides in.
|
2785
2803
|
# @return [String]
|
@@ -2797,7 +2815,7 @@ module Aws::AppMesh
|
|
2797
2815
|
#
|
2798
2816
|
# @!attribute [rw] resource_owner
|
2799
2817
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
2800
|
-
# not your own, then it's the ID of the mesh owner
|
2818
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2801
2819
|
# account that the mesh is shared with. For more information about
|
2802
2820
|
# mesh sharing, see [Working with Shared Meshes][1].
|
2803
2821
|
#
|
@@ -2806,6 +2824,9 @@ module Aws::AppMesh
|
|
2806
2824
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2807
2825
|
# @return [String]
|
2808
2826
|
#
|
2827
|
+
# @!attribute [rw] version
|
2828
|
+
# @return [Integer]
|
2829
|
+
#
|
2809
2830
|
# @!attribute [rw] virtual_service_name
|
2810
2831
|
# The name of the virtual service.
|
2811
2832
|
# @return [String]
|
@@ -2814,9 +2835,12 @@ module Aws::AppMesh
|
|
2814
2835
|
#
|
2815
2836
|
class VirtualServiceRef < Struct.new(
|
2816
2837
|
:arn,
|
2838
|
+
:created_at,
|
2839
|
+
:last_updated_at,
|
2817
2840
|
:mesh_name,
|
2818
2841
|
:mesh_owner,
|
2819
2842
|
:resource_owner,
|
2843
|
+
:version,
|
2820
2844
|
:virtual_service_name)
|
2821
2845
|
include Aws::Structure
|
2822
2846
|
end
|
@@ -2841,6 +2865,12 @@ module Aws::AppMesh
|
|
2841
2865
|
# The full Amazon Resource Name (ARN) for the virtual router.
|
2842
2866
|
# @return [String]
|
2843
2867
|
#
|
2868
|
+
# @!attribute [rw] created_at
|
2869
|
+
# @return [Time]
|
2870
|
+
#
|
2871
|
+
# @!attribute [rw] last_updated_at
|
2872
|
+
# @return [Time]
|
2873
|
+
#
|
2844
2874
|
# @!attribute [rw] mesh_name
|
2845
2875
|
# The name of the service mesh that the virtual router resides in.
|
2846
2876
|
# @return [String]
|
@@ -2858,7 +2888,7 @@ module Aws::AppMesh
|
|
2858
2888
|
#
|
2859
2889
|
# @!attribute [rw] resource_owner
|
2860
2890
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
2861
|
-
# not your own, then it's the ID of the mesh owner
|
2891
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2862
2892
|
# account that the mesh is shared with. For more information about
|
2863
2893
|
# mesh sharing, see [Working with Shared Meshes][1].
|
2864
2894
|
#
|
@@ -2867,6 +2897,9 @@ module Aws::AppMesh
|
|
2867
2897
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2868
2898
|
# @return [String]
|
2869
2899
|
#
|
2900
|
+
# @!attribute [rw] version
|
2901
|
+
# @return [Integer]
|
2902
|
+
#
|
2870
2903
|
# @!attribute [rw] virtual_router_name
|
2871
2904
|
# The name of the virtual router.
|
2872
2905
|
# @return [String]
|
@@ -2875,9 +2908,12 @@ module Aws::AppMesh
|
|
2875
2908
|
#
|
2876
2909
|
class VirtualRouterRef < Struct.new(
|
2877
2910
|
:arn,
|
2911
|
+
:created_at,
|
2912
|
+
:last_updated_at,
|
2878
2913
|
:mesh_name,
|
2879
2914
|
:mesh_owner,
|
2880
2915
|
:resource_owner,
|
2916
|
+
:version,
|
2881
2917
|
:virtual_router_name)
|
2882
2918
|
include Aws::Structure
|
2883
2919
|
end
|
@@ -2965,6 +3001,12 @@ module Aws::AppMesh
|
|
2965
3001
|
# The full Amazon Resource Name (ARN) for the virtual node.
|
2966
3002
|
# @return [String]
|
2967
3003
|
#
|
3004
|
+
# @!attribute [rw] created_at
|
3005
|
+
# @return [Time]
|
3006
|
+
#
|
3007
|
+
# @!attribute [rw] last_updated_at
|
3008
|
+
# @return [Time]
|
3009
|
+
#
|
2968
3010
|
# @!attribute [rw] mesh_name
|
2969
3011
|
# The name of the service mesh that the virtual node resides in.
|
2970
3012
|
# @return [String]
|
@@ -2982,7 +3024,7 @@ module Aws::AppMesh
|
|
2982
3024
|
#
|
2983
3025
|
# @!attribute [rw] resource_owner
|
2984
3026
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
2985
|
-
# not your own, then it's the ID of the mesh owner
|
3027
|
+
# not your own, then it's the ID of the mesh owner or of another
|
2986
3028
|
# account that the mesh is shared with. For more information about
|
2987
3029
|
# mesh sharing, see [Working with Shared Meshes][1].
|
2988
3030
|
#
|
@@ -2991,6 +3033,9 @@ module Aws::AppMesh
|
|
2991
3033
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
2992
3034
|
# @return [String]
|
2993
3035
|
#
|
3036
|
+
# @!attribute [rw] version
|
3037
|
+
# @return [Integer]
|
3038
|
+
#
|
2994
3039
|
# @!attribute [rw] virtual_node_name
|
2995
3040
|
# The name of the virtual node.
|
2996
3041
|
# @return [String]
|
@@ -2999,9 +3044,12 @@ module Aws::AppMesh
|
|
2999
3044
|
#
|
3000
3045
|
class VirtualNodeRef < Struct.new(
|
3001
3046
|
:arn,
|
3047
|
+
:created_at,
|
3048
|
+
:last_updated_at,
|
3002
3049
|
:mesh_name,
|
3003
3050
|
:mesh_owner,
|
3004
3051
|
:resource_owner,
|
3052
|
+
:version,
|
3005
3053
|
:virtual_node_name)
|
3006
3054
|
include Aws::Structure
|
3007
3055
|
end
|
@@ -3091,7 +3139,7 @@ module Aws::AppMesh
|
|
3091
3139
|
#
|
3092
3140
|
#
|
3093
3141
|
#
|
3094
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
3142
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/service-quotas.html
|
3095
3143
|
#
|
3096
3144
|
# @!attribute [rw] message
|
3097
3145
|
# @return [String]
|
@@ -3647,6 +3695,12 @@ module Aws::AppMesh
|
|
3647
3695
|
# The full Amazon Resource Name (ARN) of the service mesh.
|
3648
3696
|
# @return [String]
|
3649
3697
|
#
|
3698
|
+
# @!attribute [rw] created_at
|
3699
|
+
# @return [Time]
|
3700
|
+
#
|
3701
|
+
# @!attribute [rw] last_updated_at
|
3702
|
+
# @return [Time]
|
3703
|
+
#
|
3650
3704
|
# @!attribute [rw] mesh_name
|
3651
3705
|
# The name of the service mesh.
|
3652
3706
|
# @return [String]
|
@@ -3664,7 +3718,7 @@ module Aws::AppMesh
|
|
3664
3718
|
#
|
3665
3719
|
# @!attribute [rw] resource_owner
|
3666
3720
|
# The AWS IAM account ID of the resource owner. If the account ID is
|
3667
|
-
# not your own, then it's the ID of the mesh owner
|
3721
|
+
# not your own, then it's the ID of the mesh owner or of another
|
3668
3722
|
# account that the mesh is shared with. For more information about
|
3669
3723
|
# mesh sharing, see [Working with Shared Meshes][1].
|
3670
3724
|
#
|
@@ -3673,13 +3727,19 @@ module Aws::AppMesh
|
|
3673
3727
|
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/sharing.html
|
3674
3728
|
# @return [String]
|
3675
3729
|
#
|
3730
|
+
# @!attribute [rw] version
|
3731
|
+
# @return [Integer]
|
3732
|
+
#
|
3676
3733
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/MeshRef AWS API Documentation
|
3677
3734
|
#
|
3678
3735
|
class MeshRef < Struct.new(
|
3679
3736
|
:arn,
|
3737
|
+
:created_at,
|
3738
|
+
:last_updated_at,
|
3680
3739
|
:mesh_name,
|
3681
3740
|
:mesh_owner,
|
3682
|
-
:resource_owner
|
3741
|
+
:resource_owner,
|
3742
|
+
:version)
|
3683
3743
|
include Aws::Structure
|
3684
3744
|
end
|
3685
3745
|
|
@@ -3952,7 +4012,7 @@ module Aws::AppMesh
|
|
3952
4012
|
# @return [Boolean]
|
3953
4013
|
#
|
3954
4014
|
# @!attribute [rw] ports
|
3955
|
-
#
|
4015
|
+
# One or more ports that the policy is enforced for.
|
3956
4016
|
# @return [Array<Integer>]
|
3957
4017
|
#
|
3958
4018
|
# @!attribute [rw] validation
|
@@ -4041,7 +4101,7 @@ module Aws::AppMesh
|
|
4041
4101
|
#
|
4042
4102
|
#
|
4043
4103
|
#
|
4044
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
4104
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites
|
4045
4105
|
#
|
4046
4106
|
# @note When making an API call, you may pass ListenerTlsFileCertificate
|
4047
4107
|
# data as a hash:
|
@@ -4884,7 +4944,7 @@ module Aws::AppMesh
|
|
4884
4944
|
#
|
4885
4945
|
#
|
4886
4946
|
#
|
4887
|
-
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/
|
4947
|
+
# [1]: https://docs.aws.amazon.com/app-mesh/latest/userguide/tls.html#virtual-node-tls-prerequisites
|
4888
4948
|
# @return [String]
|
4889
4949
|
#
|
4890
4950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/appmesh-2019-01-25/ListenerTlsAcmCertificate AWS API Documentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-appmesh
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.25.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-06-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS App Mesh
|