You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::AppMesh::Client OverviewAn API client for AWS App Mesh. To construct a client, you need to configure a :region
and :credentials
.
appmesh = Aws::AppMesh::Client.new(
region: region_name,
credentials: credentials,
)
See #initialize for a full list of supported configuration options.
RegionYou can configure a default region in the following locations:
ENV['AWS_REGION']
Aws.config[:region]
Go here for a list of supported regions.
CredentialsDefault credentials are loaded automatically from the following locations:
ENV['AWS_ACCESS_KEY_ID']
and ENV['AWS_SECRET_ACCESS_KEY']
Aws.config[:credentials]
~/.aws/credentials
(more information)You can also construct a credentials object from one of the following classes:
Alternatively, you configure credentials with :access_key_id
and :secret_access_key
:
creds = YAML.load(File.read('/path/to/secrets'))
Aws::AppMesh::Client.new(
access_key_id: creds['access_key_id'],
secret_access_key: creds['secret_access_key']
)
Always load your credentials from outside your application. Avoid configuring credentials statically and never commit them to source control.
Attribute Summary collapseConstructs an API client.
Creates a gateway route.
A gateway route is attached to a virtual gateway and routes traffic to an existing virtual service.
Creates a service mesh.
A service mesh is a logical boundary for network traffic between services that are represented by resources within the mesh.
Creates a route that is associated with a virtual router.
You can route several different protocols and define a retry policy for a route.
Creates a virtual gateway.
A virtual gateway allows resources outside your mesh to communicate to resources that are inside your mesh.
Creates a virtual node within a service mesh.
A virtual node acts as a logical pointer to a particular task group, such as an Amazon ECS service or a Kubernetes deployment.
Creates a virtual router within a service mesh.
Specify a listener
for any inbound traffic that your virtual router receives.
Creates a virtual service within a service mesh.
A virtual service is an abstraction of a real service that is provided by a virtual node directly or indirectly by means of a virtual router.
Deletes an existing gateway route.
.
Deletes an existing service mesh.
You must delete all resources (virtual services, routes, virtual routers, and virtual nodes) in the service mesh before you can delete the mesh itself.
.
Deletes an existing route.
.
Deletes an existing virtual gateway.
Deletes an existing virtual node.
You must delete any virtual services that list a virtual node as a service provider before you can delete the virtual node itself.
.
Deletes an existing virtual router.
You must delete any routes associated with the virtual router before you can delete the router itself.
.
Deletes an existing virtual service.
.
Describes an existing gateway route.
.
Describes an existing service mesh.
.
Describes an existing route.
.
Describes an existing virtual gateway.
.
Describes an existing virtual node.
.
Describes an existing virtual router.
.
Describes an existing virtual service.
.
Returns a list of existing gateway routes that are associated to a virtual gateway.
.
Returns a list of existing service meshes.
.
Returns a list of existing routes in a service mesh.
.
List the tags for an App Mesh resource.
.
Returns a list of existing virtual gateways in a service mesh.
.
Returns a list of existing virtual nodes.
.
Returns a list of existing virtual routers in a service mesh.
.
Returns a list of existing virtual services in a service mesh.
.
Associates the specified tags to a resource with the specified resourceArn
.
Deletes specified tags from a resource.
.
Updates an existing gateway route that is associated to a specified virtual gateway in a service mesh.
.
Updates an existing service mesh.
.
Updates an existing route for a specified service mesh and virtual router.
.
Updates an existing virtual gateway in a specified service mesh.
.
Updates an existing virtual node in a specified service mesh.
.
Updates an existing virtual router in a specified service mesh.
.
Updates an existing virtual service in a specified service mesh.
.
Waiters polls an API operation until a resource enters a desired state.
Returns the list of supported waiters.
add_plugin, api, #build_request, clear_plugins, define, new, #operation, #operation_names, plugins, remove_plugin, set_api, set_plugins
Methods included from Seahorse::Client::HandlerBuilder#handle, #handle_request, #handle_response
Instance Method Details #create_gateway_route(options = {}) ⇒ Types::CreateGatewayRouteOutputCreates a gateway route.
A gateway route is attached to a virtual gateway and routes traffic to an existing virtual service. If a route matches a request, it can distribute traffic to a target virtual service.
For more information about gateway routes, see Gateway routes.
#create_mesh(options = {}) ⇒ Types::CreateMeshOutputCreates a service mesh.
A service mesh is a logical boundary for network traffic between services that are represented by resources within the mesh. After you create your service mesh, you can create virtual services, virtual nodes, virtual routers, and routes to distribute traffic between the applications in your mesh.
For more information about service meshes, see Service meshes.
#create_route(options = {}) ⇒ Types::CreateRouteOutputCreates a route that is associated with a virtual router.
You can route several different protocols and define a retry policy for a route. Traffic can be routed to one or more virtual nodes.
For more information about routes, see Routes.
#create_virtual_gateway(options = {}) ⇒ Types::CreateVirtualGatewayOutputCreates a virtual gateway.
A virtual gateway allows resources outside your mesh to communicate to resources that are inside your mesh. The virtual gateway represents an Envoy proxy running in an Amazon ECS task, in a Kubernetes service, or on an Amazon EC2 instance. Unlike a virtual node, which represents an Envoy running with an application, a virtual gateway represents Envoy deployed by itself.
For more information about virtual gateways, see Virtual gateways.
#create_virtual_node(options = {}) ⇒ Types::CreateVirtualNodeOutputCreates a virtual node within a service mesh.
A virtual node acts as a logical pointer to a particular task group, such as an Amazon ECS service or a Kubernetes deployment. When you create a virtual node, you can specify the service discovery information for your task group, and whether the proxy running in a task group will communicate with other proxies using Transport Layer Security (TLS).
You define a listener
for any inbound traffic that your virtual node expects. Any virtual service that your virtual node expects to communicate to is specified as a backend
.
The response metadata for your new virtual node contains the arn
that is associated with the virtual node. Set this value to the full ARN; for example, arn:aws:appmesh:us-west-2:123456789012:myMesh/default/virtualNode/myApp
) as the APPMESH_RESOURCE_ARN
environment variable for your task group's Envoy proxy container in your task definition or pod spec. This is then mapped to the node.id
and node.cluster
Envoy parameters.
By default, App Mesh uses the name of the resource you specified in APPMESH_RESOURCE_ARN
when Envoy is referring to itself in metrics and traces. You can override this behavior by setting the APPMESH_RESOURCE_CLUSTER
environment variable with your own name.
AWS Cloud Map is not available in the eu-south-1 Region.
For more information about virtual nodes, see Virtual nodes. You must be using 1.15.0
or later of the Envoy image when setting these variables. For more information about App Mesh Envoy variables, see Envoy image in the AWS App Mesh User Guide.
Creates a virtual router within a service mesh.
Specify a listener
for any inbound traffic that your virtual router receives. Create a virtual router for each protocol and port that you need to route. Virtual routers handle traffic for one or more virtual services within your mesh. After you create your virtual router, create and associate routes for your virtual router that direct incoming requests to different virtual nodes.
For more information about virtual routers, see Virtual routers.
#create_virtual_service(options = {}) ⇒ Types::CreateVirtualServiceOutputCreates a virtual service within a service mesh.
A virtual service is an abstraction of a real service that is provided by a virtual node directly or indirectly by means of a virtual router. Dependent services call your virtual service by its virtualServiceName
, and those requests are routed to the virtual node or virtual router that is specified as the provider for the virtual service.
For more information about virtual services, see Virtual services.
#delete_mesh(options = {}) ⇒ Types::DeleteMeshOutputDeletes an existing service mesh.
You must delete all resources (virtual services, routes, virtual routers, and virtual nodes) in the service mesh before you can delete the mesh itself.
#delete_virtual_gateway(options = {}) ⇒ Types::DeleteVirtualGatewayOutputDeletes an existing virtual gateway. You cannot delete a virtual gateway if any gateway routes are associated to it.
#delete_virtual_node(options = {}) ⇒ Types::DeleteVirtualNodeOutputDeletes an existing virtual node.
You must delete any virtual services that list a virtual node as a service provider before you can delete the virtual node itself.
#delete_virtual_router(options = {}) ⇒ Types::DeleteVirtualRouterOutputDeletes an existing virtual router.
You must delete any routes associated with the virtual router before you can delete the router itself.
#list_gateway_routes(options = {}) ⇒ Types::ListGatewayRoutesOutputReturns a list of existing gateway routes that are associated to a virtual gateway.
#tag_resource(options = {}) ⇒ StructAssociates the specified tags to a resource with the specified resourceArn
. If existing tags on a resource aren't specified in the request parameters, they aren't changed. When a resource is deleted, the tags associated with that resource are also deleted.
Deletes specified tags from a resource.
#update_gateway_route(options = {}) ⇒ Types::UpdateGatewayRouteOutputUpdates an existing gateway route that is associated to a specified virtual gateway in a service mesh.
#update_route(options = {}) ⇒ Types::UpdateRouteOutputUpdates an existing route for a specified service mesh and virtual router.
#wait_until(waiter_name, params = {}) {|waiter| ... } ⇒ BooleanWaiters polls an API operation until a resource enters a desired state.
Basic UsageWaiters will poll until they are succesful, they fail by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop, sleeping between attempts client.waiter_until(waiter_name, params)
ConfigurationYou can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. You configure waiters by passing a block to #wait_until:
# poll for ~25 seconds
client.wait_until(...) do |w|
w.max_attempts = 5
w.delay = 5
end
Callbacks
You can be notified before each polling attempt and before each delay. If you throw :success
or :failure
from these callbacks, it will terminate the waiter.
started_at = Time.now
client.wait_until(...) do |w|
# disable max attempts
w.max_attempts = nil
# poll for 1 hour, instead of a number of attempts
w.before_wait do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
end
Handling Errors
When a waiter is successful, it returns true
. When a waiter fails, it raises an error. All errors raised extend from Waiters::Errors::WaiterFailed.
begin
client.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
#waiter_names ⇒ Array<Symbol>
Returns the list of supported waiters. The following table lists the supported waiters and the client method they call:
Waiter Name Client Method Default Delay: Default Max Attempts:RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4