google-apis-securitycenter_v1beta1 0.49.0 → 0.50.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: 3b0bc39da7a40d188d32e982bb57273373d73204e3bcd267190c403e6acbb684
4
- data.tar.gz: 3cf3b08bf32f89b520a64d0be44b4145231ee3a7b2191e84d21ef2b602ddc02c
3
+ metadata.gz: e5f99c2fb6d42b8e2f1517d53abfa7b08a3b1e370f81704dd0b5cf00da13b0d6
4
+ data.tar.gz: 01f7d6b22a99d3fa1015b1edffcad8bbceae210e7ff1261c035663a5d3255919
5
5
  SHA512:
6
- metadata.gz: 14c5c8181b58cc4f436c44469416634be0eec32cebf2b00a17c2468c03df7d935d9f1476fff63e1f61fe5b29a4602c3a7722c8d2a42f33dd4b9e2bfcab9c05b9
7
- data.tar.gz: 00f2d5da21360b7e9e6f1a9d194c87787fe1b6eab8543aba3dffd43c29d08d65be0f061f6c3f39ef7e0e3e86da65034dd4ef8c6617c8b2a9d75962ca71d648f0
6
+ metadata.gz: 65c175e8781de4a5a35fe59e8eafbd528d70e8dff3f45981be51e971106867393d2ba1256a0e9e0e49e780f02702b0a6a58a43435ea0a4774a95d592e4c700ce
7
+ data.tar.gz: 92cf6a3ecdc740bb739baf44edccd01e1acf7bde43ba9053845ed8ac24edaedca42592334bc164669ce4d82fdad7ee01878f9e14c0be08e2d1d86ad14bd7eb53
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.50.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230329
6
+
3
7
  ### v0.49.0 (2023-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230321
@@ -264,38 +264,6 @@ module Google
264
264
  end
265
265
  end
266
266
 
267
- # A finding that is associated with this node in the exposure path.
268
- class AssociatedFinding
269
- include Google::Apis::Core::Hashable
270
-
271
- # Canonical name of the associated findings. Example: organizations/123/sources/
272
- # 456/findings/789
273
- # Corresponds to the JSON property `canonicalFindingName`
274
- # @return [String]
275
- attr_accessor :canonical_finding_name
276
-
277
- # The additional taxonomy group within findings from a given source.
278
- # Corresponds to the JSON property `findingCategory`
279
- # @return [String]
280
- attr_accessor :finding_category
281
-
282
- # Full resource name of the finding.
283
- # Corresponds to the JSON property `name`
284
- # @return [String]
285
- attr_accessor :name
286
-
287
- def initialize(**args)
288
- update!(**args)
289
- end
290
-
291
- # Update properties of this object
292
- def update!(**args)
293
- @canonical_finding_name = args[:canonical_finding_name] if args.key?(:canonical_finding_name)
294
- @finding_category = args[:finding_category] if args.key?(:finding_category)
295
- @name = args[:name] if args.key?(:name)
296
- end
297
- end
298
-
299
267
  # Specifies the audit configuration for a service. The configuration determines
300
268
  # which permission types are logged, and what identities, if any, are exempted
301
269
  # from logging. An AuditConfig must have one or more AuditLogConfigs. If there
@@ -866,32 +834,6 @@ module Google
866
834
  end
867
835
  end
868
836
 
869
- # Represents a connection between a source node and a destination node in this
870
- # exposure path.
871
- class Edge
872
- include Google::Apis::Core::Hashable
873
-
874
- # This is the resource name of the destination node.
875
- # Corresponds to the JSON property `destination`
876
- # @return [String]
877
- attr_accessor :destination
878
-
879
- # This is the resource name of the source node.
880
- # Corresponds to the JSON property `source`
881
- # @return [String]
882
- attr_accessor :source
883
-
884
- def initialize(**args)
885
- update!(**args)
886
- end
887
-
888
- # Update properties of this object
889
- def update!(**args)
890
- @destination = args[:destination] if args.key?(:destination)
891
- @source = args[:source] if args.key?(:source)
892
- end
893
- end
894
-
895
837
  # A generic empty message that you can re-use to avoid defining duplicated empty
896
838
  # messages in your APIs. A typical example is to use it as the request or the
897
839
  # response type of an API method. For instance: service Foo ` rpc Bar(google.
@@ -1296,12 +1238,6 @@ module Google
1296
1238
  # @return [String]
1297
1239
  attr_accessor :next_steps
1298
1240
 
1299
- # Contains information about the org policy constraints associated with the
1300
- # finding.
1301
- # Corresponds to the JSON property `orgPolicyConstraints`
1302
- # @return [Array<Google::Apis::SecuritycenterV1beta1::OrgPolicyConstraint>]
1303
- attr_accessor :org_policy_constraints
1304
-
1305
1241
  # The relative resource name of the source the finding belongs to. See: https://
1306
1242
  # cloud.google.com/apis/design/resource_names#relative_resource_name This field
1307
1243
  # is immutable after creation time. For example: "organizations/`organization_id`
@@ -1397,7 +1333,6 @@ module Google
1397
1333
  @mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
1398
1334
  @name = args[:name] if args.key?(:name)
1399
1335
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1400
- @org_policy_constraints = args[:org_policy_constraints] if args.key?(:org_policy_constraints)
1401
1336
  @parent = args[:parent] if args.key?(:parent)
1402
1337
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1403
1338
  @processes = args[:processes] if args.key?(:processes)
@@ -1636,96 +1571,6 @@ module Google
1636
1571
  end
1637
1572
  end
1638
1573
 
1639
- # A resource that is exposed as a result of a finding.
1640
- class GoogleCloudSecuritycenterV1ExposedResource
1641
- include Google::Apis::Core::Hashable
1642
-
1643
- # Human readable name of the resource that is exposed.
1644
- # Corresponds to the JSON property `displayName`
1645
- # @return [String]
1646
- attr_accessor :display_name
1647
-
1648
- # The ways in which this resource is exposed. Examples: Read, Write
1649
- # Corresponds to the JSON property `methods`
1650
- # @return [Array<String>]
1651
- attr_accessor :methods_prop
1652
-
1653
- # Exposed Resource Name e.g.: `organizations/123/attackExposureResults/456/
1654
- # exposedResources/789`
1655
- # Corresponds to the JSON property `name`
1656
- # @return [String]
1657
- attr_accessor :name
1658
-
1659
- # The name of the resource that is exposed. See: https://cloud.google.com/apis/
1660
- # design/resource_names#full_resource_name
1661
- # Corresponds to the JSON property `resource`
1662
- # @return [String]
1663
- attr_accessor :resource
1664
-
1665
- # The resource type of the exposed resource. See: https://cloud.google.com/asset-
1666
- # inventory/docs/supported-asset-types
1667
- # Corresponds to the JSON property `resourceType`
1668
- # @return [String]
1669
- attr_accessor :resource_type
1670
-
1671
- # How valuable this resource is.
1672
- # Corresponds to the JSON property `resourceValue`
1673
- # @return [String]
1674
- attr_accessor :resource_value
1675
-
1676
- def initialize(**args)
1677
- update!(**args)
1678
- end
1679
-
1680
- # Update properties of this object
1681
- def update!(**args)
1682
- @display_name = args[:display_name] if args.key?(:display_name)
1683
- @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
1684
- @name = args[:name] if args.key?(:name)
1685
- @resource = args[:resource] if args.key?(:resource)
1686
- @resource_type = args[:resource_type] if args.key?(:resource_type)
1687
- @resource_value = args[:resource_value] if args.key?(:resource_value)
1688
- end
1689
- end
1690
-
1691
- # A path that an attacker could take to reach an exposed resource.
1692
- class GoogleCloudSecuritycenterV1ExposurePath
1693
- include Google::Apis::Core::Hashable
1694
-
1695
- # A list of the edges between nodes in this exposure path.
1696
- # Corresponds to the JSON property `edges`
1697
- # @return [Array<Google::Apis::SecuritycenterV1beta1::Edge>]
1698
- attr_accessor :edges
1699
-
1700
- # A resource that is exposed as a result of a finding.
1701
- # Corresponds to the JSON property `exposedResource`
1702
- # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ExposedResource]
1703
- attr_accessor :exposed_resource
1704
-
1705
- # Exposure Path Name e.g.: `organizations/123/attackExposureResults/456/
1706
- # exposurePaths/789`
1707
- # Corresponds to the JSON property `name`
1708
- # @return [String]
1709
- attr_accessor :name
1710
-
1711
- # A list of nodes that exist in this exposure path.
1712
- # Corresponds to the JSON property `pathNodes`
1713
- # @return [Array<Google::Apis::SecuritycenterV1beta1::PathNode>]
1714
- attr_accessor :path_nodes
1715
-
1716
- def initialize(**args)
1717
- update!(**args)
1718
- end
1719
-
1720
- # Update properties of this object
1721
- def update!(**args)
1722
- @edges = args[:edges] if args.key?(:edges)
1723
- @exposed_resource = args[:exposed_resource] if args.key?(:exposed_resource)
1724
- @name = args[:name] if args.key?(:name)
1725
- @path_nodes = args[:path_nodes] if args.key?(:path_nodes)
1726
- end
1727
- end
1728
-
1729
1574
  # Representation of third party SIEM/SOAR fields within SCC.
1730
1575
  class GoogleCloudSecuritycenterV1ExternalSystem
1731
1576
  include Google::Apis::Core::Hashable
@@ -1945,84 +1790,6 @@ module Google
1945
1790
  end
1946
1791
  end
1947
1792
 
1948
- # A resource value config is a mapping configuration of user's tag values to
1949
- # resource values. Used by the attack path simulation.
1950
- class GoogleCloudSecuritycenterV1ResourceValueConfig
1951
- include Google::Apis::Core::Hashable
1952
-
1953
- # Output only. Timestamp this resource value config was created.
1954
- # Corresponds to the JSON property `createTime`
1955
- # @return [String]
1956
- attr_accessor :create_time
1957
-
1958
- # Description of the resource value config.
1959
- # Corresponds to the JSON property `description`
1960
- # @return [String]
1961
- attr_accessor :description
1962
-
1963
- # Name for the resource value config
1964
- # Corresponds to the JSON property `name`
1965
- # @return [String]
1966
- attr_accessor :name
1967
-
1968
- # List of resource labels to search for, evaluated with AND. E.g. "
1969
- # resource_labels_selector": `"key": "value", "env": "prod"` will match
1970
- # resources with labels "key": "value" AND "env": "prod" https://cloud.google.
1971
- # com/resource-manager/docs/creating-managing-labels
1972
- # Corresponds to the JSON property `resourceLabelsSelector`
1973
- # @return [Hash<String,String>]
1974
- attr_accessor :resource_labels_selector
1975
-
1976
- # Apply resource_value only to resources that match resource_type. resource_type
1977
- # will be checked with "AND" of other resources. E.g. "storage.googleapis.com/
1978
- # Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.
1979
- # googleapis.com/Bucket" resources.
1980
- # Corresponds to the JSON property `resourceType`
1981
- # @return [String]
1982
- attr_accessor :resource_type
1983
-
1984
- # Required. Resource value level this expression represents
1985
- # Corresponds to the JSON property `resourceValue`
1986
- # @return [String]
1987
- attr_accessor :resource_value
1988
-
1989
- # Project or folder to scope this config to. For example, "project/456" would
1990
- # apply this config only to resources in "project/456" scope will be checked
1991
- # with "AND" of other resources.
1992
- # Corresponds to the JSON property `scope`
1993
- # @return [String]
1994
- attr_accessor :scope
1995
-
1996
- # Required. Tag values combined with AND to check against. Values in the form "
1997
- # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1998
- # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1999
- # Corresponds to the JSON property `tagValues`
2000
- # @return [Array<String>]
2001
- attr_accessor :tag_values
2002
-
2003
- # Output only. Timestamp this resource value config was last updated.
2004
- # Corresponds to the JSON property `updateTime`
2005
- # @return [String]
2006
- attr_accessor :update_time
2007
-
2008
- def initialize(**args)
2009
- update!(**args)
2010
- end
2011
-
2012
- # Update properties of this object
2013
- def update!(**args)
2014
- @create_time = args[:create_time] if args.key?(:create_time)
2015
- @description = args[:description] if args.key?(:description)
2016
- @name = args[:name] if args.key?(:name)
2017
- @resource_labels_selector = args[:resource_labels_selector] if args.key?(:resource_labels_selector)
2018
- @resource_type = args[:resource_type] if args.key?(:resource_type)
2019
- @resource_value = args[:resource_value] if args.key?(:resource_value)
2020
- @scope = args[:scope] if args.key?(:scope)
2021
- @tag_values = args[:tag_values] if args.key?(:tag_values)
2022
- @update_time = args[:update_time] if args.key?(:update_time)
2023
- end
2024
- end
2025
-
2026
1793
  # Response of asset discovery run
2027
1794
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
2028
1795
  include Google::Apis::Core::Hashable
@@ -3319,26 +3086,6 @@ module Google
3319
3086
  end
3320
3087
  end
3321
3088
 
3322
- # Encapsulates data about a constraint associated with an organization policy.
3323
- class OrgPolicyConstraint
3324
- include Google::Apis::Core::Hashable
3325
-
3326
- # The resource name of the constraint. Example: "organizations/`organization_id`/
3327
- # constraints/`constraint_name`"
3328
- # Corresponds to the JSON property `name`
3329
- # @return [String]
3330
- attr_accessor :name
3331
-
3332
- def initialize(**args)
3333
- update!(**args)
3334
- end
3335
-
3336
- # Update properties of this object
3337
- def update!(**args)
3338
- @name = args[:name] if args.key?(:name)
3339
- end
3340
- end
3341
-
3342
3089
  # User specified settings that are attached to the Security Command Center
3343
3090
  # organization.
3344
3091
  class OrganizationSettings
@@ -3376,46 +3123,6 @@ module Google
3376
3123
  end
3377
3124
  end
3378
3125
 
3379
- # Represents one point that an attacker passes through in this exposure path.
3380
- class PathNode
3381
- include Google::Apis::Core::Hashable
3382
-
3383
- # The findings associated with this node in the exposure path.
3384
- # Corresponds to the JSON property `associatedFindings`
3385
- # @return [Array<Google::Apis::SecuritycenterV1beta1::AssociatedFinding>]
3386
- attr_accessor :associated_findings
3387
-
3388
- # Human readable name of this resource.
3389
- # Corresponds to the JSON property `displayName`
3390
- # @return [String]
3391
- attr_accessor :display_name
3392
-
3393
- # The name of the resource at this point in the exposure path. The format of the
3394
- # name is: https://cloud.google.com/apis/design/resource_names#
3395
- # full_resource_name
3396
- # Corresponds to the JSON property `resource`
3397
- # @return [String]
3398
- attr_accessor :resource
3399
-
3400
- # The resource type of this resource. See: https://cloud.google.com/asset-
3401
- # inventory/docs/supported-asset-types
3402
- # Corresponds to the JSON property `resourceType`
3403
- # @return [String]
3404
- attr_accessor :resource_type
3405
-
3406
- def initialize(**args)
3407
- update!(**args)
3408
- end
3409
-
3410
- # Update properties of this object
3411
- def update!(**args)
3412
- @associated_findings = args[:associated_findings] if args.key?(:associated_findings)
3413
- @display_name = args[:display_name] if args.key?(:display_name)
3414
- @resource = args[:resource] if args.key?(:resource)
3415
- @resource_type = args[:resource_type] if args.key?(:resource_type)
3416
- end
3417
- end
3418
-
3419
3126
  # Kubernetes Pod.
3420
3127
  class Pod
3421
3128
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.49.0"
19
+ GEM_VERSION = "0.50.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 = "20230321"
25
+ REVISION = "20230329"
26
26
  end
27
27
  end
28
28
  end
@@ -46,12 +46,6 @@ module Google
46
46
  include Google::Apis::Core::JsonObjectSupport
47
47
  end
48
48
 
49
- class AssociatedFinding
50
- class Representation < Google::Apis::Core::JsonRepresentation; end
51
-
52
- include Google::Apis::Core::JsonObjectSupport
53
- end
54
-
55
49
  class AuditConfig
56
50
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
51
 
@@ -142,12 +136,6 @@ module Google
142
136
  include Google::Apis::Core::JsonObjectSupport
143
137
  end
144
138
 
145
- class Edge
146
- class Representation < Google::Apis::Core::JsonRepresentation; end
147
-
148
- include Google::Apis::Core::JsonObjectSupport
149
- end
150
-
151
139
  class Empty
152
140
  class Representation < Google::Apis::Core::JsonRepresentation; end
153
141
 
@@ -232,18 +220,6 @@ module Google
232
220
  include Google::Apis::Core::JsonObjectSupport
233
221
  end
234
222
 
235
- class GoogleCloudSecuritycenterV1ExposedResource
236
- class Representation < Google::Apis::Core::JsonRepresentation; end
237
-
238
- include Google::Apis::Core::JsonObjectSupport
239
- end
240
-
241
- class GoogleCloudSecuritycenterV1ExposurePath
242
- class Representation < Google::Apis::Core::JsonRepresentation; end
243
-
244
- include Google::Apis::Core::JsonObjectSupport
245
- end
246
-
247
223
  class GoogleCloudSecuritycenterV1ExternalSystem
248
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
225
 
@@ -268,12 +244,6 @@ module Google
268
244
  include Google::Apis::Core::JsonObjectSupport
269
245
  end
270
246
 
271
- class GoogleCloudSecuritycenterV1ResourceValueConfig
272
- class Representation < Google::Apis::Core::JsonRepresentation; end
273
-
274
- include Google::Apis::Core::JsonObjectSupport
275
- end
276
-
277
247
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
278
248
  class Representation < Google::Apis::Core::JsonRepresentation; end
279
249
 
@@ -454,24 +424,12 @@ module Google
454
424
  include Google::Apis::Core::JsonObjectSupport
455
425
  end
456
426
 
457
- class OrgPolicyConstraint
458
- class Representation < Google::Apis::Core::JsonRepresentation; end
459
-
460
- include Google::Apis::Core::JsonObjectSupport
461
- end
462
-
463
427
  class OrganizationSettings
464
428
  class Representation < Google::Apis::Core::JsonRepresentation; end
465
429
 
466
430
  include Google::Apis::Core::JsonObjectSupport
467
431
  end
468
432
 
469
- class PathNode
470
- class Representation < Google::Apis::Core::JsonRepresentation; end
471
-
472
- include Google::Apis::Core::JsonObjectSupport
473
- end
474
-
475
433
  class Pod
476
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
477
435
 
@@ -639,15 +597,6 @@ module Google
639
597
  end
640
598
  end
641
599
 
642
- class AssociatedFinding
643
- # @private
644
- class Representation < Google::Apis::Core::JsonRepresentation
645
- property :canonical_finding_name, as: 'canonicalFindingName'
646
- property :finding_category, as: 'findingCategory'
647
- property :name, as: 'name'
648
- end
649
- end
650
-
651
600
  class AuditConfig
652
601
  # @private
653
602
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -790,14 +739,6 @@ module Google
790
739
  end
791
740
  end
792
741
 
793
- class Edge
794
- # @private
795
- class Representation < Google::Apis::Core::JsonRepresentation
796
- property :destination, as: 'destination'
797
- property :source, as: 'source'
798
- end
799
- end
800
-
801
742
  class Empty
802
743
  # @private
803
744
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -900,8 +841,6 @@ module Google
900
841
  property :mute_update_time, as: 'muteUpdateTime'
901
842
  property :name, as: 'name'
902
843
  property :next_steps, as: 'nextSteps'
903
- collection :org_policy_constraints, as: 'orgPolicyConstraints', class: Google::Apis::SecuritycenterV1beta1::OrgPolicyConstraint, decorator: Google::Apis::SecuritycenterV1beta1::OrgPolicyConstraint::Representation
904
-
905
844
  property :parent, as: 'parent'
906
845
  property :parent_display_name, as: 'parentDisplayName'
907
846
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta1::Process, decorator: Google::Apis::SecuritycenterV1beta1::Process::Representation
@@ -979,31 +918,6 @@ module Google
979
918
  end
980
919
  end
981
920
 
982
- class GoogleCloudSecuritycenterV1ExposedResource
983
- # @private
984
- class Representation < Google::Apis::Core::JsonRepresentation
985
- property :display_name, as: 'displayName'
986
- collection :methods_prop, as: 'methods'
987
- property :name, as: 'name'
988
- property :resource, as: 'resource'
989
- property :resource_type, as: 'resourceType'
990
- property :resource_value, as: 'resourceValue'
991
- end
992
- end
993
-
994
- class GoogleCloudSecuritycenterV1ExposurePath
995
- # @private
996
- class Representation < Google::Apis::Core::JsonRepresentation
997
- collection :edges, as: 'edges', class: Google::Apis::SecuritycenterV1beta1::Edge, decorator: Google::Apis::SecuritycenterV1beta1::Edge::Representation
998
-
999
- property :exposed_resource, as: 'exposedResource', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ExposedResource, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ExposedResource::Representation
1000
-
1001
- property :name, as: 'name'
1002
- collection :path_nodes, as: 'pathNodes', class: Google::Apis::SecuritycenterV1beta1::PathNode, decorator: Google::Apis::SecuritycenterV1beta1::PathNode::Representation
1003
-
1004
- end
1005
- end
1006
-
1007
921
  class GoogleCloudSecuritycenterV1ExternalSystem
1008
922
  # @private
1009
923
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1054,21 +968,6 @@ module Google
1054
968
  end
1055
969
  end
1056
970
 
1057
- class GoogleCloudSecuritycenterV1ResourceValueConfig
1058
- # @private
1059
- class Representation < Google::Apis::Core::JsonRepresentation
1060
- property :create_time, as: 'createTime'
1061
- property :description, as: 'description'
1062
- property :name, as: 'name'
1063
- hash :resource_labels_selector, as: 'resourceLabelsSelector'
1064
- property :resource_type, as: 'resourceType'
1065
- property :resource_value, as: 'resourceValue'
1066
- property :scope, as: 'scope'
1067
- collection :tag_values, as: 'tagValues'
1068
- property :update_time, as: 'updateTime'
1069
- end
1070
- end
1071
-
1072
971
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1073
972
  # @private
1074
973
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1387,13 +1286,6 @@ module Google
1387
1286
  end
1388
1287
  end
1389
1288
 
1390
- class OrgPolicyConstraint
1391
- # @private
1392
- class Representation < Google::Apis::Core::JsonRepresentation
1393
- property :name, as: 'name'
1394
- end
1395
- end
1396
-
1397
1289
  class OrganizationSettings
1398
1290
  # @private
1399
1291
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1404,17 +1296,6 @@ module Google
1404
1296
  end
1405
1297
  end
1406
1298
 
1407
- class PathNode
1408
- # @private
1409
- class Representation < Google::Apis::Core::JsonRepresentation
1410
- collection :associated_findings, as: 'associatedFindings', class: Google::Apis::SecuritycenterV1beta1::AssociatedFinding, decorator: Google::Apis::SecuritycenterV1beta1::AssociatedFinding::Representation
1411
-
1412
- property :display_name, as: 'displayName'
1413
- property :resource, as: 'resource'
1414
- property :resource_type, as: 'resourceType'
1415
- end
1416
- end
1417
-
1418
1299
  class Pod
1419
1300
  # @private
1420
1301
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.49.0
4
+ version: 0.50.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-03-26 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.49.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.50.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
63
63
  post_install_message:
64
64
  rdoc_options: []