aws-sdk-iot 1.130.0 → 1.132.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-iot/client.rb +221 -1
- data/lib/aws-sdk-iot/client_api.rb +116 -0
- data/lib/aws-sdk-iot/endpoints.rb +288 -1020
- data/lib/aws-sdk-iot/plugins/endpoints.rb +16 -1
- data/lib/aws-sdk-iot/types.rb +255 -7
- data/lib/aws-sdk-iot.rb +1 -1
- data/sig/client.rbs +72 -2
- data/sig/types.rbs +72 -3
- metadata +4 -4
data/sig/types.rbs
CHANGED
@@ -135,6 +135,22 @@ module Aws::IoT
|
|
135
135
|
SENSITIVE: []
|
136
136
|
end
|
137
137
|
|
138
|
+
class AssociateSbomWithPackageVersionRequest
|
139
|
+
attr_accessor package_name: ::String
|
140
|
+
attr_accessor version_name: ::String
|
141
|
+
attr_accessor sbom: Types::Sbom
|
142
|
+
attr_accessor client_token: ::String
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
146
|
+
class AssociateSbomWithPackageVersionResponse
|
147
|
+
attr_accessor package_name: ::String
|
148
|
+
attr_accessor version_name: ::String
|
149
|
+
attr_accessor sbom: Types::Sbom
|
150
|
+
attr_accessor sbom_validation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
138
154
|
class AssociateTargetsWithJobRequest
|
139
155
|
attr_accessor targets: ::Array[::String]
|
140
156
|
attr_accessor job_id: ::String
|
@@ -892,9 +908,11 @@ module Aws::IoT
|
|
892
908
|
attr_accessor version_name: ::String
|
893
909
|
attr_accessor description: ::String
|
894
910
|
attr_accessor attributes: ::Hash[::String, ::String]
|
911
|
+
attr_accessor artifact: Types::PackageVersionArtifact
|
912
|
+
attr_accessor recipe: ::String
|
895
913
|
attr_accessor tags: ::Hash[::String, ::String]
|
896
914
|
attr_accessor client_token: ::String
|
897
|
-
SENSITIVE: [:description, :attributes]
|
915
|
+
SENSITIVE: [:description, :attributes, :recipe]
|
898
916
|
end
|
899
917
|
|
900
918
|
class CreatePackageVersionResponse
|
@@ -1666,6 +1684,7 @@ module Aws::IoT
|
|
1666
1684
|
|
1667
1685
|
class DescribeJobRequest
|
1668
1686
|
attr_accessor job_id: ::String
|
1687
|
+
attr_accessor before_substitution: bool
|
1669
1688
|
SENSITIVE: []
|
1670
1689
|
end
|
1671
1690
|
|
@@ -1972,6 +1991,16 @@ module Aws::IoT
|
|
1972
1991
|
SENSITIVE: []
|
1973
1992
|
end
|
1974
1993
|
|
1994
|
+
class DisassociateSbomFromPackageVersionRequest
|
1995
|
+
attr_accessor package_name: ::String
|
1996
|
+
attr_accessor version_name: ::String
|
1997
|
+
attr_accessor client_token: ::String
|
1998
|
+
SENSITIVE: []
|
1999
|
+
end
|
2000
|
+
|
2001
|
+
class DisassociateSbomFromPackageVersionResponse < Aws::EmptyStructure
|
2002
|
+
end
|
2003
|
+
|
1975
2004
|
class DocumentParameter
|
1976
2005
|
attr_accessor key: ::String
|
1977
2006
|
attr_accessor description: ::String
|
@@ -2149,6 +2178,7 @@ module Aws::IoT
|
|
2149
2178
|
|
2150
2179
|
class GetJobDocumentRequest
|
2151
2180
|
attr_accessor job_id: ::String
|
2181
|
+
attr_accessor before_substitution: bool
|
2152
2182
|
SENSITIVE: []
|
2153
2183
|
end
|
2154
2184
|
|
@@ -2211,11 +2241,15 @@ module Aws::IoT
|
|
2211
2241
|
attr_accessor version_name: ::String
|
2212
2242
|
attr_accessor description: ::String
|
2213
2243
|
attr_accessor attributes: ::Hash[::String, ::String]
|
2244
|
+
attr_accessor artifact: Types::PackageVersionArtifact
|
2214
2245
|
attr_accessor status: ("DRAFT" | "PUBLISHED" | "DEPRECATED")
|
2215
2246
|
attr_accessor error_reason: ::String
|
2216
2247
|
attr_accessor creation_date: ::Time
|
2217
2248
|
attr_accessor last_modified_date: ::Time
|
2218
|
-
|
2249
|
+
attr_accessor sbom: Types::Sbom
|
2250
|
+
attr_accessor sbom_validation_status: ("IN_PROGRESS" | "FAILED" | "SUCCEEDED")
|
2251
|
+
attr_accessor recipe: ::String
|
2252
|
+
SENSITIVE: [:description, :attributes, :recipe]
|
2219
2253
|
end
|
2220
2254
|
|
2221
2255
|
class GetPercentilesRequest
|
@@ -3158,6 +3192,21 @@ module Aws::IoT
|
|
3158
3192
|
SENSITIVE: []
|
3159
3193
|
end
|
3160
3194
|
|
3195
|
+
class ListSbomValidationResultsRequest
|
3196
|
+
attr_accessor package_name: ::String
|
3197
|
+
attr_accessor version_name: ::String
|
3198
|
+
attr_accessor validation_result: ("FAILED" | "SUCCEEDED")
|
3199
|
+
attr_accessor max_results: ::Integer
|
3200
|
+
attr_accessor next_token: ::String
|
3201
|
+
SENSITIVE: []
|
3202
|
+
end
|
3203
|
+
|
3204
|
+
class ListSbomValidationResultsResponse
|
3205
|
+
attr_accessor validation_result_summaries: ::Array[Types::SbomValidationResultSummary]
|
3206
|
+
attr_accessor next_token: ::String
|
3207
|
+
SENSITIVE: []
|
3208
|
+
end
|
3209
|
+
|
3161
3210
|
class ListScheduledAuditsRequest
|
3162
3211
|
attr_accessor next_token: ::String
|
3163
3212
|
attr_accessor max_results: ::Integer
|
@@ -3644,6 +3693,11 @@ module Aws::IoT
|
|
3644
3693
|
SENSITIVE: []
|
3645
3694
|
end
|
3646
3695
|
|
3696
|
+
class PackageVersionArtifact
|
3697
|
+
attr_accessor s3_location: Types::S3Location
|
3698
|
+
SENSITIVE: []
|
3699
|
+
end
|
3700
|
+
|
3647
3701
|
class PackageVersionSummary
|
3648
3702
|
attr_accessor package_name: ::String
|
3649
3703
|
attr_accessor version_name: ::String
|
@@ -3939,6 +3993,19 @@ module Aws::IoT
|
|
3939
3993
|
SENSITIVE: []
|
3940
3994
|
end
|
3941
3995
|
|
3996
|
+
class Sbom
|
3997
|
+
attr_accessor s3_location: Types::S3Location
|
3998
|
+
SENSITIVE: []
|
3999
|
+
end
|
4000
|
+
|
4001
|
+
class SbomValidationResultSummary
|
4002
|
+
attr_accessor file_name: ::String
|
4003
|
+
attr_accessor validation_result: ("FAILED" | "SUCCEEDED")
|
4004
|
+
attr_accessor error_code: ("INCOMPATIBLE_FORMAT" | "FILE_SIZE_LIMIT_EXCEEDED")
|
4005
|
+
attr_accessor error_message: ::String
|
4006
|
+
SENSITIVE: []
|
4007
|
+
end
|
4008
|
+
|
3942
4009
|
class ScheduledAuditMetadata
|
3943
4010
|
attr_accessor scheduled_audit_name: ::String
|
3944
4011
|
attr_accessor scheduled_audit_arn: ::String
|
@@ -4753,9 +4820,11 @@ module Aws::IoT
|
|
4753
4820
|
attr_accessor version_name: ::String
|
4754
4821
|
attr_accessor description: ::String
|
4755
4822
|
attr_accessor attributes: ::Hash[::String, ::String]
|
4823
|
+
attr_accessor artifact: Types::PackageVersionArtifact
|
4756
4824
|
attr_accessor action: ("PUBLISH" | "DEPRECATE")
|
4825
|
+
attr_accessor recipe: ::String
|
4757
4826
|
attr_accessor client_token: ::String
|
4758
|
-
SENSITIVE: [:description, :attributes]
|
4827
|
+
SENSITIVE: [:description, :attributes, :recipe]
|
4759
4828
|
end
|
4760
4829
|
|
4761
4830
|
class UpdatePackageVersionResponse < Aws::EmptyStructure
|
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.
|
4
|
+
version: 1.132.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-09-
|
11
|
+
date: 2024-09-16 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.
|
22
|
+
version: 3.205.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.
|
32
|
+
version: 3.205.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|