google-apis-securitycenter_v1beta2 0.72.0 → 0.73.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 69c2f47949d0642db3fa549b4b0570f1438c3b2ba19b0d9877d464b634528843
4
- data.tar.gz: 5947f1c3795dcacf89d3a2a9b50be6083939c9567a275c8a6dc1378dc3170ace
3
+ metadata.gz: 81293ee475c95c3fcd30c98426a620c4ae60ac8d0a72c0f62b847d9c126cf4cd
4
+ data.tar.gz: f8f5d2bc72c9eb100052725cf8149d8b772dfd7a123ce6d98f5920cedfb5edd9
5
5
  SHA512:
6
- metadata.gz: 2872b7f4174c4e71aa935efa74e50012aca791bc7040012f68e827d62fdf10641e9eef183b8fd16af90afad82472fd4c6aff6f1fba8dbffb00ec64736097cacd
7
- data.tar.gz: 171adfffeb27614e85a23acd1fdd24400b00ab8c320506e1fe40210a39ef8cf760cea0bac710e9b9fa419cf5e4839d10a947633c51604f4d636cab712b1eed6b
6
+ metadata.gz: e19e2120a913332321f9a09ef58682c772f3650742d409079c20736e3103f1dc29d1294d06729113a2a9295815bcada5142ee11efeaceb0668c68a7990e6a0d6
7
+ data.tar.gz: 2ac8b1b61d5210b8e4af54adf7f9a13a05fae45687a015252a4820e50306c9d03c79d82c97e7c7c72e6956c1dd49c952c3bf9aa4fce751b9836a8f02b5fb7126
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.73.0 (2024-12-15)
4
+
5
+ * Regenerated from discovery document revision 20241206
6
+
3
7
  ### v0.72.0 (2024-12-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20241111
@@ -1390,6 +1390,59 @@ module Google
1390
1390
  end
1391
1391
  end
1392
1392
 
1393
+ # Details about data retention deletion violations, in which the data is non-
1394
+ # compliant based on their retention or deletion time, as defined in the
1395
+ # applicable data security policy. The Data Retention Deletion (DRD) control is
1396
+ # a control of the DSPM (Data Security Posture Management) suite that enables
1397
+ # organizations to manage data retention and deletion policies in compliance
1398
+ # with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
1399
+ # maximum storage length (max TTL) and minimum storage length (min TTL). Both
1400
+ # are aimed at helping organizations meet regulatory and data management
1401
+ # commitments.
1402
+ class DataRetentionDeletionEvent
1403
+ include Google::Apis::Core::Hashable
1404
+
1405
+ # Number of objects that violated the policy for this resource. If the number is
1406
+ # less than 1,000, then the value of this field is the exact number. If the
1407
+ # number of objects that violated the policy is greater than or equal to 1,000,
1408
+ # then the value of this field is 1000.
1409
+ # Corresponds to the JSON property `dataObjectCount`
1410
+ # @return [Fixnum]
1411
+ attr_accessor :data_object_count
1412
+
1413
+ # Timestamp indicating when the event was detected.
1414
+ # Corresponds to the JSON property `eventDetectionTime`
1415
+ # @return [String]
1416
+ attr_accessor :event_detection_time
1417
+
1418
+ # Type of the DRD event.
1419
+ # Corresponds to the JSON property `eventType`
1420
+ # @return [String]
1421
+ attr_accessor :event_type
1422
+
1423
+ # Maximum duration of retention allowed from the DRD control. This comes from
1424
+ # the DRD control where users set a max TTL for their data. For example, suppose
1425
+ # that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
1426
+ # object in that bucket is 100 days old. In this case, a
1427
+ # DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
1428
+ # and the max_retention_allowed is 90 days.
1429
+ # Corresponds to the JSON property `maxRetentionAllowed`
1430
+ # @return [String]
1431
+ attr_accessor :max_retention_allowed
1432
+
1433
+ def initialize(**args)
1434
+ update!(**args)
1435
+ end
1436
+
1437
+ # Update properties of this object
1438
+ def update!(**args)
1439
+ @data_object_count = args[:data_object_count] if args.key?(:data_object_count)
1440
+ @event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
1441
+ @event_type = args[:event_type] if args.key?(:event_type)
1442
+ @max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
1443
+ end
1444
+ end
1445
+
1393
1446
  # Represents database access information, such as queries. A database may be a
1394
1447
  # sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
1395
1448
  # Spanner instances), or the database instance itself. Some database resources
@@ -1933,6 +1986,11 @@ module Google
1933
1986
  # @return [Array<Google::Apis::SecuritycenterV1beta2::DataFlowEvent>]
1934
1987
  attr_accessor :data_flow_events
1935
1988
 
1989
+ # Data retention deletion events associated with the finding.
1990
+ # Corresponds to the JSON property `dataRetentionDeletionEvents`
1991
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::DataRetentionDeletionEvent>]
1992
+ attr_accessor :data_retention_deletion_events
1993
+
1936
1994
  # Represents database access information, such as queries. A database may be a
1937
1995
  # sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
1938
1996
  # Spanner instances), or the database instance itself. Some database resources
@@ -2196,6 +2254,7 @@ module Google
2196
2254
  @create_time = args[:create_time] if args.key?(:create_time)
2197
2255
  @data_access_events = args[:data_access_events] if args.key?(:data_access_events)
2198
2256
  @data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
2257
+ @data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
2199
2258
  @database = args[:database] if args.key?(:database)
2200
2259
  @description = args[:description] if args.key?(:description)
2201
2260
  @disk = args[:disk] if args.key?(:disk)
@@ -4932,6 +4991,59 @@ module Google
4932
4991
  end
4933
4992
  end
4934
4993
 
4994
+ # Details about data retention deletion violations, in which the data is non-
4995
+ # compliant based on their retention or deletion time, as defined in the
4996
+ # applicable data security policy. The Data Retention Deletion (DRD) control is
4997
+ # a control of the DSPM (Data Security Posture Management) suite that enables
4998
+ # organizations to manage data retention and deletion policies in compliance
4999
+ # with regulations, such as GDPR and CRPA. DRD supports two primary policy types:
5000
+ # maximum storage length (max TTL) and minimum storage length (min TTL). Both
5001
+ # are aimed at helping organizations meet regulatory and data management
5002
+ # commitments.
5003
+ class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
5004
+ include Google::Apis::Core::Hashable
5005
+
5006
+ # Number of objects that violated the policy for this resource. If the number is
5007
+ # less than 1,000, then the value of this field is the exact number. If the
5008
+ # number of objects that violated the policy is greater than or equal to 1,000,
5009
+ # then the value of this field is 1000.
5010
+ # Corresponds to the JSON property `dataObjectCount`
5011
+ # @return [Fixnum]
5012
+ attr_accessor :data_object_count
5013
+
5014
+ # Timestamp indicating when the event was detected.
5015
+ # Corresponds to the JSON property `eventDetectionTime`
5016
+ # @return [String]
5017
+ attr_accessor :event_detection_time
5018
+
5019
+ # Type of the DRD event.
5020
+ # Corresponds to the JSON property `eventType`
5021
+ # @return [String]
5022
+ attr_accessor :event_type
5023
+
5024
+ # Maximum duration of retention allowed from the DRD control. This comes from
5025
+ # the DRD control where users set a max TTL for their data. For example, suppose
5026
+ # that a user set the max TTL for a Cloud Storage bucket to 90 days. However, an
5027
+ # object in that bucket is 100 days old. In this case, a
5028
+ # DataRetentionDeletionEvent will be generated for that Cloud Storage bucket,
5029
+ # and the max_retention_allowed is 90 days.
5030
+ # Corresponds to the JSON property `maxRetentionAllowed`
5031
+ # @return [String]
5032
+ attr_accessor :max_retention_allowed
5033
+
5034
+ def initialize(**args)
5035
+ update!(**args)
5036
+ end
5037
+
5038
+ # Update properties of this object
5039
+ def update!(**args)
5040
+ @data_object_count = args[:data_object_count] if args.key?(:data_object_count)
5041
+ @event_detection_time = args[:event_detection_time] if args.key?(:event_detection_time)
5042
+ @event_type = args[:event_type] if args.key?(:event_type)
5043
+ @max_retention_allowed = args[:max_retention_allowed] if args.key?(:max_retention_allowed)
5044
+ end
5045
+ end
5046
+
4935
5047
  # Represents database access information, such as queries. A database may be a
4936
5048
  # sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
4937
5049
  # Spanner instances), or the database instance itself. Some database resources
@@ -5442,6 +5554,11 @@ module Google
5442
5554
  # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent>]
5443
5555
  attr_accessor :data_flow_events
5444
5556
 
5557
+ # Data retention deletion events associated with the finding.
5558
+ # Corresponds to the JSON property `dataRetentionDeletionEvents`
5559
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent>]
5560
+ attr_accessor :data_retention_deletion_events
5561
+
5445
5562
  # Represents database access information, such as queries. A database may be a
5446
5563
  # sub-resource of an instance (as in the case of Cloud SQL instances or Cloud
5447
5564
  # Spanner instances), or the database instance itself. Some database resources
@@ -5714,6 +5831,7 @@ module Google
5714
5831
  @create_time = args[:create_time] if args.key?(:create_time)
5715
5832
  @data_access_events = args[:data_access_events] if args.key?(:data_access_events)
5716
5833
  @data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
5834
+ @data_retention_deletion_events = args[:data_retention_deletion_events] if args.key?(:data_retention_deletion_events)
5717
5835
  @database = args[:database] if args.key?(:database)
5718
5836
  @description = args[:description] if args.key?(:description)
5719
5837
  @disk = args[:disk] if args.key?(:disk)
@@ -5901,6 +6019,485 @@ module Google
5901
6019
  end
5902
6020
  end
5903
6021
 
6022
+ # Security Command Center Issue.
6023
+ class GoogleCloudSecuritycenterV2Issue
6024
+ include Google::Apis::Core::Hashable
6025
+
6026
+ # Output only. The time the issue was created.
6027
+ # Corresponds to the JSON property `createTime`
6028
+ # @return [String]
6029
+ attr_accessor :create_time
6030
+
6031
+ # The description of the issue in Markdown format.
6032
+ # Corresponds to the JSON property `description`
6033
+ # @return [String]
6034
+ attr_accessor :description
6035
+
6036
+ # The finding category or rule name that generated the issue.
6037
+ # Corresponds to the JSON property `detection`
6038
+ # @return [String]
6039
+ attr_accessor :detection
6040
+
6041
+ # The domains of the issue.
6042
+ # Corresponds to the JSON property `domains`
6043
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueDomain>]
6044
+ attr_accessor :domains
6045
+
6046
+ # The exposure score of the issue.
6047
+ # Corresponds to the JSON property `exposureScore`
6048
+ # @return [Float]
6049
+ attr_accessor :exposure_score
6050
+
6051
+ # The type of the issue.
6052
+ # Corresponds to the JSON property `issueType`
6053
+ # @return [String]
6054
+ attr_accessor :issue_type
6055
+
6056
+ # The time the issue was last observed.
6057
+ # Corresponds to the JSON property `lastObservationTime`
6058
+ # @return [String]
6059
+ attr_accessor :last_observation_time
6060
+
6061
+ # The mute information of the issue.
6062
+ # Corresponds to the JSON property `mute`
6063
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute]
6064
+ attr_accessor :mute
6065
+
6066
+ # Identifier. The name of the issue. Format: organizations/`organization`/
6067
+ # locations/`location`/issues/`issue`
6068
+ # Corresponds to the JSON property `name`
6069
+ # @return [String]
6070
+ attr_accessor :name
6071
+
6072
+ # A resource associated with the an issue.
6073
+ # Corresponds to the JSON property `primaryResource`
6074
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource]
6075
+ attr_accessor :primary_resource
6076
+
6077
+ # The findings related to the issue.
6078
+ # Corresponds to the JSON property `relatedFindings`
6079
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFinding>]
6080
+ attr_accessor :related_findings
6081
+
6082
+ # Approaches to remediate the issue in Markdown format.
6083
+ # Corresponds to the JSON property `remediations`
6084
+ # @return [Array<String>]
6085
+ attr_accessor :remediations
6086
+
6087
+ # Additional resources associated with the issue.
6088
+ # Corresponds to the JSON property `secondaryResources`
6089
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource>]
6090
+ attr_accessor :secondary_resources
6091
+
6092
+ # The security context of the issue.
6093
+ # Corresponds to the JSON property `securityContexts`
6094
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContext>]
6095
+ attr_accessor :security_contexts
6096
+
6097
+ # The severity of the issue.
6098
+ # Corresponds to the JSON property `severity`
6099
+ # @return [String]
6100
+ attr_accessor :severity
6101
+
6102
+ # Output only. The state of the issue.
6103
+ # Corresponds to the JSON property `state`
6104
+ # @return [String]
6105
+ attr_accessor :state
6106
+
6107
+ # Output only. The time the issue was last updated.
6108
+ # Corresponds to the JSON property `updateTime`
6109
+ # @return [String]
6110
+ attr_accessor :update_time
6111
+
6112
+ def initialize(**args)
6113
+ update!(**args)
6114
+ end
6115
+
6116
+ # Update properties of this object
6117
+ def update!(**args)
6118
+ @create_time = args[:create_time] if args.key?(:create_time)
6119
+ @description = args[:description] if args.key?(:description)
6120
+ @detection = args[:detection] if args.key?(:detection)
6121
+ @domains = args[:domains] if args.key?(:domains)
6122
+ @exposure_score = args[:exposure_score] if args.key?(:exposure_score)
6123
+ @issue_type = args[:issue_type] if args.key?(:issue_type)
6124
+ @last_observation_time = args[:last_observation_time] if args.key?(:last_observation_time)
6125
+ @mute = args[:mute] if args.key?(:mute)
6126
+ @name = args[:name] if args.key?(:name)
6127
+ @primary_resource = args[:primary_resource] if args.key?(:primary_resource)
6128
+ @related_findings = args[:related_findings] if args.key?(:related_findings)
6129
+ @remediations = args[:remediations] if args.key?(:remediations)
6130
+ @secondary_resources = args[:secondary_resources] if args.key?(:secondary_resources)
6131
+ @security_contexts = args[:security_contexts] if args.key?(:security_contexts)
6132
+ @severity = args[:severity] if args.key?(:severity)
6133
+ @state = args[:state] if args.key?(:state)
6134
+ @update_time = args[:update_time] if args.key?(:update_time)
6135
+ end
6136
+ end
6137
+
6138
+ # The domains of an issue.
6139
+ class GoogleCloudSecuritycenterV2IssueDomain
6140
+ include Google::Apis::Core::Hashable
6141
+
6142
+ # The domain category of the issue.
6143
+ # Corresponds to the JSON property `domainCategory`
6144
+ # @return [String]
6145
+ attr_accessor :domain_category
6146
+
6147
+ def initialize(**args)
6148
+ update!(**args)
6149
+ end
6150
+
6151
+ # Update properties of this object
6152
+ def update!(**args)
6153
+ @domain_category = args[:domain_category] if args.key?(:domain_category)
6154
+ end
6155
+ end
6156
+
6157
+ # Finding related to an issue.
6158
+ class GoogleCloudSecuritycenterV2IssueFinding
6159
+ include Google::Apis::Core::Hashable
6160
+
6161
+ # The CVE of the finding.
6162
+ # Corresponds to the JSON property `cve`
6163
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingCve]
6164
+ attr_accessor :cve
6165
+
6166
+ # The name of the finding.
6167
+ # Corresponds to the JSON property `name`
6168
+ # @return [String]
6169
+ attr_accessor :name
6170
+
6171
+ # The security bulletin of the finding.
6172
+ # Corresponds to the JSON property `securityBulletin`
6173
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin]
6174
+ attr_accessor :security_bulletin
6175
+
6176
+ def initialize(**args)
6177
+ update!(**args)
6178
+ end
6179
+
6180
+ # Update properties of this object
6181
+ def update!(**args)
6182
+ @cve = args[:cve] if args.key?(:cve)
6183
+ @name = args[:name] if args.key?(:name)
6184
+ @security_bulletin = args[:security_bulletin] if args.key?(:security_bulletin)
6185
+ end
6186
+ end
6187
+
6188
+ # The CVE of the finding.
6189
+ class GoogleCloudSecuritycenterV2IssueFindingCve
6190
+ include Google::Apis::Core::Hashable
6191
+
6192
+ # The CVE name.
6193
+ # Corresponds to the JSON property `name`
6194
+ # @return [String]
6195
+ attr_accessor :name
6196
+
6197
+ def initialize(**args)
6198
+ update!(**args)
6199
+ end
6200
+
6201
+ # Update properties of this object
6202
+ def update!(**args)
6203
+ @name = args[:name] if args.key?(:name)
6204
+ end
6205
+ end
6206
+
6207
+ # The security bulletin of the finding.
6208
+ class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
6209
+ include Google::Apis::Core::Hashable
6210
+
6211
+ # The security bulletin name.
6212
+ # Corresponds to the JSON property `name`
6213
+ # @return [String]
6214
+ attr_accessor :name
6215
+
6216
+ def initialize(**args)
6217
+ update!(**args)
6218
+ end
6219
+
6220
+ # Update properties of this object
6221
+ def update!(**args)
6222
+ @name = args[:name] if args.key?(:name)
6223
+ end
6224
+ end
6225
+
6226
+ # The mute information of the issue.
6227
+ class GoogleCloudSecuritycenterV2IssueMute
6228
+ include Google::Apis::Core::Hashable
6229
+
6230
+ # The email address of the user who last changed the mute state of the issue.
6231
+ # Corresponds to the JSON property `muteInitiator`
6232
+ # @return [String]
6233
+ attr_accessor :mute_initiator
6234
+
6235
+ # The user-provided reason for muting the issue.
6236
+ # Corresponds to the JSON property `muteReason`
6237
+ # @return [String]
6238
+ attr_accessor :mute_reason
6239
+
6240
+ # Output only. The mute state of the issue.
6241
+ # Corresponds to the JSON property `muteState`
6242
+ # @return [String]
6243
+ attr_accessor :mute_state
6244
+
6245
+ # The time the issue was muted.
6246
+ # Corresponds to the JSON property `muteUpdateTime`
6247
+ # @return [String]
6248
+ attr_accessor :mute_update_time
6249
+
6250
+ def initialize(**args)
6251
+ update!(**args)
6252
+ end
6253
+
6254
+ # Update properties of this object
6255
+ def update!(**args)
6256
+ @mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
6257
+ @mute_reason = args[:mute_reason] if args.key?(:mute_reason)
6258
+ @mute_state = args[:mute_state] if args.key?(:mute_state)
6259
+ @mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
6260
+ end
6261
+ end
6262
+
6263
+ # A resource associated with the an issue.
6264
+ class GoogleCloudSecuritycenterV2IssueResource
6265
+ include Google::Apis::Core::Hashable
6266
+
6267
+ # The AWS metadata of a resource associated with an issue.
6268
+ # Corresponds to the JSON property `awsMetadata`
6269
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata]
6270
+ attr_accessor :aws_metadata
6271
+
6272
+ # The Azure metadata of a resource associated with an issue.
6273
+ # Corresponds to the JSON property `azureMetadata`
6274
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata]
6275
+ attr_accessor :azure_metadata
6276
+
6277
+ # The cloud provider of the resource associated with the issue.
6278
+ # Corresponds to the JSON property `cloudProvider`
6279
+ # @return [String]
6280
+ attr_accessor :cloud_provider
6281
+
6282
+ # The resource-type specific display name of the resource associated with the
6283
+ # issue.
6284
+ # Corresponds to the JSON property `displayName`
6285
+ # @return [String]
6286
+ attr_accessor :display_name
6287
+
6288
+ # Google Cloud metadata of a resource associated with an issue.
6289
+ # Corresponds to the JSON property `googleCloudMetadata`
6290
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata]
6291
+ attr_accessor :google_cloud_metadata
6292
+
6293
+ # The full resource name of the resource associated with the issue.
6294
+ # Corresponds to the JSON property `name`
6295
+ # @return [String]
6296
+ attr_accessor :name
6297
+
6298
+ # The type of the resource associated with the issue.
6299
+ # Corresponds to the JSON property `type`
6300
+ # @return [String]
6301
+ attr_accessor :type
6302
+
6303
+ def initialize(**args)
6304
+ update!(**args)
6305
+ end
6306
+
6307
+ # Update properties of this object
6308
+ def update!(**args)
6309
+ @aws_metadata = args[:aws_metadata] if args.key?(:aws_metadata)
6310
+ @azure_metadata = args[:azure_metadata] if args.key?(:azure_metadata)
6311
+ @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
6312
+ @display_name = args[:display_name] if args.key?(:display_name)
6313
+ @google_cloud_metadata = args[:google_cloud_metadata] if args.key?(:google_cloud_metadata)
6314
+ @name = args[:name] if args.key?(:name)
6315
+ @type = args[:type] if args.key?(:type)
6316
+ end
6317
+ end
6318
+
6319
+ # The AWS metadata of a resource associated with an issue.
6320
+ class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
6321
+ include Google::Apis::Core::Hashable
6322
+
6323
+ # The AWS account of the resource associated with the issue.
6324
+ # Corresponds to the JSON property `account`
6325
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount]
6326
+ attr_accessor :account
6327
+
6328
+ def initialize(**args)
6329
+ update!(**args)
6330
+ end
6331
+
6332
+ # Update properties of this object
6333
+ def update!(**args)
6334
+ @account = args[:account] if args.key?(:account)
6335
+ end
6336
+ end
6337
+
6338
+ # The AWS account of the resource associated with the issue.
6339
+ class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
6340
+ include Google::Apis::Core::Hashable
6341
+
6342
+ # The AWS account ID of the resource associated with the issue.
6343
+ # Corresponds to the JSON property `id`
6344
+ # @return [String]
6345
+ attr_accessor :id
6346
+
6347
+ # The AWS account name of the resource associated with the issue.
6348
+ # Corresponds to the JSON property `name`
6349
+ # @return [String]
6350
+ attr_accessor :name
6351
+
6352
+ def initialize(**args)
6353
+ update!(**args)
6354
+ end
6355
+
6356
+ # Update properties of this object
6357
+ def update!(**args)
6358
+ @id = args[:id] if args.key?(:id)
6359
+ @name = args[:name] if args.key?(:name)
6360
+ end
6361
+ end
6362
+
6363
+ # The Azure metadata of a resource associated with an issue.
6364
+ class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
6365
+ include Google::Apis::Core::Hashable
6366
+
6367
+ # The Azure subscription of the resource associated with the issue.
6368
+ # Corresponds to the JSON property `subscription`
6369
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription]
6370
+ attr_accessor :subscription
6371
+
6372
+ def initialize(**args)
6373
+ update!(**args)
6374
+ end
6375
+
6376
+ # Update properties of this object
6377
+ def update!(**args)
6378
+ @subscription = args[:subscription] if args.key?(:subscription)
6379
+ end
6380
+ end
6381
+
6382
+ # The Azure subscription of the resource associated with the issue.
6383
+ class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
6384
+ include Google::Apis::Core::Hashable
6385
+
6386
+ # The Azure subscription display name of the resource associated with the issue.
6387
+ # Corresponds to the JSON property `displayName`
6388
+ # @return [String]
6389
+ attr_accessor :display_name
6390
+
6391
+ # The Azure subscription ID of the resource associated with the issue.
6392
+ # Corresponds to the JSON property `id`
6393
+ # @return [String]
6394
+ attr_accessor :id
6395
+
6396
+ def initialize(**args)
6397
+ update!(**args)
6398
+ end
6399
+
6400
+ # Update properties of this object
6401
+ def update!(**args)
6402
+ @display_name = args[:display_name] if args.key?(:display_name)
6403
+ @id = args[:id] if args.key?(:id)
6404
+ end
6405
+ end
6406
+
6407
+ # Google Cloud metadata of a resource associated with an issue.
6408
+ class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
6409
+ include Google::Apis::Core::Hashable
6410
+
6411
+ # The project ID that the resource associated with the issue belongs to.
6412
+ # Corresponds to the JSON property `projectId`
6413
+ # @return [String]
6414
+ attr_accessor :project_id
6415
+
6416
+ def initialize(**args)
6417
+ update!(**args)
6418
+ end
6419
+
6420
+ # Update properties of this object
6421
+ def update!(**args)
6422
+ @project_id = args[:project_id] if args.key?(:project_id)
6423
+ end
6424
+ end
6425
+
6426
+ # Security context associated with an issue.
6427
+ class GoogleCloudSecuritycenterV2IssueSecurityContext
6428
+ include Google::Apis::Core::Hashable
6429
+
6430
+ # Aggregated count of a security context.
6431
+ # Corresponds to the JSON property `aggregatedCount`
6432
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount]
6433
+ attr_accessor :aggregated_count
6434
+
6435
+ # Context of a security context.
6436
+ # Corresponds to the JSON property `context`
6437
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextContext]
6438
+ attr_accessor :context
6439
+
6440
+ def initialize(**args)
6441
+ update!(**args)
6442
+ end
6443
+
6444
+ # Update properties of this object
6445
+ def update!(**args)
6446
+ @aggregated_count = args[:aggregated_count] if args.key?(:aggregated_count)
6447
+ @context = args[:context] if args.key?(:context)
6448
+ end
6449
+ end
6450
+
6451
+ # Aggregated count of a security context.
6452
+ class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
6453
+ include Google::Apis::Core::Hashable
6454
+
6455
+ # Aggregation key.
6456
+ # Corresponds to the JSON property `key`
6457
+ # @return [String]
6458
+ attr_accessor :key
6459
+
6460
+ # Aggregation value.
6461
+ # Corresponds to the JSON property `value`
6462
+ # @return [Fixnum]
6463
+ attr_accessor :value
6464
+
6465
+ def initialize(**args)
6466
+ update!(**args)
6467
+ end
6468
+
6469
+ # Update properties of this object
6470
+ def update!(**args)
6471
+ @key = args[:key] if args.key?(:key)
6472
+ @value = args[:value] if args.key?(:value)
6473
+ end
6474
+ end
6475
+
6476
+ # Context of a security context.
6477
+ class GoogleCloudSecuritycenterV2IssueSecurityContextContext
6478
+ include Google::Apis::Core::Hashable
6479
+
6480
+ # Context type.
6481
+ # Corresponds to the JSON property `type`
6482
+ # @return [String]
6483
+ attr_accessor :type
6484
+
6485
+ # Context values.
6486
+ # Corresponds to the JSON property `values`
6487
+ # @return [Array<String>]
6488
+ attr_accessor :values
6489
+
6490
+ def initialize(**args)
6491
+ update!(**args)
6492
+ end
6493
+
6494
+ # Update properties of this object
6495
+ def update!(**args)
6496
+ @type = args[:type] if args.key?(:type)
6497
+ @values = args[:values] if args.key?(:values)
6498
+ end
6499
+ end
6500
+
5904
6501
  # Kernel mode rootkit signatures.
5905
6502
  class GoogleCloudSecuritycenterV2KernelRootkit
5906
6503
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta2
18
18
  # Version of the google-apis-securitycenter_v1beta2 gem
19
- GEM_VERSION = "0.72.0"
19
+ GEM_VERSION = "0.73.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 = "20241111"
25
+ REVISION = "20241206"
26
26
  end
27
27
  end
28
28
  end
@@ -214,6 +214,12 @@ module Google
214
214
  include Google::Apis::Core::JsonObjectSupport
215
215
  end
216
216
 
217
+ class DataRetentionDeletionEvent
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
217
223
  class Database
218
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
219
225
 
@@ -640,6 +646,12 @@ module Google
640
646
  include Google::Apis::Core::JsonObjectSupport
641
647
  end
642
648
 
649
+ class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
650
+ class Representation < Google::Apis::Core::JsonRepresentation; end
651
+
652
+ include Google::Apis::Core::JsonObjectSupport
653
+ end
654
+
643
655
  class GoogleCloudSecuritycenterV2Database
644
656
  class Representation < Google::Apis::Core::JsonRepresentation; end
645
657
 
@@ -736,6 +748,96 @@ module Google
736
748
  include Google::Apis::Core::JsonObjectSupport
737
749
  end
738
750
 
751
+ class GoogleCloudSecuritycenterV2Issue
752
+ class Representation < Google::Apis::Core::JsonRepresentation; end
753
+
754
+ include Google::Apis::Core::JsonObjectSupport
755
+ end
756
+
757
+ class GoogleCloudSecuritycenterV2IssueDomain
758
+ class Representation < Google::Apis::Core::JsonRepresentation; end
759
+
760
+ include Google::Apis::Core::JsonObjectSupport
761
+ end
762
+
763
+ class GoogleCloudSecuritycenterV2IssueFinding
764
+ class Representation < Google::Apis::Core::JsonRepresentation; end
765
+
766
+ include Google::Apis::Core::JsonObjectSupport
767
+ end
768
+
769
+ class GoogleCloudSecuritycenterV2IssueFindingCve
770
+ class Representation < Google::Apis::Core::JsonRepresentation; end
771
+
772
+ include Google::Apis::Core::JsonObjectSupport
773
+ end
774
+
775
+ class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
776
+ class Representation < Google::Apis::Core::JsonRepresentation; end
777
+
778
+ include Google::Apis::Core::JsonObjectSupport
779
+ end
780
+
781
+ class GoogleCloudSecuritycenterV2IssueMute
782
+ class Representation < Google::Apis::Core::JsonRepresentation; end
783
+
784
+ include Google::Apis::Core::JsonObjectSupport
785
+ end
786
+
787
+ class GoogleCloudSecuritycenterV2IssueResource
788
+ class Representation < Google::Apis::Core::JsonRepresentation; end
789
+
790
+ include Google::Apis::Core::JsonObjectSupport
791
+ end
792
+
793
+ class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
794
+ class Representation < Google::Apis::Core::JsonRepresentation; end
795
+
796
+ include Google::Apis::Core::JsonObjectSupport
797
+ end
798
+
799
+ class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
800
+ class Representation < Google::Apis::Core::JsonRepresentation; end
801
+
802
+ include Google::Apis::Core::JsonObjectSupport
803
+ end
804
+
805
+ class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
806
+ class Representation < Google::Apis::Core::JsonRepresentation; end
807
+
808
+ include Google::Apis::Core::JsonObjectSupport
809
+ end
810
+
811
+ class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
817
+ class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
823
+ class GoogleCloudSecuritycenterV2IssueSecurityContext
824
+ class Representation < Google::Apis::Core::JsonRepresentation; end
825
+
826
+ include Google::Apis::Core::JsonObjectSupport
827
+ end
828
+
829
+ class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
830
+ class Representation < Google::Apis::Core::JsonRepresentation; end
831
+
832
+ include Google::Apis::Core::JsonObjectSupport
833
+ end
834
+
835
+ class GoogleCloudSecuritycenterV2IssueSecurityContextContext
836
+ class Representation < Google::Apis::Core::JsonRepresentation; end
837
+
838
+ include Google::Apis::Core::JsonObjectSupport
839
+ end
840
+
739
841
  class GoogleCloudSecuritycenterV2KernelRootkit
740
842
  class Representation < Google::Apis::Core::JsonRepresentation; end
741
843
 
@@ -1585,6 +1687,16 @@ module Google
1585
1687
  end
1586
1688
  end
1587
1689
 
1690
+ class DataRetentionDeletionEvent
1691
+ # @private
1692
+ class Representation < Google::Apis::Core::JsonRepresentation
1693
+ property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
1694
+ property :event_detection_time, as: 'eventDetectionTime'
1695
+ property :event_type, as: 'eventType'
1696
+ property :max_retention_allowed, as: 'maxRetentionAllowed'
1697
+ end
1698
+ end
1699
+
1588
1700
  class Database
1589
1701
  # @private
1590
1702
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1731,6 +1843,8 @@ module Google
1731
1843
 
1732
1844
  collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta2::DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta2::DataFlowEvent::Representation
1733
1845
 
1846
+ collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta2::DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta2::DataRetentionDeletionEvent::Representation
1847
+
1734
1848
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta2::Database, decorator: Google::Apis::SecuritycenterV1beta2::Database::Representation
1735
1849
 
1736
1850
  property :description, as: 'description'
@@ -2441,6 +2555,16 @@ module Google
2441
2555
  end
2442
2556
  end
2443
2557
 
2558
+ class GoogleCloudSecuritycenterV2DataRetentionDeletionEvent
2559
+ # @private
2560
+ class Representation < Google::Apis::Core::JsonRepresentation
2561
+ property :data_object_count, :numeric_string => true, as: 'dataObjectCount'
2562
+ property :event_detection_time, as: 'eventDetectionTime'
2563
+ property :event_type, as: 'eventType'
2564
+ property :max_retention_allowed, as: 'maxRetentionAllowed'
2565
+ end
2566
+ end
2567
+
2444
2568
  class GoogleCloudSecuritycenterV2Database
2445
2569
  # @private
2446
2570
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2575,6 +2699,8 @@ module Google
2575
2699
 
2576
2700
  collection :data_flow_events, as: 'dataFlowEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataFlowEvent::Representation
2577
2701
 
2702
+ collection :data_retention_deletion_events, as: 'dataRetentionDeletionEvents', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2DataRetentionDeletionEvent::Representation
2703
+
2578
2704
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Database::Representation
2579
2705
 
2580
2706
  property :description, as: 'description'
@@ -2679,6 +2805,158 @@ module Google
2679
2805
  end
2680
2806
  end
2681
2807
 
2808
+ class GoogleCloudSecuritycenterV2Issue
2809
+ # @private
2810
+ class Representation < Google::Apis::Core::JsonRepresentation
2811
+ property :create_time, as: 'createTime'
2812
+ property :description, as: 'description'
2813
+ property :detection, as: 'detection'
2814
+ collection :domains, as: 'domains', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueDomain, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueDomain::Representation
2815
+
2816
+ property :exposure_score, as: 'exposureScore'
2817
+ property :issue_type, as: 'issueType'
2818
+ property :last_observation_time, as: 'lastObservationTime'
2819
+ property :mute, as: 'mute', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueMute::Representation
2820
+
2821
+ property :name, as: 'name'
2822
+ property :primary_resource, as: 'primaryResource', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource::Representation
2823
+
2824
+ collection :related_findings, as: 'relatedFindings', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFinding, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFinding::Representation
2825
+
2826
+ collection :remediations, as: 'remediations'
2827
+ collection :secondary_resources, as: 'secondaryResources', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResource::Representation
2828
+
2829
+ collection :security_contexts, as: 'securityContexts', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContext, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContext::Representation
2830
+
2831
+ property :severity, as: 'severity'
2832
+ property :state, as: 'state'
2833
+ property :update_time, as: 'updateTime'
2834
+ end
2835
+ end
2836
+
2837
+ class GoogleCloudSecuritycenterV2IssueDomain
2838
+ # @private
2839
+ class Representation < Google::Apis::Core::JsonRepresentation
2840
+ property :domain_category, as: 'domainCategory'
2841
+ end
2842
+ end
2843
+
2844
+ class GoogleCloudSecuritycenterV2IssueFinding
2845
+ # @private
2846
+ class Representation < Google::Apis::Core::JsonRepresentation
2847
+ property :cve, as: 'cve', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingCve, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingCve::Representation
2848
+
2849
+ property :name, as: 'name'
2850
+ property :security_bulletin, as: 'securityBulletin', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin::Representation
2851
+
2852
+ end
2853
+ end
2854
+
2855
+ class GoogleCloudSecuritycenterV2IssueFindingCve
2856
+ # @private
2857
+ class Representation < Google::Apis::Core::JsonRepresentation
2858
+ property :name, as: 'name'
2859
+ end
2860
+ end
2861
+
2862
+ class GoogleCloudSecuritycenterV2IssueFindingSecurityBulletin
2863
+ # @private
2864
+ class Representation < Google::Apis::Core::JsonRepresentation
2865
+ property :name, as: 'name'
2866
+ end
2867
+ end
2868
+
2869
+ class GoogleCloudSecuritycenterV2IssueMute
2870
+ # @private
2871
+ class Representation < Google::Apis::Core::JsonRepresentation
2872
+ property :mute_initiator, as: 'muteInitiator'
2873
+ property :mute_reason, as: 'muteReason'
2874
+ property :mute_state, as: 'muteState'
2875
+ property :mute_update_time, as: 'muteUpdateTime'
2876
+ end
2877
+ end
2878
+
2879
+ class GoogleCloudSecuritycenterV2IssueResource
2880
+ # @private
2881
+ class Representation < Google::Apis::Core::JsonRepresentation
2882
+ property :aws_metadata, as: 'awsMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadata::Representation
2883
+
2884
+ property :azure_metadata, as: 'azureMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadata::Representation
2885
+
2886
+ property :cloud_provider, as: 'cloudProvider'
2887
+ property :display_name, as: 'displayName'
2888
+ property :google_cloud_metadata, as: 'googleCloudMetadata', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata::Representation
2889
+
2890
+ property :name, as: 'name'
2891
+ property :type, as: 'type'
2892
+ end
2893
+ end
2894
+
2895
+ class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
2896
+ # @private
2897
+ class Representation < Google::Apis::Core::JsonRepresentation
2898
+ property :account, as: 'account', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount::Representation
2899
+
2900
+ end
2901
+ end
2902
+
2903
+ class GoogleCloudSecuritycenterV2IssueResourceAwsMetadataAwsAccount
2904
+ # @private
2905
+ class Representation < Google::Apis::Core::JsonRepresentation
2906
+ property :id, as: 'id'
2907
+ property :name, as: 'name'
2908
+ end
2909
+ end
2910
+
2911
+ class GoogleCloudSecuritycenterV2IssueResourceAzureMetadata
2912
+ # @private
2913
+ class Representation < Google::Apis::Core::JsonRepresentation
2914
+ property :subscription, as: 'subscription', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription::Representation
2915
+
2916
+ end
2917
+ end
2918
+
2919
+ class GoogleCloudSecuritycenterV2IssueResourceAzureMetadataAzureSubscription
2920
+ # @private
2921
+ class Representation < Google::Apis::Core::JsonRepresentation
2922
+ property :display_name, as: 'displayName'
2923
+ property :id, as: 'id'
2924
+ end
2925
+ end
2926
+
2927
+ class GoogleCloudSecuritycenterV2IssueResourceGoogleCloudMetadata
2928
+ # @private
2929
+ class Representation < Google::Apis::Core::JsonRepresentation
2930
+ property :project_id, as: 'projectId'
2931
+ end
2932
+ end
2933
+
2934
+ class GoogleCloudSecuritycenterV2IssueSecurityContext
2935
+ # @private
2936
+ class Representation < Google::Apis::Core::JsonRepresentation
2937
+ property :aggregated_count, as: 'aggregatedCount', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount::Representation
2938
+
2939
+ property :context, as: 'context', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextContext, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueSecurityContextContext::Representation
2940
+
2941
+ end
2942
+ end
2943
+
2944
+ class GoogleCloudSecuritycenterV2IssueSecurityContextAggregatedCount
2945
+ # @private
2946
+ class Representation < Google::Apis::Core::JsonRepresentation
2947
+ property :key, as: 'key'
2948
+ property :value, as: 'value'
2949
+ end
2950
+ end
2951
+
2952
+ class GoogleCloudSecuritycenterV2IssueSecurityContextContext
2953
+ # @private
2954
+ class Representation < Google::Apis::Core::JsonRepresentation
2955
+ property :type, as: 'type'
2956
+ collection :values, as: 'values'
2957
+ end
2958
+ end
2959
+
2682
2960
  class GoogleCloudSecuritycenterV2KernelRootkit
2683
2961
  # @private
2684
2962
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.72.0
4
+ version: 0.73.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-04 00:00:00.000000000 Z
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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.72.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.73.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
63
63
  post_install_message:
64
64
  rdoc_options: []
@@ -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.22
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 V1beta2