google-apis-securitycenter_v1beta2 0.72.0 → 0.74.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: 01a80b4c619bdaed020b282e5bdf3e752eab41297c637d83b6aaa381ddd718a9
|
4
|
+
data.tar.gz: 30e1566453d2dd42a71dfd6ba19a4e79f20090b5ab189c021d7afb4eab564fc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '0977cb023d6588b717bfe76b2f2e9e729e2bb95d9179c68c0231b3b22c0db4c0621d3dd10b37e932d51d84db8d04e58070155ec698b2824f8c0beaccb86642a8'
|
7
|
+
data.tar.gz: 0bfcb5c94384a2a77d94446375dd575faab91980781593ef3bd848306be0c4c3428074f25ee603bffe2eead772a29999e0a0cf8fa730b099759b3478bf585593
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta2
|
2
2
|
|
3
|
+
### v0.74.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250103
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.73.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241206
|
11
|
+
|
3
12
|
### v0.72.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241111
|
@@ -247,16 +247,28 @@ module Google
|
|
247
247
|
# @return [String]
|
248
248
|
attr_accessor :classification
|
249
249
|
|
250
|
-
# Total BPS (bytes per second) volume of attack.
|
250
|
+
# Total BPS (bytes per second) volume of attack. Deprecated - refer to
|
251
|
+
# volume_bps_long instead.
|
251
252
|
# Corresponds to the JSON property `volumeBps`
|
252
253
|
# @return [Fixnum]
|
253
254
|
attr_accessor :volume_bps
|
254
255
|
|
255
|
-
# Total
|
256
|
+
# Total BPS (bytes per second) volume of attack.
|
257
|
+
# Corresponds to the JSON property `volumeBpsLong`
|
258
|
+
# @return [Fixnum]
|
259
|
+
attr_accessor :volume_bps_long
|
260
|
+
|
261
|
+
# Total PPS (packets per second) volume of attack. Deprecated - refer to
|
262
|
+
# volume_pps_long instead.
|
256
263
|
# Corresponds to the JSON property `volumePps`
|
257
264
|
# @return [Fixnum]
|
258
265
|
attr_accessor :volume_pps
|
259
266
|
|
267
|
+
# Total PPS (packets per second) volume of attack.
|
268
|
+
# Corresponds to the JSON property `volumePpsLong`
|
269
|
+
# @return [Fixnum]
|
270
|
+
attr_accessor :volume_pps_long
|
271
|
+
|
260
272
|
def initialize(**args)
|
261
273
|
update!(**args)
|
262
274
|
end
|
@@ -265,7 +277,9 @@ module Google
|
|
265
277
|
def update!(**args)
|
266
278
|
@classification = args[:classification] if args.key?(:classification)
|
267
279
|
@volume_bps = args[:volume_bps] if args.key?(:volume_bps)
|
280
|
+
@volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
|
268
281
|
@volume_pps = args[:volume_pps] if args.key?(:volume_pps)
|
282
|
+
@volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
|
269
283
|
end
|
270
284
|
end
|
271
285
|
|
@@ -1390,6 +1404,59 @@ module Google
|
|
1390
1404
|
end
|
1391
1405
|
end
|
1392
1406
|
|
1407
|
+
# Details about data retention deletion violations, in which the data is non-
|
1408
|
+
# compliant based on their retention or deletion time, as defined in the
|
1409
|
+
# applicable data security policy. The Data Retention Deletion (DRD) control is
|
1410
|
+
# a control of the DSPM (Data Security Posture Management) suite that enables
|
1411
|
+
# organizations to manage data retention and deletion policies in compliance
|
1412
|
+
# with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
|
1413
|
+
# maximum storage length (max TTL) and minimum storage length (min TTL). Both
|
1414
|
+
# are aimed at helping organizations meet regulatory and data management
|
1415
|
+
# commitments.
|
1416
|
+
class DataRetentionDeletionEvent
|
1417
|
+
include Google::Apis::Core::Hashable
|
1418
|
+
|
1419
|
+
# Number of objects that violated the policy for this resource. If the number is
|
1420
|
+
# less than 1,000, then the value of this field is the exact number. If the
|
1421
|
+
# number of objects that violated the policy is greater than or equal to 1,000,
|
1422
|
+
# then the value of this field is 1000.
|
1423
|
+
# Corresponds to the JSON property `dataObjectCount`
|
1424
|
+
# @return [Fixnum]
|
1425
|
+
attr_accessor :data_object_count
|
1426
|
+
|
1427
|
+
# Timestamp indicating when the event was detected.
|
1428
|
+
# Corresponds to the JSON property `eventDetectionTime`
|
1429
|
+
# @return [String]
|
1430
|
+
attr_accessor :event_detection_time
|
1431
|
+
|
1432
|
+
# Type of the DRD event.
|
1433
|
+
# Corresponds to the JSON property `eventType`
|
1434
|
+
# @return [String]
|
1435
|
+
attr_accessor :event_type
|
1436
|
+
|
1437
|
+
# Maximum duration of retention allowed from the DRD control. This comes from
|
1438
|
+
# the DRD control where users set a max TTL for their data. For example, suppose
|
1439
|
+
# that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
|
1440
|
+
# object in that bucket is 100 days old. In this case, a
|
1441
|
+
# DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
|
1442
|
+
# and the max_retention_allowed is 90 days.
|
1443
|
+
# Corresponds to the JSON property `maxRetentionAllowed`
|
1444
|
+
# @return [String]
|
1445
|
+
attr_accessor :max_retention_allowed
|
1446
|
+
|
1447
|
+
def initialize(**args)
|
1448
|
+
update!(**args)
|
1449
|
+
end
|
1450
|
+
|
1451
|
+
# Update properties of this object
|
1452
|
+
def update!(**args)
|
1453
|
+
@data_object_count = args[:data_object_count] if args.key?(:data_object_count)
|
1454
|
+
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
1455
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1456
|
+
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
1457
|
+
end
|
1458
|
+
end
|
1459
|
+
|
1393
1460
|
# Represents database access information, such as queries. A database may be a
|
1394
1461
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
1395
1462
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -1933,6 +2000,11 @@ module Google
|
|
1933
2000
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::DataFlowEvent>]
|
1934
2001
|
attr_accessor :data_flow_events
|
1935
2002
|
|
2003
|
+
# Data retention deletion events associated with the finding.
|
2004
|
+
# Corresponds to the JSON property `dataRetentionDeletionEvents`
|
2005
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::DataRetentionDeletionEvent>]
|
2006
|
+
attr_accessor :data_retention_deletion_events
|
2007
|
+
|
1936
2008
|
# Represents database access information, such as queries. A database may be a
|
1937
2009
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
1938
2010
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -2196,6 +2268,7 @@ module Google
|
|
2196
2268
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2197
2269
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
2198
2270
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
2271
|
+
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
2199
2272
|
@database = args[:database] if args.key?(:database)
|
2200
2273
|
@description = args[:description] if args.key?(:description)
|
2201
2274
|
@disk = args[:disk] if args.key?(:disk)
|
@@ -3793,16 +3866,28 @@ module Google
|
|
3793
3866
|
# @return [String]
|
3794
3867
|
attr_accessor :classification
|
3795
3868
|
|
3796
|
-
# Total BPS (bytes per second) volume of attack.
|
3869
|
+
# Total BPS (bytes per second) volume of attack. Deprecated - refer to
|
3870
|
+
# volume_bps_long instead.
|
3797
3871
|
# Corresponds to the JSON property `volumeBps`
|
3798
3872
|
# @return [Fixnum]
|
3799
3873
|
attr_accessor :volume_bps
|
3800
3874
|
|
3801
|
-
# Total
|
3875
|
+
# Total BPS (bytes per second) volume of attack.
|
3876
|
+
# Corresponds to the JSON property `volumeBpsLong`
|
3877
|
+
# @return [Fixnum]
|
3878
|
+
attr_accessor :volume_bps_long
|
3879
|
+
|
3880
|
+
# Total PPS (packets per second) volume of attack. Deprecated - refer to
|
3881
|
+
# volume_pps_long instead.
|
3802
3882
|
# Corresponds to the JSON property `volumePps`
|
3803
3883
|
# @return [Fixnum]
|
3804
3884
|
attr_accessor :volume_pps
|
3805
3885
|
|
3886
|
+
# Total PPS (packets per second) volume of attack.
|
3887
|
+
# Corresponds to the JSON property `volumePpsLong`
|
3888
|
+
# @return [Fixnum]
|
3889
|
+
attr_accessor :volume_pps_long
|
3890
|
+
|
3806
3891
|
def initialize(**args)
|
3807
3892
|
update!(**args)
|
3808
3893
|
end
|
@@ -3811,7 +3896,9 @@ module Google
|
|
3811
3896
|
def update!(**args)
|
3812
3897
|
@classification = args[:classification] if args.key?(:classification)
|
3813
3898
|
@volume_bps = args[:volume_bps] if args.key?(:volume_bps)
|
3899
|
+
@volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
|
3814
3900
|
@volume_pps = args[:volume_pps] if args.key?(:volume_pps)
|
3901
|
+
@volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
|
3815
3902
|
end
|
3816
3903
|
end
|
3817
3904
|
|
@@ -4932,6 +5019,59 @@ module Google
|
|
4932
5019
|
end
|
4933
5020
|
end
|
4934
5021
|
|
5022
|
+
# Details about data retention deletion violations, in which the data is non-
|
5023
|
+
# compliant based on their retention or deletion time, as defined in the
|
5024
|
+
# applicable data security policy. The Data Retention Deletion (DRD) control is
|
5025
|
+
# a control of the DSPM (Data Security Posture Management) suite that enables
|
5026
|
+
# organizations to manage data retention and deletion policies in compliance
|
5027
|
+
# with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
|
5028
|
+
# maximum storage length (max TTL) and minimum storage length (min TTL). Both
|
5029
|
+
# are aimed at helping organizations meet regulatory and data management
|
5030
|
+
# commitments.
|
5031
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
5032
|
+
include Google::Apis::Core::Hashable
|
5033
|
+
|
5034
|
+
# Number of objects that violated the policy for this resource. If the number is
|
5035
|
+
# less than 1,000, then the value of this field is the exact number. If the
|
5036
|
+
# number of objects that violated the policy is greater than or equal to 1,000,
|
5037
|
+
# then the value of this field is 1000.
|
5038
|
+
# Corresponds to the JSON property `dataObjectCount`
|
5039
|
+
# @return [Fixnum]
|
5040
|
+
attr_accessor :data_object_count
|
5041
|
+
|
5042
|
+
# Timestamp indicating when the event was detected.
|
5043
|
+
# Corresponds to the JSON property `eventDetectionTime`
|
5044
|
+
# @return [String]
|
5045
|
+
attr_accessor :event_detection_time
|
5046
|
+
|
5047
|
+
# Type of the DRD event.
|
5048
|
+
# Corresponds to the JSON property `eventType`
|
5049
|
+
# @return [String]
|
5050
|
+
attr_accessor :event_type
|
5051
|
+
|
5052
|
+
# Maximum duration of retention allowed from the DRD control. This comes from
|
5053
|
+
# the DRD control where users set a max TTL for their data. For example, suppose
|
5054
|
+
# that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
|
5055
|
+
# object in that bucket is 100 days old. In this case, a
|
5056
|
+
# DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
|
5057
|
+
# and the max_retention_allowed is 90 days.
|
5058
|
+
# Corresponds to the JSON property `maxRetentionAllowed`
|
5059
|
+
# @return [String]
|
5060
|
+
attr_accessor :max_retention_allowed
|
5061
|
+
|
5062
|
+
def initialize(**args)
|
5063
|
+
update!(**args)
|
5064
|
+
end
|
5065
|
+
|
5066
|
+
# Update properties of this object
|
5067
|
+
def update!(**args)
|
5068
|
+
@data_object_count = args[:data_object_count] if args.key?(:data_object_count)
|
5069
|
+
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
5070
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
5071
|
+
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
5072
|
+
end
|
5073
|
+
end
|
5074
|
+
|
4935
5075
|
# Represents database access information, such as queries. A database may be a
|
4936
5076
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
4937
5077
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -5442,6 +5582,11 @@ module Google
|
|
5442
5582
|
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent>]
|
5443
5583
|
attr_accessor :data_flow_events
|
5444
5584
|
|
5585
|
+
# Data retention deletion events associated with the finding.
|
5586
|
+
# Corresponds to the JSON property `dataRetentionDeletionEvents`
|
5587
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent>]
|
5588
|
+
attr_accessor :data_retention_deletion_events
|
5589
|
+
|
5445
5590
|
# Represents database access information, such as queries. A database may be a
|
5446
5591
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
5447
5592
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -5714,6 +5859,7 @@ module Google
|
|
5714
5859
|
@create_time = args[:create_time] if args.key?(:create_time)
|
5715
5860
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
5716
5861
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
5862
|
+
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
5717
5863
|
@database = args[:database] if args.key?(:database)
|
5718
5864
|
@description = args[:description] if args.key?(:description)
|
5719
5865
|
@disk = args[:disk] if args.key?(:disk)
|
@@ -5901,6 +6047,485 @@ module Google
|
|
5901
6047
|
end
|
5902
6048
|
end
|
5903
6049
|
|
6050
|
+
# Security Command Center Issue.
|
6051
|
+
class GoogleCloudSecuritycenterV2Issue
|
6052
|
+
include Google::Apis::Core::Hashable
|
6053
|
+
|
6054
|
+
# Output only. The time the issue was created.
|
6055
|
+
# Corresponds to the JSON property `createTime`
|
6056
|
+
# @return [String]
|
6057
|
+
attr_accessor :create_time
|
6058
|
+
|
6059
|
+
# The description of the issue in Markdown format.
|
6060
|
+
# Corresponds to the JSON property `description`
|
6061
|
+
# @return [String]
|
6062
|
+
attr_accessor :description
|
6063
|
+
|
6064
|
+
# The finding category or rule name that generated the issue.
|
6065
|
+
# Corresponds to the JSON property `detection`
|
6066
|
+
# @return [String]
|
6067
|
+
attr_accessor :detection
|
6068
|
+
|
6069
|
+
# The domains of the issue.
|
6070
|
+
# Corresponds to the JSON property `domains`
|
6071
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueDomain>]
|
6072
|
+
attr_accessor :domains
|
6073
|
+
|
6074
|
+
# The exposure score of the issue.
|
6075
|
+
# Corresponds to the JSON property `exposureScore`
|
6076
|
+
# @return [Float]
|
6077
|
+
attr_accessor :exposure_score
|
6078
|
+
|
6079
|
+
# The type of the issue.
|
6080
|
+
# Corresponds to the JSON property `issueType`
|
6081
|
+
# @return [String]
|
6082
|
+
attr_accessor :issue_type
|
6083
|
+
|
6084
|
+
# The time the issue was last observed.
|
6085
|
+
# Corresponds to the JSON property `lastObservationTime`
|
6086
|
+
# @return [String]
|
6087
|
+
attr_accessor :last_observation_time
|
6088
|
+
|
6089
|
+
# The mute information of the issue.
|
6090
|
+
# Corresponds to the JSON property `mute`
|
6091
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute]
|
6092
|
+
attr_accessor :mute
|
6093
|
+
|
6094
|
+
# Identifier. The name of the issue. Format: organizations/`organization`/
|
6095
|
+
# locations/`location`/issues/`issue`
|
6096
|
+
# Corresponds to the JSON property `name`
|
6097
|
+
# @return [String]
|
6098
|
+
attr_accessor :name
|
6099
|
+
|
6100
|
+
# A resource associated with the an issue.
|
6101
|
+
# Corresponds to the JSON property `primaryResource`
|
6102
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource]
|
6103
|
+
attr_accessor :primary_resource
|
6104
|
+
|
6105
|
+
# The findings related to the issue.
|
6106
|
+
# Corresponds to the JSON property `relatedFindings`
|
6107
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFinding>]
|
6108
|
+
attr_accessor :related_findings
|
6109
|
+
|
6110
|
+
# Approaches to remediate the issue in Markdown format.
|
6111
|
+
# Corresponds to the JSON property `remediations`
|
6112
|
+
# @return [Array<String>]
|
6113
|
+
attr_accessor :remediations
|
6114
|
+
|
6115
|
+
# Additional resources associated with the issue.
|
6116
|
+
# Corresponds to the JSON property `secondaryResources`
|
6117
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource>]
|
6118
|
+
attr_accessor :secondary_resources
|
6119
|
+
|
6120
|
+
# The security context of the issue.
|
6121
|
+
# Corresponds to the JSON property `securityContexts`
|
6122
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContext>]
|
6123
|
+
attr_accessor :security_contexts
|
6124
|
+
|
6125
|
+
# The severity of the issue.
|
6126
|
+
# Corresponds to the JSON property `severity`
|
6127
|
+
# @return [String]
|
6128
|
+
attr_accessor :severity
|
6129
|
+
|
6130
|
+
# Output only. The state of the issue.
|
6131
|
+
# Corresponds to the JSON property `state`
|
6132
|
+
# @return [String]
|
6133
|
+
attr_accessor :state
|
6134
|
+
|
6135
|
+
# Output only. The time the issue was last updated.
|
6136
|
+
# Corresponds to the JSON property `updateTime`
|
6137
|
+
# @return [String]
|
6138
|
+
attr_accessor :update_time
|
6139
|
+
|
6140
|
+
def initialize(**args)
|
6141
|
+
update!(**args)
|
6142
|
+
end
|
6143
|
+
|
6144
|
+
# Update properties of this object
|
6145
|
+
def update!(**args)
|
6146
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
6147
|
+
@description = args[:description] if args.key?(:description)
|
6148
|
+
@detection = args[:detection] if args.key?(:detection)
|
6149
|
+
@domains = args[:domains] if args.key?(:domains)
|
6150
|
+
@exposure_score = args[:exposure_score] if args.key?(:exposure_score)
|
6151
|
+
@issue_type = args[:issue_type] if args.key?(:issue_type)
|
6152
|
+
@last_observation_time = args[:last_observation_time] if args.key?(:last_observation_time)
|
6153
|
+
@mute = args[:mute] if args.key?(:mute)
|
6154
|
+
@name = args[:name] if args.key?(:name)
|
6155
|
+
@primary_resource = args[:primary_resource] if args.key?(:primary_resource)
|
6156
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
6157
|
+
@remediations = args[:remediations] if args.key?(:remediations)
|
6158
|
+
@secondary_resources = args[:secondary_resources] if args.key?(:secondary_resources)
|
6159
|
+
@security_contexts = args[:security_contexts] if args.key?(:security_contexts)
|
6160
|
+
@severity = args[:severity] if args.key?(:severity)
|
6161
|
+
@state = args[:state] if args.key?(:state)
|
6162
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
6163
|
+
end
|
6164
|
+
end
|
6165
|
+
|
6166
|
+
# The domains of an issue.
|
6167
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
6168
|
+
include Google::Apis::Core::Hashable
|
6169
|
+
|
6170
|
+
# The domain category of the issue.
|
6171
|
+
# Corresponds to the JSON property `domainCategory`
|
6172
|
+
# @return [String]
|
6173
|
+
attr_accessor :domain_category
|
6174
|
+
|
6175
|
+
def initialize(**args)
|
6176
|
+
update!(**args)
|
6177
|
+
end
|
6178
|
+
|
6179
|
+
# Update properties of this object
|
6180
|
+
def update!(**args)
|
6181
|
+
@domain_category = args[:domain_category] if args.key?(:domain_category)
|
6182
|
+
end
|
6183
|
+
end
|
6184
|
+
|
6185
|
+
# Finding related to an issue.
|
6186
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
6187
|
+
include Google::Apis::Core::Hashable
|
6188
|
+
|
6189
|
+
# The CVE of the finding.
|
6190
|
+
# Corresponds to the JSON property `cve`
|
6191
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingCve]
|
6192
|
+
attr_accessor :cve
|
6193
|
+
|
6194
|
+
# The name of the finding.
|
6195
|
+
# Corresponds to the JSON property `name`
|
6196
|
+
# @return [String]
|
6197
|
+
attr_accessor :name
|
6198
|
+
|
6199
|
+
# The security bulletin of the finding.
|
6200
|
+
# Corresponds to the JSON property `securityBulletin`
|
6201
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin]
|
6202
|
+
attr_accessor :security_bulletin
|
6203
|
+
|
6204
|
+
def initialize(**args)
|
6205
|
+
update!(**args)
|
6206
|
+
end
|
6207
|
+
|
6208
|
+
# Update properties of this object
|
6209
|
+
def update!(**args)
|
6210
|
+
@cve = args[:cve] if args.key?(:cve)
|
6211
|
+
@name = args[:name] if args.key?(:name)
|
6212
|
+
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
6213
|
+
end
|
6214
|
+
end
|
6215
|
+
|
6216
|
+
# The CVE of the finding.
|
6217
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
6218
|
+
include Google::Apis::Core::Hashable
|
6219
|
+
|
6220
|
+
# The CVE name.
|
6221
|
+
# Corresponds to the JSON property `name`
|
6222
|
+
# @return [String]
|
6223
|
+
attr_accessor :name
|
6224
|
+
|
6225
|
+
def initialize(**args)
|
6226
|
+
update!(**args)
|
6227
|
+
end
|
6228
|
+
|
6229
|
+
# Update properties of this object
|
6230
|
+
def update!(**args)
|
6231
|
+
@name = args[:name] if args.key?(:name)
|
6232
|
+
end
|
6233
|
+
end
|
6234
|
+
|
6235
|
+
# The security bulletin of the finding.
|
6236
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
6237
|
+
include Google::Apis::Core::Hashable
|
6238
|
+
|
6239
|
+
# The security bulletin name.
|
6240
|
+
# Corresponds to the JSON property `name`
|
6241
|
+
# @return [String]
|
6242
|
+
attr_accessor :name
|
6243
|
+
|
6244
|
+
def initialize(**args)
|
6245
|
+
update!(**args)
|
6246
|
+
end
|
6247
|
+
|
6248
|
+
# Update properties of this object
|
6249
|
+
def update!(**args)
|
6250
|
+
@name = args[:name] if args.key?(:name)
|
6251
|
+
end
|
6252
|
+
end
|
6253
|
+
|
6254
|
+
# The mute information of the issue.
|
6255
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
6256
|
+
include Google::Apis::Core::Hashable
|
6257
|
+
|
6258
|
+
# The email address of the user who last changed the mute state of the issue.
|
6259
|
+
# Corresponds to the JSON property `muteInitiator`
|
6260
|
+
# @return [String]
|
6261
|
+
attr_accessor :mute_initiator
|
6262
|
+
|
6263
|
+
# The user-provided reason for muting the issue.
|
6264
|
+
# Corresponds to the JSON property `muteReason`
|
6265
|
+
# @return [String]
|
6266
|
+
attr_accessor :mute_reason
|
6267
|
+
|
6268
|
+
# Output only. The mute state of the issue.
|
6269
|
+
# Corresponds to the JSON property `muteState`
|
6270
|
+
# @return [String]
|
6271
|
+
attr_accessor :mute_state
|
6272
|
+
|
6273
|
+
# The time the issue was muted.
|
6274
|
+
# Corresponds to the JSON property `muteUpdateTime`
|
6275
|
+
# @return [String]
|
6276
|
+
attr_accessor :mute_update_time
|
6277
|
+
|
6278
|
+
def initialize(**args)
|
6279
|
+
update!(**args)
|
6280
|
+
end
|
6281
|
+
|
6282
|
+
# Update properties of this object
|
6283
|
+
def update!(**args)
|
6284
|
+
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
6285
|
+
@mute_reason = args[:mute_reason] if args.key?(:mute_reason)
|
6286
|
+
@mute_state = args[:mute_state] if args.key?(:mute_state)
|
6287
|
+
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
6288
|
+
end
|
6289
|
+
end
|
6290
|
+
|
6291
|
+
# A resource associated with the an issue.
|
6292
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
6293
|
+
include Google::Apis::Core::Hashable
|
6294
|
+
|
6295
|
+
# The AWS metadata of a resource associated with an issue.
|
6296
|
+
# Corresponds to the JSON property `awsMetadata`
|
6297
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
|
6298
|
+
attr_accessor :aws_metadata
|
6299
|
+
|
6300
|
+
# The Azure metadata of a resource associated with an issue.
|
6301
|
+
# Corresponds to the JSON property `azureMetadata`
|
6302
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata]
|
6303
|
+
attr_accessor :azure_metadata
|
6304
|
+
|
6305
|
+
# The cloud provider of the resource associated with the issue.
|
6306
|
+
# Corresponds to the JSON property `cloudProvider`
|
6307
|
+
# @return [String]
|
6308
|
+
attr_accessor :cloud_provider
|
6309
|
+
|
6310
|
+
# The resource-type specific display name of the resource associated with the
|
6311
|
+
# issue.
|
6312
|
+
# Corresponds to the JSON property `displayName`
|
6313
|
+
# @return [String]
|
6314
|
+
attr_accessor :display_name
|
6315
|
+
|
6316
|
+
# Google Cloud metadata of a resource associated with an issue.
|
6317
|
+
# Corresponds to the JSON property `googleCloudMetadata`
|
6318
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata]
|
6319
|
+
attr_accessor :google_cloud_metadata
|
6320
|
+
|
6321
|
+
# The full resource name of the resource associated with the issue.
|
6322
|
+
# Corresponds to the JSON property `name`
|
6323
|
+
# @return [String]
|
6324
|
+
attr_accessor :name
|
6325
|
+
|
6326
|
+
# The type of the resource associated with the issue.
|
6327
|
+
# Corresponds to the JSON property `type`
|
6328
|
+
# @return [String]
|
6329
|
+
attr_accessor :type
|
6330
|
+
|
6331
|
+
def initialize(**args)
|
6332
|
+
update!(**args)
|
6333
|
+
end
|
6334
|
+
|
6335
|
+
# Update properties of this object
|
6336
|
+
def update!(**args)
|
6337
|
+
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
6338
|
+
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
6339
|
+
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
6340
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6341
|
+
@google_cloud_metadata = args[:google_cloud_metadata] if args.key?(:google_cloud_metadata)
|
6342
|
+
@name = args[:name] if args.key?(:name)
|
6343
|
+
@type = args[:type] if args.key?(:type)
|
6344
|
+
end
|
6345
|
+
end
|
6346
|
+
|
6347
|
+
# The AWS metadata of a resource associated with an issue.
|
6348
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
6349
|
+
include Google::Apis::Core::Hashable
|
6350
|
+
|
6351
|
+
# The AWS account of the resource associated with the issue.
|
6352
|
+
# Corresponds to the JSON property `account`
|
6353
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount]
|
6354
|
+
attr_accessor :account
|
6355
|
+
|
6356
|
+
def initialize(**args)
|
6357
|
+
update!(**args)
|
6358
|
+
end
|
6359
|
+
|
6360
|
+
# Update properties of this object
|
6361
|
+
def update!(**args)
|
6362
|
+
@account = args[:account] if args.key?(:account)
|
6363
|
+
end
|
6364
|
+
end
|
6365
|
+
|
6366
|
+
# The AWS account of the resource associated with the issue.
|
6367
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
6368
|
+
include Google::Apis::Core::Hashable
|
6369
|
+
|
6370
|
+
# The AWS account ID of the resource associated with the issue.
|
6371
|
+
# Corresponds to the JSON property `id`
|
6372
|
+
# @return [String]
|
6373
|
+
attr_accessor :id
|
6374
|
+
|
6375
|
+
# The AWS account name of the resource associated with the issue.
|
6376
|
+
# Corresponds to the JSON property `name`
|
6377
|
+
# @return [String]
|
6378
|
+
attr_accessor :name
|
6379
|
+
|
6380
|
+
def initialize(**args)
|
6381
|
+
update!(**args)
|
6382
|
+
end
|
6383
|
+
|
6384
|
+
# Update properties of this object
|
6385
|
+
def update!(**args)
|
6386
|
+
@id = args[:id] if args.key?(:id)
|
6387
|
+
@name = args[:name] if args.key?(:name)
|
6388
|
+
end
|
6389
|
+
end
|
6390
|
+
|
6391
|
+
# The Azure metadata of a resource associated with an issue.
|
6392
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
6393
|
+
include Google::Apis::Core::Hashable
|
6394
|
+
|
6395
|
+
# The Azure subscription of the resource associated with the issue.
|
6396
|
+
# Corresponds to the JSON property `subscription`
|
6397
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription]
|
6398
|
+
attr_accessor :subscription
|
6399
|
+
|
6400
|
+
def initialize(**args)
|
6401
|
+
update!(**args)
|
6402
|
+
end
|
6403
|
+
|
6404
|
+
# Update properties of this object
|
6405
|
+
def update!(**args)
|
6406
|
+
@subscription = args[:subscription] if args.key?(:subscription)
|
6407
|
+
end
|
6408
|
+
end
|
6409
|
+
|
6410
|
+
# The Azure subscription of the resource associated with the issue.
|
6411
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
6412
|
+
include Google::Apis::Core::Hashable
|
6413
|
+
|
6414
|
+
# The Azure subscription display name of the resource associated with the issue.
|
6415
|
+
# Corresponds to the JSON property `displayName`
|
6416
|
+
# @return [String]
|
6417
|
+
attr_accessor :display_name
|
6418
|
+
|
6419
|
+
# The Azure subscription ID of the resource associated with the issue.
|
6420
|
+
# Corresponds to the JSON property `id`
|
6421
|
+
# @return [String]
|
6422
|
+
attr_accessor :id
|
6423
|
+
|
6424
|
+
def initialize(**args)
|
6425
|
+
update!(**args)
|
6426
|
+
end
|
6427
|
+
|
6428
|
+
# Update properties of this object
|
6429
|
+
def update!(**args)
|
6430
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6431
|
+
@id = args[:id] if args.key?(:id)
|
6432
|
+
end
|
6433
|
+
end
|
6434
|
+
|
6435
|
+
# Google Cloud metadata of a resource associated with an issue.
|
6436
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
6437
|
+
include Google::Apis::Core::Hashable
|
6438
|
+
|
6439
|
+
# The project ID that the resource associated with the issue belongs to.
|
6440
|
+
# Corresponds to the JSON property `projectId`
|
6441
|
+
# @return [String]
|
6442
|
+
attr_accessor :project_id
|
6443
|
+
|
6444
|
+
def initialize(**args)
|
6445
|
+
update!(**args)
|
6446
|
+
end
|
6447
|
+
|
6448
|
+
# Update properties of this object
|
6449
|
+
def update!(**args)
|
6450
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
6451
|
+
end
|
6452
|
+
end
|
6453
|
+
|
6454
|
+
# Security context associated with an issue.
|
6455
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
6456
|
+
include Google::Apis::Core::Hashable
|
6457
|
+
|
6458
|
+
# Aggregated count of a security context.
|
6459
|
+
# Corresponds to the JSON property `aggregatedCount`
|
6460
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount]
|
6461
|
+
attr_accessor :aggregated_count
|
6462
|
+
|
6463
|
+
# Context of a security context.
|
6464
|
+
# Corresponds to the JSON property `context`
|
6465
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextContext]
|
6466
|
+
attr_accessor :context
|
6467
|
+
|
6468
|
+
def initialize(**args)
|
6469
|
+
update!(**args)
|
6470
|
+
end
|
6471
|
+
|
6472
|
+
# Update properties of this object
|
6473
|
+
def update!(**args)
|
6474
|
+
@aggregated_count = args[:aggregated_count] if args.key?(:aggregated_count)
|
6475
|
+
@context = args[:context] if args.key?(:context)
|
6476
|
+
end
|
6477
|
+
end
|
6478
|
+
|
6479
|
+
# Aggregated count of a security context.
|
6480
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
6481
|
+
include Google::Apis::Core::Hashable
|
6482
|
+
|
6483
|
+
# Aggregation key.
|
6484
|
+
# Corresponds to the JSON property `key`
|
6485
|
+
# @return [String]
|
6486
|
+
attr_accessor :key
|
6487
|
+
|
6488
|
+
# Aggregation value.
|
6489
|
+
# Corresponds to the JSON property `value`
|
6490
|
+
# @return [Fixnum]
|
6491
|
+
attr_accessor :value
|
6492
|
+
|
6493
|
+
def initialize(**args)
|
6494
|
+
update!(**args)
|
6495
|
+
end
|
6496
|
+
|
6497
|
+
# Update properties of this object
|
6498
|
+
def update!(**args)
|
6499
|
+
@key = args[:key] if args.key?(:key)
|
6500
|
+
@value = args[:value] if args.key?(:value)
|
6501
|
+
end
|
6502
|
+
end
|
6503
|
+
|
6504
|
+
# Context of a security context.
|
6505
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
6506
|
+
include Google::Apis::Core::Hashable
|
6507
|
+
|
6508
|
+
# Context type.
|
6509
|
+
# Corresponds to the JSON property `type`
|
6510
|
+
# @return [String]
|
6511
|
+
attr_accessor :type
|
6512
|
+
|
6513
|
+
# Context values.
|
6514
|
+
# Corresponds to the JSON property `values`
|
6515
|
+
# @return [Array<String>]
|
6516
|
+
attr_accessor :values
|
6517
|
+
|
6518
|
+
def initialize(**args)
|
6519
|
+
update!(**args)
|
6520
|
+
end
|
6521
|
+
|
6522
|
+
# Update properties of this object
|
6523
|
+
def update!(**args)
|
6524
|
+
@type = args[:type] if args.key?(:type)
|
6525
|
+
@values = args[:values] if args.key?(:values)
|
6526
|
+
end
|
6527
|
+
end
|
6528
|
+
|
5904
6529
|
# Kernel mode rootkit signatures.
|
5905
6530
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
5906
6531
|
include Google::Apis::Core::Hashable
|
@@ -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.74.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250103"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -214,6 +214,12 @@ module Google
|
|
214
214
|
include Google::Apis::Core::JsonObjectSupport
|
215
215
|
end
|
216
216
|
|
217
|
+
class DataRetentionDeletionEvent
|
218
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
|
+
|
220
|
+
include Google::Apis::Core::JsonObjectSupport
|
221
|
+
end
|
222
|
+
|
217
223
|
class Database
|
218
224
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
225
|
|
@@ -640,6 +646,12 @@ module Google
|
|
640
646
|
include Google::Apis::Core::JsonObjectSupport
|
641
647
|
end
|
642
648
|
|
649
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
650
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
|
+
|
652
|
+
include Google::Apis::Core::JsonObjectSupport
|
653
|
+
end
|
654
|
+
|
643
655
|
class GoogleCloudSecuritycenterV2Database
|
644
656
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
645
657
|
|
@@ -736,6 +748,96 @@ module Google
|
|
736
748
|
include Google::Apis::Core::JsonObjectSupport
|
737
749
|
end
|
738
750
|
|
751
|
+
class GoogleCloudSecuritycenterV2Issue
|
752
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
753
|
+
|
754
|
+
include Google::Apis::Core::JsonObjectSupport
|
755
|
+
end
|
756
|
+
|
757
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
758
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
759
|
+
|
760
|
+
include Google::Apis::Core::JsonObjectSupport
|
761
|
+
end
|
762
|
+
|
763
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
764
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
765
|
+
|
766
|
+
include Google::Apis::Core::JsonObjectSupport
|
767
|
+
end
|
768
|
+
|
769
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
770
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
771
|
+
|
772
|
+
include Google::Apis::Core::JsonObjectSupport
|
773
|
+
end
|
774
|
+
|
775
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
776
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
777
|
+
|
778
|
+
include Google::Apis::Core::JsonObjectSupport
|
779
|
+
end
|
780
|
+
|
781
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
782
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
|
+
|
784
|
+
include Google::Apis::Core::JsonObjectSupport
|
785
|
+
end
|
786
|
+
|
787
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
788
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
789
|
+
|
790
|
+
include Google::Apis::Core::JsonObjectSupport
|
791
|
+
end
|
792
|
+
|
793
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
|
+
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
797
|
+
end
|
798
|
+
|
799
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
805
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
|
+
|
808
|
+
include Google::Apis::Core::JsonObjectSupport
|
809
|
+
end
|
810
|
+
|
811
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
|
+
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
815
|
+
end
|
816
|
+
|
817
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
818
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
819
|
+
|
820
|
+
include Google::Apis::Core::JsonObjectSupport
|
821
|
+
end
|
822
|
+
|
823
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
824
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
825
|
+
|
826
|
+
include Google::Apis::Core::JsonObjectSupport
|
827
|
+
end
|
828
|
+
|
829
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
831
|
+
|
832
|
+
include Google::Apis::Core::JsonObjectSupport
|
833
|
+
end
|
834
|
+
|
835
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
|
+
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
839
|
+
end
|
840
|
+
|
739
841
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
740
842
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
741
843
|
|
@@ -1292,7 +1394,9 @@ module Google
|
|
1292
1394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1293
1395
|
property :classification, as: 'classification'
|
1294
1396
|
property :volume_bps, as: 'volumeBps'
|
1397
|
+
property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
|
1295
1398
|
property :volume_pps, as: 'volumePps'
|
1399
|
+
property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
|
1296
1400
|
end
|
1297
1401
|
end
|
1298
1402
|
|
@@ -1585,6 +1689,16 @@ module Google
|
|
1585
1689
|
end
|
1586
1690
|
end
|
1587
1691
|
|
1692
|
+
class DataRetentionDeletionEvent
|
1693
|
+
# @private
|
1694
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1695
|
+
property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
|
1696
|
+
property :event_detection_time, as: 'eventDetectionTime'
|
1697
|
+
property :event_type, as: 'eventType'
|
1698
|
+
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
1699
|
+
end
|
1700
|
+
end
|
1701
|
+
|
1588
1702
|
class Database
|
1589
1703
|
# @private
|
1590
1704
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1731,6 +1845,8 @@ module Google
|
|
1731
1845
|
|
1732
1846
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta2::DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta2::DataFlowEvent::Representation
|
1733
1847
|
|
1848
|
+
collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta2::DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta2::DataRetentionDeletionEvent::Representation
|
1849
|
+
|
1734
1850
|
property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta2::Database, decorator: Google::Apis::SecuritycenterV1beta2::Database::Representation
|
1735
1851
|
|
1736
1852
|
property :description, as: 'description'
|
@@ -2150,7 +2266,9 @@ module Google
|
|
2150
2266
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2151
2267
|
property :classification, as: 'classification'
|
2152
2268
|
property :volume_bps, as: 'volumeBps'
|
2269
|
+
property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
|
2153
2270
|
property :volume_pps, as: 'volumePps'
|
2271
|
+
property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
|
2154
2272
|
end
|
2155
2273
|
end
|
2156
2274
|
|
@@ -2441,6 +2559,16 @@ module Google
|
|
2441
2559
|
end
|
2442
2560
|
end
|
2443
2561
|
|
2562
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
2563
|
+
# @private
|
2564
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2565
|
+
property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
|
2566
|
+
property :event_detection_time, as: 'eventDetectionTime'
|
2567
|
+
property :event_type, as: 'eventType'
|
2568
|
+
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
2569
|
+
end
|
2570
|
+
end
|
2571
|
+
|
2444
2572
|
class GoogleCloudSecuritycenterV2Database
|
2445
2573
|
# @private
|
2446
2574
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2575,6 +2703,8 @@ module Google
|
|
2575
2703
|
|
2576
2704
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
2577
2705
|
|
2706
|
+
collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent::Representation
|
2707
|
+
|
2578
2708
|
property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Database::Representation
|
2579
2709
|
|
2580
2710
|
property :description, as: 'description'
|
@@ -2679,6 +2809,158 @@ module Google
|
|
2679
2809
|
end
|
2680
2810
|
end
|
2681
2811
|
|
2812
|
+
class GoogleCloudSecuritycenterV2Issue
|
2813
|
+
# @private
|
2814
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2815
|
+
property :create_time, as: 'createTime'
|
2816
|
+
property :description, as: 'description'
|
2817
|
+
property :detection, as: 'detection'
|
2818
|
+
collection :domains, as: 'domains', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueDomain, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueDomain::Representation
|
2819
|
+
|
2820
|
+
property :exposure_score, as: 'exposureScore'
|
2821
|
+
property :issue_type, as: 'issueType'
|
2822
|
+
property :last_observation_time, as: 'lastObservationTime'
|
2823
|
+
property :mute, as: 'mute', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute::Representation
|
2824
|
+
|
2825
|
+
property :name, as: 'name'
|
2826
|
+
property :primary_resource, as: 'primaryResource', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource::Representation
|
2827
|
+
|
2828
|
+
collection :related_findings, as: 'relatedFindings', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFinding, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFinding::Representation
|
2829
|
+
|
2830
|
+
collection :remediations, as: 'remediations'
|
2831
|
+
collection :secondary_resources, as: 'secondaryResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource::Representation
|
2832
|
+
|
2833
|
+
collection :security_contexts, as: 'securityContexts', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContext, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContext::Representation
|
2834
|
+
|
2835
|
+
property :severity, as: 'severity'
|
2836
|
+
property :state, as: 'state'
|
2837
|
+
property :update_time, as: 'updateTime'
|
2838
|
+
end
|
2839
|
+
end
|
2840
|
+
|
2841
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
2842
|
+
# @private
|
2843
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2844
|
+
property :domain_category, as: 'domainCategory'
|
2845
|
+
end
|
2846
|
+
end
|
2847
|
+
|
2848
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
2849
|
+
# @private
|
2850
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2851
|
+
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingCve, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingCve::Representation
|
2852
|
+
|
2853
|
+
property :name, as: 'name'
|
2854
|
+
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin::Representation
|
2855
|
+
|
2856
|
+
end
|
2857
|
+
end
|
2858
|
+
|
2859
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
2860
|
+
# @private
|
2861
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2862
|
+
property :name, as: 'name'
|
2863
|
+
end
|
2864
|
+
end
|
2865
|
+
|
2866
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
2867
|
+
# @private
|
2868
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2869
|
+
property :name, as: 'name'
|
2870
|
+
end
|
2871
|
+
end
|
2872
|
+
|
2873
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
2874
|
+
# @private
|
2875
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2876
|
+
property :mute_initiator, as: 'muteInitiator'
|
2877
|
+
property :mute_reason, as: 'muteReason'
|
2878
|
+
property :mute_state, as: 'muteState'
|
2879
|
+
property :mute_update_time, as: 'muteUpdateTime'
|
2880
|
+
end
|
2881
|
+
end
|
2882
|
+
|
2883
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
2884
|
+
# @private
|
2885
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2886
|
+
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
2887
|
+
|
2888
|
+
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
|
2889
|
+
|
2890
|
+
property :cloud_provider, as: 'cloudProvider'
|
2891
|
+
property :display_name, as: 'displayName'
|
2892
|
+
property :google_cloud_metadata, as: 'googleCloudMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata::Representation
|
2893
|
+
|
2894
|
+
property :name, as: 'name'
|
2895
|
+
property :type, as: 'type'
|
2896
|
+
end
|
2897
|
+
end
|
2898
|
+
|
2899
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
2900
|
+
# @private
|
2901
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2902
|
+
property :account, as: 'account', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount::Representation
|
2903
|
+
|
2904
|
+
end
|
2905
|
+
end
|
2906
|
+
|
2907
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
2908
|
+
# @private
|
2909
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2910
|
+
property :id, as: 'id'
|
2911
|
+
property :name, as: 'name'
|
2912
|
+
end
|
2913
|
+
end
|
2914
|
+
|
2915
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
2916
|
+
# @private
|
2917
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2918
|
+
property :subscription, as: 'subscription', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription::Representation
|
2919
|
+
|
2920
|
+
end
|
2921
|
+
end
|
2922
|
+
|
2923
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
2924
|
+
# @private
|
2925
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2926
|
+
property :display_name, as: 'displayName'
|
2927
|
+
property :id, as: 'id'
|
2928
|
+
end
|
2929
|
+
end
|
2930
|
+
|
2931
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
2932
|
+
# @private
|
2933
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2934
|
+
property :project_id, as: 'projectId'
|
2935
|
+
end
|
2936
|
+
end
|
2937
|
+
|
2938
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
2939
|
+
# @private
|
2940
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2941
|
+
property :aggregated_count, as: 'aggregatedCount', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount::Representation
|
2942
|
+
|
2943
|
+
property :context, as: 'context', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextContext, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextContext::Representation
|
2944
|
+
|
2945
|
+
end
|
2946
|
+
end
|
2947
|
+
|
2948
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
2949
|
+
# @private
|
2950
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2951
|
+
property :key, as: 'key'
|
2952
|
+
property :value, as: 'value'
|
2953
|
+
end
|
2954
|
+
end
|
2955
|
+
|
2956
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
2957
|
+
# @private
|
2958
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2959
|
+
property :type, as: 'type'
|
2960
|
+
collection :values, as: 'values'
|
2961
|
+
end
|
2962
|
+
end
|
2963
|
+
|
2682
2964
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
2683
2965
|
# @private
|
2684
2966
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.74.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-01-12 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: google-apis-core
|
@@ -58,9 +57,8 @@ licenses:
|
|
58
57
|
metadata:
|
59
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
59
|
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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.74.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
63
|
-
post_install_message:
|
64
62
|
rdoc_options: []
|
65
63
|
require_paths:
|
66
64
|
- lib
|
@@ -75,8 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
73
|
- !ruby/object:Gem::Version
|
76
74
|
version: '0'
|
77
75
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
-
signing_key:
|
76
|
+
rubygems_version: 3.6.2
|
80
77
|
specification_version: 4
|
81
78
|
summary: Simple REST client for Security Command Center API V1beta2
|
82
79
|
test_files: []
|