google-apis-securitycenter_v1 0.88.0 → 0.90.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 05033f8385b99ecf6d26a04c49c0b4e558a68240b0f3d10aa04d47a94bed5633
4
- data.tar.gz: 9d867c831659b45650ed6f2d9855440d7f103d4e07ff21940b65c7a29a73ffc2
3
+ metadata.gz: dc15faf76f6f24a56b529a1e8ec3af981c5426c83d37973e860ccba4bdec5cbf
4
+ data.tar.gz: 0a8e2077fafaa927a592e838298570a96d13c8f510d4bbae68f9d8690a5bed56
5
5
  SHA512:
6
- metadata.gz: 8c5c126ddf075f8c16bebadeebefe8d71598908d7270ca28deae06bef18943d4225fe1021f7a8988bccb7fd9ae5e1ab572d5003fed9b3e37267e360cccb06b9f
7
- data.tar.gz: 100df5e21b1afb6a36f45fe11dec05c3e9e72e22e937a92a3671398f3ffd02a50d38cb1360e46ea0f4596fa19abed41f0fc32277a666276b2971ca83adee1ad2
6
+ metadata.gz: a98e69098cada47631be8c6919754bfc6cf89c86f98bdaba14d20469c059011a2d1aaf911a6a109c5da3cf2f863c204622341d98973d8de0387a47ff322f4f98
7
+ data.tar.gz: 93d9fab90de434d0cbe37e0c6ab66ee967a71b8c62e38864a58215b7c0d7d46636bd0d0a41a60002f68e73ad985fb67271ed6189bab241026d9750b8f9ad0c40
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.90.0 (2024-11-17)
4
+
5
+ * Regenerated from discovery document revision 20241111
6
+
7
+ ### v0.89.0 (2024-10-27)
8
+
9
+ * Regenerated from discovery document revision 20241018
10
+
3
11
  ### v0.88.0 (2024-10-06)
4
12
 
5
13
  * Regenerated from discovery document revision 20240926
@@ -1201,40 +1201,6 @@ module Google
1201
1201
  end
1202
1202
  end
1203
1203
 
1204
- # YAML-based rule that uses CEL, which supports the declaration of variables and
1205
- # a filtering predicate. A vulnerable resource is emitted if the evaluation is
1206
- # false. Given: 1) the resource types as: - resource_types: "compute.googleapis.
1207
- # com/Instance" - resource_types: "compute.googleapis.com/Firewall" 2) the CEL
1208
- # policy spec as: name: bad_instance resource_filters: - name: instance
1209
- # resource_type: compute.googleapis.com/Instance filter: > instance.status == '
1210
- # RUNNING' && 'public' in instance.tags.items - name: firewall resource_type:
1211
- # compute.googleapis.com/Firewall filter: > firewall.direction == 'INGRESS' && !
1212
- # firewall.disabled && firewall.allowed.exists(rule, rule.IPProtocol.upperAscii()
1213
- # in ['TCP', 'ALL'] && rule.ports.exists(port, network.portsInRange(port, '11-
1214
- # 256'))) rule: match: - predicate: > instance.networkInterfaces.exists(net,
1215
- # firewall.network == net.network) output: > `'message': 'Compute instance with
1216
- # publicly accessible ports', 'instance': instance.name` Users are able to join
1217
- # resource types together using the exact format as Kubernetes Validating
1218
- # Admission policies.
1219
- class CelPolicySpec
1220
- include Google::Apis::Core::Hashable
1221
-
1222
- # The CEL policy to evaluate to produce findings. A finding is generated when
1223
- # the policy validation evaluates to false.
1224
- # Corresponds to the JSON property `spec`
1225
- # @return [String]
1226
- attr_accessor :spec
1227
-
1228
- def initialize(**args)
1229
- update!(**args)
1230
- end
1231
-
1232
- # Update properties of this object
1233
- def update!(**args)
1234
- @spec = args[:spec] if args.key?(:spec)
1235
- end
1236
- end
1237
-
1238
1204
  # Fields related to Google Cloud Armor findings.
1239
1205
  class CloudArmor
1240
1206
  include Google::Apis::Core::Hashable
@@ -2035,6 +2001,26 @@ module Google
2035
2001
  end
2036
2002
  end
2037
2003
 
2004
+ # Contains information about the disk associated with the finding.
2005
+ class Disk
2006
+ include Google::Apis::Core::Hashable
2007
+
2008
+ # The name of the disk, for example, "https://www.googleapis.com/compute/v1/
2009
+ # projects/project-id/zones/zone-id/disks/disk-id".
2010
+ # Corresponds to the JSON property `name`
2011
+ # @return [String]
2012
+ attr_accessor :name
2013
+
2014
+ def initialize(**args)
2015
+ update!(**args)
2016
+ end
2017
+
2018
+ # Update properties of this object
2019
+ def update!(**args)
2020
+ @name = args[:name] if args.key?(:name)
2021
+ end
2022
+ end
2023
+
2038
2024
  # Path of the file in terms of underlying disk/partition identifiers.
2039
2025
  class DiskPath
2040
2026
  include Google::Apis::Core::Hashable
@@ -2101,6 +2087,11 @@ module Google
2101
2087
  class EffectiveEventThreatDetectionCustomModule
2102
2088
  include Google::Apis::Core::Hashable
2103
2089
 
2090
+ # The cloud provider of the custom module.
2091
+ # Corresponds to the JSON property `cloudProvider`
2092
+ # @return [String]
2093
+ attr_accessor :cloud_provider
2094
+
2104
2095
  # Output only. Config for the effective module.
2105
2096
  # Corresponds to the JSON property `config`
2106
2097
  # @return [Hash<String,Object>]
@@ -2142,6 +2133,7 @@ module Google
2142
2133
 
2143
2134
  # Update properties of this object
2144
2135
  def update!(**args)
2136
+ @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
2145
2137
  @config = args[:config] if args.key?(:config)
2146
2138
  @description = args[:description] if args.key?(:description)
2147
2139
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2208,6 +2200,11 @@ module Google
2208
2200
  # @return [String]
2209
2201
  attr_accessor :ancestor_module
2210
2202
 
2203
+ # The cloud provider of the custom module.
2204
+ # Corresponds to the JSON property `cloudProvider`
2205
+ # @return [String]
2206
+ attr_accessor :cloud_provider
2207
+
2211
2208
  # Config for the module. For the resident module, its config value is defined at
2212
2209
  # this level. For the inherited module, its config value is inherited from the
2213
2210
  # ancestor module.
@@ -2261,6 +2258,7 @@ module Google
2261
2258
  # Update properties of this object
2262
2259
  def update!(**args)
2263
2260
  @ancestor_module = args[:ancestor_module] if args.key?(:ancestor_module)
2261
+ @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
2264
2262
  @config = args[:config] if args.key?(:config)
2265
2263
  @description = args[:description] if args.key?(:description)
2266
2264
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -2570,6 +2568,11 @@ module Google
2570
2568
  # @return [String]
2571
2569
  attr_accessor :description
2572
2570
 
2571
+ # Contains information about the disk associated with the finding.
2572
+ # Corresponds to the JSON property `disk`
2573
+ # @return [Google::Apis::SecuritycenterV1::Disk]
2574
+ attr_accessor :disk
2575
+
2573
2576
  # The time the finding was first detected. If an existing finding is updated,
2574
2577
  # then this is the time the update occurred. For example, if the finding
2575
2578
  # represents an open firewall, this property captures the time the detector
@@ -2814,6 +2817,7 @@ module Google
2814
2817
  @data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
2815
2818
  @database = args[:database] if args.key?(:database)
2816
2819
  @description = args[:description] if args.key?(:description)
2820
+ @disk = args[:disk] if args.key?(:disk)
2817
2821
  @event_time = args[:event_time] if args.key?(:event_time)
2818
2822
  @exfiltration = args[:exfiltration] if args.key?(:exfiltration)
2819
2823
  @external_systems = args[:external_systems] if args.key?(:external_systems)
@@ -3135,25 +3139,6 @@ module Google
3135
3139
  class GoogleCloudSecuritycenterV1CustomConfig
3136
3140
  include Google::Apis::Core::Hashable
3137
3141
 
3138
- # YAML-based rule that uses CEL, which supports the declaration of variables and
3139
- # a filtering predicate. A vulnerable resource is emitted if the evaluation is
3140
- # false. Given: 1) the resource types as: - resource_types: "compute.googleapis.
3141
- # com/Instance" - resource_types: "compute.googleapis.com/Firewall" 2) the CEL
3142
- # policy spec as: name: bad_instance resource_filters: - name: instance
3143
- # resource_type: compute.googleapis.com/Instance filter: > instance.status == '
3144
- # RUNNING' && 'public' in instance.tags.items - name: firewall resource_type:
3145
- # compute.googleapis.com/Firewall filter: > firewall.direction == 'INGRESS' && !
3146
- # firewall.disabled && firewall.allowed.exists(rule, rule.IPProtocol.upperAscii()
3147
- # in ['TCP', 'ALL'] && rule.ports.exists(port, network.portsInRange(port, '11-
3148
- # 256'))) rule: match: - predicate: > instance.networkInterfaces.exists(net,
3149
- # firewall.network == net.network) output: > `'message': 'Compute instance with
3150
- # publicly accessible ports', 'instance': instance.name` Users are able to join
3151
- # resource types together using the exact format as Kubernetes Validating
3152
- # Admission policies.
3153
- # Corresponds to the JSON property `celPolicy`
3154
- # @return [Google::Apis::SecuritycenterV1::CelPolicySpec]
3155
- attr_accessor :cel_policy
3156
-
3157
3142
  # A set of optional name-value pairs that define custom source properties to
3158
3143
  # return with each finding that is generated by the custom module. The custom
3159
3144
  # source properties that are defined here are included in the finding JSON under
@@ -3212,7 +3197,6 @@ module Google
3212
3197
 
3213
3198
  # Update properties of this object
3214
3199
  def update!(**args)
3215
- @cel_policy = args[:cel_policy] if args.key?(:cel_policy)
3216
3200
  @custom_output = args[:custom_output] if args.key?(:custom_output)
3217
3201
  @description = args[:description] if args.key?(:description)
3218
3202
  @predicate = args[:predicate] if args.key?(:predicate)
@@ -3256,6 +3240,11 @@ module Google
3256
3240
  class GoogleCloudSecuritycenterV1EffectiveSecurityHealthAnalyticsCustomModule
3257
3241
  include Google::Apis::Core::Hashable
3258
3242
 
3243
+ # The cloud provider of the custom module.
3244
+ # Corresponds to the JSON property `cloudProvider`
3245
+ # @return [String]
3246
+ attr_accessor :cloud_provider
3247
+
3259
3248
  # Defines the properties in a custom module configuration for Security Health
3260
3249
  # Analytics. Use the custom module configuration to create custom detectors that
3261
3250
  # generate custom findings for resources that you specify.
@@ -3292,6 +3281,7 @@ module Google
3292
3281
 
3293
3282
  # Update properties of this object
3294
3283
  def update!(**args)
3284
+ @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
3295
3285
  @custom_config = args[:custom_config] if args.key?(:custom_config)
3296
3286
  @display_name = args[:display_name] if args.key?(:display_name)
3297
3287
  @enablement_state = args[:enablement_state] if args.key?(:enablement_state)
@@ -3753,10 +3743,10 @@ module Google
3753
3743
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1SensitiveDataProtectionMapping]
3754
3744
  attr_accessor :sensitive_data_protection_mapping
3755
3745
 
3756
- # Required. Tag values combined with `AND` to check against. Values in the form "
3757
- # tagValues/123" Example: `[ "tagValues/123", "tagValues/456", "tagValues/789" ]`
3758
- # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-
3759
- # managing
3746
+ # Required. Tag values combined with `AND` to check against. For Google Cloud
3747
+ # resources, they are tag value IDs in the form of "tagValues/123". Example: `[ "
3748
+ # tagValues/123", "tagValues/456", "tagValues/789" ]` https://cloud.google.com/
3749
+ # resource-manager/docs/tags/tags-creating-and-managing
3760
3750
  # Corresponds to the JSON property `tagValues`
3761
3751
  # @return [Array<String>]
3762
3752
  attr_accessor :tag_values
@@ -3827,6 +3817,11 @@ module Google
3827
3817
  # @return [String]
3828
3818
  attr_accessor :ancestor_module
3829
3819
 
3820
+ # The cloud provider of the custom module.
3821
+ # Corresponds to the JSON property `cloudProvider`
3822
+ # @return [String]
3823
+ attr_accessor :cloud_provider
3824
+
3830
3825
  # Defines the properties in a custom module configuration for Security Health
3831
3826
  # Analytics. Use the custom module configuration to create custom detectors that
3832
3827
  # generate custom findings for resources that you specify.
@@ -3876,6 +3871,7 @@ module Google
3876
3871
  # Update properties of this object
3877
3872
  def update!(**args)
3878
3873
  @ancestor_module = args[:ancestor_module] if args.key?(:ancestor_module)
3874
+ @cloud_provider = args[:cloud_provider] if args.key?(:cloud_provider)
3879
3875
  @custom_config = args[:custom_config] if args.key?(:custom_config)
3880
3876
  @display_name = args[:display_name] if args.key?(:display_name)
3881
3877
  @enablement_state = args[:enablement_state] if args.key?(:enablement_state)
@@ -5690,6 +5686,26 @@ module Google
5690
5686
  end
5691
5687
  end
5692
5688
 
5689
+ # Contains information about the disk associated with the finding.
5690
+ class GoogleCloudSecuritycenterV2Disk
5691
+ include Google::Apis::Core::Hashable
5692
+
5693
+ # The name of the disk, for example, "https://www.googleapis.com/compute/v1/
5694
+ # projects/project-id/zones/zone-id/disks/disk-id".
5695
+ # Corresponds to the JSON property `name`
5696
+ # @return [String]
5697
+ attr_accessor :name
5698
+
5699
+ def initialize(**args)
5700
+ update!(**args)
5701
+ end
5702
+
5703
+ # Update properties of this object
5704
+ def update!(**args)
5705
+ @name = args[:name] if args.key?(:name)
5706
+ end
5707
+ end
5708
+
5693
5709
  # Path of the file in terms of underlying disk/partition identifiers.
5694
5710
  class GoogleCloudSecuritycenterV2DiskPath
5695
5711
  include Google::Apis::Core::Hashable
@@ -6108,6 +6124,11 @@ module Google
6108
6124
  # @return [String]
6109
6125
  attr_accessor :description
6110
6126
 
6127
+ # Contains information about the disk associated with the finding.
6128
+ # Corresponds to the JSON property `disk`
6129
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Disk]
6130
+ attr_accessor :disk
6131
+
6111
6132
  # The time the finding was first detected. If an existing finding is updated,
6112
6133
  # then this is the time the update occurred. For example, if the finding
6113
6134
  # represents an open firewall, this property captures the time the detector
@@ -6361,6 +6382,7 @@ module Google
6361
6382
  @data_flow_events = args[:data_flow_events] if args.key?(:data_flow_events)
6362
6383
  @database = args[:database] if args.key?(:database)
6363
6384
  @description = args[:description] if args.key?(:description)
6385
+ @disk = args[:disk] if args.key?(:disk)
6364
6386
  @event_time = args[:event_time] if args.key?(:event_time)
6365
6387
  @exfiltration = args[:exfiltration] if args.key?(:exfiltration)
6366
6388
  @external_systems = args[:external_systems] if args.key?(:external_systems)
@@ -7621,9 +7643,10 @@ module Google
7621
7643
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SensitiveDataProtectionMapping]
7622
7644
  attr_accessor :sensitive_data_protection_mapping
7623
7645
 
7624
- # Tag values combined with `AND` to check against. Values in the form "tagValues/
7625
- # 123" Example: `[ "tagValues/123", "tagValues/456", "tagValues/789" ]` https://
7626
- # cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
7646
+ # Tag values combined with `AND` to check against. For Google Cloud resources,
7647
+ # they are tag value IDs in the form of "tagValues/123". Example: `[ "tagValues/
7648
+ # 123", "tagValues/456", "tagValues/789" ]` https://cloud.google.com/resource-
7649
+ # manager/docs/tags/tags-creating-and-managing
7627
7650
  # Corresponds to the JSON property `tagValues`
7628
7651
  # @return [Array<String>]
7629
7652
  attr_accessor :tag_values
@@ -10669,7 +10692,8 @@ module Google
10669
10692
  class SetFindingStateRequest
10670
10693
  include Google::Apis::Core::Hashable
10671
10694
 
10672
- # Required. The time at which the updated state takes effect.
10695
+ # Optional. The time at which the updated state takes effect. If unset, defaults
10696
+ # to the request time.
10673
10697
  # Corresponds to the JSON property `startTime`
10674
10698
  # @return [String]
10675
10699
  attr_accessor :start_time
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.88.0"
19
+ GEM_VERSION = "0.90.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 = "20240926"
25
+ REVISION = "20241111"
26
26
  end
27
27
  end
28
28
  end
@@ -190,12 +190,6 @@ module Google
190
190
  include Google::Apis::Core::JsonObjectSupport
191
191
  end
192
192
 
193
- class CelPolicySpec
194
- class Representation < Google::Apis::Core::JsonRepresentation; end
195
-
196
- include Google::Apis::Core::JsonObjectSupport
197
- end
198
-
199
193
  class CloudArmor
200
194
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
195
 
@@ -310,6 +304,12 @@ module Google
310
304
  include Google::Apis::Core::JsonObjectSupport
311
305
  end
312
306
 
307
+ class Disk
308
+ class Representation < Google::Apis::Core::JsonRepresentation; end
309
+
310
+ include Google::Apis::Core::JsonObjectSupport
311
+ end
312
+
313
313
  class DiskPath
314
314
  class Representation < Google::Apis::Core::JsonRepresentation; end
315
315
 
@@ -748,6 +748,12 @@ module Google
748
748
  include Google::Apis::Core::JsonObjectSupport
749
749
  end
750
750
 
751
+ class GoogleCloudSecuritycenterV2Disk
752
+ class Representation < Google::Apis::Core::JsonRepresentation; end
753
+
754
+ include Google::Apis::Core::JsonObjectSupport
755
+ end
756
+
751
757
  class GoogleCloudSecuritycenterV2DiskPath
752
758
  class Representation < Google::Apis::Core::JsonRepresentation; end
753
759
 
@@ -1882,13 +1888,6 @@ module Google
1882
1888
  end
1883
1889
  end
1884
1890
 
1885
- class CelPolicySpec
1886
- # @private
1887
- class Representation < Google::Apis::Core::JsonRepresentation
1888
- property :spec, as: 'spec'
1889
- end
1890
- end
1891
-
1892
1891
  class CloudArmor
1893
1892
  # @private
1894
1893
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2097,6 +2096,13 @@ module Google
2097
2096
  end
2098
2097
  end
2099
2098
 
2099
+ class Disk
2100
+ # @private
2101
+ class Representation < Google::Apis::Core::JsonRepresentation
2102
+ property :name, as: 'name'
2103
+ end
2104
+ end
2105
+
2100
2106
  class DiskPath
2101
2107
  # @private
2102
2108
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2116,6 +2122,7 @@ module Google
2116
2122
  class EffectiveEventThreatDetectionCustomModule
2117
2123
  # @private
2118
2124
  class Representation < Google::Apis::Core::JsonRepresentation
2125
+ property :cloud_provider, as: 'cloudProvider'
2119
2126
  hash :config, as: 'config'
2120
2127
  property :description, as: 'description'
2121
2128
  property :display_name, as: 'displayName'
@@ -2143,6 +2150,7 @@ module Google
2143
2150
  # @private
2144
2151
  class Representation < Google::Apis::Core::JsonRepresentation
2145
2152
  property :ancestor_module, as: 'ancestorModule'
2153
+ property :cloud_provider, as: 'cloudProvider'
2146
2154
  hash :config, as: 'config'
2147
2155
  property :description, as: 'description'
2148
2156
  property :display_name, as: 'displayName'
@@ -2232,6 +2240,8 @@ module Google
2232
2240
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1::Database, decorator: Google::Apis::SecuritycenterV1::Database::Representation
2233
2241
 
2234
2242
  property :description, as: 'description'
2243
+ property :disk, as: 'disk', class: Google::Apis::SecuritycenterV1::Disk, decorator: Google::Apis::SecuritycenterV1::Disk::Representation
2244
+
2235
2245
  property :event_time, as: 'eventTime'
2236
2246
  property :exfiltration, as: 'exfiltration', class: Google::Apis::SecuritycenterV1::Exfiltration, decorator: Google::Apis::SecuritycenterV1::Exfiltration::Representation
2237
2247
 
@@ -2366,8 +2376,6 @@ module Google
2366
2376
  class GoogleCloudSecuritycenterV1CustomConfig
2367
2377
  # @private
2368
2378
  class Representation < Google::Apis::Core::JsonRepresentation
2369
- property :cel_policy, as: 'celPolicy', class: Google::Apis::SecuritycenterV1::CelPolicySpec, decorator: Google::Apis::SecuritycenterV1::CelPolicySpec::Representation
2370
-
2371
2379
  property :custom_output, as: 'customOutput', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomOutputSpec, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomOutputSpec::Representation
2372
2380
 
2373
2381
  property :description, as: 'description'
@@ -2391,6 +2399,7 @@ module Google
2391
2399
  class GoogleCloudSecuritycenterV1EffectiveSecurityHealthAnalyticsCustomModule
2392
2400
  # @private
2393
2401
  class Representation < Google::Apis::Core::JsonRepresentation
2402
+ property :cloud_provider, as: 'cloudProvider'
2394
2403
  property :custom_config, as: 'customConfig', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomConfig, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomConfig::Representation
2395
2404
 
2396
2405
  property :display_name, as: 'displayName'
@@ -2515,6 +2524,7 @@ module Google
2515
2524
  # @private
2516
2525
  class Representation < Google::Apis::Core::JsonRepresentation
2517
2526
  property :ancestor_module, as: 'ancestorModule'
2527
+ property :cloud_provider, as: 'cloudProvider'
2518
2528
  property :custom_config, as: 'customConfig', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomConfig, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1CustomConfig::Representation
2519
2529
 
2520
2530
  property :display_name, as: 'displayName'
@@ -2972,6 +2982,13 @@ module Google
2972
2982
  end
2973
2983
  end
2974
2984
 
2985
+ class GoogleCloudSecuritycenterV2Disk
2986
+ # @private
2987
+ class Representation < Google::Apis::Core::JsonRepresentation
2988
+ property :name, as: 'name'
2989
+ end
2990
+ end
2991
+
2975
2992
  class GoogleCloudSecuritycenterV2DiskPath
2976
2993
  # @private
2977
2994
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3082,6 +3099,8 @@ module Google
3082
3099
  property :database, as: 'database', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Database, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Database::Representation
3083
3100
 
3084
3101
  property :description, as: 'description'
3102
+ property :disk, as: 'disk', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Disk, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Disk::Representation
3103
+
3085
3104
  property :event_time, as: 'eventTime'
3086
3105
  property :exfiltration, as: 'exfiltration', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Exfiltration, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Exfiltration::Representation
3087
3106
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.88.0
4
+ version: 0.90.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-10-06 00:00:00.000000000 Z
11
+ date: 2024-12-04 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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.88.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.90.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
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.6
78
+ rubygems_version: 3.5.22
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Security Command Center API V1