google-apis-securitycenter_v1beta1 0.39.0 → 0.40.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2cc19113595b8d0703406bf5562a3309c1ca1ce278b5ae37e5303adebc7e2faa
|
4
|
+
data.tar.gz: a32815006bf541548808e579d15a3b94711be193f6b52ab7292538de77ad5477
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a715d1e3be2d3cfb604724de5fced2cc3b9346f553fb33bc8510449247c5ab041496d38106fab483d16eebd19b8f6551fd7dd865814d11c37a037598f0c62322
|
7
|
+
data.tar.gz: b3826bfdb07cee1f2e99626e2b31a938ae68eea0406affa6d42a3955f14aa98810ab3df842d3b1f7f03db63ba26e64e4fea92a41bc08f81ef8654dcc523e9d68
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.40.0 (2022-09-30)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220921
|
6
|
+
* Regenerated using generator version 0.10.0
|
7
|
+
|
3
8
|
### v0.39.0 (2022-09-16)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20220909
|
@@ -91,6 +91,14 @@ module Google
|
|
91
91
|
# @return [String]
|
92
92
|
attr_accessor :user_agent_family
|
93
93
|
|
94
|
+
# A string representing a username. This is likely not an IAM principal. For
|
95
|
+
# instance, this may be the system user name if the finding is VM-related, or
|
96
|
+
# this may be some type of application login user name, depending on the type of
|
97
|
+
# finding.
|
98
|
+
# Corresponds to the JSON property `username`
|
99
|
+
# @return [String]
|
100
|
+
attr_accessor :username
|
101
|
+
|
94
102
|
def initialize(**args)
|
95
103
|
update!(**args)
|
96
104
|
end
|
@@ -106,6 +114,7 @@ module Google
|
|
106
114
|
@service_account_key_name = args[:service_account_key_name] if args.key?(:service_account_key_name)
|
107
115
|
@service_name = args[:service_name] if args.key?(:service_name)
|
108
116
|
@user_agent_family = args[:user_agent_family] if args.key?(:user_agent_family)
|
117
|
+
@username = args[:username] if args.key?(:username)
|
109
118
|
end
|
110
119
|
end
|
111
120
|
|
@@ -1007,7 +1016,7 @@ module Google
|
|
1007
1016
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::Connection>]
|
1008
1017
|
attr_accessor :connections
|
1009
1018
|
|
1010
|
-
# Output only. Map containing the
|
1019
|
+
# Output only. Map containing the points of contact for the given finding. The
|
1011
1020
|
# key represents the type of contact, while the value contains a list of all the
|
1012
1021
|
# contacts that pertain. Please refer to: https://cloud.google.com/resource-
|
1013
1022
|
# manager/docs/managing-notification-contacts#notification-categories ` "
|
@@ -1143,7 +1152,7 @@ module Google
|
|
1143
1152
|
attr_accessor :parent
|
1144
1153
|
|
1145
1154
|
# Output only. The human readable display name of the finding source such as "
|
1146
|
-
# Event Threat Detection" or "Security Health Analytics"
|
1155
|
+
# Event Threat Detection" or "Security Health Analytics".
|
1147
1156
|
# Corresponds to the JSON property `parentDisplayName`
|
1148
1157
|
# @return [String]
|
1149
1158
|
attr_accessor :parent_display_name
|
@@ -1462,6 +1471,32 @@ module Google
|
|
1462
1471
|
end
|
1463
1472
|
end
|
1464
1473
|
|
1474
|
+
# A resource that is exposed as a result of a finding.
|
1475
|
+
class GoogleCloudSecuritycenterV1ExposedResource
|
1476
|
+
include Google::Apis::Core::Hashable
|
1477
|
+
|
1478
|
+
def initialize(**args)
|
1479
|
+
update!(**args)
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
# Update properties of this object
|
1483
|
+
def update!(**args)
|
1484
|
+
end
|
1485
|
+
end
|
1486
|
+
|
1487
|
+
# A path that an attacker could take to reach an exposed resource.
|
1488
|
+
class GoogleCloudSecuritycenterV1ExposurePath
|
1489
|
+
include Google::Apis::Core::Hashable
|
1490
|
+
|
1491
|
+
def initialize(**args)
|
1492
|
+
update!(**args)
|
1493
|
+
end
|
1494
|
+
|
1495
|
+
# Update properties of this object
|
1496
|
+
def update!(**args)
|
1497
|
+
end
|
1498
|
+
end
|
1499
|
+
|
1465
1500
|
# Representation of third party SIEM/SOAR fields within SCC.
|
1466
1501
|
class GoogleCloudSecuritycenterV1ExternalSystem
|
1467
1502
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module SecuritycenterV1beta1
|
18
18
|
# Version of the google-apis-securitycenter_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.10.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220921"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -208,6 +208,18 @@ module Google
|
|
208
208
|
include Google::Apis::Core::JsonObjectSupport
|
209
209
|
end
|
210
210
|
|
211
|
+
class GoogleCloudSecuritycenterV1ExposedResource
|
212
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
|
+
|
214
|
+
include Google::Apis::Core::JsonObjectSupport
|
215
|
+
end
|
216
|
+
|
217
|
+
class GoogleCloudSecuritycenterV1ExposurePath
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
211
223
|
class GoogleCloudSecuritycenterV1ExternalSystem
|
212
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
213
225
|
|
@@ -546,6 +558,7 @@ module Google
|
|
546
558
|
property :service_account_key_name, as: 'serviceAccountKeyName'
|
547
559
|
property :service_name, as: 'serviceName'
|
548
560
|
property :user_agent_family, as: 'userAgentFamily'
|
561
|
+
property :username, as: 'username'
|
549
562
|
end
|
550
563
|
end
|
551
564
|
|
@@ -879,6 +892,18 @@ module Google
|
|
879
892
|
end
|
880
893
|
end
|
881
894
|
|
895
|
+
class GoogleCloudSecuritycenterV1ExposedResource
|
896
|
+
# @private
|
897
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
898
|
+
end
|
899
|
+
end
|
900
|
+
|
901
|
+
class GoogleCloudSecuritycenterV1ExposurePath
|
902
|
+
# @private
|
903
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
904
|
+
end
|
905
|
+
end
|
906
|
+
|
882
907
|
class GoogleCloudSecuritycenterV1ExternalSystem
|
883
908
|
# @private
|
884
909
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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-10-03 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.9.0
|
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.9.0
|
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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|