aws-sdk-inspector2 1.43.0 → 1.45.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-inspector2/client.rb +34 -11
- data/lib/aws-sdk-inspector2/client_api.rb +2 -0
- data/lib/aws-sdk-inspector2/types.rb +8 -5
- data/lib/aws-sdk-inspector2.rb +1 -1
- data/sig/client.rbs +16 -0
- data/sig/types.rbs +4 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2f64dcd370f486908c29896d86f65b56967fe8bf91144a0978252b198f8e88b8
|
4
|
+
data.tar.gz: 9caf23e14b19dd42e976b553b561e7e550ce8f23d5a166cdbcdf59f48653f73e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 729dc264b50eac6b3bd588cbf7e460469c67628289d1f3ec89d43b1f8f81a9711c3de6f298e3a387569ff4ecb76dcc3730685fbb818a220ca3b2875f56e20706
|
7
|
+
data.tar.gz: ce6e1f1c33dfd8df8b2c23e0cf4747dfe197ab4dca0ab46bf7e6bf93ec1d4c7d19866bf9126e739274ac40cd851daa7ef6d6b24920c0557eaed14e369592bb0d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.45.0 (2024-11-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Extend inspector2 service model to include ServiceQuotaExceededException.
|
8
|
+
|
9
|
+
1.44.0 (2024-11-11)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Adds support for filePath filter.
|
13
|
+
|
4
14
|
1.43.0 (2024-10-18)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.45.0
|
@@ -449,15 +449,18 @@ module Aws::Inspector2
|
|
449
449
|
|
450
450
|
# Associates an Amazon Web Services account with an Amazon Inspector
|
451
451
|
# delegated administrator. An HTTP 200 response indicates the
|
452
|
-
# association was
|
453
|
-
#
|
454
|
-
#
|
455
|
-
#
|
452
|
+
# association was started but doesn’t indicate whether it completed. You
|
453
|
+
# can check if the association completed using [ListMembers][1] for
|
454
|
+
# multiple accounts or [GetMembers][2] for a single account. An HTTP 402
|
455
|
+
# response indicates the association failed because the organization
|
456
|
+
# size exceeded its limit. For information on limits, see [Amazon
|
457
|
+
# Inspector quotas][3].
|
456
458
|
#
|
457
459
|
#
|
458
460
|
#
|
459
461
|
# [1]: https://docs.aws.amazon.com/inspector/v2/APIReference/API_ListMembers.html
|
460
462
|
# [2]: https://docs.aws.amazon.com/inspector/v2/APIReference/API_GetMember.html
|
463
|
+
# [3]: https://docs.aws.amazon.com/inspector/latest/user/quotas.html
|
461
464
|
#
|
462
465
|
# @option params [required, String] :account_id
|
463
466
|
# The Amazon Web Services account ID of the member account to be
|
@@ -1187,6 +1190,10 @@ module Aws::Inspector2
|
|
1187
1190
|
# lower_inclusive: 1.0,
|
1188
1191
|
# upper_inclusive: 1.0,
|
1189
1192
|
# },
|
1193
|
+
# file_path: {
|
1194
|
+
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
1195
|
+
# value: "StringInput", # required
|
1196
|
+
# },
|
1190
1197
|
# name: {
|
1191
1198
|
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
1192
1199
|
# value: "StringInput", # required
|
@@ -1508,6 +1515,10 @@ module Aws::Inspector2
|
|
1508
1515
|
# lower_inclusive: 1.0,
|
1509
1516
|
# upper_inclusive: 1.0,
|
1510
1517
|
# },
|
1518
|
+
# file_path: {
|
1519
|
+
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
1520
|
+
# value: "StringInput", # required
|
1521
|
+
# },
|
1511
1522
|
# name: {
|
1512
1523
|
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
1513
1524
|
# value: "StringInput", # required
|
@@ -2336,6 +2347,8 @@ module Aws::Inspector2
|
|
2336
2347
|
# resp.filter_criteria.vulnerable_packages[0].architecture.value #=> String
|
2337
2348
|
# resp.filter_criteria.vulnerable_packages[0].epoch.lower_inclusive #=> Float
|
2338
2349
|
# resp.filter_criteria.vulnerable_packages[0].epoch.upper_inclusive #=> Float
|
2350
|
+
# resp.filter_criteria.vulnerable_packages[0].file_path.comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS"
|
2351
|
+
# resp.filter_criteria.vulnerable_packages[0].file_path.value #=> String
|
2339
2352
|
# resp.filter_criteria.vulnerable_packages[0].name.comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS"
|
2340
2353
|
# resp.filter_criteria.vulnerable_packages[0].name.value #=> String
|
2341
2354
|
# resp.filter_criteria.vulnerable_packages[0].release.comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS"
|
@@ -2949,7 +2962,7 @@ module Aws::Inspector2
|
|
2949
2962
|
req.send_request(options)
|
2950
2963
|
end
|
2951
2964
|
|
2952
|
-
# Lists coverage details for
|
2965
|
+
# Lists coverage details for your environment.
|
2953
2966
|
#
|
2954
2967
|
# @option params [Types::CoverageFilterCriteria] :filter_criteria
|
2955
2968
|
# An object that contains details on the filters to apply to the
|
@@ -3097,7 +3110,7 @@ module Aws::Inspector2
|
|
3097
3110
|
# resp.covered_resources[0].resource_metadata.lambda_function.function_tags["MapKey"] #=> String
|
3098
3111
|
# resp.covered_resources[0].resource_metadata.lambda_function.layers #=> Array
|
3099
3112
|
# resp.covered_resources[0].resource_metadata.lambda_function.layers[0] #=> String
|
3100
|
-
# resp.covered_resources[0].resource_metadata.lambda_function.runtime #=> String, one of "NODEJS", "NODEJS_12_X", "NODEJS_14_X", "NODEJS_16_X", "JAVA_8", "JAVA_8_AL2", "JAVA_11", "PYTHON_3_7", "PYTHON_3_8", "PYTHON_3_9", "UNSUPPORTED", "NODEJS_18_X", "GO_1_X", "JAVA_17", "PYTHON_3_10"
|
3113
|
+
# resp.covered_resources[0].resource_metadata.lambda_function.runtime #=> String, one of "NODEJS", "NODEJS_12_X", "NODEJS_14_X", "NODEJS_16_X", "JAVA_8", "JAVA_8_AL2", "JAVA_11", "PYTHON_3_7", "PYTHON_3_8", "PYTHON_3_9", "UNSUPPORTED", "NODEJS_18_X", "GO_1_X", "JAVA_17", "PYTHON_3_10", "PYTHON_3_11", "DOTNETCORE_3_1", "DOTNET_6", "DOTNET_7", "RUBY_2_7", "RUBY_3_2"
|
3101
3114
|
# resp.covered_resources[0].resource_type #=> String, one of "AWS_EC2_INSTANCE", "AWS_ECR_CONTAINER_IMAGE", "AWS_ECR_REPOSITORY", "AWS_LAMBDA_FUNCTION"
|
3102
3115
|
# resp.covered_resources[0].scan_mode #=> String, one of "EC2_SSM_AGENT_BASED", "EC2_AGENTLESS"
|
3103
3116
|
# resp.covered_resources[0].scan_status.reason #=> String, one of "PENDING_INITIAL_SCAN", "ACCESS_DENIED", "INTERNAL_ERROR", "UNMANAGED_EC2_INSTANCE", "UNSUPPORTED_OS", "SCAN_ELIGIBILITY_EXPIRED", "RESOURCE_TERMINATED", "SUCCESSFUL", "NO_RESOURCES_FOUND", "IMAGE_SIZE_EXCEEDED", "SCAN_FREQUENCY_MANUAL", "SCAN_FREQUENCY_SCAN_ON_PUSH", "EC2_INSTANCE_STOPPED", "PENDING_DISABLE", "NO_INVENTORY", "STALE_INVENTORY", "EXCLUDED_BY_TAG", "UNSUPPORTED_RUNTIME", "UNSUPPORTED_MEDIA_TYPE", "UNSUPPORTED_CONFIG_FILE", "DEEP_INSPECTION_PACKAGE_COLLECTION_LIMIT_EXCEEDED", "DEEP_INSPECTION_DAILY_SSM_INVENTORY_LIMIT_EXCEEDED", "DEEP_INSPECTION_COLLECTION_TIME_LIMIT_EXCEEDED", "DEEP_INSPECTION_NO_INVENTORY", "AGENTLESS_INSTANCE_STORAGE_LIMIT_EXCEEDED", "AGENTLESS_INSTANCE_COLLECTION_TIME_LIMIT_EXCEEDED"
|
@@ -3476,6 +3489,8 @@ module Aws::Inspector2
|
|
3476
3489
|
# resp.filters[0].criteria.vulnerable_packages[0].architecture.value #=> String
|
3477
3490
|
# resp.filters[0].criteria.vulnerable_packages[0].epoch.lower_inclusive #=> Float
|
3478
3491
|
# resp.filters[0].criteria.vulnerable_packages[0].epoch.upper_inclusive #=> Float
|
3492
|
+
# resp.filters[0].criteria.vulnerable_packages[0].file_path.comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS"
|
3493
|
+
# resp.filters[0].criteria.vulnerable_packages[0].file_path.value #=> String
|
3479
3494
|
# resp.filters[0].criteria.vulnerable_packages[0].name.comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS"
|
3480
3495
|
# resp.filters[0].criteria.vulnerable_packages[0].name.value #=> String
|
3481
3496
|
# resp.filters[0].criteria.vulnerable_packages[0].release.comparison #=> String, one of "EQUALS", "PREFIX", "NOT_EQUALS"
|
@@ -4147,6 +4162,10 @@ module Aws::Inspector2
|
|
4147
4162
|
# lower_inclusive: 1.0,
|
4148
4163
|
# upper_inclusive: 1.0,
|
4149
4164
|
# },
|
4165
|
+
# file_path: {
|
4166
|
+
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
4167
|
+
# value: "StringInput", # required
|
4168
|
+
# },
|
4150
4169
|
# name: {
|
4151
4170
|
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
4152
4171
|
# value: "StringInput", # required
|
@@ -4240,7 +4259,7 @@ module Aws::Inspector2
|
|
4240
4259
|
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].file_path #=> String
|
4241
4260
|
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].fixed_in_version #=> String
|
4242
4261
|
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].name #=> String
|
4243
|
-
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].package_manager #=> String, one of "BUNDLER", "CARGO", "COMPOSER", "NPM", "NUGET", "PIPENV", "POETRY", "YARN", "GOBINARY", "GOMOD", "JAR", "OS", "PIP", "PYTHONPKG", "NODEPKG", "POM", "GEMSPEC"
|
4262
|
+
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].package_manager #=> String, one of "BUNDLER", "CARGO", "COMPOSER", "NPM", "NUGET", "PIPENV", "POETRY", "YARN", "GOBINARY", "GOMOD", "JAR", "OS", "PIP", "PYTHONPKG", "NODEPKG", "POM", "GEMSPEC", "DOTNET_CORE"
|
4244
4263
|
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].release #=> String
|
4245
4264
|
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].remediation #=> String
|
4246
4265
|
# resp.findings[0].package_vulnerability_details.vulnerable_packages[0].source_lambda_layer_arn #=> String
|
@@ -4279,7 +4298,7 @@ module Aws::Inspector2
|
|
4279
4298
|
# resp.findings[0].resources[0].details.aws_lambda_function.layers #=> Array
|
4280
4299
|
# resp.findings[0].resources[0].details.aws_lambda_function.layers[0] #=> String
|
4281
4300
|
# resp.findings[0].resources[0].details.aws_lambda_function.package_type #=> String, one of "IMAGE", "ZIP"
|
4282
|
-
# resp.findings[0].resources[0].details.aws_lambda_function.runtime #=> String, one of "NODEJS", "NODEJS_12_X", "NODEJS_14_X", "NODEJS_16_X", "JAVA_8", "JAVA_8_AL2", "JAVA_11", "PYTHON_3_7", "PYTHON_3_8", "PYTHON_3_9", "UNSUPPORTED", "NODEJS_18_X", "GO_1_X", "JAVA_17", "PYTHON_3_10"
|
4301
|
+
# resp.findings[0].resources[0].details.aws_lambda_function.runtime #=> String, one of "NODEJS", "NODEJS_12_X", "NODEJS_14_X", "NODEJS_16_X", "JAVA_8", "JAVA_8_AL2", "JAVA_11", "PYTHON_3_7", "PYTHON_3_8", "PYTHON_3_9", "UNSUPPORTED", "NODEJS_18_X", "GO_1_X", "JAVA_17", "PYTHON_3_10", "PYTHON_3_11", "DOTNETCORE_3_1", "DOTNET_6", "DOTNET_7", "RUBY_2_7", "RUBY_3_2"
|
4283
4302
|
# resp.findings[0].resources[0].details.aws_lambda_function.version #=> String
|
4284
4303
|
# resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.security_group_ids #=> Array
|
4285
4304
|
# resp.findings[0].resources[0].details.aws_lambda_function.vpc_config.security_group_ids[0] #=> String
|
@@ -4646,8 +4665,8 @@ module Aws::Inspector2
|
|
4646
4665
|
|
4647
4666
|
# Stops a CIS session. This API is used by the Amazon Inspector SSM
|
4648
4667
|
# plugin to communicate with the Amazon Inspector service. The Amazon
|
4649
|
-
# Inspector SSM plugin calls this API to
|
4650
|
-
#
|
4668
|
+
# Inspector SSM plugin calls this API to stop a CIS scan session for the
|
4669
|
+
# scan ID supplied by the service.
|
4651
4670
|
#
|
4652
4671
|
# @option params [required, Types::StopCisSessionMessage] :message
|
4653
4672
|
# The stop CIS session message.
|
@@ -5231,6 +5250,10 @@ module Aws::Inspector2
|
|
5231
5250
|
# lower_inclusive: 1.0,
|
5232
5251
|
# upper_inclusive: 1.0,
|
5233
5252
|
# },
|
5253
|
+
# file_path: {
|
5254
|
+
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
5255
|
+
# value: "StringInput", # required
|
5256
|
+
# },
|
5234
5257
|
# name: {
|
5235
5258
|
# comparison: "EQUALS", # required, accepts EQUALS, PREFIX, NOT_EQUALS
|
5236
5259
|
# value: "StringInput", # required
|
@@ -5351,7 +5374,7 @@ module Aws::Inspector2
|
|
5351
5374
|
tracer: tracer
|
5352
5375
|
)
|
5353
5376
|
context[:gem_name] = 'aws-sdk-inspector2'
|
5354
|
-
context[:gem_version] = '1.
|
5377
|
+
context[:gem_version] = '1.45.0'
|
5355
5378
|
Seahorse::Client::Request.new(handlers, context)
|
5356
5379
|
end
|
5357
5380
|
|
@@ -1886,6 +1886,7 @@ module Aws::Inspector2
|
|
1886
1886
|
|
1887
1887
|
PackageFilter.add_member(:architecture, Shapes::ShapeRef.new(shape: StringFilter, location_name: "architecture"))
|
1888
1888
|
PackageFilter.add_member(:epoch, Shapes::ShapeRef.new(shape: NumberFilter, location_name: "epoch"))
|
1889
|
+
PackageFilter.add_member(:file_path, Shapes::ShapeRef.new(shape: StringFilter, location_name: "filePath"))
|
1889
1890
|
PackageFilter.add_member(:name, Shapes::ShapeRef.new(shape: StringFilter, location_name: "name"))
|
1890
1891
|
PackageFilter.add_member(:release, Shapes::ShapeRef.new(shape: StringFilter, location_name: "release"))
|
1891
1892
|
PackageFilter.add_member(:source_lambda_layer_arn, Shapes::ShapeRef.new(shape: StringFilter, location_name: "sourceLambdaLayerArn"))
|
@@ -2366,6 +2367,7 @@ module Aws::Inspector2
|
|
2366
2367
|
o.http_request_uri = "/members/associate"
|
2367
2368
|
o.input = Shapes::ShapeRef.new(shape: AssociateMemberRequest)
|
2368
2369
|
o.output = Shapes::ShapeRef.new(shape: AssociateMemberResponse)
|
2370
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
2369
2371
|
o.errors << Shapes::ShapeRef.new(shape: ValidationException)
|
2370
2372
|
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
2371
2373
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
@@ -12,9 +12,6 @@ module Aws::Inspector2
|
|
12
12
|
|
13
13
|
# You do not have sufficient access to perform this action.
|
14
14
|
#
|
15
|
-
# For `Enable`, you receive this error if you attempt to use a feature
|
16
|
-
# in an unsupported Amazon Web Services Region.
|
17
|
-
#
|
18
15
|
# @!attribute [rw] message
|
19
16
|
# @return [String]
|
20
17
|
#
|
@@ -1973,7 +1970,7 @@ module Aws::Inspector2
|
|
1973
1970
|
#
|
1974
1971
|
# @!attribute [rw] scan_mode
|
1975
1972
|
# The filter to search for Amazon EC2 instance coverage by scan mode.
|
1976
|
-
# Valid values are `EC2_SSM_AGENT_BASED` and `
|
1973
|
+
# Valid values are `EC2_SSM_AGENT_BASED` and `EC2_AGENTLESS`.
|
1977
1974
|
# @return [Array<Types::CoverageStringFilter>]
|
1978
1975
|
#
|
1979
1976
|
# @!attribute [rw] scan_status_code
|
@@ -4204,7 +4201,7 @@ module Aws::Inspector2
|
|
4204
4201
|
#
|
4205
4202
|
# @!attribute [rw] s3_destination
|
4206
4203
|
# Contains details of the Amazon S3 bucket and KMS key used to export
|
4207
|
-
# findings
|
4204
|
+
# findings
|
4208
4205
|
# @return [Types::Destination]
|
4209
4206
|
#
|
4210
4207
|
# @!attribute [rw] status
|
@@ -5626,6 +5623,11 @@ module Aws::Inspector2
|
|
5626
5623
|
# An object that contains details on the package epoch to filter on.
|
5627
5624
|
# @return [Types::NumberFilter]
|
5628
5625
|
#
|
5626
|
+
# @!attribute [rw] file_path
|
5627
|
+
# An object that contains details on the package file path to filter
|
5628
|
+
# on.
|
5629
|
+
# @return [Types::StringFilter]
|
5630
|
+
#
|
5629
5631
|
# @!attribute [rw] name
|
5630
5632
|
# An object that contains details on the name of the package to filter
|
5631
5633
|
# on.
|
@@ -5653,6 +5655,7 @@ module Aws::Inspector2
|
|
5653
5655
|
class PackageFilter < Struct.new(
|
5654
5656
|
:architecture,
|
5655
5657
|
:epoch,
|
5658
|
+
:file_path,
|
5656
5659
|
:name,
|
5657
5660
|
:release,
|
5658
5661
|
:source_lambda_layer_arn,
|
data/lib/aws-sdk-inspector2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -482,6 +482,10 @@ module Aws
|
|
482
482
|
lower_inclusive: ::Float?,
|
483
483
|
upper_inclusive: ::Float?
|
484
484
|
}?,
|
485
|
+
file_path: {
|
486
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
487
|
+
value: ::String
|
488
|
+
}?,
|
485
489
|
name: {
|
486
490
|
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
487
491
|
value: ::String
|
@@ -775,6 +779,10 @@ module Aws
|
|
775
779
|
lower_inclusive: ::Float?,
|
776
780
|
upper_inclusive: ::Float?
|
777
781
|
}?,
|
782
|
+
file_path: {
|
783
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
784
|
+
value: ::String
|
785
|
+
}?,
|
778
786
|
name: {
|
779
787
|
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
780
788
|
value: ::String
|
@@ -2078,6 +2086,10 @@ module Aws
|
|
2078
2086
|
lower_inclusive: ::Float?,
|
2079
2087
|
upper_inclusive: ::Float?
|
2080
2088
|
}?,
|
2089
|
+
file_path: {
|
2090
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
2091
|
+
value: ::String
|
2092
|
+
}?,
|
2081
2093
|
name: {
|
2082
2094
|
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
2083
2095
|
value: ::String
|
@@ -2607,6 +2619,10 @@ module Aws
|
|
2607
2619
|
lower_inclusive: ::Float?,
|
2608
2620
|
upper_inclusive: ::Float?
|
2609
2621
|
}?,
|
2622
|
+
file_path: {
|
2623
|
+
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
2624
|
+
value: ::String
|
2625
|
+
}?,
|
2610
2626
|
name: {
|
2611
2627
|
comparison: ("EQUALS" | "PREFIX" | "NOT_EQUALS"),
|
2612
2628
|
value: ::String
|
data/sig/types.rbs
CHANGED
@@ -222,7 +222,7 @@ module Aws::Inspector2
|
|
222
222
|
attr_accessor last_modified_at: ::Time
|
223
223
|
attr_accessor layers: ::Array[::String]
|
224
224
|
attr_accessor package_type: ("IMAGE" | "ZIP")
|
225
|
-
attr_accessor runtime: ("NODEJS" | "NODEJS_12_X" | "NODEJS_14_X" | "NODEJS_16_X" | "JAVA_8" | "JAVA_8_AL2" | "JAVA_11" | "PYTHON_3_7" | "PYTHON_3_8" | "PYTHON_3_9" | "UNSUPPORTED" | "NODEJS_18_X" | "GO_1_X" | "JAVA_17" | "PYTHON_3_10")
|
225
|
+
attr_accessor runtime: ("NODEJS" | "NODEJS_12_X" | "NODEJS_14_X" | "NODEJS_16_X" | "JAVA_8" | "JAVA_8_AL2" | "JAVA_11" | "PYTHON_3_7" | "PYTHON_3_8" | "PYTHON_3_9" | "UNSUPPORTED" | "NODEJS_18_X" | "GO_1_X" | "JAVA_17" | "PYTHON_3_10" | "PYTHON_3_11" | "DOTNETCORE_3_1" | "DOTNET_6" | "DOTNET_7" | "RUBY_2_7" | "RUBY_3_2")
|
226
226
|
attr_accessor version: ::String
|
227
227
|
attr_accessor vpc_config: Types::LambdaVpcConfig
|
228
228
|
SENSITIVE: []
|
@@ -1239,7 +1239,7 @@ module Aws::Inspector2
|
|
1239
1239
|
attr_accessor function_name: ::String
|
1240
1240
|
attr_accessor function_tags: ::Hash[::String, ::String]
|
1241
1241
|
attr_accessor layers: ::Array[::String]
|
1242
|
-
attr_accessor runtime: ("NODEJS" | "NODEJS_12_X" | "NODEJS_14_X" | "NODEJS_16_X" | "JAVA_8" | "JAVA_8_AL2" | "JAVA_11" | "PYTHON_3_7" | "PYTHON_3_8" | "PYTHON_3_9" | "UNSUPPORTED" | "NODEJS_18_X" | "GO_1_X" | "JAVA_17" | "PYTHON_3_10")
|
1242
|
+
attr_accessor runtime: ("NODEJS" | "NODEJS_12_X" | "NODEJS_14_X" | "NODEJS_16_X" | "JAVA_8" | "JAVA_8_AL2" | "JAVA_11" | "PYTHON_3_7" | "PYTHON_3_8" | "PYTHON_3_9" | "UNSUPPORTED" | "NODEJS_18_X" | "GO_1_X" | "JAVA_17" | "PYTHON_3_10" | "PYTHON_3_11" | "DOTNETCORE_3_1" | "DOTNET_6" | "DOTNET_7" | "RUBY_2_7" | "RUBY_3_2")
|
1243
1243
|
SENSITIVE: []
|
1244
1244
|
end
|
1245
1245
|
|
@@ -1556,6 +1556,7 @@ module Aws::Inspector2
|
|
1556
1556
|
class PackageFilter
|
1557
1557
|
attr_accessor architecture: Types::StringFilter
|
1558
1558
|
attr_accessor epoch: Types::NumberFilter
|
1559
|
+
attr_accessor file_path: Types::StringFilter
|
1559
1560
|
attr_accessor name: Types::StringFilter
|
1560
1561
|
attr_accessor release: Types::StringFilter
|
1561
1562
|
attr_accessor source_lambda_layer_arn: Types::StringFilter
|
@@ -2057,7 +2058,7 @@ module Aws::Inspector2
|
|
2057
2058
|
attr_accessor file_path: ::String
|
2058
2059
|
attr_accessor fixed_in_version: ::String
|
2059
2060
|
attr_accessor name: ::String
|
2060
|
-
attr_accessor package_manager: ("BUNDLER" | "CARGO" | "COMPOSER" | "NPM" | "NUGET" | "PIPENV" | "POETRY" | "YARN" | "GOBINARY" | "GOMOD" | "JAR" | "OS" | "PIP" | "PYTHONPKG" | "NODEPKG" | "POM" | "GEMSPEC")
|
2061
|
+
attr_accessor package_manager: ("BUNDLER" | "CARGO" | "COMPOSER" | "NPM" | "NUGET" | "PIPENV" | "POETRY" | "YARN" | "GOBINARY" | "GOMOD" | "JAR" | "OS" | "PIP" | "PYTHONPKG" | "NODEPKG" | "POM" | "GEMSPEC" | "DOTNET_CORE")
|
2061
2062
|
attr_accessor release: ::String
|
2062
2063
|
attr_accessor remediation: ::String
|
2063
2064
|
attr_accessor source_lambda_layer_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-inspector2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.45.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-
|
11
|
+
date: 2024-11-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|