google-apis-securitycenter_v1 0.3.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +22 -0
- data/lib/google/apis/securitycenter_v1.rb +1 -1
- data/lib/google/apis/securitycenter_v1/classes.rb +79 -12
- data/lib/google/apis/securitycenter_v1/gem_version.rb +3 -3
- data/lib/google/apis/securitycenter_v1/representations.rb +6 -0
- data/lib/google/apis/securitycenter_v1/service.rb +36 -24
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f138fc602870eecca0b58db1135fa558d50b88db22480144c7b3a2c11ef619d1
|
4
|
+
data.tar.gz: 3ca8cb845696cf6a19e87c6a725ed0256854bd67afc92e604d3b6b719a1213f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d7a657fd55e757b776528ac9254524b7fc912a538f2a97b5189f144eb9cf2d90217f4752d821817b72e848e50badf5884adf8eb881a0d802a5bae8a8472f0c5f
|
7
|
+
data.tar.gz: 1c6fa2524c641a8eb01522ad5611f0b97908cf128902c8040c42df62681fab175173a33929ccce4885e0e2bed32da7678ecb1bd5e4ec9c77afbc5824a54642c9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,27 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1
|
2
2
|
|
3
|
+
### v0.8.0 (2021-06-24)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.7.0 (2021-06-15)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20210611
|
10
|
+
* Regenerated using generator version 0.3.0
|
11
|
+
|
12
|
+
### v0.6.0 (2021-05-20)
|
13
|
+
|
14
|
+
* Unspecified changes
|
15
|
+
|
16
|
+
### v0.5.0 (2021-04-27)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210422
|
19
|
+
|
20
|
+
### v0.4.0 (2021-03-30)
|
21
|
+
|
22
|
+
* Regenerated from discovery document revision 20210326
|
23
|
+
* Regenerated using generator version 0.2.0
|
24
|
+
|
3
25
|
### v0.3.0 (2021-03-04)
|
4
26
|
|
5
27
|
* Unspecified changes
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V1'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
end
|
36
36
|
end
|
@@ -30,6 +30,14 @@ module Google
|
|
30
30
|
class Asset
|
31
31
|
include Google::Apis::Core::Hashable
|
32
32
|
|
33
|
+
# The canonical name of the resource. It's either "organizations/`
|
34
|
+
# organization_id`/assets/`asset_id`", "folders/`folder_id`/assets/`asset_id`"
|
35
|
+
# or "projects/`project_number`/assets/`asset_id`", depending on the closest CRM
|
36
|
+
# ancestor of the resource.
|
37
|
+
# Corresponds to the JSON property `canonicalName`
|
38
|
+
# @return [String]
|
39
|
+
attr_accessor :canonical_name
|
40
|
+
|
33
41
|
# The time at which the asset was created in Security Command Center.
|
34
42
|
# Corresponds to the JSON property `createTime`
|
35
43
|
# @return [String]
|
@@ -80,6 +88,7 @@ module Google
|
|
80
88
|
|
81
89
|
# Update properties of this object
|
82
90
|
def update!(**args)
|
91
|
+
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
83
92
|
@create_time = args[:create_time] if args.key?(:create_time)
|
84
93
|
@iam_policy = args[:iam_policy] if args.key?(:iam_policy)
|
85
94
|
@name = args[:name] if args.key?(:name)
|
@@ -343,6 +352,15 @@ module Google
|
|
343
352
|
class Finding
|
344
353
|
include Google::Apis::Core::Hashable
|
345
354
|
|
355
|
+
# The canonical name of the finding. It's either "organizations/`organization_id`
|
356
|
+
# /sources/`source_id`/findings/`finding_id`", "folders/`folder_id`/sources/`
|
357
|
+
# source_id`/findings/`finding_id`" or "projects/`project_number`/sources/`
|
358
|
+
# source_id`/findings/`finding_id`", depending on the closest CRM ancestor of
|
359
|
+
# the resource associated with the finding.
|
360
|
+
# Corresponds to the JSON property `canonicalName`
|
361
|
+
# @return [String]
|
362
|
+
attr_accessor :canonical_name
|
363
|
+
|
346
364
|
# The additional taxonomy group within findings from a given source. This field
|
347
365
|
# is immutable after creation time. Example: "XSS_FLASH_INJECTION"
|
348
366
|
# Corresponds to the JSON property `category`
|
@@ -358,7 +376,8 @@ module Google
|
|
358
376
|
# occurred. For example, if the finding represents an open firewall it would
|
359
377
|
# capture the time the detector believes the firewall became open. The accuracy
|
360
378
|
# is determined by the detector. If the finding were to be resolved afterward,
|
361
|
-
# this time would reflect when the finding was resolved.
|
379
|
+
# this time would reflect when the finding was resolved. Must not be set to a
|
380
|
+
# value greater than the current timestamp.
|
362
381
|
# Corresponds to the JSON property `eventTime`
|
363
382
|
# @return [String]
|
364
383
|
attr_accessor :event_time
|
@@ -427,6 +446,7 @@ module Google
|
|
427
446
|
|
428
447
|
# Update properties of this object
|
429
448
|
def update!(**args)
|
449
|
+
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
430
450
|
@category = args[:category] if args.key?(:category)
|
431
451
|
@create_time = args[:create_time] if args.key?(:create_time)
|
432
452
|
@event_time = args[:event_time] if args.key?(:event_time)
|
@@ -655,6 +675,15 @@ module Google
|
|
655
675
|
class GoogleCloudSecuritycenterV1p1beta1Finding
|
656
676
|
include Google::Apis::Core::Hashable
|
657
677
|
|
678
|
+
# The canonical name of the finding. It's either "organizations/`organization_id`
|
679
|
+
# /sources/`source_id`/findings/`finding_id`", "folders/`folder_id`/sources/`
|
680
|
+
# source_id`/findings/`finding_id`" or "projects/`project_number`/sources/`
|
681
|
+
# source_id`/findings/`finding_id`", depending on the closest CRM ancestor of
|
682
|
+
# the resource associated with the finding.
|
683
|
+
# Corresponds to the JSON property `canonicalName`
|
684
|
+
# @return [String]
|
685
|
+
attr_accessor :canonical_name
|
686
|
+
|
658
687
|
# The additional taxonomy group within findings from a given source. This field
|
659
688
|
# is immutable after creation time. Example: "XSS_FLASH_INJECTION"
|
660
689
|
# Corresponds to the JSON property `category`
|
@@ -670,7 +699,8 @@ module Google
|
|
670
699
|
# occurred. For example, if the finding represents an open firewall it would
|
671
700
|
# capture the time the detector believes the firewall became open. The accuracy
|
672
701
|
# is determined by the detector. If the finding were to be resolved afterward,
|
673
|
-
# this time would reflect when the finding was resolved.
|
702
|
+
# this time would reflect when the finding was resolved. Must not be set to a
|
703
|
+
# value greater than the current timestamp.
|
674
704
|
# Corresponds to the JSON property `eventTime`
|
675
705
|
# @return [String]
|
676
706
|
attr_accessor :event_time
|
@@ -739,6 +769,7 @@ module Google
|
|
739
769
|
|
740
770
|
# Update properties of this object
|
741
771
|
def update!(**args)
|
772
|
+
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
742
773
|
@category = args[:category] if args.key?(:category)
|
743
774
|
@create_time = args[:create_time] if args.key?(:create_time)
|
744
775
|
@event_time = args[:event_time] if args.key?(:event_time)
|
@@ -897,6 +928,17 @@ module Google
|
|
897
928
|
class GoogleCloudSecuritycenterV1p1beta1SecurityMarks
|
898
929
|
include Google::Apis::Core::Hashable
|
899
930
|
|
931
|
+
# The canonical name of the marks. Examples: "organizations/`organization_id`/
|
932
|
+
# assets/`asset_id`/securityMarks" "folders/`folder_id`/assets/`asset_id`/
|
933
|
+
# securityMarks" "projects/`project_number`/assets/`asset_id`/securityMarks" "
|
934
|
+
# organizations/`organization_id`/sources/`source_id`/findings/`finding_id`/
|
935
|
+
# securityMarks" "folders/`folder_id`/sources/`source_id`/findings/`finding_id`/
|
936
|
+
# securityMarks" "projects/`project_number`/sources/`source_id`/findings/`
|
937
|
+
# finding_id`/securityMarks"
|
938
|
+
# Corresponds to the JSON property `canonicalName`
|
939
|
+
# @return [String]
|
940
|
+
attr_accessor :canonical_name
|
941
|
+
|
900
942
|
# Mutable user specified security marks belonging to the parent resource.
|
901
943
|
# Constraints are as follows: * Keys and values are treated as case insensitive *
|
902
944
|
# Keys must be between 1 - 256 characters (inclusive) * Keys must be letters,
|
@@ -920,6 +962,7 @@ module Google
|
|
920
962
|
|
921
963
|
# Update properties of this object
|
922
964
|
def update!(**args)
|
965
|
+
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
923
966
|
@marks = args[:marks] if args.key?(:marks)
|
924
967
|
@name = args[:name] if args.key?(:name)
|
925
968
|
end
|
@@ -1117,14 +1160,17 @@ module Google
|
|
1117
1160
|
# false` without quotes. The following field and operator combinations are
|
1118
1161
|
# supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
|
1119
1162
|
# `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
|
1120
|
-
# `, `>=`, `<=`
|
1121
|
-
#
|
1122
|
-
# `
|
1123
|
-
# source_properties: `=`, `:`, `>`, `<`, `>=`,
|
1124
|
-
# source_properties.size = 100` is a valid filter string. Use
|
1125
|
-
# the empty string to filter based on a property existing: `
|
1126
|
-
# my_property : ""` Use a negated partial match on the empty
|
1127
|
-
# based on a property not existing: `-source_properties.
|
1163
|
+
# `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
|
1164
|
+
# string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
|
1165
|
+
# 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
|
1166
|
+
# security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
|
1167
|
+
# <=` For example, `source_properties.size = 100` is a valid filter string. Use
|
1168
|
+
# a partial match on the empty string to filter based on a property existing: `
|
1169
|
+
# source_properties.my_property : ""` Use a negated partial match on the empty
|
1170
|
+
# string to filter based on a property not existing: `-source_properties.
|
1171
|
+
# my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
|
1172
|
+
# `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
|
1173
|
+
# , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:`
|
1128
1174
|
# Corresponds to the JSON property `filter`
|
1129
1175
|
# @return [String]
|
1130
1176
|
attr_accessor :filter
|
@@ -1380,7 +1426,7 @@ module Google
|
|
1380
1426
|
attr_accessor :finding
|
1381
1427
|
|
1382
1428
|
# Information related to the Google Cloud resource that is associated with this
|
1383
|
-
# finding.
|
1429
|
+
# finding.
|
1384
1430
|
# Corresponds to the JSON property `resource`
|
1385
1431
|
# @return [Google::Apis::SecuritycenterV1::Resource]
|
1386
1432
|
attr_accessor :resource
|
@@ -1719,7 +1765,7 @@ module Google
|
|
1719
1765
|
end
|
1720
1766
|
|
1721
1767
|
# Information related to the Google Cloud resource that is associated with this
|
1722
|
-
# finding.
|
1768
|
+
# finding.
|
1723
1769
|
class Resource
|
1724
1770
|
include Google::Apis::Core::Hashable
|
1725
1771
|
|
@@ -1867,6 +1913,17 @@ module Google
|
|
1867
1913
|
class SecurityMarks
|
1868
1914
|
include Google::Apis::Core::Hashable
|
1869
1915
|
|
1916
|
+
# The canonical name of the marks. Examples: "organizations/`organization_id`/
|
1917
|
+
# assets/`asset_id`/securityMarks" "folders/`folder_id`/assets/`asset_id`/
|
1918
|
+
# securityMarks" "projects/`project_number`/assets/`asset_id`/securityMarks" "
|
1919
|
+
# organizations/`organization_id`/sources/`source_id`/findings/`finding_id`/
|
1920
|
+
# securityMarks" "folders/`folder_id`/sources/`source_id`/findings/`finding_id`/
|
1921
|
+
# securityMarks" "projects/`project_number`/sources/`source_id`/findings/`
|
1922
|
+
# finding_id`/securityMarks"
|
1923
|
+
# Corresponds to the JSON property `canonicalName`
|
1924
|
+
# @return [String]
|
1925
|
+
attr_accessor :canonical_name
|
1926
|
+
|
1870
1927
|
# Mutable user specified security marks belonging to the parent resource.
|
1871
1928
|
# Constraints are as follows: * Keys and values are treated as case insensitive *
|
1872
1929
|
# Keys must be between 1 - 256 characters (inclusive) * Keys must be letters,
|
@@ -1890,6 +1947,7 @@ module Google
|
|
1890
1947
|
|
1891
1948
|
# Update properties of this object
|
1892
1949
|
def update!(**args)
|
1950
|
+
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
1893
1951
|
@marks = args[:marks] if args.key?(:marks)
|
1894
1952
|
@name = args[:name] if args.key?(:name)
|
1895
1953
|
end
|
@@ -1979,6 +2037,14 @@ module Google
|
|
1979
2037
|
class Source
|
1980
2038
|
include Google::Apis::Core::Hashable
|
1981
2039
|
|
2040
|
+
# The canonical name of the finding. It's either "organizations/`organization_id`
|
2041
|
+
# /sources/`source_id`", "folders/`folder_id`/sources/`source_id`" or "projects/`
|
2042
|
+
# project_number`/sources/`source_id`", depending on the closest CRM ancestor of
|
2043
|
+
# the resource associated with the finding.
|
2044
|
+
# Corresponds to the JSON property `canonicalName`
|
2045
|
+
# @return [String]
|
2046
|
+
attr_accessor :canonical_name
|
2047
|
+
|
1982
2048
|
# The description of the source (max of 1024 characters). Example: "Web Security
|
1983
2049
|
# Scanner is a web security scanner for common vulnerabilities in App Engine
|
1984
2050
|
# applications. It can automatically scan and detect four common vulnerabilities,
|
@@ -2009,6 +2075,7 @@ module Google
|
|
2009
2075
|
|
2010
2076
|
# Update properties of this object
|
2011
2077
|
def update!(**args)
|
2078
|
+
@canonical_name = args[:canonical_name] if args.key?(:canonical_name)
|
2012
2079
|
@description = args[:description] if args.key?(:description)
|
2013
2080
|
@display_name = args[:display_name] if args.key?(:display_name)
|
2014
2081
|
@name = args[:name] if args.key?(:name)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1
|
18
18
|
# Version of the google-apis-securitycenter_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.3.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -319,6 +319,7 @@ module Google
|
|
319
319
|
class Asset
|
320
320
|
# @private
|
321
321
|
class Representation < Google::Apis::Core::JsonRepresentation
|
322
|
+
property :canonical_name, as: 'canonicalName'
|
322
323
|
property :create_time, as: 'createTime'
|
323
324
|
property :iam_policy, as: 'iamPolicy', class: Google::Apis::SecuritycenterV1::IamPolicy, decorator: Google::Apis::SecuritycenterV1::IamPolicy::Representation
|
324
325
|
|
@@ -387,6 +388,7 @@ module Google
|
|
387
388
|
class Finding
|
388
389
|
# @private
|
389
390
|
class Representation < Google::Apis::Core::JsonRepresentation
|
391
|
+
property :canonical_name, as: 'canonicalName'
|
390
392
|
property :category, as: 'category'
|
391
393
|
property :create_time, as: 'createTime'
|
392
394
|
property :event_time, as: 'eventTime'
|
@@ -468,6 +470,7 @@ module Google
|
|
468
470
|
class GoogleCloudSecuritycenterV1p1beta1Finding
|
469
471
|
# @private
|
470
472
|
class Representation < Google::Apis::Core::JsonRepresentation
|
473
|
+
property :canonical_name, as: 'canonicalName'
|
471
474
|
property :category, as: 'category'
|
472
475
|
property :create_time, as: 'createTime'
|
473
476
|
property :event_time, as: 'eventTime'
|
@@ -526,6 +529,7 @@ module Google
|
|
526
529
|
class GoogleCloudSecuritycenterV1p1beta1SecurityMarks
|
527
530
|
# @private
|
528
531
|
class Representation < Google::Apis::Core::JsonRepresentation
|
532
|
+
property :canonical_name, as: 'canonicalName'
|
529
533
|
hash :marks, as: 'marks'
|
530
534
|
property :name, as: 'name'
|
531
535
|
end
|
@@ -745,6 +749,7 @@ module Google
|
|
745
749
|
class SecurityMarks
|
746
750
|
# @private
|
747
751
|
class Representation < Google::Apis::Core::JsonRepresentation
|
752
|
+
property :canonical_name, as: 'canonicalName'
|
748
753
|
hash :marks, as: 'marks'
|
749
754
|
property :name, as: 'name'
|
750
755
|
end
|
@@ -770,6 +775,7 @@ module Google
|
|
770
775
|
class Source
|
771
776
|
# @private
|
772
777
|
class Representation < Google::Apis::Core::JsonRepresentation
|
778
|
+
property :canonical_name, as: 'canonicalName'
|
773
779
|
property :description, as: 'description'
|
774
780
|
property :display_name, as: 'displayName'
|
775
781
|
property :name, as: 'name'
|
@@ -376,14 +376,18 @@ module Google
|
|
376
376
|
# false` without quotes. The following field and operator combinations are
|
377
377
|
# supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
|
378
378
|
# `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
|
379
|
-
# `, `>=`, `<=`
|
380
|
-
#
|
381
|
-
# `
|
382
|
-
# source_properties: `=`, `:`, `>`, `<`, `>=`,
|
383
|
-
# source_properties.size = 100` is a valid filter string. Use
|
384
|
-
# the empty string to filter based on a property existing: `
|
385
|
-
# my_property : ""` Use a negated partial match on the empty
|
386
|
-
# based on a property not existing: `-source_properties.
|
379
|
+
# `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
|
380
|
+
# string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
|
381
|
+
# 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
|
382
|
+
# security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
|
383
|
+
# <=` For example, `source_properties.size = 100` is a valid filter string. Use
|
384
|
+
# a partial match on the empty string to filter based on a property existing: `
|
385
|
+
# source_properties.my_property : ""` Use a negated partial match on the empty
|
386
|
+
# string to filter based on a property not existing: `-source_properties.
|
387
|
+
# my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
|
388
|
+
# `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
|
389
|
+
# , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` *
|
390
|
+
# resource.folders.resource_folder: `=`, `:`
|
387
391
|
# @param [String] order_by
|
388
392
|
# Expression that defines what fields and order to use for sorting. The string
|
389
393
|
# value should follow SQL syntax: comma separated list of fields. For example: "
|
@@ -1569,14 +1573,18 @@ module Google
|
|
1569
1573
|
# false` without quotes. The following field and operator combinations are
|
1570
1574
|
# supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
|
1571
1575
|
# `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
|
1572
|
-
# `, `>=`, `<=`
|
1573
|
-
#
|
1574
|
-
# `
|
1575
|
-
# source_properties: `=`, `:`, `>`, `<`, `>=`,
|
1576
|
-
# source_properties.size = 100` is a valid filter string. Use
|
1577
|
-
# the empty string to filter based on a property existing: `
|
1578
|
-
# my_property : ""` Use a negated partial match on the empty
|
1579
|
-
# based on a property not existing: `-source_properties.
|
1576
|
+
# `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
|
1577
|
+
# string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
|
1578
|
+
# 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
|
1579
|
+
# security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
|
1580
|
+
# <=` For example, `source_properties.size = 100` is a valid filter string. Use
|
1581
|
+
# a partial match on the empty string to filter based on a property existing: `
|
1582
|
+
# source_properties.my_property : ""` Use a negated partial match on the empty
|
1583
|
+
# string to filter based on a property not existing: `-source_properties.
|
1584
|
+
# my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
|
1585
|
+
# `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
|
1586
|
+
# , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` *
|
1587
|
+
# resource.folders.resource_folder: `=`, `:`
|
1580
1588
|
# @param [String] order_by
|
1581
1589
|
# Expression that defines what fields and order to use for sorting. The string
|
1582
1590
|
# value should follow SQL syntax: comma separated list of fields. For example: "
|
@@ -2082,14 +2090,18 @@ module Google
|
|
2082
2090
|
# false` without quotes. The following field and operator combinations are
|
2083
2091
|
# supported: * name: `=` * parent: `=`, `:` * resource_name: `=`, `:` * state: `=
|
2084
2092
|
# `, `:` * category: `=`, `:` * external_uri: `=`, `:` * event_time: `=`, `>`, `<
|
2085
|
-
# `, `>=`, `<=`
|
2086
|
-
#
|
2087
|
-
# `
|
2088
|
-
# source_properties: `=`, `:`, `>`, `<`, `>=`,
|
2089
|
-
# source_properties.size = 100` is a valid filter string. Use
|
2090
|
-
# the empty string to filter based on a property existing: `
|
2091
|
-
# my_property : ""` Use a negated partial match on the empty
|
2092
|
-
# based on a property not existing: `-source_properties.
|
2093
|
+
# `, `>=`, `<=` Usage: This should be milliseconds since epoch or an RFC3339
|
2094
|
+
# string. Examples: `event_time = "2019-06-10T16:07:18-07:00"` `event_time =
|
2095
|
+
# 1560208038000` * severity: `=`, `:` * workflow_state: `=`, `:` *
|
2096
|
+
# security_marks.marks: `=`, `:` * source_properties: `=`, `:`, `>`, `<`, `>=`, `
|
2097
|
+
# <=` For example, `source_properties.size = 100` is a valid filter string. Use
|
2098
|
+
# a partial match on the empty string to filter based on a property existing: `
|
2099
|
+
# source_properties.my_property : ""` Use a negated partial match on the empty
|
2100
|
+
# string to filter based on a property not existing: `-source_properties.
|
2101
|
+
# my_property : ""` * resource: * resource.name: `=`, `:` * resource.parent_name:
|
2102
|
+
# `=`, `:` * resource.parent_display_name: `=`, `:` * resource.project_name: `=`
|
2103
|
+
# , `:` * resource.project_display_name: `=`, `:` * resource.type: `=`, `:` *
|
2104
|
+
# resource.folders.resource_folder: `=`, `:`
|
2093
2105
|
# @param [String] order_by
|
2094
2106
|
# Expression that defines what fields and order to use for sorting. The string
|
2095
2107
|
# value should follow SQL syntax: comma separated list of fields. For example: "
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.8.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-06-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.3'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.3'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Security Command Center API V1. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-securitycenter_v1/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.8.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-securitycenter_v1
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Security Command Center API V1
|