aws-sdk-iot 1.119.0 → 1.121.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b47b7ec8e2f9317e068df2be80aaf438a51512efb2352e54c9da84072e548ba8
4
- data.tar.gz: 3bee5b3ba397cc145cc18be62b9e35bc126bf0bd9c53c142a0efe8f74200bfb3
3
+ metadata.gz: 6da96ee733da6242cb3e5487341e8400c081e290cef3a96ca98a8a8ce08dd2c3
4
+ data.tar.gz: e375358ead90c0845627653abd4e4b37c77cd5e89952c5f96c8f6d4a443cfaee
5
5
  SHA512:
6
- metadata.gz: 2e3d821fa40538e386e8e4c184b8fc28daf99fcc5226bbf95ecd95fe05040402a321beaff44d59fb313d8635d33265dd0ae761377443b4cf76cf9f7f149b4ed6
7
- data.tar.gz: 66d9eed45b761827523f2dfc8c5a4622926119b6ad5f3fce9dcfad213d7e26c6e233d70420f44a26dc93931b78be656611f061b982295b86513233fafa2461be
6
+ metadata.gz: 0ad91cbae8e65b68e42269f907ca78da2e64efcc6103a94b4d4a71e0ac253b4269280059426fee51be8fd42008ecd9cf605a2980e5168d1612ccccc1f76b8213
7
+ data.tar.gz: 565ecf98219c5cc330e4dfd396b66a4d687c72e01e196e2dc036e5c04efba37efe26f9a072fdbe7bd9316db63eb5dfdb373defedb7af3696e55e2ccd37a1c74d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.121.0 (2024-02-28)
5
+ ------------------
6
+
7
+ * Feature - This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
8
+
9
+ 1.120.0 (2024-02-09)
10
+ ------------------
11
+
12
+ * Feature - This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain.
13
+
4
14
  1.119.0 (2024-01-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.119.0
1
+ 1.121.0
@@ -548,10 +548,16 @@ module Aws::IoT
548
548
  #
549
549
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
550
550
  #
551
- # <note markdown="1"> The `namespaceId` feature is in public preview.
551
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
552
+ # time. For more information, see [Setting up IoT Greengrass core
553
+ # devices.][1]
552
554
  #
553
555
  # </note>
554
556
  #
557
+ #
558
+ #
559
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
560
+ #
555
561
  # @return [Types::AssociateTargetsWithJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
556
562
  #
557
563
  # * {Types::AssociateTargetsWithJobResponse#job_arn #job_arn} => String
@@ -1581,6 +1587,9 @@ module Aws::IoT
1581
1587
  # @option params [Types::TlsConfig] :tls_config
1582
1588
  # An object that specifies the TLS configuration for a domain.
1583
1589
  #
1590
+ # @option params [Types::ServerCertificateConfig] :server_certificate_config
1591
+ # The server certificate configuration.
1592
+ #
1584
1593
  # @return [Types::CreateDomainConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1585
1594
  #
1586
1595
  # * {Types::CreateDomainConfigurationResponse#domain_configuration_name #domain_configuration_name} => String
@@ -1607,6 +1616,9 @@ module Aws::IoT
1607
1616
  # tls_config: {
1608
1617
  # security_policy: "SecurityPolicy",
1609
1618
  # },
1619
+ # server_certificate_config: {
1620
+ # enable_ocsp_check: false,
1621
+ # },
1610
1622
  # })
1611
1623
  #
1612
1624
  # @example Response structure
@@ -1875,10 +1887,16 @@ module Aws::IoT
1875
1887
  #
1876
1888
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
1877
1889
  #
1878
- # <note markdown="1"> The `namespaceId` feature is in public preview.
1890
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
1891
+ # time. For more information, see [Setting up IoT Greengrass core
1892
+ # devices.][1]
1879
1893
  #
1880
1894
  # </note>
1881
1895
  #
1896
+ #
1897
+ #
1898
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
1899
+ #
1882
1900
  # @option params [String] :job_template_arn
1883
1901
  # The ARN of the job template used to create the job.
1884
1902
  #
@@ -4391,10 +4409,16 @@ module Aws::IoT
4391
4409
  #
4392
4410
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
4393
4411
  #
4394
- # <note markdown="1"> The `namespaceId` feature is in public preview.
4412
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
4413
+ # time. For more information, see [Setting up IoT Greengrass core
4414
+ # devices.][1]
4395
4415
  #
4396
4416
  # </note>
4397
4417
  #
4418
+ #
4419
+ #
4420
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
4421
+ #
4398
4422
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4399
4423
  #
4400
4424
  # @example Request syntax with placeholder values
@@ -4457,10 +4481,16 @@ module Aws::IoT
4457
4481
  #
4458
4482
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
4459
4483
  #
4460
- # <note markdown="1"> The `namespaceId` feature is in public preview.
4484
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
4485
+ # time. For more information, see [Setting up IoT Greengrass core
4486
+ # devices.][1]
4461
4487
  #
4462
4488
  # </note>
4463
4489
  #
4490
+ #
4491
+ #
4492
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
4493
+ #
4464
4494
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
4465
4495
  #
4466
4496
  # @example Request syntax with placeholder values
@@ -5848,6 +5878,7 @@ module Aws::IoT
5848
5878
  # * {Types::DescribeDomainConfigurationResponse#domain_type #domain_type} => String
5849
5879
  # * {Types::DescribeDomainConfigurationResponse#last_status_change_date #last_status_change_date} => Time
5850
5880
  # * {Types::DescribeDomainConfigurationResponse#tls_config #tls_config} => Types::TlsConfig
5881
+ # * {Types::DescribeDomainConfigurationResponse#server_certificate_config #server_certificate_config} => Types::ServerCertificateConfig
5851
5882
  #
5852
5883
  # @example Request syntax with placeholder values
5853
5884
  #
@@ -5871,6 +5902,7 @@ module Aws::IoT
5871
5902
  # resp.domain_type #=> String, one of "ENDPOINT", "AWS_MANAGED", "CUSTOMER_MANAGED"
5872
5903
  # resp.last_status_change_date #=> Time
5873
5904
  # resp.tls_config.security_policy #=> String
5905
+ # resp.server_certificate_config.enable_ocsp_check #=> Boolean
5874
5906
  #
5875
5907
  # @overload describe_domain_configuration(params = {})
5876
5908
  # @param [Hash] params ({})
@@ -5879,8 +5911,13 @@ module Aws::IoT
5879
5911
  req.send_request(options)
5880
5912
  end
5881
5913
 
5882
- # Returns a unique endpoint specific to the Amazon Web Services account
5883
- # making the call.
5914
+ # Returns or creates a unique endpoint specific to the Amazon Web
5915
+ # Services account making the call.
5916
+ #
5917
+ # <note markdown="1"> The first time `DescribeEndpoint` is called, an endpoint is created.
5918
+ # All subsequent calls to `DescribeEndpoint` return the same endpoint.
5919
+ #
5920
+ # </note>
5884
5921
  #
5885
5922
  # Requires permission to access the [DescribeEndpoint][1] action.
5886
5923
  #
@@ -7734,6 +7771,11 @@ module Aws::IoT
7734
7771
 
7735
7772
  # Gets a registration code used to register a CA certificate with IoT.
7736
7773
  #
7774
+ # IoT will create a registration code as part of this API call if the
7775
+ # registration code doesn't exist or has been deleted. If you already
7776
+ # have a registration code, this API call will return the same
7777
+ # registration code.
7778
+ #
7737
7779
  # Requires permission to access the [GetRegistrationCode][1] action.
7738
7780
  #
7739
7781
  #
@@ -9515,10 +9557,16 @@ module Aws::IoT
9515
9557
  #
9516
9558
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
9517
9559
  #
9518
- # <note markdown="1"> The `namespaceId` feature is in public preview.
9560
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
9561
+ # time. For more information, see [Setting up IoT Greengrass core
9562
+ # devices.][1]
9519
9563
  #
9520
9564
  # </note>
9521
9565
  #
9566
+ #
9567
+ #
9568
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
9569
+ #
9522
9570
  # @option params [Integer] :max_results
9523
9571
  # The maximum number of results to be returned per request.
9524
9572
  #
@@ -9659,10 +9707,16 @@ module Aws::IoT
9659
9707
  #
9660
9708
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
9661
9709
  #
9662
- # <note markdown="1"> The `namespaceId` feature is in public preview.
9710
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
9711
+ # time. For more information, see [Setting up IoT Greengrass core
9712
+ # devices.][1]
9663
9713
  #
9664
9714
  # </note>
9665
9715
  #
9716
+ #
9717
+ #
9718
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
9719
+ #
9666
9720
  # @return [Types::ListJobsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9667
9721
  #
9668
9722
  # * {Types::ListJobsResponse#jobs #jobs} => Array&lt;Types::JobSummary&gt;
@@ -12529,8 +12583,14 @@ module Aws::IoT
12529
12583
  # no additional results.
12530
12584
  #
12531
12585
  # @option params [Integer] :max_results
12532
- # The maximum number of results to return per page at one time. The
12533
- # response might contain fewer results but will never contain more.
12586
+ # The maximum number of results to return per page at one time. This
12587
+ # maximum number cannot exceed 100. The response might contain fewer
12588
+ # results but will never contain more. You can use [ `nextToken` ][1] to
12589
+ # retrieve the next set of results until `nextToken` returns `NULL`.
12590
+ #
12591
+ #
12592
+ #
12593
+ # [1]: https://docs.aws.amazon.com/iot/latest/apireference/API_SearchIndex.html#iot-SearchIndex-request-nextToken
12534
12594
  #
12535
12595
  # @option params [String] :query_version
12536
12596
  # The query version.
@@ -13759,6 +13819,9 @@ module Aws::IoT
13759
13819
  # @option params [Types::TlsConfig] :tls_config
13760
13820
  # An object that specifies the TLS configuration for a domain.
13761
13821
  #
13822
+ # @option params [Types::ServerCertificateConfig] :server_certificate_config
13823
+ # The server certificate configuration.
13824
+ #
13762
13825
  # @return [Types::UpdateDomainConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13763
13826
  #
13764
13827
  # * {Types::UpdateDomainConfigurationResponse#domain_configuration_name #domain_configuration_name} => String
@@ -13777,6 +13840,9 @@ module Aws::IoT
13777
13840
  # tls_config: {
13778
13841
  # security_policy: "SecurityPolicy",
13779
13842
  # },
13843
+ # server_certificate_config: {
13844
+ # enable_ocsp_check: false,
13845
+ # },
13780
13846
  # })
13781
13847
  #
13782
13848
  # @example Response structure
@@ -14072,10 +14138,16 @@ module Aws::IoT
14072
14138
  #
14073
14139
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
14074
14140
  #
14075
- # <note markdown="1"> The `namespaceId` feature is in public preview.
14141
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at this
14142
+ # time. For more information, see [Setting up IoT Greengrass core
14143
+ # devices.][1]
14076
14144
  #
14077
14145
  # </note>
14078
14146
  #
14147
+ #
14148
+ #
14149
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
14150
+ #
14079
14151
  # @option params [Types::JobExecutionsRetryConfig] :job_executions_retry_config
14080
14152
  # Allows you to create the criteria to retry a job.
14081
14153
  #
@@ -15075,7 +15147,7 @@ module Aws::IoT
15075
15147
  params: params,
15076
15148
  config: config)
15077
15149
  context[:gem_name] = 'aws-sdk-iot'
15078
- context[:gem_version] = '1.119.0'
15150
+ context[:gem_version] = '1.121.0'
15079
15151
  Seahorse::Client::Request.new(handlers, context)
15080
15152
  end
15081
15153
 
@@ -516,6 +516,7 @@ module Aws::IoT
516
516
  ElasticsearchType = Shapes::StringShape.new(name: 'ElasticsearchType')
517
517
  EnableCachingForHttp = Shapes::BooleanShape.new(name: 'EnableCachingForHttp')
518
518
  EnableIoTLoggingParams = Shapes::StructureShape.new(name: 'EnableIoTLoggingParams')
519
+ EnableOCSPCheck = Shapes::BooleanShape.new(name: 'EnableOCSPCheck')
519
520
  EnableTopicRuleRequest = Shapes::StructureShape.new(name: 'EnableTopicRuleRequest')
520
521
  Enabled = Shapes::BooleanShape.new(name: 'Enabled')
521
522
  EnabledBoolean = Shapes::BooleanShape.new(name: 'EnabledBoolean')
@@ -1076,6 +1077,7 @@ module Aws::IoT
1076
1077
  SchedulingConfig = Shapes::StructureShape.new(name: 'SchedulingConfig')
1077
1078
  SearchIndexRequest = Shapes::StructureShape.new(name: 'SearchIndexRequest')
1078
1079
  SearchIndexResponse = Shapes::StructureShape.new(name: 'SearchIndexResponse')
1080
+ SearchQueryMaxResults = Shapes::IntegerShape.new(name: 'SearchQueryMaxResults')
1079
1081
  SearchableAttributes = Shapes::ListShape.new(name: 'SearchableAttributes')
1080
1082
  Seconds = Shapes::IntegerShape.new(name: 'Seconds')
1081
1083
  SecurityGroupId = Shapes::StringShape.new(name: 'SecurityGroupId')
@@ -1092,6 +1094,7 @@ module Aws::IoT
1092
1094
  SecurityProfileTargetMappings = Shapes::ListShape.new(name: 'SecurityProfileTargetMappings')
1093
1095
  SecurityProfileTargets = Shapes::ListShape.new(name: 'SecurityProfileTargets')
1094
1096
  ServerCertificateArns = Shapes::ListShape.new(name: 'ServerCertificateArns')
1097
+ ServerCertificateConfig = Shapes::StructureShape.new(name: 'ServerCertificateConfig')
1095
1098
  ServerCertificateStatus = Shapes::StringShape.new(name: 'ServerCertificateStatus')
1096
1099
  ServerCertificateStatusDetail = Shapes::StringShape.new(name: 'ServerCertificateStatusDetail')
1097
1100
  ServerCertificateSummary = Shapes::StructureShape.new(name: 'ServerCertificateSummary')
@@ -1979,6 +1982,7 @@ module Aws::IoT
1979
1982
  CreateDomainConfigurationRequest.add_member(:service_type, Shapes::ShapeRef.new(shape: ServiceType, location_name: "serviceType"))
1980
1983
  CreateDomainConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tags"))
1981
1984
  CreateDomainConfigurationRequest.add_member(:tls_config, Shapes::ShapeRef.new(shape: TlsConfig, location_name: "tlsConfig"))
1985
+ CreateDomainConfigurationRequest.add_member(:server_certificate_config, Shapes::ShapeRef.new(shape: ServerCertificateConfig, location_name: "serverCertificateConfig"))
1982
1986
  CreateDomainConfigurationRequest.struct_class = Types::CreateDomainConfigurationRequest
1983
1987
 
1984
1988
  CreateDomainConfigurationResponse.add_member(:domain_configuration_name, Shapes::ShapeRef.new(shape: DomainConfigurationName, location_name: "domainConfigurationName"))
@@ -2605,6 +2609,7 @@ module Aws::IoT
2605
2609
  DescribeDomainConfigurationResponse.add_member(:domain_type, Shapes::ShapeRef.new(shape: DomainType, location_name: "domainType"))
2606
2610
  DescribeDomainConfigurationResponse.add_member(:last_status_change_date, Shapes::ShapeRef.new(shape: DateType, location_name: "lastStatusChangeDate"))
2607
2611
  DescribeDomainConfigurationResponse.add_member(:tls_config, Shapes::ShapeRef.new(shape: TlsConfig, location_name: "tlsConfig"))
2612
+ DescribeDomainConfigurationResponse.add_member(:server_certificate_config, Shapes::ShapeRef.new(shape: ServerCertificateConfig, location_name: "serverCertificateConfig"))
2608
2613
  DescribeDomainConfigurationResponse.struct_class = Types::DescribeDomainConfigurationResponse
2609
2614
 
2610
2615
  DescribeEndpointRequest.add_member(:endpoint_type, Shapes::ShapeRef.new(shape: EndpointType, location: "querystring", location_name: "endpointType"))
@@ -4454,7 +4459,7 @@ module Aws::IoT
4454
4459
  SearchIndexRequest.add_member(:index_name, Shapes::ShapeRef.new(shape: IndexName, location_name: "indexName"))
4455
4460
  SearchIndexRequest.add_member(:query_string, Shapes::ShapeRef.new(shape: QueryString, required: true, location_name: "queryString"))
4456
4461
  SearchIndexRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
4457
- SearchIndexRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: QueryMaxResults, location_name: "maxResults"))
4462
+ SearchIndexRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: SearchQueryMaxResults, location_name: "maxResults"))
4458
4463
  SearchIndexRequest.add_member(:query_version, Shapes::ShapeRef.new(shape: QueryVersion, location_name: "queryVersion"))
4459
4464
  SearchIndexRequest.struct_class = Types::SearchIndexRequest
4460
4465
 
@@ -4486,6 +4491,9 @@ module Aws::IoT
4486
4491
 
4487
4492
  ServerCertificateArns.member = Shapes::ShapeRef.new(shape: AcmCertificateArn)
4488
4493
 
4494
+ ServerCertificateConfig.add_member(:enable_ocsp_check, Shapes::ShapeRef.new(shape: EnableOCSPCheck, location_name: "enableOCSPCheck"))
4495
+ ServerCertificateConfig.struct_class = Types::ServerCertificateConfig
4496
+
4489
4497
  ServerCertificateSummary.add_member(:server_certificate_arn, Shapes::ShapeRef.new(shape: AcmCertificateArn, location_name: "serverCertificateArn"))
4490
4498
  ServerCertificateSummary.add_member(:server_certificate_status, Shapes::ShapeRef.new(shape: ServerCertificateStatus, location_name: "serverCertificateStatus"))
4491
4499
  ServerCertificateSummary.add_member(:server_certificate_status_detail, Shapes::ShapeRef.new(shape: ServerCertificateStatusDetail, location_name: "serverCertificateStatusDetail"))
@@ -5005,6 +5013,7 @@ module Aws::IoT
5005
5013
  UpdateDomainConfigurationRequest.add_member(:domain_configuration_status, Shapes::ShapeRef.new(shape: DomainConfigurationStatus, location_name: "domainConfigurationStatus"))
5006
5014
  UpdateDomainConfigurationRequest.add_member(:remove_authorizer_config, Shapes::ShapeRef.new(shape: RemoveAuthorizerConfig, location_name: "removeAuthorizerConfig"))
5007
5015
  UpdateDomainConfigurationRequest.add_member(:tls_config, Shapes::ShapeRef.new(shape: TlsConfig, location_name: "tlsConfig"))
5016
+ UpdateDomainConfigurationRequest.add_member(:server_certificate_config, Shapes::ShapeRef.new(shape: ServerCertificateConfig, location_name: "serverCertificateConfig"))
5008
5017
  UpdateDomainConfigurationRequest.struct_class = Types::UpdateDomainConfigurationRequest
5009
5018
 
5010
5019
  UpdateDomainConfigurationResponse.add_member(:domain_configuration_name, Shapes::ShapeRef.new(shape: ReservedDomainConfigurationName, location_name: "domainConfigurationName"))
@@ -509,9 +509,15 @@ module Aws::IoT
509
509
  #
510
510
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
511
511
  #
512
- # <note markdown="1"> The `namespaceId` feature is in public preview.
512
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
513
+ # this time. For more information, see [Setting up IoT Greengrass core
514
+ # devices.][1]
513
515
  #
514
516
  # </note>
517
+ #
518
+ #
519
+ #
520
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
515
521
  # @return [String]
516
522
  #
517
523
  class AssociateTargetsWithJobRequest < Struct.new(
@@ -2598,6 +2604,10 @@ module Aws::IoT
2598
2604
  # An object that specifies the TLS configuration for a domain.
2599
2605
  # @return [Types::TlsConfig]
2600
2606
  #
2607
+ # @!attribute [rw] server_certificate_config
2608
+ # The server certificate configuration.
2609
+ # @return [Types::ServerCertificateConfig]
2610
+ #
2601
2611
  class CreateDomainConfigurationRequest < Struct.new(
2602
2612
  :domain_configuration_name,
2603
2613
  :domain_name,
@@ -2606,7 +2616,8 @@ module Aws::IoT
2606
2616
  :authorizer_config,
2607
2617
  :service_type,
2608
2618
  :tags,
2609
- :tls_config)
2619
+ :tls_config,
2620
+ :server_certificate_config)
2610
2621
  SENSITIVE = []
2611
2622
  include Aws::Structure
2612
2623
  end
@@ -2870,9 +2881,15 @@ module Aws::IoT
2870
2881
  #
2871
2882
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
2872
2883
  #
2873
- # <note markdown="1"> The `namespaceId` feature is in public preview.
2884
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
2885
+ # this time. For more information, see [Setting up IoT Greengrass core
2886
+ # devices.][1]
2874
2887
  #
2875
2888
  # </note>
2889
+ #
2890
+ #
2891
+ #
2892
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
2876
2893
  # @return [String]
2877
2894
  #
2878
2895
  # @!attribute [rw] job_template_arn
@@ -4422,9 +4439,15 @@ module Aws::IoT
4422
4439
  #
4423
4440
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
4424
4441
  #
4425
- # <note markdown="1"> The `namespaceId` feature is in public preview.
4442
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
4443
+ # this time. For more information, see [Setting up IoT Greengrass core
4444
+ # devices.][1]
4426
4445
  #
4427
4446
  # </note>
4447
+ #
4448
+ #
4449
+ #
4450
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
4428
4451
  # @return [String]
4429
4452
  #
4430
4453
  class DeleteJobExecutionRequest < Struct.new(
@@ -4470,9 +4493,15 @@ module Aws::IoT
4470
4493
  #
4471
4494
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
4472
4495
  #
4473
- # <note markdown="1"> The `namespaceId` feature is in public preview.
4496
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
4497
+ # this time. For more information, see [Setting up IoT Greengrass core
4498
+ # devices.][1]
4474
4499
  #
4475
4500
  # </note>
4501
+ #
4502
+ #
4503
+ #
4504
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
4476
4505
  # @return [String]
4477
4506
  #
4478
4507
  class DeleteJobRequest < Struct.new(
@@ -5404,6 +5433,10 @@ module Aws::IoT
5404
5433
  # An object that specifies the TLS configuration for a domain.
5405
5434
  # @return [Types::TlsConfig]
5406
5435
  #
5436
+ # @!attribute [rw] server_certificate_config
5437
+ # The server certificate configuration.
5438
+ # @return [Types::ServerCertificateConfig]
5439
+ #
5407
5440
  class DescribeDomainConfigurationResponse < Struct.new(
5408
5441
  :domain_configuration_name,
5409
5442
  :domain_configuration_arn,
@@ -5414,7 +5447,8 @@ module Aws::IoT
5414
5447
  :service_type,
5415
5448
  :domain_type,
5416
5449
  :last_status_change_date,
5417
- :tls_config)
5450
+ :tls_config,
5451
+ :server_certificate_config)
5418
5452
  SENSITIVE = []
5419
5453
  include Aws::Structure
5420
5454
  end
@@ -8379,9 +8413,15 @@ module Aws::IoT
8379
8413
  #
8380
8414
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
8381
8415
  #
8382
- # <note markdown="1"> The `namespaceId` feature is in public preview.
8416
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
8417
+ # this time. For more information, see [Setting up IoT Greengrass core
8418
+ # devices.][1]
8383
8419
  #
8384
8420
  # </note>
8421
+ #
8422
+ #
8423
+ #
8424
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
8385
8425
  # @return [String]
8386
8426
  #
8387
8427
  # @!attribute [rw] job_template_arn
@@ -9924,9 +9964,15 @@ module Aws::IoT
9924
9964
  #
9925
9965
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
9926
9966
  #
9927
- # <note markdown="1"> The `namespaceId` feature is in public preview.
9967
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
9968
+ # this time. For more information, see [Setting up IoT Greengrass core
9969
+ # devices.][1]
9928
9970
  #
9929
9971
  # </note>
9972
+ #
9973
+ #
9974
+ #
9975
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
9930
9976
  # @return [String]
9931
9977
  #
9932
9978
  # @!attribute [rw] max_results
@@ -10047,9 +10093,15 @@ module Aws::IoT
10047
10093
  #
10048
10094
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
10049
10095
  #
10050
- # <note markdown="1"> The `namespaceId` feature is in public preview.
10096
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
10097
+ # this time. For more information, see [Setting up IoT Greengrass core
10098
+ # devices.][1]
10051
10099
  #
10052
10100
  # </note>
10101
+ #
10102
+ #
10103
+ #
10104
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
10053
10105
  # @return [String]
10054
10106
  #
10055
10107
  class ListJobsRequest < Struct.new(
@@ -13526,8 +13578,15 @@ module Aws::IoT
13526
13578
  # @return [String]
13527
13579
  #
13528
13580
  # @!attribute [rw] max_results
13529
- # The maximum number of results to return per page at one time. The
13530
- # response might contain fewer results but will never contain more.
13581
+ # The maximum number of results to return per page at one time. This
13582
+ # maximum number cannot exceed 100. The response might contain fewer
13583
+ # results but will never contain more. You can use [ `nextToken` ][1]
13584
+ # to retrieve the next set of results until `nextToken` returns
13585
+ # `NULL`.
13586
+ #
13587
+ #
13588
+ #
13589
+ # [1]: https://docs.aws.amazon.com/iot/latest/apireference/API_SearchIndex.html#iot-SearchIndex-request-nextToken
13531
13590
  # @return [Integer]
13532
13591
  #
13533
13592
  # @!attribute [rw] query_version
@@ -13614,6 +13673,27 @@ module Aws::IoT
13614
13673
  include Aws::Structure
13615
13674
  end
13616
13675
 
13676
+ # The server certificate configuration.
13677
+ #
13678
+ # @!attribute [rw] enable_ocsp_check
13679
+ # A Boolean value that indicates whether Online Certificate Status
13680
+ # Protocol (OCSP) server certificate check is enabled or not.
13681
+ #
13682
+ # For more information, see [Configuring OCSP server-certificate
13683
+ # stapling in domain configuration][1] from Amazon Web Services IoT
13684
+ # Core Developer Guide.
13685
+ #
13686
+ #
13687
+ #
13688
+ # [1]: https://docs.aws.amazon.com/iot/latest/developerguide/iot-custom-domain-ocsp-config.html
13689
+ # @return [Boolean]
13690
+ #
13691
+ class ServerCertificateConfig < Struct.new(
13692
+ :enable_ocsp_check)
13693
+ SENSITIVE = []
13694
+ include Aws::Structure
13695
+ end
13696
+
13617
13697
  # An object that contains information about a server certificate.
13618
13698
  #
13619
13699
  # @!attribute [rw] server_certificate_arn
@@ -15945,12 +16025,17 @@ module Aws::IoT
15945
16025
  # An object that specifies the TLS configuration for a domain.
15946
16026
  # @return [Types::TlsConfig]
15947
16027
  #
16028
+ # @!attribute [rw] server_certificate_config
16029
+ # The server certificate configuration.
16030
+ # @return [Types::ServerCertificateConfig]
16031
+ #
15948
16032
  class UpdateDomainConfigurationRequest < Struct.new(
15949
16033
  :domain_configuration_name,
15950
16034
  :authorizer_config,
15951
16035
  :domain_configuration_status,
15952
16036
  :remove_authorizer_config,
15953
- :tls_config)
16037
+ :tls_config,
16038
+ :server_certificate_config)
15954
16039
  SENSITIVE = []
15955
16040
  include Aws::Structure
15956
16041
  end
@@ -16151,9 +16236,15 @@ module Aws::IoT
16151
16236
  #
16152
16237
  # `$aws/things/THING_NAME/jobs/JOB_ID/notify-namespace-NAMESPACE_ID/`
16153
16238
  #
16154
- # <note markdown="1"> The `namespaceId` feature is in public preview.
16239
+ # <note markdown="1"> The `namespaceId` feature is only supported by IoT Greengrass at
16240
+ # this time. For more information, see [Setting up IoT Greengrass core
16241
+ # devices.][1]
16155
16242
  #
16156
16243
  # </note>
16244
+ #
16245
+ #
16246
+ #
16247
+ # [1]: https://docs.aws.amazon.com/greengrass/v2/developerguide/setting-up.html
16157
16248
  # @return [String]
16158
16249
  #
16159
16250
  # @!attribute [rw] job_executions_retry_config
data/lib/aws-sdk-iot.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-iot/customizations'
52
52
  # @!group service
53
53
  module Aws::IoT
54
54
 
55
- GEM_VERSION = '1.119.0'
55
+ GEM_VERSION = '1.121.0'
56
56
 
57
57
  end
data/sig/client.rbs CHANGED
@@ -401,6 +401,9 @@ module Aws
401
401
  ],
402
402
  ?tls_config: {
403
403
  security_policy: ::String?
404
+ },
405
+ ?server_certificate_config: {
406
+ enable_ocsp_check: bool?
404
407
  }
405
408
  ) -> _CreateDomainConfigurationResponseSuccess
406
409
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateDomainConfigurationResponseSuccess
@@ -2064,6 +2067,7 @@ module Aws
2064
2067
  def domain_type: () -> ("ENDPOINT" | "AWS_MANAGED" | "CUSTOMER_MANAGED")
2065
2068
  def last_status_change_date: () -> ::Time
2066
2069
  def tls_config: () -> Types::TlsConfig
2070
+ def server_certificate_config: () -> Types::ServerCertificateConfig
2067
2071
  end
2068
2072
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/IoT/Client.html#describe_domain_configuration-instance_method
2069
2073
  def describe_domain_configuration: (
@@ -4423,6 +4427,9 @@ module Aws
4423
4427
  ?remove_authorizer_config: bool,
4424
4428
  ?tls_config: {
4425
4429
  security_policy: ::String?
4430
+ },
4431
+ ?server_certificate_config: {
4432
+ enable_ocsp_check: bool?
4426
4433
  }
4427
4434
  ) -> _UpdateDomainConfigurationResponseSuccess
4428
4435
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateDomainConfigurationResponseSuccess
data/sig/types.rbs CHANGED
@@ -718,6 +718,7 @@ module Aws::IoT
718
718
  attr_accessor service_type: ("DATA" | "CREDENTIAL_PROVIDER" | "JOBS")
719
719
  attr_accessor tags: ::Array[Types::Tag]
720
720
  attr_accessor tls_config: Types::TlsConfig
721
+ attr_accessor server_certificate_config: Types::ServerCertificateConfig
721
722
  SENSITIVE: []
722
723
  end
723
724
 
@@ -1593,6 +1594,7 @@ module Aws::IoT
1593
1594
  attr_accessor domain_type: ("ENDPOINT" | "AWS_MANAGED" | "CUSTOMER_MANAGED")
1594
1595
  attr_accessor last_status_change_date: ::Time
1595
1596
  attr_accessor tls_config: Types::TlsConfig
1597
+ attr_accessor server_certificate_config: Types::ServerCertificateConfig
1596
1598
  SENSITIVE: []
1597
1599
  end
1598
1600
 
@@ -3992,6 +3994,11 @@ module Aws::IoT
3992
3994
  SENSITIVE: []
3993
3995
  end
3994
3996
 
3997
+ class ServerCertificateConfig
3998
+ attr_accessor enable_ocsp_check: bool
3999
+ SENSITIVE: []
4000
+ end
4001
+
3995
4002
  class ServerCertificateSummary
3996
4003
  attr_accessor server_certificate_arn: ::String
3997
4004
  attr_accessor server_certificate_status: ("INVALID" | "VALID")
@@ -4639,6 +4646,7 @@ module Aws::IoT
4639
4646
  attr_accessor domain_configuration_status: ("ENABLED" | "DISABLED")
4640
4647
  attr_accessor remove_authorizer_config: bool
4641
4648
  attr_accessor tls_config: Types::TlsConfig
4649
+ attr_accessor server_certificate_config: Types::ServerCertificateConfig
4642
4650
  SENSITIVE: []
4643
4651
  end
4644
4652
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-iot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.119.0
4
+ version: 1.121.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-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core