aws-sdk-macie2 1.14.0 → 1.15.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/lib/aws-sdk-macie2.rb +1 -1
- data/lib/aws-sdk-macie2/client.rb +7 -1
- data/lib/aws-sdk-macie2/client_api.rb +1 -0
- data/lib/aws-sdk-macie2/types.rb +10 -0
- 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: 46ed9ac6705a2f7f3dece030be67be61bab4f569990363a5e83e73ba7dd28b7a
|
4
|
+
data.tar.gz: 47f266a4f1ef9586333a57d8af5b8a32834328c39f1dba2c1a3cd53df6312af4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 973e4b50477c4746b12aed796b7120048f5661bac8e2bec99e27766c05cefade34c6b7255048a2a44e4994d9d9181b009df6418242b85e2289feb118927f2888
|
7
|
+
data.tar.gz: 230efec5618d326fb1c565f99e18527908363f36d070431f8b56c40b781f6e58695a458d3289ed2439c3962d0ca9b599badfc2e38889f21fb17140faf133a8a2
|
data/lib/aws-sdk-macie2.rb
CHANGED
@@ -615,6 +615,7 @@ module Aws::Macie2
|
|
615
615
|
# criterion: {
|
616
616
|
# "__string" => {
|
617
617
|
# eq: ["__string"],
|
618
|
+
# eq_exact_match: ["__string"],
|
618
619
|
# gt: 1,
|
619
620
|
# gte: 1,
|
620
621
|
# lt: 1,
|
@@ -1372,6 +1373,7 @@ module Aws::Macie2
|
|
1372
1373
|
# criterion: {
|
1373
1374
|
# "__string" => {
|
1374
1375
|
# eq: ["__string"],
|
1376
|
+
# eq_exact_match: ["__string"],
|
1375
1377
|
# gt: 1,
|
1376
1378
|
# gte: 1,
|
1377
1379
|
# lt: 1,
|
@@ -1634,6 +1636,8 @@ module Aws::Macie2
|
|
1634
1636
|
# resp.finding_criteria.criterion #=> Hash
|
1635
1637
|
# resp.finding_criteria.criterion["__string"].eq #=> Array
|
1636
1638
|
# resp.finding_criteria.criterion["__string"].eq[0] #=> String
|
1639
|
+
# resp.finding_criteria.criterion["__string"].eq_exact_match #=> Array
|
1640
|
+
# resp.finding_criteria.criterion["__string"].eq_exact_match[0] #=> String
|
1637
1641
|
# resp.finding_criteria.criterion["__string"].gt #=> Integer
|
1638
1642
|
# resp.finding_criteria.criterion["__string"].gte #=> Integer
|
1639
1643
|
# resp.finding_criteria.criterion["__string"].lt #=> Integer
|
@@ -1994,6 +1998,7 @@ module Aws::Macie2
|
|
1994
1998
|
# criterion: {
|
1995
1999
|
# "__string" => {
|
1996
2000
|
# eq: ["__string"],
|
2001
|
+
# eq_exact_match: ["__string"],
|
1997
2002
|
# gt: 1,
|
1998
2003
|
# gte: 1,
|
1999
2004
|
# lt: 1,
|
@@ -2411,6 +2416,7 @@ module Aws::Macie2
|
|
2411
2416
|
# criterion: {
|
2412
2417
|
# "__string" => {
|
2413
2418
|
# eq: ["__string"],
|
2419
|
+
# eq_exact_match: ["__string"],
|
2414
2420
|
# gt: 1,
|
2415
2421
|
# gte: 1,
|
2416
2422
|
# lt: 1,
|
@@ -2529,7 +2535,7 @@ module Aws::Macie2
|
|
2529
2535
|
params: params,
|
2530
2536
|
config: config)
|
2531
2537
|
context[:gem_name] = 'aws-sdk-macie2'
|
2532
|
-
context[:gem_version] = '1.
|
2538
|
+
context[:gem_version] = '1.15.0'
|
2533
2539
|
Seahorse::Client::Request.new(handlers, context)
|
2534
2540
|
end
|
2535
2541
|
|
@@ -527,6 +527,7 @@ module Aws::Macie2
|
|
527
527
|
Criterion.value = Shapes::ShapeRef.new(shape: CriterionAdditionalProperties)
|
528
528
|
|
529
529
|
CriterionAdditionalProperties.add_member(:eq, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "eq"))
|
530
|
+
CriterionAdditionalProperties.add_member(:eq_exact_match, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "eqExactMatch"))
|
530
531
|
CriterionAdditionalProperties.add_member(:gt, Shapes::ShapeRef.new(shape: __long, location_name: "gt"))
|
531
532
|
CriterionAdditionalProperties.add_member(:gte, Shapes::ShapeRef.new(shape: __long, location_name: "gte"))
|
532
533
|
CriterionAdditionalProperties.add_member(:lt, Shapes::ShapeRef.new(shape: __long, location_name: "lt"))
|
data/lib/aws-sdk-macie2/types.rb
CHANGED
@@ -1096,6 +1096,7 @@ module Aws::Macie2
|
|
1096
1096
|
# criterion: {
|
1097
1097
|
# "__string" => {
|
1098
1098
|
# eq: ["__string"],
|
1099
|
+
# eq_exact_match: ["__string"],
|
1099
1100
|
# gt: 1,
|
1100
1101
|
# gte: 1,
|
1101
1102
|
# lt: 1,
|
@@ -1300,6 +1301,7 @@ module Aws::Macie2
|
|
1300
1301
|
#
|
1301
1302
|
# {
|
1302
1303
|
# eq: ["__string"],
|
1304
|
+
# eq_exact_match: ["__string"],
|
1303
1305
|
# gt: 1,
|
1304
1306
|
# gte: 1,
|
1305
1307
|
# lt: 1,
|
@@ -1310,6 +1312,9 @@ module Aws::Macie2
|
|
1310
1312
|
# @!attribute [rw] eq
|
1311
1313
|
# @return [Array<String>]
|
1312
1314
|
#
|
1315
|
+
# @!attribute [rw] eq_exact_match
|
1316
|
+
# @return [Array<String>]
|
1317
|
+
#
|
1313
1318
|
# @!attribute [rw] gt
|
1314
1319
|
# @return [Integer]
|
1315
1320
|
#
|
@@ -1329,6 +1334,7 @@ module Aws::Macie2
|
|
1329
1334
|
#
|
1330
1335
|
class CriterionAdditionalProperties < Struct.new(
|
1331
1336
|
:eq,
|
1337
|
+
:eq_exact_match,
|
1332
1338
|
:gt,
|
1333
1339
|
:gte,
|
1334
1340
|
:lt,
|
@@ -2146,6 +2152,7 @@ module Aws::Macie2
|
|
2146
2152
|
# criterion: {
|
2147
2153
|
# "__string" => {
|
2148
2154
|
# eq: ["__string"],
|
2155
|
+
# eq_exact_match: ["__string"],
|
2149
2156
|
# gt: 1,
|
2150
2157
|
# gte: 1,
|
2151
2158
|
# lt: 1,
|
@@ -2438,6 +2445,7 @@ module Aws::Macie2
|
|
2438
2445
|
# criterion: {
|
2439
2446
|
# "__string" => {
|
2440
2447
|
# eq: ["__string"],
|
2448
|
+
# eq_exact_match: ["__string"],
|
2441
2449
|
# gt: 1,
|
2442
2450
|
# gte: 1,
|
2443
2451
|
# lt: 1,
|
@@ -3404,6 +3412,7 @@ module Aws::Macie2
|
|
3404
3412
|
# criterion: {
|
3405
3413
|
# "__string" => {
|
3406
3414
|
# eq: ["__string"],
|
3415
|
+
# eq_exact_match: ["__string"],
|
3407
3416
|
# gt: 1,
|
3408
3417
|
# gte: 1,
|
3409
3418
|
# lt: 1,
|
@@ -4943,6 +4952,7 @@ module Aws::Macie2
|
|
4943
4952
|
# criterion: {
|
4944
4953
|
# "__string" => {
|
4945
4954
|
# eq: ["__string"],
|
4955
|
+
# eq_exact_match: ["__string"],
|
4946
4956
|
# gt: 1,
|
4947
4957
|
# gte: 1,
|
4948
4958
|
# lt: 1,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-macie2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.15.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: 2020-10-
|
11
|
+
date: 2020-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|