google-apis-securitycenter_v1beta2 0.24.0 → 0.25.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3c01a9e8d7498f524ac8d3bf8ec6f7b47308a5f9d5dcc9f48a9f71401689b030
|
4
|
+
data.tar.gz: 2354d0abf11ceb08848768434ae235b0f564d93e8ca07208ae4db8a57e8622e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 639a7e016eebe9ceb24b5a5d56377acbf92cb035f2174e59a32564a156a0ecb38077a12b6d63cfe37420feef21c265a2d8a582c45f880ca81d5f2e01d9a6af6f
|
7
|
+
data.tar.gz: 5864abf3bd2cae94e56c8372092f2dde42b3068e0f1cf4b1261084254a477b6dcf0a5fb2a09dc235680a99c02ee841f114260cd855a7ad2a47810e0532e54e96
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.25.0 (2022-06-07)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220602
|
6
|
+
* Regenerated using generator version 0.5.0
|
7
|
+
* Unspecified changes
|
8
|
+
|
3
9
|
### v0.24.0 (2022-05-25)
|
4
10
|
|
5
11
|
* Regenerated from discovery document revision 20220520
|
@@ -78,17 +78,18 @@ module Google
|
|
78
78
|
class Compliance
|
79
79
|
include Google::Apis::Core::Hashable
|
80
80
|
|
81
|
-
# e.g. A.12.4.1
|
81
|
+
# Policies within the standard/benchmark e.g. A.12.4.1
|
82
82
|
# Corresponds to the JSON property `ids`
|
83
83
|
# @return [Array<String>]
|
84
84
|
attr_accessor :ids
|
85
85
|
|
86
|
-
# e.g. "cis", "pci", "owasp",
|
86
|
+
# Refers to industry wide standards or benchmarks e.g. "cis", "pci", "owasp",
|
87
|
+
# etc.
|
87
88
|
# Corresponds to the JSON property `standard`
|
88
89
|
# @return [String]
|
89
90
|
attr_accessor :standard
|
90
91
|
|
91
|
-
# e.g. 1.1
|
92
|
+
# Version of the standard/benchmark e.g. 1.1
|
92
93
|
# Corresponds to the JSON property `version`
|
93
94
|
# @return [String]
|
94
95
|
attr_accessor :version
|
@@ -413,7 +414,8 @@ module Google
|
|
413
414
|
end
|
414
415
|
end
|
415
416
|
|
416
|
-
# EnvironmentVariable is a name-value pair to store
|
417
|
+
# EnvironmentVariable is a name-value pair to store environment variables for
|
418
|
+
# Process.
|
417
419
|
class EnvironmentVariable
|
418
420
|
include Google::Apis::Core::Hashable
|
419
421
|
|
@@ -492,7 +494,7 @@ module Google
|
|
492
494
|
# @return [Array<String>]
|
493
495
|
attr_accessor :components
|
494
496
|
|
495
|
-
# Resource
|
497
|
+
# Resource's URI (https://google.aip.dev/122#full-resource-names)
|
496
498
|
# Corresponds to the JSON property `name`
|
497
499
|
# @return [String]
|
498
500
|
attr_accessor :name
|
@@ -508,21 +510,21 @@ module Google
|
|
508
510
|
end
|
509
511
|
end
|
510
512
|
|
511
|
-
# Exfiltration represents a data exfiltration attempt of one or more
|
512
|
-
#
|
513
|
-
#
|
513
|
+
# Exfiltration represents a data exfiltration attempt of one or more sources to
|
514
|
+
# one or more targets. Sources represent the source of data that is exfiltrated,
|
515
|
+
# and Targets represents the destination the data was copied to.
|
514
516
|
class Exfiltration
|
515
517
|
include Google::Apis::Core::Hashable
|
516
518
|
|
517
|
-
# If there are multiple sources, then the data is considered
|
519
|
+
# If there are multiple sources, then the data is considered "joined" between
|
518
520
|
# them. For instance, BigQuery can join multiple tables, and each table would be
|
519
521
|
# considered a source.
|
520
522
|
# Corresponds to the JSON property `sources`
|
521
523
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::ExfilResource>]
|
522
524
|
attr_accessor :sources
|
523
525
|
|
524
|
-
# If there are multiple targets, each target would get a complete copy of the
|
525
|
-
# joined
|
526
|
+
# If there are multiple targets, each target would get a complete copy of the "
|
527
|
+
# joined" source data.
|
526
528
|
# Corresponds to the JSON property `targets`
|
527
529
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::ExfilResource>]
|
528
530
|
attr_accessor :targets
|
@@ -567,8 +569,7 @@ module Google
|
|
567
569
|
attr_accessor :path
|
568
570
|
|
569
571
|
# SHA256 hash of the first hashed_size bytes of the file encoded as a hex string.
|
570
|
-
# If hashed_size == size,
|
571
|
-
# file.
|
572
|
+
# If hashed_size == size, sha256 represents the SHA256 hash of the entire file.
|
572
573
|
# Corresponds to the JSON property `sha256`
|
573
574
|
# @return [String]
|
574
575
|
attr_accessor :sha256
|
@@ -662,9 +663,9 @@ module Google
|
|
662
663
|
# @return [String]
|
663
664
|
attr_accessor :event_time
|
664
665
|
|
665
|
-
# Exfiltration represents a data exfiltration attempt of one or more
|
666
|
-
#
|
667
|
-
#
|
666
|
+
# Exfiltration represents a data exfiltration attempt of one or more sources to
|
667
|
+
# one or more targets. Sources represent the source of data that is exfiltrated,
|
668
|
+
# and Targets represents the destination the data was copied to.
|
668
669
|
# Corresponds to the JSON property `exfiltration`
|
669
670
|
# @return [Google::Apis::SecuritycenterV1beta2::Exfiltration]
|
670
671
|
attr_accessor :exfiltration
|
@@ -1689,7 +1690,7 @@ module Google
|
|
1689
1690
|
# @return [Array<String>]
|
1690
1691
|
attr_accessor :args
|
1691
1692
|
|
1692
|
-
# True if
|
1693
|
+
# True if `args` is incomplete.
|
1693
1694
|
# Corresponds to the JSON property `argumentsTruncated`
|
1694
1695
|
# @return [Boolean]
|
1695
1696
|
attr_accessor :arguments_truncated
|
@@ -1706,7 +1707,7 @@ module Google
|
|
1706
1707
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::EnvironmentVariable>]
|
1707
1708
|
attr_accessor :env_variables
|
1708
1709
|
|
1709
|
-
# True if env_variables is incomplete.
|
1710
|
+
# True if `env_variables` is incomplete.
|
1710
1711
|
# Corresponds to the JSON property `envVariablesTruncated`
|
1711
1712
|
# @return [Boolean]
|
1712
1713
|
attr_accessor :env_variables_truncated
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta2
|
18
18
|
# Version of the google-apis-securitycenter_v1beta2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.25.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.5.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220602"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.25.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: 2022-
|
11
|
+
date: 2022-06-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.5'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.5'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.25.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|