google-apis-securitycenter_v1beta1 0.80.0 → 0.81.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/securitycenter_v1beta1/classes.rb +597 -0
- data/lib/google/apis/securitycenter_v1beta1/gem_version.rb +2 -2
- data/lib/google/apis/securitycenter_v1beta1/representations.rb +278 -0
- data/lib/google/apis/securitycenter_v1beta1/service.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad5b933ed03a6e56da447eeeaf960c3523bc28cb23d532f0da93f89bd04a544d
|
4
|
+
data.tar.gz: 3d3b9c8200631f94266feba60065224b7548b10e8c6f3a4dd616d8034032d7cf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3ec5e8b3c2668691801531b05418569aed4beb6cfcd99464d16acc3f5fcbe890288638c2ff60d575fcebca4ce0da012539fab34fcbb8e8d9e5a3f5500762d74b
|
7
|
+
data.tar.gz: 115df0a6cd03690718884bdaae3810940346ecfa19a3aff6e73cd018ccbbe438863f6b5033b1ecd34512255fc5854f46f560128c665f755f826ff9f7c5f3d10d
|
data/CHANGELOG.md
CHANGED
@@ -1583,6 +1583,59 @@ module Google
|
|
1583
1583
|
end
|
1584
1584
|
end
|
1585
1585
|
|
1586
|
+
# Details about data retention deletion violations, in which the data is non-
|
1587
|
+
# compliant based on their retention or deletion time, as defined in the
|
1588
|
+
# applicable data security policy. The Data Retention Deletion (DRD) control is
|
1589
|
+
# a control of the DSPM (Data Security Posture Management) suite that enables
|
1590
|
+
# organizations to manage data retention and deletion policies in compliance
|
1591
|
+
# with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
|
1592
|
+
# maximum storage length (max TTL) and minimum storage length (min TTL). Both
|
1593
|
+
# are aimed at helping organizations meet regulatory and data management
|
1594
|
+
# commitments.
|
1595
|
+
class DataRetentionDeletionEvent
|
1596
|
+
include Google::Apis::Core::Hashable
|
1597
|
+
|
1598
|
+
# Number of objects that violated the policy for this resource. If the number is
|
1599
|
+
# less than 1,000, then the value of this field is the exact number. If the
|
1600
|
+
# number of objects that violated the policy is greater than or equal to 1,000,
|
1601
|
+
# then the value of this field is 1000.
|
1602
|
+
# Corresponds to the JSON property `dataObjectCount`
|
1603
|
+
# @return [Fixnum]
|
1604
|
+
attr_accessor :data_object_count
|
1605
|
+
|
1606
|
+
# Timestamp indicating when the event was detected.
|
1607
|
+
# Corresponds to the JSON property `eventDetectionTime`
|
1608
|
+
# @return [String]
|
1609
|
+
attr_accessor :event_detection_time
|
1610
|
+
|
1611
|
+
# Type of the DRD event.
|
1612
|
+
# Corresponds to the JSON property `eventType`
|
1613
|
+
# @return [String]
|
1614
|
+
attr_accessor :event_type
|
1615
|
+
|
1616
|
+
# Maximum duration of retention allowed from the DRD control. This comes from
|
1617
|
+
# the DRD control where users set a max TTL for their data. For example, suppose
|
1618
|
+
# that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
|
1619
|
+
# object in that bucket is 100 days old. In this case, a
|
1620
|
+
# DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
|
1621
|
+
# and the max_retention_allowed is 90 days.
|
1622
|
+
# Corresponds to the JSON property `maxRetentionAllowed`
|
1623
|
+
# @return [String]
|
1624
|
+
attr_accessor :max_retention_allowed
|
1625
|
+
|
1626
|
+
def initialize(**args)
|
1627
|
+
update!(**args)
|
1628
|
+
end
|
1629
|
+
|
1630
|
+
# Update properties of this object
|
1631
|
+
def update!(**args)
|
1632
|
+
@data_object_count = args[:data_object_count] if args.key?(:data_object_count)
|
1633
|
+
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
1634
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
1635
|
+
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
1636
|
+
end
|
1637
|
+
end
|
1638
|
+
|
1586
1639
|
# Represents database access information, such as queries. A database may be a
|
1587
1640
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
1588
1641
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -2069,6 +2122,11 @@ module Google
|
|
2069
2122
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::DataFlowEvent>]
|
2070
2123
|
attr_accessor :data_flow_events
|
2071
2124
|
|
2125
|
+
# Data retention deletion events associated with the finding.
|
2126
|
+
# Corresponds to the JSON property `dataRetentionDeletionEvents`
|
2127
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::DataRetentionDeletionEvent>]
|
2128
|
+
attr_accessor :data_retention_deletion_events
|
2129
|
+
|
2072
2130
|
# Represents database access information, such as queries. A database may be a
|
2073
2131
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
2074
2132
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -2332,6 +2390,7 @@ module Google
|
|
2332
2390
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2333
2391
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
2334
2392
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
2393
|
+
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
2335
2394
|
@database = args[:database] if args.key?(:database)
|
2336
2395
|
@description = args[:description] if args.key?(:description)
|
2337
2396
|
@disk = args[:disk] if args.key?(:disk)
|
@@ -5248,6 +5307,59 @@ module Google
|
|
5248
5307
|
end
|
5249
5308
|
end
|
5250
5309
|
|
5310
|
+
# Details about data retention deletion violations, in which the data is non-
|
5311
|
+
# compliant based on their retention or deletion time, as defined in the
|
5312
|
+
# applicable data security policy. The Data Retention Deletion (DRD) control is
|
5313
|
+
# a control of the DSPM (Data Security Posture Management) suite that enables
|
5314
|
+
# organizations to manage data retention and deletion policies in compliance
|
5315
|
+
# with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
|
5316
|
+
# maximum storage length (max TTL) and minimum storage length (min TTL). Both
|
5317
|
+
# are aimed at helping organizations meet regulatory and data management
|
5318
|
+
# commitments.
|
5319
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
5320
|
+
include Google::Apis::Core::Hashable
|
5321
|
+
|
5322
|
+
# Number of objects that violated the policy for this resource. If the number is
|
5323
|
+
# less than 1,000, then the value of this field is the exact number. If the
|
5324
|
+
# number of objects that violated the policy is greater than or equal to 1,000,
|
5325
|
+
# then the value of this field is 1000.
|
5326
|
+
# Corresponds to the JSON property `dataObjectCount`
|
5327
|
+
# @return [Fixnum]
|
5328
|
+
attr_accessor :data_object_count
|
5329
|
+
|
5330
|
+
# Timestamp indicating when the event was detected.
|
5331
|
+
# Corresponds to the JSON property `eventDetectionTime`
|
5332
|
+
# @return [String]
|
5333
|
+
attr_accessor :event_detection_time
|
5334
|
+
|
5335
|
+
# Type of the DRD event.
|
5336
|
+
# Corresponds to the JSON property `eventType`
|
5337
|
+
# @return [String]
|
5338
|
+
attr_accessor :event_type
|
5339
|
+
|
5340
|
+
# Maximum duration of retention allowed from the DRD control. This comes from
|
5341
|
+
# the DRD control where users set a max TTL for their data. For example, suppose
|
5342
|
+
# that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
|
5343
|
+
# object in that bucket is 100 days old. In this case, a
|
5344
|
+
# DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
|
5345
|
+
# and the max_retention_allowed is 90 days.
|
5346
|
+
# Corresponds to the JSON property `maxRetentionAllowed`
|
5347
|
+
# @return [String]
|
5348
|
+
attr_accessor :max_retention_allowed
|
5349
|
+
|
5350
|
+
def initialize(**args)
|
5351
|
+
update!(**args)
|
5352
|
+
end
|
5353
|
+
|
5354
|
+
# Update properties of this object
|
5355
|
+
def update!(**args)
|
5356
|
+
@data_object_count = args[:data_object_count] if args.key?(:data_object_count)
|
5357
|
+
@event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
|
5358
|
+
@event_type = args[:event_type] if args.key?(:event_type)
|
5359
|
+
@max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
|
5360
|
+
end
|
5361
|
+
end
|
5362
|
+
|
5251
5363
|
# Represents database access information, such as queries. A database may be a
|
5252
5364
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
5253
5365
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -5758,6 +5870,11 @@ module Google
|
|
5758
5870
|
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent>]
|
5759
5871
|
attr_accessor :data_flow_events
|
5760
5872
|
|
5873
|
+
# Data retention deletion events associated with the finding.
|
5874
|
+
# Corresponds to the JSON property `dataRetentionDeletionEvents`
|
5875
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent>]
|
5876
|
+
attr_accessor :data_retention_deletion_events
|
5877
|
+
|
5761
5878
|
# Represents database access information, such as queries. A database may be a
|
5762
5879
|
# sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
|
5763
5880
|
# Spanner instances), or the database instance itself. Some database resources
|
@@ -6030,6 +6147,7 @@ module Google
|
|
6030
6147
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6031
6148
|
@data_access_events = args[:data_access_events] if args.key?(:data_access_events)
|
6032
6149
|
@data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
|
6150
|
+
@data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
|
6033
6151
|
@database = args[:database] if args.key?(:database)
|
6034
6152
|
@description = args[:description] if args.key?(:description)
|
6035
6153
|
@disk = args[:disk] if args.key?(:disk)
|
@@ -6217,6 +6335,485 @@ module Google
|
|
6217
6335
|
end
|
6218
6336
|
end
|
6219
6337
|
|
6338
|
+
# Security Command Center Issue.
|
6339
|
+
class GoogleCloudSecuritycenterV2Issue
|
6340
|
+
include Google::Apis::Core::Hashable
|
6341
|
+
|
6342
|
+
# Output only. The time the issue was created.
|
6343
|
+
# Corresponds to the JSON property `createTime`
|
6344
|
+
# @return [String]
|
6345
|
+
attr_accessor :create_time
|
6346
|
+
|
6347
|
+
# The description of the issue in Markdown format.
|
6348
|
+
# Corresponds to the JSON property `description`
|
6349
|
+
# @return [String]
|
6350
|
+
attr_accessor :description
|
6351
|
+
|
6352
|
+
# The finding category or rule name that generated the issue.
|
6353
|
+
# Corresponds to the JSON property `detection`
|
6354
|
+
# @return [String]
|
6355
|
+
attr_accessor :detection
|
6356
|
+
|
6357
|
+
# The domains of the issue.
|
6358
|
+
# Corresponds to the JSON property `domains`
|
6359
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueDomain>]
|
6360
|
+
attr_accessor :domains
|
6361
|
+
|
6362
|
+
# The exposure score of the issue.
|
6363
|
+
# Corresponds to the JSON property `exposureScore`
|
6364
|
+
# @return [Float]
|
6365
|
+
attr_accessor :exposure_score
|
6366
|
+
|
6367
|
+
# The type of the issue.
|
6368
|
+
# Corresponds to the JSON property `issueType`
|
6369
|
+
# @return [String]
|
6370
|
+
attr_accessor :issue_type
|
6371
|
+
|
6372
|
+
# The time the issue was last observed.
|
6373
|
+
# Corresponds to the JSON property `lastObservationTime`
|
6374
|
+
# @return [String]
|
6375
|
+
attr_accessor :last_observation_time
|
6376
|
+
|
6377
|
+
# The mute information of the issue.
|
6378
|
+
# Corresponds to the JSON property `mute`
|
6379
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueMute]
|
6380
|
+
attr_accessor :mute
|
6381
|
+
|
6382
|
+
# Identifier. The name of the issue. Format: organizations/`organization`/
|
6383
|
+
# locations/`location`/issues/`issue`
|
6384
|
+
# Corresponds to the JSON property `name`
|
6385
|
+
# @return [String]
|
6386
|
+
attr_accessor :name
|
6387
|
+
|
6388
|
+
# A resource associated with the an issue.
|
6389
|
+
# Corresponds to the JSON property `primaryResource`
|
6390
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource]
|
6391
|
+
attr_accessor :primary_resource
|
6392
|
+
|
6393
|
+
# The findings related to the issue.
|
6394
|
+
# Corresponds to the JSON property `relatedFindings`
|
6395
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFinding>]
|
6396
|
+
attr_accessor :related_findings
|
6397
|
+
|
6398
|
+
# Approaches to remediate the issue in Markdown format.
|
6399
|
+
# Corresponds to the JSON property `remediations`
|
6400
|
+
# @return [Array<String>]
|
6401
|
+
attr_accessor :remediations
|
6402
|
+
|
6403
|
+
# Additional resources associated with the issue.
|
6404
|
+
# Corresponds to the JSON property `secondaryResources`
|
6405
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource>]
|
6406
|
+
attr_accessor :secondary_resources
|
6407
|
+
|
6408
|
+
# The security context of the issue.
|
6409
|
+
# Corresponds to the JSON property `securityContexts`
|
6410
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContext>]
|
6411
|
+
attr_accessor :security_contexts
|
6412
|
+
|
6413
|
+
# The severity of the issue.
|
6414
|
+
# Corresponds to the JSON property `severity`
|
6415
|
+
# @return [String]
|
6416
|
+
attr_accessor :severity
|
6417
|
+
|
6418
|
+
# Output only. The state of the issue.
|
6419
|
+
# Corresponds to the JSON property `state`
|
6420
|
+
# @return [String]
|
6421
|
+
attr_accessor :state
|
6422
|
+
|
6423
|
+
# Output only. The time the issue was last updated.
|
6424
|
+
# Corresponds to the JSON property `updateTime`
|
6425
|
+
# @return [String]
|
6426
|
+
attr_accessor :update_time
|
6427
|
+
|
6428
|
+
def initialize(**args)
|
6429
|
+
update!(**args)
|
6430
|
+
end
|
6431
|
+
|
6432
|
+
# Update properties of this object
|
6433
|
+
def update!(**args)
|
6434
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
6435
|
+
@description = args[:description] if args.key?(:description)
|
6436
|
+
@detection = args[:detection] if args.key?(:detection)
|
6437
|
+
@domains = args[:domains] if args.key?(:domains)
|
6438
|
+
@exposure_score = args[:exposure_score] if args.key?(:exposure_score)
|
6439
|
+
@issue_type = args[:issue_type] if args.key?(:issue_type)
|
6440
|
+
@last_observation_time = args[:last_observation_time] if args.key?(:last_observation_time)
|
6441
|
+
@mute = args[:mute] if args.key?(:mute)
|
6442
|
+
@name = args[:name] if args.key?(:name)
|
6443
|
+
@primary_resource = args[:primary_resource] if args.key?(:primary_resource)
|
6444
|
+
@related_findings = args[:related_findings] if args.key?(:related_findings)
|
6445
|
+
@remediations = args[:remediations] if args.key?(:remediations)
|
6446
|
+
@secondary_resources = args[:secondary_resources] if args.key?(:secondary_resources)
|
6447
|
+
@security_contexts = args[:security_contexts] if args.key?(:security_contexts)
|
6448
|
+
@severity = args[:severity] if args.key?(:severity)
|
6449
|
+
@state = args[:state] if args.key?(:state)
|
6450
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
6451
|
+
end
|
6452
|
+
end
|
6453
|
+
|
6454
|
+
# The domains of an issue.
|
6455
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
6456
|
+
include Google::Apis::Core::Hashable
|
6457
|
+
|
6458
|
+
# The domain category of the issue.
|
6459
|
+
# Corresponds to the JSON property `domainCategory`
|
6460
|
+
# @return [String]
|
6461
|
+
attr_accessor :domain_category
|
6462
|
+
|
6463
|
+
def initialize(**args)
|
6464
|
+
update!(**args)
|
6465
|
+
end
|
6466
|
+
|
6467
|
+
# Update properties of this object
|
6468
|
+
def update!(**args)
|
6469
|
+
@domain_category = args[:domain_category] if args.key?(:domain_category)
|
6470
|
+
end
|
6471
|
+
end
|
6472
|
+
|
6473
|
+
# Finding related to an issue.
|
6474
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
6475
|
+
include Google::Apis::Core::Hashable
|
6476
|
+
|
6477
|
+
# The CVE of the finding.
|
6478
|
+
# Corresponds to the JSON property `cve`
|
6479
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingCve]
|
6480
|
+
attr_accessor :cve
|
6481
|
+
|
6482
|
+
# The name of the finding.
|
6483
|
+
# Corresponds to the JSON property `name`
|
6484
|
+
# @return [String]
|
6485
|
+
attr_accessor :name
|
6486
|
+
|
6487
|
+
# The security bulletin of the finding.
|
6488
|
+
# Corresponds to the JSON property `securityBulletin`
|
6489
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin]
|
6490
|
+
attr_accessor :security_bulletin
|
6491
|
+
|
6492
|
+
def initialize(**args)
|
6493
|
+
update!(**args)
|
6494
|
+
end
|
6495
|
+
|
6496
|
+
# Update properties of this object
|
6497
|
+
def update!(**args)
|
6498
|
+
@cve = args[:cve] if args.key?(:cve)
|
6499
|
+
@name = args[:name] if args.key?(:name)
|
6500
|
+
@security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
|
6501
|
+
end
|
6502
|
+
end
|
6503
|
+
|
6504
|
+
# The CVE of the finding.
|
6505
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
6506
|
+
include Google::Apis::Core::Hashable
|
6507
|
+
|
6508
|
+
# The CVE name.
|
6509
|
+
# Corresponds to the JSON property `name`
|
6510
|
+
# @return [String]
|
6511
|
+
attr_accessor :name
|
6512
|
+
|
6513
|
+
def initialize(**args)
|
6514
|
+
update!(**args)
|
6515
|
+
end
|
6516
|
+
|
6517
|
+
# Update properties of this object
|
6518
|
+
def update!(**args)
|
6519
|
+
@name = args[:name] if args.key?(:name)
|
6520
|
+
end
|
6521
|
+
end
|
6522
|
+
|
6523
|
+
# The security bulletin of the finding.
|
6524
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
6525
|
+
include Google::Apis::Core::Hashable
|
6526
|
+
|
6527
|
+
# The security bulletin name.
|
6528
|
+
# Corresponds to the JSON property `name`
|
6529
|
+
# @return [String]
|
6530
|
+
attr_accessor :name
|
6531
|
+
|
6532
|
+
def initialize(**args)
|
6533
|
+
update!(**args)
|
6534
|
+
end
|
6535
|
+
|
6536
|
+
# Update properties of this object
|
6537
|
+
def update!(**args)
|
6538
|
+
@name = args[:name] if args.key?(:name)
|
6539
|
+
end
|
6540
|
+
end
|
6541
|
+
|
6542
|
+
# The mute information of the issue.
|
6543
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
6544
|
+
include Google::Apis::Core::Hashable
|
6545
|
+
|
6546
|
+
# The email address of the user who last changed the mute state of the issue.
|
6547
|
+
# Corresponds to the JSON property `muteInitiator`
|
6548
|
+
# @return [String]
|
6549
|
+
attr_accessor :mute_initiator
|
6550
|
+
|
6551
|
+
# The user-provided reason for muting the issue.
|
6552
|
+
# Corresponds to the JSON property `muteReason`
|
6553
|
+
# @return [String]
|
6554
|
+
attr_accessor :mute_reason
|
6555
|
+
|
6556
|
+
# Output only. The mute state of the issue.
|
6557
|
+
# Corresponds to the JSON property `muteState`
|
6558
|
+
# @return [String]
|
6559
|
+
attr_accessor :mute_state
|
6560
|
+
|
6561
|
+
# The time the issue was muted.
|
6562
|
+
# Corresponds to the JSON property `muteUpdateTime`
|
6563
|
+
# @return [String]
|
6564
|
+
attr_accessor :mute_update_time
|
6565
|
+
|
6566
|
+
def initialize(**args)
|
6567
|
+
update!(**args)
|
6568
|
+
end
|
6569
|
+
|
6570
|
+
# Update properties of this object
|
6571
|
+
def update!(**args)
|
6572
|
+
@mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
|
6573
|
+
@mute_reason = args[:mute_reason] if args.key?(:mute_reason)
|
6574
|
+
@mute_state = args[:mute_state] if args.key?(:mute_state)
|
6575
|
+
@mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
|
6576
|
+
end
|
6577
|
+
end
|
6578
|
+
|
6579
|
+
# A resource associated with the an issue.
|
6580
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
6581
|
+
include Google::Apis::Core::Hashable
|
6582
|
+
|
6583
|
+
# The AWS metadata of a resource associated with an issue.
|
6584
|
+
# Corresponds to the JSON property `awsMetadata`
|
6585
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
|
6586
|
+
attr_accessor :aws_metadata
|
6587
|
+
|
6588
|
+
# The Azure metadata of a resource associated with an issue.
|
6589
|
+
# Corresponds to the JSON property `azureMetadata`
|
6590
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata]
|
6591
|
+
attr_accessor :azure_metadata
|
6592
|
+
|
6593
|
+
# The cloud provider of the resource associated with the issue.
|
6594
|
+
# Corresponds to the JSON property `cloudProvider`
|
6595
|
+
# @return [String]
|
6596
|
+
attr_accessor :cloud_provider
|
6597
|
+
|
6598
|
+
# The resource-type specific display name of the resource associated with the
|
6599
|
+
# issue.
|
6600
|
+
# Corresponds to the JSON property `displayName`
|
6601
|
+
# @return [String]
|
6602
|
+
attr_accessor :display_name
|
6603
|
+
|
6604
|
+
# Google Cloud metadata of a resource associated with an issue.
|
6605
|
+
# Corresponds to the JSON property `googleCloudMetadata`
|
6606
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata]
|
6607
|
+
attr_accessor :google_cloud_metadata
|
6608
|
+
|
6609
|
+
# The full resource name of the resource associated with the issue.
|
6610
|
+
# Corresponds to the JSON property `name`
|
6611
|
+
# @return [String]
|
6612
|
+
attr_accessor :name
|
6613
|
+
|
6614
|
+
# The type of the resource associated with the issue.
|
6615
|
+
# Corresponds to the JSON property `type`
|
6616
|
+
# @return [String]
|
6617
|
+
attr_accessor :type
|
6618
|
+
|
6619
|
+
def initialize(**args)
|
6620
|
+
update!(**args)
|
6621
|
+
end
|
6622
|
+
|
6623
|
+
# Update properties of this object
|
6624
|
+
def update!(**args)
|
6625
|
+
@aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
|
6626
|
+
@azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
|
6627
|
+
@cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
|
6628
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6629
|
+
@google_cloud_metadata = args[:google_cloud_metadata] if args.key?(:google_cloud_metadata)
|
6630
|
+
@name = args[:name] if args.key?(:name)
|
6631
|
+
@type = args[:type] if args.key?(:type)
|
6632
|
+
end
|
6633
|
+
end
|
6634
|
+
|
6635
|
+
# The AWS metadata of a resource associated with an issue.
|
6636
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
6637
|
+
include Google::Apis::Core::Hashable
|
6638
|
+
|
6639
|
+
# The AWS account of the resource associated with the issue.
|
6640
|
+
# Corresponds to the JSON property `account`
|
6641
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount]
|
6642
|
+
attr_accessor :account
|
6643
|
+
|
6644
|
+
def initialize(**args)
|
6645
|
+
update!(**args)
|
6646
|
+
end
|
6647
|
+
|
6648
|
+
# Update properties of this object
|
6649
|
+
def update!(**args)
|
6650
|
+
@account = args[:account] if args.key?(:account)
|
6651
|
+
end
|
6652
|
+
end
|
6653
|
+
|
6654
|
+
# The AWS account of the resource associated with the issue.
|
6655
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
6656
|
+
include Google::Apis::Core::Hashable
|
6657
|
+
|
6658
|
+
# The AWS account ID of the resource associated with the issue.
|
6659
|
+
# Corresponds to the JSON property `id`
|
6660
|
+
# @return [String]
|
6661
|
+
attr_accessor :id
|
6662
|
+
|
6663
|
+
# The AWS account name of the resource associated with the issue.
|
6664
|
+
# Corresponds to the JSON property `name`
|
6665
|
+
# @return [String]
|
6666
|
+
attr_accessor :name
|
6667
|
+
|
6668
|
+
def initialize(**args)
|
6669
|
+
update!(**args)
|
6670
|
+
end
|
6671
|
+
|
6672
|
+
# Update properties of this object
|
6673
|
+
def update!(**args)
|
6674
|
+
@id = args[:id] if args.key?(:id)
|
6675
|
+
@name = args[:name] if args.key?(:name)
|
6676
|
+
end
|
6677
|
+
end
|
6678
|
+
|
6679
|
+
# The Azure metadata of a resource associated with an issue.
|
6680
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
6681
|
+
include Google::Apis::Core::Hashable
|
6682
|
+
|
6683
|
+
# The Azure subscription of the resource associated with the issue.
|
6684
|
+
# Corresponds to the JSON property `subscription`
|
6685
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription]
|
6686
|
+
attr_accessor :subscription
|
6687
|
+
|
6688
|
+
def initialize(**args)
|
6689
|
+
update!(**args)
|
6690
|
+
end
|
6691
|
+
|
6692
|
+
# Update properties of this object
|
6693
|
+
def update!(**args)
|
6694
|
+
@subscription = args[:subscription] if args.key?(:subscription)
|
6695
|
+
end
|
6696
|
+
end
|
6697
|
+
|
6698
|
+
# The Azure subscription of the resource associated with the issue.
|
6699
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
6700
|
+
include Google::Apis::Core::Hashable
|
6701
|
+
|
6702
|
+
# The Azure subscription display name of the resource associated with the issue.
|
6703
|
+
# Corresponds to the JSON property `displayName`
|
6704
|
+
# @return [String]
|
6705
|
+
attr_accessor :display_name
|
6706
|
+
|
6707
|
+
# The Azure subscription ID of the resource associated with the issue.
|
6708
|
+
# Corresponds to the JSON property `id`
|
6709
|
+
# @return [String]
|
6710
|
+
attr_accessor :id
|
6711
|
+
|
6712
|
+
def initialize(**args)
|
6713
|
+
update!(**args)
|
6714
|
+
end
|
6715
|
+
|
6716
|
+
# Update properties of this object
|
6717
|
+
def update!(**args)
|
6718
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6719
|
+
@id = args[:id] if args.key?(:id)
|
6720
|
+
end
|
6721
|
+
end
|
6722
|
+
|
6723
|
+
# Google Cloud metadata of a resource associated with an issue.
|
6724
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
6725
|
+
include Google::Apis::Core::Hashable
|
6726
|
+
|
6727
|
+
# The project ID that the resource associated with the issue belongs to.
|
6728
|
+
# Corresponds to the JSON property `projectId`
|
6729
|
+
# @return [String]
|
6730
|
+
attr_accessor :project_id
|
6731
|
+
|
6732
|
+
def initialize(**args)
|
6733
|
+
update!(**args)
|
6734
|
+
end
|
6735
|
+
|
6736
|
+
# Update properties of this object
|
6737
|
+
def update!(**args)
|
6738
|
+
@project_id = args[:project_id] if args.key?(:project_id)
|
6739
|
+
end
|
6740
|
+
end
|
6741
|
+
|
6742
|
+
# Security context associated with an issue.
|
6743
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
6744
|
+
include Google::Apis::Core::Hashable
|
6745
|
+
|
6746
|
+
# Aggregated count of a security context.
|
6747
|
+
# Corresponds to the JSON property `aggregatedCount`
|
6748
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount]
|
6749
|
+
attr_accessor :aggregated_count
|
6750
|
+
|
6751
|
+
# Context of a security context.
|
6752
|
+
# Corresponds to the JSON property `context`
|
6753
|
+
# @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextContext]
|
6754
|
+
attr_accessor :context
|
6755
|
+
|
6756
|
+
def initialize(**args)
|
6757
|
+
update!(**args)
|
6758
|
+
end
|
6759
|
+
|
6760
|
+
# Update properties of this object
|
6761
|
+
def update!(**args)
|
6762
|
+
@aggregated_count = args[:aggregated_count] if args.key?(:aggregated_count)
|
6763
|
+
@context = args[:context] if args.key?(:context)
|
6764
|
+
end
|
6765
|
+
end
|
6766
|
+
|
6767
|
+
# Aggregated count of a security context.
|
6768
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
6769
|
+
include Google::Apis::Core::Hashable
|
6770
|
+
|
6771
|
+
# Aggregation key.
|
6772
|
+
# Corresponds to the JSON property `key`
|
6773
|
+
# @return [String]
|
6774
|
+
attr_accessor :key
|
6775
|
+
|
6776
|
+
# Aggregation value.
|
6777
|
+
# Corresponds to the JSON property `value`
|
6778
|
+
# @return [Fixnum]
|
6779
|
+
attr_accessor :value
|
6780
|
+
|
6781
|
+
def initialize(**args)
|
6782
|
+
update!(**args)
|
6783
|
+
end
|
6784
|
+
|
6785
|
+
# Update properties of this object
|
6786
|
+
def update!(**args)
|
6787
|
+
@key = args[:key] if args.key?(:key)
|
6788
|
+
@value = args[:value] if args.key?(:value)
|
6789
|
+
end
|
6790
|
+
end
|
6791
|
+
|
6792
|
+
# Context of a security context.
|
6793
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
6794
|
+
include Google::Apis::Core::Hashable
|
6795
|
+
|
6796
|
+
# Context type.
|
6797
|
+
# Corresponds to the JSON property `type`
|
6798
|
+
# @return [String]
|
6799
|
+
attr_accessor :type
|
6800
|
+
|
6801
|
+
# Context values.
|
6802
|
+
# Corresponds to the JSON property `values`
|
6803
|
+
# @return [Array<String>]
|
6804
|
+
attr_accessor :values
|
6805
|
+
|
6806
|
+
def initialize(**args)
|
6807
|
+
update!(**args)
|
6808
|
+
end
|
6809
|
+
|
6810
|
+
# Update properties of this object
|
6811
|
+
def update!(**args)
|
6812
|
+
@type = args[:type] if args.key?(:type)
|
6813
|
+
@values = args[:values] if args.key?(:values)
|
6814
|
+
end
|
6815
|
+
end
|
6816
|
+
|
6220
6817
|
# Kernel mode rootkit signatures.
|
6221
6818
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
6222
6819
|
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.81.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241206"
|
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
|
|
@@ -1752,6 +1854,16 @@ module Google
|
|
1752
1854
|
end
|
1753
1855
|
end
|
1754
1856
|
|
1857
|
+
class DataRetentionDeletionEvent
|
1858
|
+
# @private
|
1859
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1860
|
+
property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
|
1861
|
+
property :event_detection_time, as: 'eventDetectionTime'
|
1862
|
+
property :event_type, as: 'eventType'
|
1863
|
+
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
1864
|
+
end
|
1865
|
+
end
|
1866
|
+
|
1755
1867
|
class Database
|
1756
1868
|
# @private
|
1757
1869
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1884,6 +1996,8 @@ module Google
|
|
1884
1996
|
|
1885
1997
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta1::DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta1::DataFlowEvent::Representation
|
1886
1998
|
|
1999
|
+
collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta1::DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta1::DataRetentionDeletionEvent::Representation
|
2000
|
+
|
1887
2001
|
property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta1::Database, decorator: Google::Apis::SecuritycenterV1beta1::Database::Representation
|
1888
2002
|
|
1889
2003
|
property :description, as: 'description'
|
@@ -2634,6 +2748,16 @@ module Google
|
|
2634
2748
|
end
|
2635
2749
|
end
|
2636
2750
|
|
2751
|
+
class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
|
2752
|
+
# @private
|
2753
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2754
|
+
property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
|
2755
|
+
property :event_detection_time, as: 'eventDetectionTime'
|
2756
|
+
property :event_type, as: 'eventType'
|
2757
|
+
property :max_retention_allowed, as: 'maxRetentionAllowed'
|
2758
|
+
end
|
2759
|
+
end
|
2760
|
+
|
2637
2761
|
class GoogleCloudSecuritycenterV2Database
|
2638
2762
|
# @private
|
2639
2763
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2768,6 +2892,8 @@ module Google
|
|
2768
2892
|
|
2769
2893
|
collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
|
2770
2894
|
|
2895
|
+
collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent::Representation
|
2896
|
+
|
2771
2897
|
property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Database::Representation
|
2772
2898
|
|
2773
2899
|
property :description, as: 'description'
|
@@ -2872,6 +2998,158 @@ module Google
|
|
2872
2998
|
end
|
2873
2999
|
end
|
2874
3000
|
|
3001
|
+
class GoogleCloudSecuritycenterV2Issue
|
3002
|
+
# @private
|
3003
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3004
|
+
property :create_time, as: 'createTime'
|
3005
|
+
property :description, as: 'description'
|
3006
|
+
property :detection, as: 'detection'
|
3007
|
+
collection :domains, as: 'domains', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueDomain, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueDomain::Representation
|
3008
|
+
|
3009
|
+
property :exposure_score, as: 'exposureScore'
|
3010
|
+
property :issue_type, as: 'issueType'
|
3011
|
+
property :last_observation_time, as: 'lastObservationTime'
|
3012
|
+
property :mute, as: 'mute', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueMute, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueMute::Representation
|
3013
|
+
|
3014
|
+
property :name, as: 'name'
|
3015
|
+
property :primary_resource, as: 'primaryResource', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource::Representation
|
3016
|
+
|
3017
|
+
collection :related_findings, as: 'relatedFindings', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFinding, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFinding::Representation
|
3018
|
+
|
3019
|
+
collection :remediations, as: 'remediations'
|
3020
|
+
collection :secondary_resources, as: 'secondaryResources', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResource::Representation
|
3021
|
+
|
3022
|
+
collection :security_contexts, as: 'securityContexts', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContext, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContext::Representation
|
3023
|
+
|
3024
|
+
property :severity, as: 'severity'
|
3025
|
+
property :state, as: 'state'
|
3026
|
+
property :update_time, as: 'updateTime'
|
3027
|
+
end
|
3028
|
+
end
|
3029
|
+
|
3030
|
+
class GoogleCloudSecuritycenterV2IssueDomain
|
3031
|
+
# @private
|
3032
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3033
|
+
property :domain_category, as: 'domainCategory'
|
3034
|
+
end
|
3035
|
+
end
|
3036
|
+
|
3037
|
+
class GoogleCloudSecuritycenterV2IssueFinding
|
3038
|
+
# @private
|
3039
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3040
|
+
property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingCve, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingCve::Representation
|
3041
|
+
|
3042
|
+
property :name, as: 'name'
|
3043
|
+
property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin::Representation
|
3044
|
+
|
3045
|
+
end
|
3046
|
+
end
|
3047
|
+
|
3048
|
+
class GoogleCloudSecuritycenterV2IssueFindingCve
|
3049
|
+
# @private
|
3050
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3051
|
+
property :name, as: 'name'
|
3052
|
+
end
|
3053
|
+
end
|
3054
|
+
|
3055
|
+
class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
|
3056
|
+
# @private
|
3057
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3058
|
+
property :name, as: 'name'
|
3059
|
+
end
|
3060
|
+
end
|
3061
|
+
|
3062
|
+
class GoogleCloudSecuritycenterV2IssueMute
|
3063
|
+
# @private
|
3064
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3065
|
+
property :mute_initiator, as: 'muteInitiator'
|
3066
|
+
property :mute_reason, as: 'muteReason'
|
3067
|
+
property :mute_state, as: 'muteState'
|
3068
|
+
property :mute_update_time, as: 'muteUpdateTime'
|
3069
|
+
end
|
3070
|
+
end
|
3071
|
+
|
3072
|
+
class GoogleCloudSecuritycenterV2IssueResource
|
3073
|
+
# @private
|
3074
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3075
|
+
property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
|
3076
|
+
|
3077
|
+
property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
|
3078
|
+
|
3079
|
+
property :cloud_provider, as: 'cloudProvider'
|
3080
|
+
property :display_name, as: 'displayName'
|
3081
|
+
property :google_cloud_metadata, as: 'googleCloudMetadata', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata::Representation
|
3082
|
+
|
3083
|
+
property :name, as: 'name'
|
3084
|
+
property :type, as: 'type'
|
3085
|
+
end
|
3086
|
+
end
|
3087
|
+
|
3088
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
|
3089
|
+
# @private
|
3090
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3091
|
+
property :account, as: 'account', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount::Representation
|
3092
|
+
|
3093
|
+
end
|
3094
|
+
end
|
3095
|
+
|
3096
|
+
class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
|
3097
|
+
# @private
|
3098
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3099
|
+
property :id, as: 'id'
|
3100
|
+
property :name, as: 'name'
|
3101
|
+
end
|
3102
|
+
end
|
3103
|
+
|
3104
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
|
3105
|
+
# @private
|
3106
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3107
|
+
property :subscription, as: 'subscription', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription::Representation
|
3108
|
+
|
3109
|
+
end
|
3110
|
+
end
|
3111
|
+
|
3112
|
+
class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
|
3113
|
+
# @private
|
3114
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3115
|
+
property :display_name, as: 'displayName'
|
3116
|
+
property :id, as: 'id'
|
3117
|
+
end
|
3118
|
+
end
|
3119
|
+
|
3120
|
+
class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
|
3121
|
+
# @private
|
3122
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3123
|
+
property :project_id, as: 'projectId'
|
3124
|
+
end
|
3125
|
+
end
|
3126
|
+
|
3127
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContext
|
3128
|
+
# @private
|
3129
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3130
|
+
property :aggregated_count, as: 'aggregatedCount', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount::Representation
|
3131
|
+
|
3132
|
+
property :context, as: 'context', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextContext, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueSecurityContextContext::Representation
|
3133
|
+
|
3134
|
+
end
|
3135
|
+
end
|
3136
|
+
|
3137
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
|
3138
|
+
# @private
|
3139
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3140
|
+
property :key, as: 'key'
|
3141
|
+
property :value, as: 'value'
|
3142
|
+
end
|
3143
|
+
end
|
3144
|
+
|
3145
|
+
class GoogleCloudSecuritycenterV2IssueSecurityContextContext
|
3146
|
+
# @private
|
3147
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3148
|
+
property :type, as: 'type'
|
3149
|
+
collection :values, as: 'values'
|
3150
|
+
end
|
3151
|
+
end
|
3152
|
+
|
2875
3153
|
class GoogleCloudSecuritycenterV2KernelRootkit
|
2876
3154
|
# @private
|
2877
3155
|
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,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.81.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-12-
|
11
|
+
date: 2024-12-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.81.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Security Command Center API V1beta1
|