google-apis-securitycenter_v1 0.51.0 → 0.53.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: 3e9403ed17a12fddd9bcc5ed689490b08735fa461bbdeb2f2f7d0311ee1bb480
4
- data.tar.gz: 488b3aaafdcb6bf2f672b6f7cce4e1eb74373dc40d1e79422fb512e41994c7eb
3
+ metadata.gz: b4ebbdd4158ede6ce25303140cf867369be1f5db1861f7d85d17d623c85a5005
4
+ data.tar.gz: e224136619086a8504da6cae0fbbd1a38fa2ab79af1af73d9d949997bdf9760e
5
5
  SHA512:
6
- metadata.gz: 6cbadfea6b5cf91028c808b44a808b274965dfd0861cb93c87d55a8ca2f8d059e6f74586179bf95739ae43269a9ba89897aa09adc32bdac65d662f2ced0ce993
7
- data.tar.gz: d61a2262fb241610717ee8be4bfbfd0245e962d6a309a218cf7e8212233f8d265df0b706de116a086d2d12c8c719f70659e22fb50a3b8514d7abd8980ffc6836
6
+ metadata.gz: cbcc5514c48198fdaf1b56445dfdd94c6893f69ce2a5e142c03c35eb3043d00d1f475a0af7ed0e8a67c57b6da326db6711926adbac27f1e621a82214a07052cd
7
+ data.tar.gz: affed4ea7e6c19554c5e4e743664713f5572a20f86c6f3827cddd1c2c38d523baa880cbfe864ec92c3f7384dfd8b30a28bdbdc046d0b887cc7686f7a23886908
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.53.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230329
6
+
7
+ ### v0.52.0 (2023-03-26)
8
+
9
+ * Regenerated from discovery document revision 20230321
10
+
3
11
  ### v0.51.0 (2023-02-15)
4
12
 
5
13
  * Regenerated using generator version 0.12.0
@@ -287,38 +287,6 @@ module Google
287
287
  end
288
288
  end
289
289
 
290
- # A finding that is associated with this node in the exposure path.
291
- class AssociatedFinding
292
- include Google::Apis::Core::Hashable
293
-
294
- # Canonical name of the associated findings. Example: organizations/123/sources/
295
- # 456/findings/789
296
- # Corresponds to the JSON property `canonicalFindingName`
297
- # @return [String]
298
- attr_accessor :canonical_finding_name
299
-
300
- # The additional taxonomy group within findings from a given source.
301
- # Corresponds to the JSON property `findingCategory`
302
- # @return [String]
303
- attr_accessor :finding_category
304
-
305
- # Full resource name of the finding.
306
- # Corresponds to the JSON property `name`
307
- # @return [String]
308
- attr_accessor :name
309
-
310
- def initialize(**args)
311
- update!(**args)
312
- end
313
-
314
- # Update properties of this object
315
- def update!(**args)
316
- @canonical_finding_name = args[:canonical_finding_name] if args.key?(:canonical_finding_name)
317
- @finding_category = args[:finding_category] if args.key?(:finding_category)
318
- @name = args[:name] if args.key?(:name)
319
- end
320
- end
321
-
322
290
  # Specifies the audit configuration for a service. The configuration determines
323
291
  # which permission types are logged, and what identities, if any, are exempted
324
292
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -502,6 +470,69 @@ module Google
502
470
  end
503
471
  end
504
472
 
473
+ # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
474
+ # with the finding.
475
+ class CloudDlpDataProfile
476
+ include Google::Apis::Core::Hashable
477
+
478
+ # Name of the data profile, for example, `projects/123/locations/europe/
479
+ # tableProfiles/8383929`.
480
+ # Corresponds to the JSON property `dataProfile`
481
+ # @return [String]
482
+ attr_accessor :data_profile
483
+
484
+ def initialize(**args)
485
+ update!(**args)
486
+ end
487
+
488
+ # Update properties of this object
489
+ def update!(**args)
490
+ @data_profile = args[:data_profile] if args.key?(:data_profile)
491
+ end
492
+ end
493
+
494
+ # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](
495
+ # https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the
496
+ # finding.
497
+ class CloudDlpInspection
498
+ include Google::Apis::Core::Hashable
499
+
500
+ # Whether Cloud DLP scanned the complete resource or a sampled subset.
501
+ # Corresponds to the JSON property `fullScan`
502
+ # @return [Boolean]
503
+ attr_accessor :full_scan
504
+ alias_method :full_scan?, :full_scan
505
+
506
+ # The [type of information](https://cloud.google.com/dlp/docs/infotypes-
507
+ # reference) found, for example, `EMAIL_ADDRESS` or `STREET_ADDRESS`.
508
+ # Corresponds to the JSON property `infoType`
509
+ # @return [String]
510
+ attr_accessor :info_type
511
+
512
+ # The number of times Cloud DLP found this infoType within this job and resource.
513
+ # Corresponds to the JSON property `infoTypeCount`
514
+ # @return [Fixnum]
515
+ attr_accessor :info_type_count
516
+
517
+ # Name of the inspection job, for example, `projects/123/locations/europe/
518
+ # dlpJobs/i-8383929`.
519
+ # Corresponds to the JSON property `inspectJob`
520
+ # @return [String]
521
+ attr_accessor :inspect_job
522
+
523
+ def initialize(**args)
524
+ update!(**args)
525
+ end
526
+
527
+ # Update properties of this object
528
+ def update!(**args)
529
+ @full_scan = args[:full_scan] if args.key?(:full_scan)
530
+ @info_type = args[:info_type] if args.key?(:info_type)
531
+ @info_type_count = args[:info_type_count] if args.key?(:info_type_count)
532
+ @inspect_job = args[:inspect_job] if args.key?(:inspect_job)
533
+ end
534
+ end
535
+
505
536
  # Contains compliance information about a security standard indicating unmet
506
537
  # recommendations.
507
538
  class Compliance
@@ -849,32 +880,6 @@ module Google
849
880
  end
850
881
  end
851
882
 
852
- # Represents a connection between a source node and a destination node in this
853
- # exposure path.
854
- class Edge
855
- include Google::Apis::Core::Hashable
856
-
857
- # This is the resource name of the destination node.
858
- # Corresponds to the JSON property `destination`
859
- # @return [String]
860
- attr_accessor :destination
861
-
862
- # This is the resource name of the source node.
863
- # Corresponds to the JSON property `source`
864
- # @return [String]
865
- attr_accessor :source
866
-
867
- def initialize(**args)
868
- update!(**args)
869
- end
870
-
871
- # Update properties of this object
872
- def update!(**args)
873
- @destination = args[:destination] if args.key?(:destination)
874
- @source = args[:source] if args.key?(:source)
875
- end
876
- end
877
-
878
883
  # A generic empty message that you can re-use to avoid defining duplicated empty
879
884
  # messages in your APIs. A typical example is to use it as the request or the
880
885
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1111,6 +1116,19 @@ module Google
1111
1116
  # @return [String]
1112
1117
  attr_accessor :category
1113
1118
 
1119
+ # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
1120
+ # with the finding.
1121
+ # Corresponds to the JSON property `cloudDlpDataProfile`
1122
+ # @return [Google::Apis::SecuritycenterV1::CloudDlpDataProfile]
1123
+ attr_accessor :cloud_dlp_data_profile
1124
+
1125
+ # Details about the Cloud Data Loss Prevention (Cloud DLP) [inspection job](
1126
+ # https://cloud.google.com/dlp/docs/concepts-job-triggers) that produced the
1127
+ # finding.
1128
+ # Corresponds to the JSON property `cloudDlpInspection`
1129
+ # @return [Google::Apis::SecuritycenterV1::CloudDlpInspection]
1130
+ attr_accessor :cloud_dlp_inspection
1131
+
1114
1132
  # Contains compliance information for security standards associated to the
1115
1133
  # finding.
1116
1134
  # Corresponds to the JSON property `compliances`
@@ -1228,6 +1246,12 @@ module Google
1228
1246
  # @return [Google::Apis::SecuritycenterV1::MitreAttack]
1229
1247
  attr_accessor :mitre_attack
1230
1248
 
1249
+ # Unique identifier of the module which generated the finding. Example: folders/
1250
+ # 598186756061/securityHealthAnalyticsSettings/customModules/56799441161885
1251
+ # Corresponds to the JSON property `moduleName`
1252
+ # @return [String]
1253
+ attr_accessor :module_name
1254
+
1231
1255
  # Indicates the mute state of a finding (either muted, unmuted or undefined).
1232
1256
  # Unlike other attributes of a finding, a finding provider shouldn't set the
1233
1257
  # value of mute.
@@ -1329,6 +1353,8 @@ module Google
1329
1353
  @access = args[:access] if args.key?(:access)
1330
1354
  @canonical_name = args[:canonical_name] if args.key?(:canonical_name)
1331
1355
  @category = args[:category] if args.key?(:category)
1356
+ @cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
1357
+ @cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
1332
1358
  @compliances = args[:compliances] if args.key?(:compliances)
1333
1359
  @connections = args[:connections] if args.key?(:connections)
1334
1360
  @contacts = args[:contacts] if args.key?(:contacts)
@@ -1347,6 +1373,7 @@ module Google
1347
1373
  @kernel_rootkit = args[:kernel_rootkit] if args.key?(:kernel_rootkit)
1348
1374
  @kubernetes = args[:kubernetes] if args.key?(:kubernetes)
1349
1375
  @mitre_attack = args[:mitre_attack] if args.key?(:mitre_attack)
1376
+ @module_name = args[:module_name] if args.key?(:module_name)
1350
1377
  @mute = args[:mute] if args.key?(:mute)
1351
1378
  @mute_initiator = args[:mute_initiator] if args.key?(:mute_initiator)
1352
1379
  @mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
@@ -1590,96 +1617,6 @@ module Google
1590
1617
  end
1591
1618
  end
1592
1619
 
1593
- # A resource that is exposed as a result of a finding.
1594
- class GoogleCloudSecuritycenterV1ExposedResource
1595
- include Google::Apis::Core::Hashable
1596
-
1597
- # Human readable name of the resource that is exposed.
1598
- # Corresponds to the JSON property `displayName`
1599
- # @return [String]
1600
- attr_accessor :display_name
1601
-
1602
- # The ways in which this resource is exposed. Examples: Read, Write
1603
- # Corresponds to the JSON property `methods`
1604
- # @return [Array<String>]
1605
- attr_accessor :methods_prop
1606
-
1607
- # Exposed Resource Name e.g.: `organizations/123/attackExposureResults/456/
1608
- # exposedResources/789`
1609
- # Corresponds to the JSON property `name`
1610
- # @return [String]
1611
- attr_accessor :name
1612
-
1613
- # The name of the resource that is exposed. See: https://cloud.google.com/apis/
1614
- # design/resource_names#full_resource_name
1615
- # Corresponds to the JSON property `resource`
1616
- # @return [String]
1617
- attr_accessor :resource
1618
-
1619
- # The resource type of the exposed resource. See: https://cloud.google.com/asset-
1620
- # inventory/docs/supported-asset-types
1621
- # Corresponds to the JSON property `resourceType`
1622
- # @return [String]
1623
- attr_accessor :resource_type
1624
-
1625
- # How valuable this resource is.
1626
- # Corresponds to the JSON property `resourceValue`
1627
- # @return [String]
1628
- attr_accessor :resource_value
1629
-
1630
- def initialize(**args)
1631
- update!(**args)
1632
- end
1633
-
1634
- # Update properties of this object
1635
- def update!(**args)
1636
- @display_name = args[:display_name] if args.key?(:display_name)
1637
- @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
1638
- @name = args[:name] if args.key?(:name)
1639
- @resource = args[:resource] if args.key?(:resource)
1640
- @resource_type = args[:resource_type] if args.key?(:resource_type)
1641
- @resource_value = args[:resource_value] if args.key?(:resource_value)
1642
- end
1643
- end
1644
-
1645
- # A path that an attacker could take to reach an exposed resource.
1646
- class GoogleCloudSecuritycenterV1ExposurePath
1647
- include Google::Apis::Core::Hashable
1648
-
1649
- # A list of the edges between nodes in this exposure path.
1650
- # Corresponds to the JSON property `edges`
1651
- # @return [Array<Google::Apis::SecuritycenterV1::Edge>]
1652
- attr_accessor :edges
1653
-
1654
- # A resource that is exposed as a result of a finding.
1655
- # Corresponds to the JSON property `exposedResource`
1656
- # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ExposedResource]
1657
- attr_accessor :exposed_resource
1658
-
1659
- # Exposure Path Name e.g.: `organizations/123/attackExposureResults/456/
1660
- # exposurePaths/789`
1661
- # Corresponds to the JSON property `name`
1662
- # @return [String]
1663
- attr_accessor :name
1664
-
1665
- # A list of nodes that exist in this exposure path.
1666
- # Corresponds to the JSON property `pathNodes`
1667
- # @return [Array<Google::Apis::SecuritycenterV1::PathNode>]
1668
- attr_accessor :path_nodes
1669
-
1670
- def initialize(**args)
1671
- update!(**args)
1672
- end
1673
-
1674
- # Update properties of this object
1675
- def update!(**args)
1676
- @edges = args[:edges] if args.key?(:edges)
1677
- @exposed_resource = args[:exposed_resource] if args.key?(:exposed_resource)
1678
- @name = args[:name] if args.key?(:name)
1679
- @path_nodes = args[:path_nodes] if args.key?(:path_nodes)
1680
- end
1681
- end
1682
-
1683
1620
  # Representation of third party SIEM/SOAR fields within SCC.
1684
1621
  class GoogleCloudSecuritycenterV1ExternalSystem
1685
1622
  include Google::Apis::Core::Hashable
@@ -1899,57 +1836,6 @@ module Google
1899
1836
  end
1900
1837
  end
1901
1838
 
1902
- # A resource value config is a mapping configuration of user's tag values to
1903
- # resource values. Used by the attack path simulation.
1904
- class GoogleCloudSecuritycenterV1ResourceValueConfig
1905
- include Google::Apis::Core::Hashable
1906
-
1907
- # Name for the resource value config
1908
- # Corresponds to the JSON property `name`
1909
- # @return [String]
1910
- attr_accessor :name
1911
-
1912
- # Apply resource_value only to resources that match resource_type. resource_type
1913
- # will be checked with "AND" of other resources. E.g. "storage.googleapis.com/
1914
- # Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.
1915
- # googleapis.com/Bucket" resources.
1916
- # Corresponds to the JSON property `resourceType`
1917
- # @return [String]
1918
- attr_accessor :resource_type
1919
-
1920
- # Required. Resource value level this expression represents
1921
- # Corresponds to the JSON property `resourceValue`
1922
- # @return [String]
1923
- attr_accessor :resource_value
1924
-
1925
- # Project or folder to scope this config to. For example, "project/456" would
1926
- # apply this config only to resources in "project/456" scope will be checked
1927
- # with "AND" of other resources.
1928
- # Corresponds to the JSON property `scope`
1929
- # @return [String]
1930
- attr_accessor :scope
1931
-
1932
- # Required. Tag values combined with AND to check against. Values in the form "
1933
- # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1934
- # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1935
- # Corresponds to the JSON property `tagValues`
1936
- # @return [Array<String>]
1937
- attr_accessor :tag_values
1938
-
1939
- def initialize(**args)
1940
- update!(**args)
1941
- end
1942
-
1943
- # Update properties of this object
1944
- def update!(**args)
1945
- @name = args[:name] if args.key?(:name)
1946
- @resource_type = args[:resource_type] if args.key?(:resource_type)
1947
- @resource_value = args[:resource_value] if args.key?(:resource_value)
1948
- @scope = args[:scope] if args.key?(:scope)
1949
- @tag_values = args[:tag_values] if args.key?(:tag_values)
1950
- end
1951
- end
1952
-
1953
1839
  # Response of asset discovery run
1954
1840
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1955
1841
  include Google::Apis::Core::Hashable
@@ -3416,46 +3302,6 @@ module Google
3416
3302
  end
3417
3303
  end
3418
3304
 
3419
- # Represents one point that an attacker passes through in this exposure path.
3420
- class PathNode
3421
- include Google::Apis::Core::Hashable
3422
-
3423
- # The findings associated with this node in the exposure path.
3424
- # Corresponds to the JSON property `associatedFindings`
3425
- # @return [Array<Google::Apis::SecuritycenterV1::AssociatedFinding>]
3426
- attr_accessor :associated_findings
3427
-
3428
- # Human readable name of this resource.
3429
- # Corresponds to the JSON property `displayName`
3430
- # @return [String]
3431
- attr_accessor :display_name
3432
-
3433
- # The name of the resource at this point in the exposure path. The format of the
3434
- # name is: https://cloud.google.com/apis/design/resource_names#
3435
- # full_resource_name
3436
- # Corresponds to the JSON property `resource`
3437
- # @return [String]
3438
- attr_accessor :resource
3439
-
3440
- # The resource type of this resource. See: https://cloud.google.com/asset-
3441
- # inventory/docs/supported-asset-types
3442
- # Corresponds to the JSON property `resourceType`
3443
- # @return [String]
3444
- attr_accessor :resource_type
3445
-
3446
- def initialize(**args)
3447
- update!(**args)
3448
- end
3449
-
3450
- # Update properties of this object
3451
- def update!(**args)
3452
- @associated_findings = args[:associated_findings] if args.key?(:associated_findings)
3453
- @display_name = args[:display_name] if args.key?(:display_name)
3454
- @resource = args[:resource] if args.key?(:resource)
3455
- @resource_type = args[:resource_type] if args.key?(:resource_type)
3456
- end
3457
- end
3458
-
3459
3305
  # Kubernetes Pod.
3460
3306
  class Pod
3461
3307
  include Google::Apis::Core::Hashable
@@ -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.51.0"
19
+ GEM_VERSION = "0.53.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230126"
25
+ REVISION = "20230329"
26
26
  end
27
27
  end
28
28
  end
@@ -46,31 +46,37 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
- class AssociatedFinding
49
+ class AuditConfig
50
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
51
51
 
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
- class AuditConfig
55
+ class AuditLogConfig
56
56
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
57
 
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
- class AuditLogConfig
61
+ class Binding
62
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
63
 
64
64
  include Google::Apis::Core::JsonObjectSupport
65
65
  end
66
66
 
67
- class Binding
67
+ class BulkMuteFindingsRequest
68
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
69
69
 
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
- class BulkMuteFindingsRequest
73
+ class CloudDlpDataProfile
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
79
+ class CloudDlpInspection
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
76
82
  include Google::Apis::Core::JsonObjectSupport
@@ -130,12 +136,6 @@ module Google
130
136
  include Google::Apis::Core::JsonObjectSupport
131
137
  end
132
138
 
133
- class Edge
134
- class Representation < Google::Apis::Core::JsonRepresentation; end
135
-
136
- include Google::Apis::Core::JsonObjectSupport
137
- end
138
-
139
139
  class Empty
140
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
141
141
 
@@ -220,18 +220,6 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
- class GoogleCloudSecuritycenterV1ExposedResource
224
- class Representation < Google::Apis::Core::JsonRepresentation; end
225
-
226
- include Google::Apis::Core::JsonObjectSupport
227
- end
228
-
229
- class GoogleCloudSecuritycenterV1ExposurePath
230
- class Representation < Google::Apis::Core::JsonRepresentation; end
231
-
232
- include Google::Apis::Core::JsonObjectSupport
233
- end
234
-
235
223
  class GoogleCloudSecuritycenterV1ExternalSystem
236
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
225
 
@@ -256,12 +244,6 @@ module Google
256
244
  include Google::Apis::Core::JsonObjectSupport
257
245
  end
258
246
 
259
- class GoogleCloudSecuritycenterV1ResourceValueConfig
260
- class Representation < Google::Apis::Core::JsonRepresentation; end
261
-
262
- include Google::Apis::Core::JsonObjectSupport
263
- end
264
-
265
247
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
266
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
267
249
 
@@ -472,12 +454,6 @@ module Google
472
454
  include Google::Apis::Core::JsonObjectSupport
473
455
  end
474
456
 
475
- class PathNode
476
- class Representation < Google::Apis::Core::JsonRepresentation; end
477
-
478
- include Google::Apis::Core::JsonObjectSupport
479
- end
480
-
481
457
  class Pod
482
458
  class Representation < Google::Apis::Core::JsonRepresentation; end
483
459
 
@@ -667,15 +643,6 @@ module Google
667
643
  end
668
644
  end
669
645
 
670
- class AssociatedFinding
671
- # @private
672
- class Representation < Google::Apis::Core::JsonRepresentation
673
- property :canonical_finding_name, as: 'canonicalFindingName'
674
- property :finding_category, as: 'findingCategory'
675
- property :name, as: 'name'
676
- end
677
- end
678
-
679
646
  class AuditConfig
680
647
  # @private
681
648
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -711,6 +678,23 @@ module Google
711
678
  end
712
679
  end
713
680
 
681
+ class CloudDlpDataProfile
682
+ # @private
683
+ class Representation < Google::Apis::Core::JsonRepresentation
684
+ property :data_profile, as: 'dataProfile'
685
+ end
686
+ end
687
+
688
+ class CloudDlpInspection
689
+ # @private
690
+ class Representation < Google::Apis::Core::JsonRepresentation
691
+ property :full_scan, as: 'fullScan'
692
+ property :info_type, as: 'infoType'
693
+ property :info_type_count, :numeric_string => true, as: 'infoTypeCount'
694
+ property :inspect_job, as: 'inspectJob'
695
+ end
696
+ end
697
+
714
698
  class Compliance
715
699
  # @private
716
700
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -803,14 +787,6 @@ module Google
803
787
  end
804
788
  end
805
789
 
806
- class Edge
807
- # @private
808
- class Representation < Google::Apis::Core::JsonRepresentation
809
- property :destination, as: 'destination'
810
- property :source, as: 'source'
811
- end
812
- end
813
-
814
790
  class Empty
815
791
  # @private
816
792
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -872,6 +848,10 @@ module Google
872
848
 
873
849
  property :canonical_name, as: 'canonicalName'
874
850
  property :category, as: 'category'
851
+ property :cloud_dlp_data_profile, as: 'cloudDlpDataProfile', class: Google::Apis::SecuritycenterV1::CloudDlpDataProfile, decorator: Google::Apis::SecuritycenterV1::CloudDlpDataProfile::Representation
852
+
853
+ property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1::CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1::CloudDlpInspection::Representation
854
+
875
855
  collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1::Compliance, decorator: Google::Apis::SecuritycenterV1::Compliance::Representation
876
856
 
877
857
  collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1::Connection, decorator: Google::Apis::SecuritycenterV1::Connection::Representation
@@ -903,6 +883,7 @@ module Google
903
883
 
904
884
  property :mitre_attack, as: 'mitreAttack', class: Google::Apis::SecuritycenterV1::MitreAttack, decorator: Google::Apis::SecuritycenterV1::MitreAttack::Representation
905
885
 
886
+ property :module_name, as: 'moduleName'
906
887
  property :mute, as: 'mute'
907
888
  property :mute_initiator, as: 'muteInitiator'
908
889
  property :mute_update_time, as: 'muteUpdateTime'
@@ -985,31 +966,6 @@ module Google
985
966
  end
986
967
  end
987
968
 
988
- class GoogleCloudSecuritycenterV1ExposedResource
989
- # @private
990
- class Representation < Google::Apis::Core::JsonRepresentation
991
- property :display_name, as: 'displayName'
992
- collection :methods_prop, as: 'methods'
993
- property :name, as: 'name'
994
- property :resource, as: 'resource'
995
- property :resource_type, as: 'resourceType'
996
- property :resource_value, as: 'resourceValue'
997
- end
998
- end
999
-
1000
- class GoogleCloudSecuritycenterV1ExposurePath
1001
- # @private
1002
- class Representation < Google::Apis::Core::JsonRepresentation
1003
- collection :edges, as: 'edges', class: Google::Apis::SecuritycenterV1::Edge, decorator: Google::Apis::SecuritycenterV1::Edge::Representation
1004
-
1005
- property :exposed_resource, as: 'exposedResource', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ExposedResource, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1ExposedResource::Representation
1006
-
1007
- property :name, as: 'name'
1008
- collection :path_nodes, as: 'pathNodes', class: Google::Apis::SecuritycenterV1::PathNode, decorator: Google::Apis::SecuritycenterV1::PathNode::Representation
1009
-
1010
- end
1011
- end
1012
-
1013
969
  class GoogleCloudSecuritycenterV1ExternalSystem
1014
970
  # @private
1015
971
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1060,17 +1016,6 @@ module Google
1060
1016
  end
1061
1017
  end
1062
1018
 
1063
- class GoogleCloudSecuritycenterV1ResourceValueConfig
1064
- # @private
1065
- class Representation < Google::Apis::Core::JsonRepresentation
1066
- property :name, as: 'name'
1067
- property :resource_type, as: 'resourceType'
1068
- property :resource_value, as: 'resourceValue'
1069
- property :scope, as: 'scope'
1070
- collection :tag_values, as: 'tagValues'
1071
- end
1072
- end
1073
-
1074
1019
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1075
1020
  # @private
1076
1021
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1434,17 +1379,6 @@ module Google
1434
1379
  end
1435
1380
  end
1436
1381
 
1437
- class PathNode
1438
- # @private
1439
- class Representation < Google::Apis::Core::JsonRepresentation
1440
- collection :associated_findings, as: 'associatedFindings', class: Google::Apis::SecuritycenterV1::AssociatedFinding, decorator: Google::Apis::SecuritycenterV1::AssociatedFinding::Representation
1441
-
1442
- property :display_name, as: 'displayName'
1443
- property :resource, as: 'resource'
1444
- property :resource_type, as: 'resourceType'
1445
- end
1446
- end
1447
-
1448
1382
  class Pod
1449
1383
  # @private
1450
1384
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2262,13 +2262,7 @@ module Google
2262
2262
  end
2263
2263
 
2264
2264
  # Lists operations that match the specified filter in the request. If the server
2265
- # doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name`
2266
- # binding allows API services to override the binding to use different resource
2267
- # name schemes, such as `users/*/operations`. To override the binding, API
2268
- # services can add a binding such as `"/v1/`name=users/*`/operations"` to their
2269
- # service configuration. For backwards compatibility, the default name includes
2270
- # the operations collection id, however overriding users must ensure the name
2271
- # binding is the parent resource, without the operations collection id.
2265
+ # doesn't support this method, it returns `UNIMPLEMENTED`.
2272
2266
  # @param [String] name
2273
2267
  # The name of the operation's parent resource.
2274
2268
  # @param [String] filter
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.51.0
4
+ version: 0.53.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: 2023-02-19 00:00:00.000000000 Z
11
+ date: 2023-04-02 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.51.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.53.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: []