Class: Aws::AppMesh::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::AppMesh::Client
- Includes:
- ClientStubs
- Defined in:
- gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/client.rb
Overview
An API client for AppMesh. To construct a client, you need to configure a :region and :credentials.
client = Aws::AppMesh::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the developer guide.
See #initialize for a full list of supported configuration options.
Instance Attribute Summary
Attributes inherited from Seahorse::Client::Base
API Operations collapse
-
#create_gateway_route(params = {}) ⇒ Types::CreateGatewayRouteOutput
Creates a gateway route.
-
#create_mesh(params = {}) ⇒ Types::CreateMeshOutput
Creates a service mesh.
-
#create_route(params = {}) ⇒ Types::CreateRouteOutput
Creates a route that is associated with a virtual router.
-
#create_virtual_gateway(params = {}) ⇒ Types::CreateVirtualGatewayOutput
Creates a virtual gateway.
-
#create_virtual_node(params = {}) ⇒ Types::CreateVirtualNodeOutput
Creates a virtual node within a service mesh.
-
#create_virtual_router(params = {}) ⇒ Types::CreateVirtualRouterOutput
Creates a virtual router within a service mesh.
-
#create_virtual_service(params = {}) ⇒ Types::CreateVirtualServiceOutput
Creates a virtual service within a service mesh.
-
#delete_gateway_route(params = {}) ⇒ Types::DeleteGatewayRouteOutput
Deletes an existing gateway route.
-
#delete_mesh(params = {}) ⇒ Types::DeleteMeshOutput
Deletes an existing service mesh.
-
#delete_route(params = {}) ⇒ Types::DeleteRouteOutput
Deletes an existing route.
-
#delete_virtual_gateway(params = {}) ⇒ Types::DeleteVirtualGatewayOutput
Deletes an existing virtual gateway.
-
#delete_virtual_node(params = {}) ⇒ Types::DeleteVirtualNodeOutput
Deletes an existing virtual node.
-
#delete_virtual_router(params = {}) ⇒ Types::DeleteVirtualRouterOutput
Deletes an existing virtual router.
-
#delete_virtual_service(params = {}) ⇒ Types::DeleteVirtualServiceOutput
Deletes an existing virtual service.
-
#describe_gateway_route(params = {}) ⇒ Types::DescribeGatewayRouteOutput
Describes an existing gateway route.
-
#describe_mesh(params = {}) ⇒ Types::DescribeMeshOutput
Describes an existing service mesh.
-
#describe_route(params = {}) ⇒ Types::DescribeRouteOutput
Describes an existing route.
-
#describe_virtual_gateway(params = {}) ⇒ Types::DescribeVirtualGatewayOutput
Describes an existing virtual gateway.
-
#describe_virtual_node(params = {}) ⇒ Types::DescribeVirtualNodeOutput
Describes an existing virtual node.
-
#describe_virtual_router(params = {}) ⇒ Types::DescribeVirtualRouterOutput
Describes an existing virtual router.
-
#describe_virtual_service(params = {}) ⇒ Types::DescribeVirtualServiceOutput
Describes an existing virtual service.
-
#list_gateway_routes(params = {}) ⇒ Types::ListGatewayRoutesOutput
Returns a list of existing gateway routes that are associated to a virtual gateway.
-
#list_meshes(params = {}) ⇒ Types::ListMeshesOutput
Returns a list of existing service meshes.
-
#list_routes(params = {}) ⇒ Types::ListRoutesOutput
Returns a list of existing routes in a service mesh.
-
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceOutput
List the tags for an App Mesh resource.
-
#list_virtual_gateways(params = {}) ⇒ Types::ListVirtualGatewaysOutput
Returns a list of existing virtual gateways in a service mesh.
-
#list_virtual_nodes(params = {}) ⇒ Types::ListVirtualNodesOutput
Returns a list of existing virtual nodes.
-
#list_virtual_routers(params = {}) ⇒ Types::ListVirtualRoutersOutput
Returns a list of existing virtual routers in a service mesh.
-
#list_virtual_services(params = {}) ⇒ Types::ListVirtualServicesOutput
Returns a list of existing virtual services in a service mesh.
-
#tag_resource(params = {}) ⇒ Struct
Associates the specified tags to a resource with the specified
resourceArn. -
#untag_resource(params = {}) ⇒ Struct
Deletes specified tags from a resource.
-
#update_gateway_route(params = {}) ⇒ Types::UpdateGatewayRouteOutput
Updates an existing gateway route that is associated to a specified virtual gateway in a service mesh.
-
#update_mesh(params = {}) ⇒ Types::UpdateMeshOutput
Updates an existing service mesh.
-
#update_route(params = {}) ⇒ Types::UpdateRouteOutput
Updates an existing route for a specified service mesh and virtual router.
-
#update_virtual_gateway(params = {}) ⇒ Types::UpdateVirtualGatewayOutput
Updates an existing virtual gateway in a specified service mesh.
-
#update_virtual_node(params = {}) ⇒ Types::UpdateVirtualNodeOutput
Updates an existing virtual node in a specified service mesh.
-
#update_virtual_router(params = {}) ⇒ Types::UpdateVirtualRouterOutput
Updates an existing virtual router in a specified service mesh.
-
#update_virtual_service(params = {}) ⇒ Types::UpdateVirtualServiceOutput
Updates an existing virtual service in a specified service mesh.
Instance Method Summary collapse
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
Methods included from ClientStubs
#api_requests, #stub_data, #stub_responses
Methods inherited from Seahorse::Client::Base
add_plugin, api, clear_plugins, define, new, #operation_names, plugins, remove_plugin, set_api, set_plugins
Methods included from Seahorse::Client::HandlerBuilder
#handle, #handle_request, #handle_response
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
471 472 473 |
# File 'gems/aws-sdk-appmesh/lib/aws-sdk-appmesh/client.rb', line 471 def initialize(*args) super end |