Class: Aws::ElasticInference::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::ElasticInference::Client
- Includes:
- ClientStubs
- Defined in:
- gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb
Overview
An API client for ElasticInference. To construct a client, you need to configure a :region
and :credentials
.
client = Aws::ElasticInference::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
-
#describe_accelerator_offerings(params = {}) ⇒ Types::DescribeAcceleratorOfferingsResponse
Describes the locations in which a given accelerator type or set of types is present in a given region.
-
#describe_accelerator_types(params = {}) ⇒ Types::DescribeAcceleratorTypesResponse
Describes the accelerator types available in a given region, as well as their characteristics, such as memory and throughput.
-
#describe_accelerators(params = {}) ⇒ Types::DescribeAcceleratorsResponse
Describes information over a provided set of accelerators belonging to an account.
-
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResult
Returns all tags of an Elastic Inference Accelerator.
-
#tag_resource(params = {}) ⇒ Struct
Adds the specified tags to an Elastic Inference Accelerator.
-
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags from an Elastic Inference Accelerator.
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.
348 349 350 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 348 def initialize(*args) super end |
Instance Method Details
#describe_accelerator_offerings(params = {}) ⇒ Types::DescribeAcceleratorOfferingsResponse
Describes the locations in which a given accelerator type or set of types is present in a given region.
390 391 392 393 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 390 def describe_accelerator_offerings(params = {}, = {}) req = build_request(:describe_accelerator_offerings, params) req.send_request() end |
#describe_accelerator_types(params = {}) ⇒ Types::DescribeAcceleratorTypesResponse
Describes the accelerator types available in a given region, as well as their characteristics, such as memory and throughput.
415 416 417 418 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 415 def describe_accelerator_types(params = {}, = {}) req = build_request(:describe_accelerator_types, params) req.send_request() end |
#describe_accelerators(params = {}) ⇒ Types::DescribeAcceleratorsResponse
Describes information over a provided set of accelerators belonging to an account.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
479 480 481 482 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 479 def describe_accelerators(params = {}, = {}) req = build_request(:describe_accelerators, params) req.send_request() end |
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResult
Returns all tags of an Elastic Inference Accelerator.
508 509 510 511 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 508 def (params = {}, = {}) req = build_request(:list_tags_for_resource, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
Adds the specified tags to an Elastic Inference Accelerator.
536 537 538 539 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 536 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags from an Elastic Inference Accelerator.
562 563 564 565 |
# File 'gems/aws-sdk-elasticinference/lib/aws-sdk-elasticinference/client.rb', line 562 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |