google-apis-securitycenter_v1beta1 0.80.0 → 0.82.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/securitycenter_v1beta1/classes.rb +629 -4
- data/lib/google/apis/securitycenter_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/securitycenter_v1beta1/representations.rb +282 -0
- data/lib/google/apis/securitycenter_v1beta1/service.rb +2 -2
- metadata +4 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 450f22a39daa856a465582ce207b416afd35ad8da193c9fe8cafcbd0012f3342
|
4
|
+
data.tar.gz: be6853a2a349a15418658cbd842233a8ba86496e9aedf9c0356b8e4e5996d521
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c6d6fcd18a98694ffe874de17913a876a6e74026cf10c6cffaadc3f29dd5c71efb1bd3fc1ac3f7377a0718609b2b07718e0635c52c99899f3646a5be06df9a1
|
7
|
+
data.tar.gz: 56109fa79dde807ec6097aeebb5d20bdc967e1101ebd599babc503937b708103b144a8318f1d6966818978609c54bd274c2883ffcb89508d0bc25169cf3a77f8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-securitycenter_v1beta1
|
2
2
|
|
3
|
+
### v0.82.0 (2025-01-12)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250103
|
6
|
+
* Regenerated using generator version 0.16.0
|
7
|
+
|
8
|
+
### v0.81.0 (2024-12-15)
|
9
|
+
|
10
|
+
* Regenerated from discovery document revision 20241206
|
11
|
+
|
3
12
|
### v0.80.0 (2024-12-02)
|
4
13
|
|
5
14
|
* Regenerated from discovery document revision 20241111
|
@@ -333,16 +333,28 @@ module Google
|
|
333
333
|
# @return [String]
|
334
334
|
attr_accessor :classification
|
335
335
|
|
336
|
-
# Total BPS (bytes per second) volume of attack.
|
336
|
+
# Total BPS (bytes per second) volume of attack. Deprecated - refer to
|
337
|
+
# volume_bps_long instead.
|
337
338
|
# Corresponds to the JSON property `volumeBps`
|
338
339
|
# @return [Fixnum]
|
339
340
|
attr_accessor :volume_bps
|
340
341
|
|
341
|
-
# Total
|
342
|
+
# Total BPS (bytes per second) volume of attack.
|
343
|
+
# Corresponds to the JSON property `volumeBpsLong`
|
344
|
+
# @return [Fixnum]
|
345
|
+
attr_accessor :volume_bps_long
|
346
|
+
|
347
|
+
# Total PPS (packets per second) volume of attack. Deprecated - refer to
|
348
|
+
# volume_pps_long instead.
|
342
349
|
# Corresponds to the JSON property `volumePps`
|
343
350
|
# @return [Fixnum]
|
344
351
|
attr_accessor :volume_pps
|
345
352
|
|
353
|
+
# Total PPS (packets per second) volume of attack.
|
354
|
+
# Corresponds to the JSON property `volumePpsLong`
|
355
|
+
# @return [Fixnum]
|
356
|
+
attr_accessor :volume_pps_long
|
357
|
+
|
346
358
|
def initialize(**args)
|
347
359
|
update!(**args)
|
348
360
|
end
|
@@ -351,7 +363,9 @@ module Google
|
|
351
363
|
def update!(**args)
|
352
364
|
@classification = args[:classification] if args.key?(:classification)
|
353
365
|
@volume_bps = args[:volume_bps] if args.key?(:volume_bps)
|
366
|
+
@volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
|
354
367
|
@volume_pps = args[:volume_pps] if args.key?(:volume_pps)
|
368
|
+
@volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
|
355
369
|
end
|
356
370
|
end
|
357
371
|
|
@@ -1583,6 +1597,59 @@ module Google
|
|
1583
1597
|
end
|
1584
1598
|
end
|
1585
1599
|
|
1600
|
+
# Details about data retention deletion violations, in which the data is non-
|
1601
|
+
# compliant based on their retention or deletion time, as defined in the
|
1602
|
+
# applicable data security policy. The Data Retention Deletion (DRD) control is
|
1603
|
+
# a control of the DSPM (Data Security Posture Management) suite that enables
|
1604
|
+
# organizations to manage data retention and deletion policies in compliance
|
1605
|
+
# with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
|
1606
|
+
# maximum storage length (max TTL) and minimum storage length (min TTL). Both
|
1607
|
+
# are aimed at helping organizations meet regulatory and data management
|
1608
|
+
# commitments.
|
1609
|
+
class DataRetentionDeletionEvent
|
1610
|
+
include Google::Apis::Core::Hashable
|
1611
|
+
|
1612
|
+
# Number of objects that violated the policy for this resource. If the number is
|
1613
|
+
# less than 1,000, then the value of this field is the exact number. If the
|
1614
|
+
# number of objects that violated the policy is greater than or equal to 1,000,
|
1615
|
+
# then the value of this field is 1000.
|
1616
|
+
# Corresponds to the JSON property `dataObjectCount`
|
1617
|
+
# @return [Fixnum]
|
1618
|
+
attr_accessor :data_object_count
|
1619
|
+
|
1620
|
+
# Timestamp indicating when the event was detected.
|
1621
|
+
# Corresponds to the JSON property `eventDetectionTime`
|
1622
|
+
# @return [String]
|
1623
|
+
attr_accessor :event_detection_time
|
1624
|
+
|
1625
|
+
# Type of the DRD event.
|
1626
|
+
# Corresponds to the JSON property `eventType`
|
1627
|
+
# @return [String]
|
1628
|
+
attr_accessor :event_type
|
1629
|
+
|
1630
|
+
# Maximum duration of retention allowed from the DRD control. This comes from
|
1631
|
+
# the DRD control where users set a max TTL for their data. For example, suppose
|
1632
|
+
# that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
|
1633
|
+
# object in that bucket is 100 days old. In this case, a
|
1634
|
+
# DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
|
1635
|
+
# and the max_retention_allowed is 90 days.
|
1636
|
+
# Corresponds to the JSON property `maxRetentionAllowed`
|
1637
|
+
# @return [String]
|
1638
|
+
attr_accessor :max_retention_allowed
|
1639
|
+
|
1640
|
+
def initialize(**args)
|
1641
|
+
update!(**args)
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
# Update properties of this object
|
1645
|
+
def update!(**args)
|
1646
|
+
@data_object_count = args[:data_object_count] if args.key?(:data_object_count)
|
1647
|
+
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
1648
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1649
|
+
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
1650
|
+
end
|
1651
|
+
end
|
1652
|
+
|
1586
1653
|
# Represents database access information, such as queries. A database may be a
|
1587
1654
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
1588
1655
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -2069,6 +2136,11 @@ module Google
|
|
2069
2136
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::DataFlowEvent>]
|
2070
2137
|
attr_accessor :data_flow_events
|
2071
2138
|
|
2139
|
+
# Data retention deletion events associated with the finding.
|
2140
|
+
# Corresponds to the JSON property `dataRetentionDeletionEvents`
|
2141
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::DataRetentionDeletionEvent>]
|
2142
|
+
attr_accessor :data_retention_deletion_events
|
2143
|
+
|
2072
2144
|
# Represents database access information, such as queries. A database may be a
|
2073
2145
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
2074
2146
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -2332,6 +2404,7 @@ module Google
|
|
2332
2404
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2333
2405
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
2334
2406
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
2407
|
+
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
2335
2408
|
@database = args[:database] if args.key?(:database)
|
2336
2409
|
@description = args[:description] if args.key?(:description)
|
2337
2410
|
@disk = args[:disk] if args.key?(:disk)
|
@@ -4109,16 +4182,28 @@ module Google
|
|
4109
4182
|
# @return [String]
|
4110
4183
|
attr_accessor :classification
|
4111
4184
|
|
4112
|
-
# Total BPS (bytes per second) volume of attack.
|
4185
|
+
# Total BPS (bytes per second) volume of attack. Deprecated - refer to
|
4186
|
+
# volume_bps_long instead.
|
4113
4187
|
# Corresponds to the JSON property `volumeBps`
|
4114
4188
|
# @return [Fixnum]
|
4115
4189
|
attr_accessor :volume_bps
|
4116
4190
|
|
4117
|
-
# Total
|
4191
|
+
# Total BPS (bytes per second) volume of attack.
|
4192
|
+
# Corresponds to the JSON property `volumeBpsLong`
|
4193
|
+
# @return [Fixnum]
|
4194
|
+
attr_accessor :volume_bps_long
|
4195
|
+
|
4196
|
+
# Total PPS (packets per second) volume of attack. Deprecated - refer to
|
4197
|
+
# volume_pps_long instead.
|
4118
4198
|
# Corresponds to the JSON property `volumePps`
|
4119
4199
|
# @return [Fixnum]
|
4120
4200
|
attr_accessor :volume_pps
|
4121
4201
|
|
4202
|
+
# Total PPS (packets per second) volume of attack.
|
4203
|
+
# Corresponds to the JSON property `volumePpsLong`
|
4204
|
+
# @return [Fixnum]
|
4205
|
+
attr_accessor :volume_pps_long
|
4206
|
+
|
4122
4207
|
def initialize(**args)
|
4123
4208
|
update!(**args)
|
4124
4209
|
end
|
@@ -4127,7 +4212,9 @@ module Google
|
|
4127
4212
|
def update!(**args)
|
4128
4213
|
@classification = args[:classification] if args.key?(:classification)
|
4129
4214
|
@volume_bps = args[:volume_bps] if args.key?(:volume_bps)
|
4215
|
+
@volume_bps_long = args[:volume_bps_long] if args.key?(:volume_bps_long)
|
4130
4216
|
@volume_pps = args[:volume_pps] if args.key?(:volume_pps)
|
4217
|
+
@volume_pps_long = args[:volume_pps_long] if args.key?(:volume_pps_long)
|
4131
4218
|
end
|
4132
4219
|
end
|
4133
4220
|
|
@@ -5248,6 +5335,59 @@ module Google
|
|
5248
5335
|
end
|
5249
5336
|
end
|
5250
5337
|
|
5338
|
+
# Details about data retention deletion violations, in which the data is non-
|
5339
|
+
# compliant based on their retention or deletion time, as defined in the
|
5340
|
+
# applicable data security policy. The Data Retention Deletion (DRD) control is
|
5341
|
+
# a control of the DSPM (Data Security Posture Management) suite that enables
|
5342
|
+
# organizations to manage data retention and deletion policies in compliance
|
5343
|
+
# with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
|
5344
|
+
# maximum storage length (max TTL) and minimum storage length (min TTL). Both
|
5345
|
+
# are aimed at helping organizations meet regulatory and data management
|
5346
|
+
# commitments.
|
5347
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
5348
|
+
include Google::Apis::Core::Hashable
|
5349
|
+
|
5350
|
+
# Number of objects that violated the policy for this resource. If the number is
|
5351
|
+
# less than 1,000, then the value of this field is the exact number. If the
|
5352
|
+
# number of objects that violated the policy is greater than or equal to 1,000,
|
5353
|
+
# then the value of this field is 1000.
|
5354
|
+
# Corresponds to the JSON property `dataObjectCount`
|
5355
|
+
# @return [Fixnum]
|
5356
|
+
attr_accessor :data_object_count
|
5357
|
+
|
5358
|
+
# Timestamp indicating when the event was detected.
|
5359
|
+
# Corresponds to the JSON property `eventDetectionTime`
|
5360
|
+
# @return [String]
|
5361
|
+
attr_accessor :event_detection_time
|
5362
|
+
|
5363
|
+
# Type of the DRD event.
|
5364
|
+
# Corresponds to the JSON property `eventType`
|
5365
|
+
# @return [String]
|
5366
|
+
attr_accessor :event_type
|
5367
|
+
|
5368
|
+
# Maximum duration of retention allowed from the DRD control. This comes from
|
5369
|
+
# the DRD control where users set a max TTL for their data. For example, suppose
|
5370
|
+
# that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
|
5371
|
+
# object in that bucket is 100 days old. In this case, a
|
5372
|
+
# DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
|
5373
|
+
# and the max_retention_allowed is 90 days.
|
5374
|
+
# Corresponds to the JSON property `maxRetentionAllowed`
|
5375
|
+
# @return [String]
|
5376
|
+
attr_accessor :max_retention_allowed
|
5377
|
+
|
5378
|
+
def initialize(**args)
|
5379
|
+
update!(**args)
|
5380
|
+
end
|
5381
|
+
|
5382
|
+
# Update properties of this object
|
5383
|
+
def update!(**args)
|
5384
|
+
@data_object_count = args[:data_object_count] if args.key?(:data_object_count)
|
5385
|
+
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
5386
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
5387
|
+
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
5388
|
+
end
|
5389
|
+
end
|
5390
|
+
|
5251
5391
|
# Represents database access information, such as queries. A database may be a
|
5252
5392
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
5253
5393
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -5758,6 +5898,11 @@ module Google
|
|
5758
5898
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent>]
|
5759
5899
|
attr_accessor :data_flow_events
|
5760
5900
|
|
5901
|
+
# Data retention deletion events associated with the finding.
|
5902
|
+
# Corresponds to the JSON property `dataRetentionDeletionEvents`
|
5903
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent>]
|
5904
|
+
attr_accessor :data_retention_deletion_events
|
5905
|
+
|
5761
5906
|
# Represents database access information, such as queries. A database may be a
|
5762
5907
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
5763
5908
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -6030,6 +6175,7 @@ module Google
|
|
6030
6175
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6031
6176
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
6032
6177
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
6178
|
+
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
6033
6179
|
@database = args[:database] if args.key?(:database)
|
6034
6180
|
@description = args[:description] if args.key?(:description)
|
6035
6181
|
@disk = args[:disk] if args.key?(:disk)
|
@@ -6217,6 +6363,485 @@ module Google
|
|
6217
6363
|
end
|
6218
6364
|
end
|
6219
6365
|
|
6366
|
+
# Security Command Center Issue.
|
6367
|
+
class GoogleCloudSecuritycenterV2Issue
|
6368
|
+
include Google::Apis::Core::Hashable
|
6369
|
+
|
6370
|
+
# Output only. The time the issue was created.
|
6371
|
+
# Corresponds to the JSON property `createTime`
|
6372
|
+
# @return [String]
|
6373
|
+
attr_accessor :create_time
|
6374
|
+
|
6375
|
+
# The description of the issue in Markdown format.
|
6376
|
+
# Corresponds to the JSON property `description`
|
6377
|
+
# @return [String]
|
6378
|
+
attr_accessor :description
|
6379
|
+
|
6380
|
+
# The finding category or rule name that generated the issue.
|
6381
|
+
# Corresponds to the JSON property `detection`
|
6382
|
+
# @return [String]
|
6383
|
+
attr_accessor :detection
|
6384
|
+
|
6385
|
+
# The domains of the issue.
|
6386
|
+
# Corresponds to the JSON property `domains`
|
6387
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueDomain>]
|
6388
|
+
attr_accessor :domains
|
6389
|
+
|
6390
|
+
# The exposure score of the issue.
|
6391
|
+
# Corresponds to the JSON property `exposureScore`
|
6392
|
+
# @return [Float]
|
6393
|
+
attr_accessor :exposure_score
|
6394
|
+
|
6395
|
+
# The type of the issue.
|
6396
|
+
# Corresponds to the JSON property `issueType`
|
6397
|
+
# @return [String]
|
6398
|
+
attr_accessor :issue_type
|
6399
|
+
|
6400
|
+
# The time the issue was last observed.
|
6401
|
+
# Corresponds to the JSON property `lastObservationTime`
|
6402
|
+
# @return [String]
|
6403
|
+
attr_accessor :last_observation_time
|
6404
|
+
|
6405
|
+
# The mute information of the issue.
|
6406
|
+
# Corresponds to the JSON property `mute`
|
6407
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueMute]
|
6408
|
+
attr_accessor :mute
|
6409
|
+
|
6410
|
+
# Identifier. The name of the issue. Format: organizations/`organization`/
|
6411
|
+
# locations/`location`/issues/`issue`
|
6412
|
+
# Corresponds to the JSON property `name`
|
6413
|
+
# @return [String]
|
6414
|
+
attr_accessor :name
|
6415
|
+
|
6416
|
+
# A resource associated with the an issue.
|
6417
|
+
# Corresponds to the JSON property `primaryResource`
|
6418
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource]
|
6419
|
+
attr_accessor :primary_resource
|
6420
|
+
|
6421
|
+
# The findings related to the issue.
|
6422
|
+
# Corresponds to the JSON property `relatedFindings`
|
6423
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFinding>]
|
6424
|
+
attr_accessor :related_findings
|
6425
|
+
|
6426
|
+
# Approaches to remediate the issue in Markdown format.
|
6427
|
+
# Corresponds to the JSON property `remediations`
|
6428
|
+
# @return [Array<String>]
|
6429
|
+
attr_accessor :remediations
|
6430
|
+
|
6431
|
+
# Additional resources associated with the issue.
|
6432
|
+
# Corresponds to the JSON property `secondaryResources`
|
6433
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource>]
|
6434
|
+
attr_accessor :secondary_resources
|
6435
|
+
|
6436
|
+
# The security context of the issue.
|
6437
|
+
# Corresponds to the JSON property `securityContexts`
|
6438
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContext>]
|
6439
|
+
attr_accessor :security_contexts
|
6440
|
+
|
6441
|
+
# The severity of the issue.
|
6442
|
+
# Corresponds to the JSON property `severity`
|
6443
|
+
# @return [String]
|
6444
|
+
attr_accessor :severity
|
6445
|
+
|
6446
|
+
# Output only. The state of the issue.
|
6447
|
+
# Corresponds to the JSON property `state`
|
6448
|
+
# @return [String]
|
6449
|
+
attr_accessor :state
|
6450
|
+
|
6451
|
+
# Output only. The time the issue was last updated.
|
6452
|
+
# Corresponds to the JSON property `updateTime`
|
6453
|
+
# @return [String]
|
6454
|
+
attr_accessor :update_time
|
6455
|
+
|
6456
|
+
def initialize(**args)
|
6457
|
+
update!(**args)
|
6458
|
+
end
|
6459
|
+
|
6460
|
+
# Update properties of this object
|
6461
|
+
def update!(**args)
|
6462
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
6463
|
+
@description = args[:description] if args.key?(:description)
|
6464
|
+
@detection = args[:detection] if args.key?(:detection)
|
6465
|
+
@domains = args[:domains] if args.key?(:domains)
|
6466
|
+
@exposure_score = args[:exposure_score] if args.key?(:exposure_score)
|
6467
|
+
@issue_type = args[:issue_type] if args.key?(:issue_type)
|
6468
|
+
@last_observation_time = args[:last_observation_time] if args.key?(:last_observation_time)
|
6469
|
+
@mute = args[:mute] if args.key?(:mute)
|
6470
|
+
@name = args[:name] if args.key?(:name)
|
6471
|
+
@primary_resource = args[:primary_resource] if args.key?(:primary_resource)
|
6472
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
6473
|
+
@remediations = args[:remediations] if args.key?(:remediations)
|
6474
|
+
@secondary_resources = args[:secondary_resources] if args.key?(:secondary_resources)
|
6475
|
+
@security_contexts = args[:security_contexts] if args.key?(:security_contexts)
|
6476
|
+
@severity = args[:severity] if args.key?(:severity)
|
6477
|
+
@state = args[:state] if args.key?(:state)
|
6478
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
6479
|
+
end
|
6480
|
+
end
|
6481
|
+
|
6482
|
+
# The domains of an issue.
|
6483
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
6484
|
+
include Google::Apis::Core::Hashable
|
6485
|
+
|
6486
|
+
# The domain category of the issue.
|
6487
|
+
# Corresponds to the JSON property `domainCategory`
|
6488
|
+
# @return [String]
|
6489
|
+
attr_accessor :domain_category
|
6490
|
+
|
6491
|
+
def initialize(**args)
|
6492
|
+
update!(**args)
|
6493
|
+
end
|
6494
|
+
|
6495
|
+
# Update properties of this object
|
6496
|
+
def update!(**args)
|
6497
|
+
@domain_category = args[:domain_category] if args.key?(:domain_category)
|
6498
|
+
end
|
6499
|
+
end
|
6500
|
+
|
6501
|
+
# Finding related to an issue.
|
6502
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
6503
|
+
include Google::Apis::Core::Hashable
|
6504
|
+
|
6505
|
+
# The CVE of the finding.
|
6506
|
+
# Corresponds to the JSON property `cve`
|
6507
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingCve]
|
6508
|
+
attr_accessor :cve
|
6509
|
+
|
6510
|
+
# The name of the finding.
|
6511
|
+
# Corresponds to the JSON property `name`
|
6512
|
+
# @return [String]
|
6513
|
+
attr_accessor :name
|
6514
|
+
|
6515
|
+
# The security bulletin of the finding.
|
6516
|
+
# Corresponds to the JSON property `securityBulletin`
|
6517
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin]
|
6518
|
+
attr_accessor :security_bulletin
|
6519
|
+
|
6520
|
+
def initialize(**args)
|
6521
|
+
update!(**args)
|
6522
|
+
end
|
6523
|
+
|
6524
|
+
# Update properties of this object
|
6525
|
+
def update!(**args)
|
6526
|
+
@cve = args[:cve] if args.key?(:cve)
|
6527
|
+
@name = args[:name] if args.key?(:name)
|
6528
|
+
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
6529
|
+
end
|
6530
|
+
end
|
6531
|
+
|
6532
|
+
# The CVE of the finding.
|
6533
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
6534
|
+
include Google::Apis::Core::Hashable
|
6535
|
+
|
6536
|
+
# The CVE name.
|
6537
|
+
# Corresponds to the JSON property `name`
|
6538
|
+
# @return [String]
|
6539
|
+
attr_accessor :name
|
6540
|
+
|
6541
|
+
def initialize(**args)
|
6542
|
+
update!(**args)
|
6543
|
+
end
|
6544
|
+
|
6545
|
+
# Update properties of this object
|
6546
|
+
def update!(**args)
|
6547
|
+
@name = args[:name] if args.key?(:name)
|
6548
|
+
end
|
6549
|
+
end
|
6550
|
+
|
6551
|
+
# The security bulletin of the finding.
|
6552
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
6553
|
+
include Google::Apis::Core::Hashable
|
6554
|
+
|
6555
|
+
# The security bulletin name.
|
6556
|
+
# Corresponds to the JSON property `name`
|
6557
|
+
# @return [String]
|
6558
|
+
attr_accessor :name
|
6559
|
+
|
6560
|
+
def initialize(**args)
|
6561
|
+
update!(**args)
|
6562
|
+
end
|
6563
|
+
|
6564
|
+
# Update properties of this object
|
6565
|
+
def update!(**args)
|
6566
|
+
@name = args[:name] if args.key?(:name)
|
6567
|
+
end
|
6568
|
+
end
|
6569
|
+
|
6570
|
+
# The mute information of the issue.
|
6571
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
6572
|
+
include Google::Apis::Core::Hashable
|
6573
|
+
|
6574
|
+
# The email address of the user who last changed the mute state of the issue.
|
6575
|
+
# Corresponds to the JSON property `muteInitiator`
|
6576
|
+
# @return [String]
|
6577
|
+
attr_accessor :mute_initiator
|
6578
|
+
|
6579
|
+
# The user-provided reason for muting the issue.
|
6580
|
+
# Corresponds to the JSON property `muteReason`
|
6581
|
+
# @return [String]
|
6582
|
+
attr_accessor :mute_reason
|
6583
|
+
|
6584
|
+
# Output only. The mute state of the issue.
|
6585
|
+
# Corresponds to the JSON property `muteState`
|
6586
|
+
# @return [String]
|
6587
|
+
attr_accessor :mute_state
|
6588
|
+
|
6589
|
+
# The time the issue was muted.
|
6590
|
+
# Corresponds to the JSON property `muteUpdateTime`
|
6591
|
+
# @return [String]
|
6592
|
+
attr_accessor :mute_update_time
|
6593
|
+
|
6594
|
+
def initialize(**args)
|
6595
|
+
update!(**args)
|
6596
|
+
end
|
6597
|
+
|
6598
|
+
# Update properties of this object
|
6599
|
+
def update!(**args)
|
6600
|
+
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
6601
|
+
@mute_reason = args[:mute_reason] if args.key?(:mute_reason)
|
6602
|
+
@mute_state = args[:mute_state] if args.key?(:mute_state)
|
6603
|
+
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
6604
|
+
end
|
6605
|
+
end
|
6606
|
+
|
6607
|
+
# A resource associated with the an issue.
|
6608
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
6609
|
+
include Google::Apis::Core::Hashable
|
6610
|
+
|
6611
|
+
# The AWS metadata of a resource associated with an issue.
|
6612
|
+
# Corresponds to the JSON property `awsMetadata`
|
6613
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
|
6614
|
+
attr_accessor :aws_metadata
|
6615
|
+
|
6616
|
+
# The Azure metadata of a resource associated with an issue.
|
6617
|
+
# Corresponds to the JSON property `azureMetadata`
|
6618
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata]
|
6619
|
+
attr_accessor :azure_metadata
|
6620
|
+
|
6621
|
+
# The cloud provider of the resource associated with the issue.
|
6622
|
+
# Corresponds to the JSON property `cloudProvider`
|
6623
|
+
# @return [String]
|
6624
|
+
attr_accessor :cloud_provider
|
6625
|
+
|
6626
|
+
# The resource-type specific display name of the resource associated with the
|
6627
|
+
# issue.
|
6628
|
+
# Corresponds to the JSON property `displayName`
|
6629
|
+
# @return [String]
|
6630
|
+
attr_accessor :display_name
|
6631
|
+
|
6632
|
+
# Google Cloud metadata of a resource associated with an issue.
|
6633
|
+
# Corresponds to the JSON property `googleCloudMetadata`
|
6634
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata]
|
6635
|
+
attr_accessor :google_cloud_metadata
|
6636
|
+
|
6637
|
+
# The full resource name of the resource associated with the issue.
|
6638
|
+
# Corresponds to the JSON property `name`
|
6639
|
+
# @return [String]
|
6640
|
+
attr_accessor :name
|
6641
|
+
|
6642
|
+
# The type of the resource associated with the issue.
|
6643
|
+
# Corresponds to the JSON property `type`
|
6644
|
+
# @return [String]
|
6645
|
+
attr_accessor :type
|
6646
|
+
|
6647
|
+
def initialize(**args)
|
6648
|
+
update!(**args)
|
6649
|
+
end
|
6650
|
+
|
6651
|
+
# Update properties of this object
|
6652
|
+
def update!(**args)
|
6653
|
+
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
6654
|
+
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
6655
|
+
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
6656
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6657
|
+
@google_cloud_metadata = args[:google_cloud_metadata] if args.key?(:google_cloud_metadata)
|
6658
|
+
@name = args[:name] if args.key?(:name)
|
6659
|
+
@type = args[:type] if args.key?(:type)
|
6660
|
+
end
|
6661
|
+
end
|
6662
|
+
|
6663
|
+
# The AWS metadata of a resource associated with an issue.
|
6664
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
6665
|
+
include Google::Apis::Core::Hashable
|
6666
|
+
|
6667
|
+
# The AWS account of the resource associated with the issue.
|
6668
|
+
# Corresponds to the JSON property `account`
|
6669
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount]
|
6670
|
+
attr_accessor :account
|
6671
|
+
|
6672
|
+
def initialize(**args)
|
6673
|
+
update!(**args)
|
6674
|
+
end
|
6675
|
+
|
6676
|
+
# Update properties of this object
|
6677
|
+
def update!(**args)
|
6678
|
+
@account = args[:account] if args.key?(:account)
|
6679
|
+
end
|
6680
|
+
end
|
6681
|
+
|
6682
|
+
# The AWS account of the resource associated with the issue.
|
6683
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
6684
|
+
include Google::Apis::Core::Hashable
|
6685
|
+
|
6686
|
+
# The AWS account ID of the resource associated with the issue.
|
6687
|
+
# Corresponds to the JSON property `id`
|
6688
|
+
# @return [String]
|
6689
|
+
attr_accessor :id
|
6690
|
+
|
6691
|
+
# The AWS account name of the resource associated with the issue.
|
6692
|
+
# Corresponds to the JSON property `name`
|
6693
|
+
# @return [String]
|
6694
|
+
attr_accessor :name
|
6695
|
+
|
6696
|
+
def initialize(**args)
|
6697
|
+
update!(**args)
|
6698
|
+
end
|
6699
|
+
|
6700
|
+
# Update properties of this object
|
6701
|
+
def update!(**args)
|
6702
|
+
@id = args[:id] if args.key?(:id)
|
6703
|
+
@name = args[:name] if args.key?(:name)
|
6704
|
+
end
|
6705
|
+
end
|
6706
|
+
|
6707
|
+
# The Azure metadata of a resource associated with an issue.
|
6708
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
6709
|
+
include Google::Apis::Core::Hashable
|
6710
|
+
|
6711
|
+
# The Azure subscription of the resource associated with the issue.
|
6712
|
+
# Corresponds to the JSON property `subscription`
|
6713
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription]
|
6714
|
+
attr_accessor :subscription
|
6715
|
+
|
6716
|
+
def initialize(**args)
|
6717
|
+
update!(**args)
|
6718
|
+
end
|
6719
|
+
|
6720
|
+
# Update properties of this object
|
6721
|
+
def update!(**args)
|
6722
|
+
@subscription = args[:subscription] if args.key?(:subscription)
|
6723
|
+
end
|
6724
|
+
end
|
6725
|
+
|
6726
|
+
# The Azure subscription of the resource associated with the issue.
|
6727
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
6728
|
+
include Google::Apis::Core::Hashable
|
6729
|
+
|
6730
|
+
# The Azure subscription display name of the resource associated with the issue.
|
6731
|
+
# Corresponds to the JSON property `displayName`
|
6732
|
+
# @return [String]
|
6733
|
+
attr_accessor :display_name
|
6734
|
+
|
6735
|
+
# The Azure subscription ID of the resource associated with the issue.
|
6736
|
+
# Corresponds to the JSON property `id`
|
6737
|
+
# @return [String]
|
6738
|
+
attr_accessor :id
|
6739
|
+
|
6740
|
+
def initialize(**args)
|
6741
|
+
update!(**args)
|
6742
|
+
end
|
6743
|
+
|
6744
|
+
# Update properties of this object
|
6745
|
+
def update!(**args)
|
6746
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6747
|
+
@id = args[:id] if args.key?(:id)
|
6748
|
+
end
|
6749
|
+
end
|
6750
|
+
|
6751
|
+
# Google Cloud metadata of a resource associated with an issue.
|
6752
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
6753
|
+
include Google::Apis::Core::Hashable
|
6754
|
+
|
6755
|
+
# The project ID that the resource associated with the issue belongs to.
|
6756
|
+
# Corresponds to the JSON property `projectId`
|
6757
|
+
# @return [String]
|
6758
|
+
attr_accessor :project_id
|
6759
|
+
|
6760
|
+
def initialize(**args)
|
6761
|
+
update!(**args)
|
6762
|
+
end
|
6763
|
+
|
6764
|
+
# Update properties of this object
|
6765
|
+
def update!(**args)
|
6766
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
6767
|
+
end
|
6768
|
+
end
|
6769
|
+
|
6770
|
+
# Security context associated with an issue.
|
6771
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
6772
|
+
include Google::Apis::Core::Hashable
|
6773
|
+
|
6774
|
+
# Aggregated count of a security context.
|
6775
|
+
# Corresponds to the JSON property `aggregatedCount`
|
6776
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount]
|
6777
|
+
attr_accessor :aggregated_count
|
6778
|
+
|
6779
|
+
# Context of a security context.
|
6780
|
+
# Corresponds to the JSON property `context`
|
6781
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextContext]
|
6782
|
+
attr_accessor :context
|
6783
|
+
|
6784
|
+
def initialize(**args)
|
6785
|
+
update!(**args)
|
6786
|
+
end
|
6787
|
+
|
6788
|
+
# Update properties of this object
|
6789
|
+
def update!(**args)
|
6790
|
+
@aggregated_count = args[:aggregated_count] if args.key?(:aggregated_count)
|
6791
|
+
@context = args[:context] if args.key?(:context)
|
6792
|
+
end
|
6793
|
+
end
|
6794
|
+
|
6795
|
+
# Aggregated count of a security context.
|
6796
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
6797
|
+
include Google::Apis::Core::Hashable
|
6798
|
+
|
6799
|
+
# Aggregation key.
|
6800
|
+
# Corresponds to the JSON property `key`
|
6801
|
+
# @return [String]
|
6802
|
+
attr_accessor :key
|
6803
|
+
|
6804
|
+
# Aggregation value.
|
6805
|
+
# Corresponds to the JSON property `value`
|
6806
|
+
# @return [Fixnum]
|
6807
|
+
attr_accessor :value
|
6808
|
+
|
6809
|
+
def initialize(**args)
|
6810
|
+
update!(**args)
|
6811
|
+
end
|
6812
|
+
|
6813
|
+
# Update properties of this object
|
6814
|
+
def update!(**args)
|
6815
|
+
@key = args[:key] if args.key?(:key)
|
6816
|
+
@value = args[:value] if args.key?(:value)
|
6817
|
+
end
|
6818
|
+
end
|
6819
|
+
|
6820
|
+
# Context of a security context.
|
6821
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
6822
|
+
include Google::Apis::Core::Hashable
|
6823
|
+
|
6824
|
+
# Context type.
|
6825
|
+
# Corresponds to the JSON property `type`
|
6826
|
+
# @return [String]
|
6827
|
+
attr_accessor :type
|
6828
|
+
|
6829
|
+
# Context values.
|
6830
|
+
# Corresponds to the JSON property `values`
|
6831
|
+
# @return [Array<String>]
|
6832
|
+
attr_accessor :values
|
6833
|
+
|
6834
|
+
def initialize(**args)
|
6835
|
+
update!(**args)
|
6836
|
+
end
|
6837
|
+
|
6838
|
+
# Update properties of this object
|
6839
|
+
def update!(**args)
|
6840
|
+
@type = args[:type] if args.key?(:type)
|
6841
|
+
@values = args[:values] if args.key?(:values)
|
6842
|
+
end
|
6843
|
+
end
|
6844
|
+
|
6220
6845
|
# Kernel mode rootkit signatures.
|
6221
6846
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
6222
6847
|
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.82.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
|
@@ -238,6 +238,12 @@ module Google
|
|
238
238
|
include Google::Apis::Core::JsonObjectSupport
|
239
239
|
end
|
240
240
|
|
241
|
+
class DataRetentionDeletionEvent
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
241
247
|
class Database
|
242
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
249
|
|
@@ -682,6 +688,12 @@ module Google
|
|
682
688
|
include Google::Apis::Core::JsonObjectSupport
|
683
689
|
end
|
684
690
|
|
691
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
|
+
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
695
|
+
end
|
696
|
+
|
685
697
|
class GoogleCloudSecuritycenterV2Database
|
686
698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
699
|
|
@@ -778,6 +790,96 @@ module Google
|
|
778
790
|
include Google::Apis::Core::JsonObjectSupport
|
779
791
|
end
|
780
792
|
|
793
|
+
class GoogleCloudSecuritycenterV2Issue
|
794
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
795
|
+
|
796
|
+
include Google::Apis::Core::JsonObjectSupport
|
797
|
+
end
|
798
|
+
|
799
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
800
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
801
|
+
|
802
|
+
include Google::Apis::Core::JsonObjectSupport
|
803
|
+
end
|
804
|
+
|
805
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
806
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
807
|
+
|
808
|
+
include Google::Apis::Core::JsonObjectSupport
|
809
|
+
end
|
810
|
+
|
811
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
812
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
813
|
+
|
814
|
+
include Google::Apis::Core::JsonObjectSupport
|
815
|
+
end
|
816
|
+
|
817
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
818
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
819
|
+
|
820
|
+
include Google::Apis::Core::JsonObjectSupport
|
821
|
+
end
|
822
|
+
|
823
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
824
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
825
|
+
|
826
|
+
include Google::Apis::Core::JsonObjectSupport
|
827
|
+
end
|
828
|
+
|
829
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
830
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
831
|
+
|
832
|
+
include Google::Apis::Core::JsonObjectSupport
|
833
|
+
end
|
834
|
+
|
835
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
836
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
|
+
|
838
|
+
include Google::Apis::Core::JsonObjectSupport
|
839
|
+
end
|
840
|
+
|
841
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
842
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
843
|
+
|
844
|
+
include Google::Apis::Core::JsonObjectSupport
|
845
|
+
end
|
846
|
+
|
847
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
848
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
849
|
+
|
850
|
+
include Google::Apis::Core::JsonObjectSupport
|
851
|
+
end
|
852
|
+
|
853
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
854
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
855
|
+
|
856
|
+
include Google::Apis::Core::JsonObjectSupport
|
857
|
+
end
|
858
|
+
|
859
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
860
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
861
|
+
|
862
|
+
include Google::Apis::Core::JsonObjectSupport
|
863
|
+
end
|
864
|
+
|
865
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
866
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
867
|
+
|
868
|
+
include Google::Apis::Core::JsonObjectSupport
|
869
|
+
end
|
870
|
+
|
871
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
872
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
873
|
+
|
874
|
+
include Google::Apis::Core::JsonObjectSupport
|
875
|
+
end
|
876
|
+
|
877
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
878
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
|
+
|
880
|
+
include Google::Apis::Core::JsonObjectSupport
|
881
|
+
end
|
882
|
+
|
781
883
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
782
884
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
783
885
|
|
@@ -1446,7 +1548,9 @@ module Google
|
|
1446
1548
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1447
1549
|
property :classification, as: 'classification'
|
1448
1550
|
property :volume_bps, as: 'volumeBps'
|
1551
|
+
property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
|
1449
1552
|
property :volume_pps, as: 'volumePps'
|
1553
|
+
property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
|
1450
1554
|
end
|
1451
1555
|
end
|
1452
1556
|
|
@@ -1752,6 +1856,16 @@ module Google
|
|
1752
1856
|
end
|
1753
1857
|
end
|
1754
1858
|
|
1859
|
+
class DataRetentionDeletionEvent
|
1860
|
+
# @private
|
1861
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1862
|
+
property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
|
1863
|
+
property :event_detection_time, as: 'eventDetectionTime'
|
1864
|
+
property :event_type, as: 'eventType'
|
1865
|
+
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
1866
|
+
end
|
1867
|
+
end
|
1868
|
+
|
1755
1869
|
class Database
|
1756
1870
|
# @private
|
1757
1871
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1884,6 +1998,8 @@ module Google
|
|
1884
1998
|
|
1885
1999
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta1::DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta1::DataFlowEvent::Representation
|
1886
2000
|
|
2001
|
+
collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta1::DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta1::DataRetentionDeletionEvent::Representation
|
2002
|
+
|
1887
2003
|
property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta1::Database, decorator: Google::Apis::SecuritycenterV1beta1::Database::Representation
|
1888
2004
|
|
1889
2005
|
property :description, as: 'description'
|
@@ -2343,7 +2459,9 @@ module Google
|
|
2343
2459
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2344
2460
|
property :classification, as: 'classification'
|
2345
2461
|
property :volume_bps, as: 'volumeBps'
|
2462
|
+
property :volume_bps_long, :numeric_string => true, as: 'volumeBpsLong'
|
2346
2463
|
property :volume_pps, as: 'volumePps'
|
2464
|
+
property :volume_pps_long, :numeric_string => true, as: 'volumePpsLong'
|
2347
2465
|
end
|
2348
2466
|
end
|
2349
2467
|
|
@@ -2634,6 +2752,16 @@ module Google
|
|
2634
2752
|
end
|
2635
2753
|
end
|
2636
2754
|
|
2755
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
2756
|
+
# @private
|
2757
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2758
|
+
property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
|
2759
|
+
property :event_detection_time, as: 'eventDetectionTime'
|
2760
|
+
property :event_type, as: 'eventType'
|
2761
|
+
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
2762
|
+
end
|
2763
|
+
end
|
2764
|
+
|
2637
2765
|
class GoogleCloudSecuritycenterV2Database
|
2638
2766
|
# @private
|
2639
2767
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2768,6 +2896,8 @@ module Google
|
|
2768
2896
|
|
2769
2897
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
2770
2898
|
|
2899
|
+
collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent::Representation
|
2900
|
+
|
2771
2901
|
property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Database::Representation
|
2772
2902
|
|
2773
2903
|
property :description, as: 'description'
|
@@ -2872,6 +3002,158 @@ module Google
|
|
2872
3002
|
end
|
2873
3003
|
end
|
2874
3004
|
|
3005
|
+
class GoogleCloudSecuritycenterV2Issue
|
3006
|
+
# @private
|
3007
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3008
|
+
property :create_time, as: 'createTime'
|
3009
|
+
property :description, as: 'description'
|
3010
|
+
property :detection, as: 'detection'
|
3011
|
+
collection :domains, as: 'domains', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueDomain, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueDomain::Representation
|
3012
|
+
|
3013
|
+
property :exposure_score, as: 'exposureScore'
|
3014
|
+
property :issue_type, as: 'issueType'
|
3015
|
+
property :last_observation_time, as: 'lastObservationTime'
|
3016
|
+
property :mute, as: 'mute', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueMute, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueMute::Representation
|
3017
|
+
|
3018
|
+
property :name, as: 'name'
|
3019
|
+
property :primary_resource, as: 'primaryResource', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource::Representation
|
3020
|
+
|
3021
|
+
collection :related_findings, as: 'relatedFindings', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFinding, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFinding::Representation
|
3022
|
+
|
3023
|
+
collection :remediations, as: 'remediations'
|
3024
|
+
collection :secondary_resources, as: 'secondaryResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource::Representation
|
3025
|
+
|
3026
|
+
collection :security_contexts, as: 'securityContexts', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContext, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContext::Representation
|
3027
|
+
|
3028
|
+
property :severity, as: 'severity'
|
3029
|
+
property :state, as: 'state'
|
3030
|
+
property :update_time, as: 'updateTime'
|
3031
|
+
end
|
3032
|
+
end
|
3033
|
+
|
3034
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
3035
|
+
# @private
|
3036
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3037
|
+
property :domain_category, as: 'domainCategory'
|
3038
|
+
end
|
3039
|
+
end
|
3040
|
+
|
3041
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
3042
|
+
# @private
|
3043
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3044
|
+
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingCve, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingCve::Representation
|
3045
|
+
|
3046
|
+
property :name, as: 'name'
|
3047
|
+
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin::Representation
|
3048
|
+
|
3049
|
+
end
|
3050
|
+
end
|
3051
|
+
|
3052
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
3053
|
+
# @private
|
3054
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3055
|
+
property :name, as: 'name'
|
3056
|
+
end
|
3057
|
+
end
|
3058
|
+
|
3059
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
3060
|
+
# @private
|
3061
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3062
|
+
property :name, as: 'name'
|
3063
|
+
end
|
3064
|
+
end
|
3065
|
+
|
3066
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
3067
|
+
# @private
|
3068
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3069
|
+
property :mute_initiator, as: 'muteInitiator'
|
3070
|
+
property :mute_reason, as: 'muteReason'
|
3071
|
+
property :mute_state, as: 'muteState'
|
3072
|
+
property :mute_update_time, as: 'muteUpdateTime'
|
3073
|
+
end
|
3074
|
+
end
|
3075
|
+
|
3076
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
3077
|
+
# @private
|
3078
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3079
|
+
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
3080
|
+
|
3081
|
+
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
|
3082
|
+
|
3083
|
+
property :cloud_provider, as: 'cloudProvider'
|
3084
|
+
property :display_name, as: 'displayName'
|
3085
|
+
property :google_cloud_metadata, as: 'googleCloudMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata::Representation
|
3086
|
+
|
3087
|
+
property :name, as: 'name'
|
3088
|
+
property :type, as: 'type'
|
3089
|
+
end
|
3090
|
+
end
|
3091
|
+
|
3092
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
3093
|
+
# @private
|
3094
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3095
|
+
property :account, as: 'account', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount::Representation
|
3096
|
+
|
3097
|
+
end
|
3098
|
+
end
|
3099
|
+
|
3100
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
3101
|
+
# @private
|
3102
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3103
|
+
property :id, as: 'id'
|
3104
|
+
property :name, as: 'name'
|
3105
|
+
end
|
3106
|
+
end
|
3107
|
+
|
3108
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
3109
|
+
# @private
|
3110
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3111
|
+
property :subscription, as: 'subscription', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription::Representation
|
3112
|
+
|
3113
|
+
end
|
3114
|
+
end
|
3115
|
+
|
3116
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
3117
|
+
# @private
|
3118
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3119
|
+
property :display_name, as: 'displayName'
|
3120
|
+
property :id, as: 'id'
|
3121
|
+
end
|
3122
|
+
end
|
3123
|
+
|
3124
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
3125
|
+
# @private
|
3126
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3127
|
+
property :project_id, as: 'projectId'
|
3128
|
+
end
|
3129
|
+
end
|
3130
|
+
|
3131
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
3132
|
+
# @private
|
3133
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3134
|
+
property :aggregated_count, as: 'aggregatedCount', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount::Representation
|
3135
|
+
|
3136
|
+
property :context, as: 'context', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextContext, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextContext::Representation
|
3137
|
+
|
3138
|
+
end
|
3139
|
+
end
|
3140
|
+
|
3141
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
3142
|
+
# @private
|
3143
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3144
|
+
property :key, as: 'key'
|
3145
|
+
property :value, as: 'value'
|
3146
|
+
end
|
3147
|
+
end
|
3148
|
+
|
3149
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
3150
|
+
# @private
|
3151
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3152
|
+
property :type, as: 'type'
|
3153
|
+
collection :values, as: 'values'
|
3154
|
+
end
|
3155
|
+
end
|
3156
|
+
|
2875
3157
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
2876
3158
|
# @private
|
2877
3159
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -329,8 +329,8 @@ module Google
|
|
329
329
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
330
330
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
331
331
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
332
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
333
|
-
# corresponding to `Code.CANCELLED`.
|
332
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
333
|
+
# , corresponding to `Code.CANCELLED`.
|
334
334
|
# @param [String] name
|
335
335
|
# The name of the operation resource to be cancelled.
|
336
336
|
# @param [Google::Apis::SecuritycenterV1beta1::CancelOperationRequest] cancel_operation_request_object
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
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.82.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_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.82.0
|
62
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
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 V1beta1
|
82
79
|
test_files: []
|