Class: Aws::IoTFleetHub::Client
- Inherits:
-
Seahorse::Client::Base
- Object
- Seahorse::Client::Base
- Aws::IoTFleetHub::Client
- Includes:
- ClientStubs
- Defined in:
- lib/aws-sdk-iotfleethub/client.rb
Overview
An API client for IoTFleetHub. To construct a client, you need to configure a ‘:region` and `:credentials`.
client = Aws::IoTFleetHub::Client.new(
region: region_name,
credentials: credentials,
# ...
)
For details on configuring region and credentials see the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
See #initialize for a full list of supported configuration options.
Class Attribute Summary collapse
- .identifier ⇒ Object readonly private
API Operations collapse
-
#create_application(params = {}) ⇒ Types::CreateApplicationResponse
Creates a Fleet Hub for IoT Device Management web application.
-
#delete_application(params = {}) ⇒ Struct
Deletes a Fleet Hub for IoT Device Management web application.
-
#describe_application(params = {}) ⇒ Types::DescribeApplicationResponse
Gets information about a Fleet Hub for IoT Device Management web application.
-
#list_applications(params = {}) ⇒ Types::ListApplicationsResponse
Gets a list of Fleet Hub for IoT Device Management web applications for the current account.
-
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse
Lists the tags for the specified resource.
-
#tag_resource(params = {}) ⇒ Struct
Adds to or modifies the tags of the specified resource.
-
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags (metadata) from the resource.
-
#update_application(params = {}) ⇒ Struct
Updates information about a Fleet Hub for IoT Device Management web application.
Class Method Summary collapse
- .errors_module ⇒ Object private
Instance Method Summary collapse
- #build_request(operation_name, params = {}) ⇒ Object private
-
#initialize(options) ⇒ Client
constructor
A new instance of Client.
- #waiter_names ⇒ Object deprecated private Deprecated.
Constructor Details
#initialize(options) ⇒ Client
Returns a new instance of Client.
434 435 436 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 434 def initialize(*args) super end |
Class Attribute Details
.identifier ⇒ Object (readonly)
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
774 775 776 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 774 def identifier @identifier end |
Class Method Details
.errors_module ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
777 778 779 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 777 def errors_module Errors end |
Instance Method Details
#build_request(operation_name, params = {}) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 747 def build_request(operation_name, params = {}) handlers = @handlers.for(operation_name) tracer = config.telemetry_provider.tracer_provider.tracer( Aws::Telemetry.module_to_tracer_name('Aws::IoTFleetHub') ) context = Seahorse::Client::RequestContext.new( operation_name: operation_name, operation: config.api.operation(operation_name), client: self, params: params, config: config, tracer: tracer ) context[:gem_name] = 'aws-sdk-iotfleethub' context[:gem_version] = '1.32.0' Seahorse::Client::Request.new(handlers, context) end |
#create_application(params = {}) ⇒ Types::CreateApplicationResponse
Creates a Fleet Hub for IoT Device Management web application.
When creating a Fleet Hub application, you must create an organization instance of IAM Identity Center if you don’t already have one. The Fleet Hub application you create must also be in the same Amazon Web Services Region of the organization instance of IAM Identity Center. For more information see [Enabling IAM Identity Center] and [Organization instances of IAM Identity Center].
[1]: docs.aws.amazon.com/singlesignon/latest/userguide/get-set-up-for-idc.html [2]: docs.aws.amazon.com/singlesignon/latest/userguide/organization-instances-identity-center.html
505 506 507 508 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 505 def create_application(params = {}, = {}) req = build_request(:create_application, params) req.send_request() end |
#delete_application(params = {}) ⇒ Struct
Deletes a Fleet Hub for IoT Device Management web application.
534 535 536 537 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 534 def delete_application(params = {}, = {}) req = build_request(:delete_application, params) req.send_request() end |
#describe_application(params = {}) ⇒ Types::DescribeApplicationResponse
Gets information about a Fleet Hub for IoT Device Management web application.
584 585 586 587 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 584 def describe_application(params = {}, = {}) req = build_request(:describe_application, params) req.send_request() end |
#list_applications(params = {}) ⇒ Types::ListApplicationsResponse
Gets a list of Fleet Hub for IoT Device Management web applications for the current account.
The returned response is a pageable response and is Enumerable. For details on usage see PageableResponse.
622 623 624 625 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 622 def list_applications(params = {}, = {}) req = build_request(:list_applications, params) req.send_request() end |
#list_tags_for_resource(params = {}) ⇒ Types::ListTagsForResourceResponse
Lists the tags for the specified resource.
649 650 651 652 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 649 def (params = {}, = {}) req = build_request(:list_tags_for_resource, params) req.send_request() end |
#tag_resource(params = {}) ⇒ Struct
Adds to or modifies the tags of the specified resource. Tags are metadata which can be used to manage a resource.
676 677 678 679 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 676 def tag_resource(params = {}, = {}) req = build_request(:tag_resource, params) req.send_request() end |
#untag_resource(params = {}) ⇒ Struct
Removes the specified tags (metadata) from the resource.
700 701 702 703 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 700 def untag_resource(params = {}, = {}) req = build_request(:untag_resource, params) req.send_request() end |
#update_application(params = {}) ⇒ Struct
Updates information about a Fleet Hub for IoT Device Management web application.
738 739 740 741 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 738 def update_application(params = {}, = {}) req = build_request(:update_application, params) req.send_request() end |
#waiter_names ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
767 768 769 |
# File 'lib/aws-sdk-iotfleethub/client.rb', line 767 def waiter_names [] end |