aws-sdk-codegurusecurity 1.3.0 → 1.5.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-codegurusecurity/client.rb +8 -3
- data/lib/aws-sdk-codegurusecurity/types.rb +1 -1
- data/lib/aws-sdk-codegurusecurity.rb +1 -1
- 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: f8797aada436422ff4c85d295ec2da7e1e2348737d7f9192f8421d8ff81c22c5
|
|
4
|
+
data.tar.gz: 8ee724c67fea0e679dfe13a9929e466f537b31f33294a3e129f5633f7c7ea4e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f6a29146c78031cd7911e9c917d9c6267d526504fcbc6a46945c6b24adac2ae1d6907b1d96241c757c8220a8e4a04a603e6b45685bec63bdf881e67a57b2620
|
|
7
|
+
data.tar.gz: 736a830d55fcd2e1b5ceabccb166bb007d2423e0ff7cdb783fc26f1d0ce7c6b8b4b9bd52e9213b2f7d4cc3b810a94bd9563ef0eccd0aebd388476f903d0029e1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.5.0 (2023-07-18)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Documentation updates for CodeGuru Security.
|
|
8
|
+
|
|
9
|
+
1.4.0 (2023-07-11)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
13
|
+
|
|
4
14
|
1.3.0 (2023-07-06)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.5.0
|
|
@@ -216,6 +216,10 @@ module Aws::CodeGuruSecurity
|
|
|
216
216
|
# @option options [Boolean] :endpoint_discovery (false)
|
|
217
217
|
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
|
218
218
|
#
|
|
219
|
+
# @option options [Boolean] :ignore_configured_endpoint_urls
|
|
220
|
+
# Setting to true disables use of endpoint URLs provided via environment
|
|
221
|
+
# variables and the shared configuration file.
|
|
222
|
+
#
|
|
219
223
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
|
220
224
|
# The log formatter.
|
|
221
225
|
#
|
|
@@ -463,7 +467,7 @@ module Aws::CodeGuruSecurity
|
|
|
463
467
|
#
|
|
464
468
|
# @option params [String] :analysis_type
|
|
465
469
|
# The type of analysis you want CodeGuru Security to perform in the
|
|
466
|
-
# scan, either `Security` or `All`. The `
|
|
470
|
+
# scan, either `Security` or `All`. The `Security` type only generates
|
|
467
471
|
# findings related to security. The `All` type generates both security
|
|
468
472
|
# findings and quality findings. Defaults to `Security` type if missing.
|
|
469
473
|
#
|
|
@@ -859,7 +863,8 @@ module Aws::CodeGuruSecurity
|
|
|
859
863
|
req.send_request(options)
|
|
860
864
|
end
|
|
861
865
|
|
|
862
|
-
# Returns a list of all the scans in an account.
|
|
866
|
+
# Returns a list of all the standard scans in an account. Does not
|
|
867
|
+
# return express scans.
|
|
863
868
|
#
|
|
864
869
|
# @option params [Integer] :max_results
|
|
865
870
|
# The maximum number of results to return in the response. Use this
|
|
@@ -1046,7 +1051,7 @@ module Aws::CodeGuruSecurity
|
|
|
1046
1051
|
params: params,
|
|
1047
1052
|
config: config)
|
|
1048
1053
|
context[:gem_name] = 'aws-sdk-codegurusecurity'
|
|
1049
|
-
context[:gem_version] = '1.
|
|
1054
|
+
context[:gem_version] = '1.5.0'
|
|
1050
1055
|
Seahorse::Client::Request.new(handlers, context)
|
|
1051
1056
|
end
|
|
1052
1057
|
|
|
@@ -212,7 +212,7 @@ module Aws::CodeGuruSecurity
|
|
|
212
212
|
|
|
213
213
|
# @!attribute [rw] analysis_type
|
|
214
214
|
# The type of analysis you want CodeGuru Security to perform in the
|
|
215
|
-
# scan, either `Security` or `All`. The `
|
|
215
|
+
# scan, either `Security` or `All`. The `Security` type only generates
|
|
216
216
|
# findings related to security. The `All` type generates both security
|
|
217
217
|
# findings and quality findings. Defaults to `Security` type if
|
|
218
218
|
# missing.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-codegurusecurity
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.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: 2023-07-
|
|
11
|
+
date: 2023-07-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|