aws-sdk-iotfleethub 1.23.0 → 1.25.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 655fd0a3e233c5bf68520bc59492bd2b2fa9706c5d37c244263f45d89afd3f2c
4
- data.tar.gz: 304ed2a4425fa2daa1ebfe6dad1231efdea16e34793dabd8932187f360adde49
3
+ metadata.gz: 90b8aa756def5c178af53597afc3e144f06eaaafef432073e6132132094124c5
4
+ data.tar.gz: ab9640accb7a87d5b31c2c81670c011a6625b9e7da2df42281b09f2a6a4847ae
5
5
  SHA512:
6
- metadata.gz: 3bce8c82fc5e89ecbe3fe14f3c15bc8efb8df0ae920b3203a2a16f95daf2f0b9ea28086685efbd43742b49f27226e09c039de617da46173392e1deee960cdcd4
7
- data.tar.gz: c2cc6345d13eac4ad7189dfb865c51df3934495f1149417d18af1dab9c7f60add33a6a44c606431ccab7bbd44b82f35c4e658d5f3647575dc211cdc736268cab
6
+ metadata.gz: 7f2159f74549e70fdf05768959d111f576e363c47d6abca22db266cdb9d4d96c91a12278403d3ee497521f81e423bb82d2a21faf0ffbac64d942073f6cf54a93
7
+ data.tar.gz: f9e148dcacbb8e4059782ef9034aa770d3126071506253733487b14a39015af4238948ef36503235c0517671b7cad8a23425d100cbce2f74c166da260f3dbf1f
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.25.0 (2024-04-25)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.24.0 (2024-04-12)
10
+ ------------------
11
+
12
+ * Feature - Documentation updates for AWS IoT Fleet Hub to clarify that Fleet Hub supports organization instance of IAM Identity Center.
13
+
4
14
  1.23.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.23.0
1
+ 1.25.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::IoTFleetHub
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::IoTFleetHub
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::IoTFleetHub
337
346
  # @option options [Aws::IoTFleetHub::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::IoTFleetHub::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -388,12 +412,19 @@ module Aws::IoTFleetHub
388
412
 
389
413
  # @!group API Operations
390
414
 
391
- # Creates a Fleet Hub for AWS IoT Device Management web application.
415
+ # Creates a Fleet Hub for IoT Device Management web application.
392
416
  #
393
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
394
- # subject to change.
417
+ # When creating a Fleet Hub application, you must create an organization
418
+ # instance of IAM Identity Center if you don't already have one. The
419
+ # Fleet Hub application you create must also be in the same Amazon Web
420
+ # Services Region of the organization instance of IAM Identity Center.
421
+ # For more information see [Enabling IAM Identity Center][1] and
422
+ # [Organization instances of IAM Identity Center][2].
395
423
  #
396
- # </note>
424
+ #
425
+ #
426
+ # [1]: https://docs.aws.amazon.com/singlesignon/latest/userguide/get-set-up-for-idc.html
427
+ # [2]: https://docs.aws.amazon.com/singlesignon/latest/userguide/organization-instances-identity-center.html
397
428
  #
398
429
  # @option params [required, String] :application_name
399
430
  # The name of the web application.
@@ -411,7 +442,7 @@ module Aws::IoTFleetHub
411
442
  #
412
443
  # @option params [required, String] :role_arn
413
444
  # The ARN of the role that the web application assumes when it interacts
414
- # with AWS IoT Core.
445
+ # with Amazon Web Services IoT Core.
415
446
  #
416
447
  # <note markdown="1"> The name of the role must be in the form `AWSIotFleetHub_random_string
417
448
  # `.
@@ -451,12 +482,7 @@ module Aws::IoTFleetHub
451
482
  req.send_request(options)
452
483
  end
453
484
 
454
- # Deletes a Fleet Hub for AWS IoT Device Management web application.
455
- #
456
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
457
- # subject to change.
458
- #
459
- # </note>
485
+ # Deletes a Fleet Hub for IoT Device Management web application.
460
486
  #
461
487
  # @option params [required, String] :application_id
462
488
  # The unique Id of the web application.
@@ -485,14 +511,9 @@ module Aws::IoTFleetHub
485
511
  req.send_request(options)
486
512
  end
487
513
 
488
- # Gets information about a Fleet Hub for AWS IoT Device Management web
514
+ # Gets information about a Fleet Hub for IoT Device Management web
489
515
  # application.
490
516
  #
491
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
492
- # subject to change.
493
- #
494
- # </note>
495
- #
496
517
  # @option params [required, String] :application_id
497
518
  # The unique Id of the web application.
498
519
  #
@@ -540,13 +561,8 @@ module Aws::IoTFleetHub
540
561
  req.send_request(options)
541
562
  end
542
563
 
543
- # Gets a list of Fleet Hub for AWS IoT Device Management web
544
- # applications for the current account.
545
- #
546
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
547
- # subject to change.
548
- #
549
- # </note>
564
+ # Gets a list of Fleet Hub for IoT Device Management web applications
565
+ # for the current account.
550
566
  #
551
567
  # @option params [String] :next_token
552
568
  # A token used to get the next set of results.
@@ -585,11 +601,6 @@ module Aws::IoTFleetHub
585
601
 
586
602
  # Lists the tags for the specified resource.
587
603
  #
588
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
589
- # subject to change.
590
- #
591
- # </note>
592
- #
593
604
  # @option params [required, String] :resource_arn
594
605
  # The ARN of the resource.
595
606
  #
@@ -618,11 +629,6 @@ module Aws::IoTFleetHub
618
629
  # Adds to or modifies the tags of the specified resource. Tags are
619
630
  # metadata which can be used to manage a resource.
620
631
  #
621
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
622
- # subject to change.
623
- #
624
- # </note>
625
- #
626
632
  # @option params [required, String] :resource_arn
627
633
  # The ARN of the resource.
628
634
  #
@@ -649,11 +655,6 @@ module Aws::IoTFleetHub
649
655
 
650
656
  # Removes the specified tags (metadata) from the resource.
651
657
  #
652
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
653
- # subject to change.
654
- #
655
- # </note>
656
- #
657
658
  # @option params [required, String] :resource_arn
658
659
  # The ARN of the resource.
659
660
  #
@@ -676,13 +677,8 @@ module Aws::IoTFleetHub
676
677
  req.send_request(options)
677
678
  end
678
679
 
679
- # Updates information about a Fleet Hub for a AWS IoT Device Management
680
- # web application.
681
- #
682
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
683
- # subject to change.
684
- #
685
- # </note>
680
+ # Updates information about a Fleet Hub for IoT Device Management web
681
+ # application.
686
682
  #
687
683
  # @option params [required, String] :application_id
688
684
  # The unique Id of the web application.
@@ -732,7 +728,7 @@ module Aws::IoTFleetHub
732
728
  params: params,
733
729
  config: config)
734
730
  context[:gem_name] = 'aws-sdk-iotfleethub'
735
- context[:gem_version] = '1.23.0'
731
+ context[:gem_version] = '1.25.0'
736
732
  Seahorse::Client::Request.new(handlers, context)
737
733
  end
738
734
 
@@ -32,7 +32,7 @@ module Aws::IoTFleetHub
32
32
  raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
33
33
  end
34
34
  if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
35
- if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
35
+ if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
36
36
  return Aws::Endpoints::Endpoint.new(url: "https://api.fleethub.iot-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
37
37
  end
38
38
  raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
@@ -10,13 +10,8 @@
10
10
  module Aws::IoTFleetHub
11
11
  module Types
12
12
 
13
- # A summary of information about a AWS IoT Device Management web
14
- # application.
15
- #
16
- # <note markdown="1"> Fleet Hub for AWS IoT Device Management is in public preview and is
17
- # subject to change.
18
- #
19
- # </note>
13
+ # A summary of information about a Fleet Hub for IoT Device Management
14
+ # web application.
20
15
  #
21
16
  # @!attribute [rw] application_id
22
17
  # The unique Id of the web application.
@@ -89,7 +84,7 @@ module Aws::IoTFleetHub
89
84
  #
90
85
  # @!attribute [rw] role_arn
91
86
  # The ARN of the role that the web application assumes when it
92
- # interacts with AWS IoT Core.
87
+ # interacts with Amazon Web Services IoT Core.
93
88
  #
94
89
  # <note markdown="1"> The name of the role must be in the form
95
90
  # `AWSIotFleetHub_random_string `.
@@ -193,7 +188,7 @@ module Aws::IoTFleetHub
193
188
  #
194
189
  # @!attribute [rw] role_arn
195
190
  # The ARN of the role that the web application assumes when it
196
- # interacts with AWS IoT Core.
191
+ # interacts with Amazon Web Services IoT Core.
197
192
  # @return [String]
198
193
  #
199
194
  # @!attribute [rw] sso_client_id
@@ -202,7 +197,9 @@ module Aws::IoTFleetHub
202
197
  # @return [String]
203
198
  #
204
199
  # @!attribute [rw] error_message
205
- # A message indicating why the `DescribeApplication` API failed.
200
+ # A message that explains any failures included in the
201
+ # `applicationState` response field. This message explains failures in
202
+ # the `CreateApplication` and `DeleteApplication` actions.
206
203
  # @return [String]
207
204
  #
208
205
  # @!attribute [rw] tags
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iotfleethub/customizations'
52
52
  # @!group service
53
53
  module Aws::IoTFleetHub
54
54
 
55
- GEM_VERSION = '1.23.0'
55
+ GEM_VERSION = '1.25.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iotfleethub
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.23.0
4
+ version: 1.25.0
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: 2024-01-26 00:00:00.000000000 Z
11
+ date: 2024-04-25 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.191.0
22
+ version: 3.193.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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement