google-apis-securitycenter_v1beta2 0.45.0 → 0.46.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: 3078ca2b6814ee03bd41f3a6b792c4b4054fd99da4ef97fd5d240bcd9e101a50
4
- data.tar.gz: f02a3596312509be2f02f67b039754ea4df08a8279994ab14930e0fd05358202
3
+ metadata.gz: 9f26c81e486fad0335fb2b21bfa62e61ff343e9c6d40984b96169a7cbf4aba69
4
+ data.tar.gz: cee1497221b3361959d56611779f9a0d7d656264a8e20d8d6dbf7371a4851b83
5
5
  SHA512:
6
- metadata.gz: d81a4f9a9fc8e17a20af0764644afb1d0519ec75f161e03470afa090d90f88949d0d94fa35fdf210411efacd24d4be04b2542d49e6f2dc96f9542b56ffd06984
7
- data.tar.gz: 872e09fec0d7c5d73fcc620caf79b4f7f41fd8d6a66aa90305ad10285ded871096e1a495c0a554285f4fded0e3345ddb0a94aed3cb842e95aac14ef191b6e79e
6
+ metadata.gz: c3ff87cdddd5fa0ad6f5e23aa4d138ab2c4bc9b4f6925e1f4135beba78a7f6699cdadf847de0f97e8e5aee7f907f229f8bc06460fdfaa065a82a6a0157d0e44b
7
+ data.tar.gz: 4126401030ecb678a44632080aa37431f707d5dd21261df4c56770273a5b52ec92d72052524ace460c2eca1ddbc07b0e8153cdc9c9c1f25beb9ec81e840af2a3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.46.0 (2023-04-02)
4
+
5
+ * Regenerated from discovery document revision 20230329
6
+
3
7
  ### v0.45.0 (2023-03-26)
4
8
 
5
9
  * Regenerated from discovery document revision 20230321
@@ -178,38 +178,6 @@ module Google
178
178
  end
179
179
  end
180
180
 
181
- # A finding that is associated with this node in the exposure path.
182
- class AssociatedFinding
183
- include Google::Apis::Core::Hashable
184
-
185
- # Canonical name of the associated findings. Example: organizations/123/sources/
186
- # 456/findings/789
187
- # Corresponds to the JSON property `canonicalFindingName`
188
- # @return [String]
189
- attr_accessor :canonical_finding_name
190
-
191
- # The additional taxonomy group within findings from a given source.
192
- # Corresponds to the JSON property `findingCategory`
193
- # @return [String]
194
- attr_accessor :finding_category
195
-
196
- # Full resource name of the finding.
197
- # Corresponds to the JSON property `name`
198
- # @return [String]
199
- attr_accessor :name
200
-
201
- def initialize(**args)
202
- update!(**args)
203
- end
204
-
205
- # Update properties of this object
206
- def update!(**args)
207
- @canonical_finding_name = args[:canonical_finding_name] if args.key?(:canonical_finding_name)
208
- @finding_category = args[:finding_category] if args.key?(:finding_category)
209
- @name = args[:name] if args.key?(:name)
210
- end
211
- end
212
-
213
181
  # The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
214
182
  # with the finding.
215
183
  class CloudDlpDataProfile
@@ -729,32 +697,6 @@ module Google
729
697
  end
730
698
  end
731
699
 
732
- # Represents a connection between a source node and a destination node in this
733
- # exposure path.
734
- class Edge
735
- include Google::Apis::Core::Hashable
736
-
737
- # This is the resource name of the destination node.
738
- # Corresponds to the JSON property `destination`
739
- # @return [String]
740
- attr_accessor :destination
741
-
742
- # This is the resource name of the source node.
743
- # Corresponds to the JSON property `source`
744
- # @return [String]
745
- attr_accessor :source
746
-
747
- def initialize(**args)
748
- update!(**args)
749
- end
750
-
751
- # Update properties of this object
752
- def update!(**args)
753
- @destination = args[:destination] if args.key?(:destination)
754
- @source = args[:source] if args.key?(:source)
755
- end
756
- end
757
-
758
700
  # EnvironmentVariable is a name-value pair to store environment variables for
759
701
  # Process.
760
702
  class EnvironmentVariable
@@ -1131,12 +1073,6 @@ module Google
1131
1073
  # @return [String]
1132
1074
  attr_accessor :next_steps
1133
1075
 
1134
- # Contains information about the org policy constraints associated with the
1135
- # finding.
1136
- # Corresponds to the JSON property `orgPolicyConstraints`
1137
- # @return [Array<Google::Apis::SecuritycenterV1beta2::OrgPolicyConstraint>]
1138
- attr_accessor :org_policy_constraints
1139
-
1140
1076
  # The relative resource name of the source the finding belongs to. See: https://
1141
1077
  # cloud.google.com/apis/design/resource_names#relative_resource_name This field
1142
1078
  # is immutable after creation time. For example: "organizations/`organization_id`
@@ -1232,7 +1168,6 @@ module Google
1232
1168
  @mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
1233
1169
  @name = args[:name] if args.key?(:name)
1234
1170
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1235
- @org_policy_constraints = args[:org_policy_constraints] if args.key?(:org_policy_constraints)
1236
1171
  @parent = args[:parent] if args.key?(:parent)
1237
1172
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1238
1173
  @processes = args[:processes] if args.key?(:processes)
@@ -1424,96 +1359,6 @@ module Google
1424
1359
  end
1425
1360
  end
1426
1361
 
1427
- # A resource that is exposed as a result of a finding.
1428
- class GoogleCloudSecuritycenterV1ExposedResource
1429
- include Google::Apis::Core::Hashable
1430
-
1431
- # Human readable name of the resource that is exposed.
1432
- # Corresponds to the JSON property `displayName`
1433
- # @return [String]
1434
- attr_accessor :display_name
1435
-
1436
- # The ways in which this resource is exposed. Examples: Read, Write
1437
- # Corresponds to the JSON property `methods`
1438
- # @return [Array<String>]
1439
- attr_accessor :methods_prop
1440
-
1441
- # Exposed Resource Name e.g.: `organizations/123/attackExposureResults/456/
1442
- # exposedResources/789`
1443
- # Corresponds to the JSON property `name`
1444
- # @return [String]
1445
- attr_accessor :name
1446
-
1447
- # The name of the resource that is exposed. See: https://cloud.google.com/apis/
1448
- # design/resource_names#full_resource_name
1449
- # Corresponds to the JSON property `resource`
1450
- # @return [String]
1451
- attr_accessor :resource
1452
-
1453
- # The resource type of the exposed resource. See: https://cloud.google.com/asset-
1454
- # inventory/docs/supported-asset-types
1455
- # Corresponds to the JSON property `resourceType`
1456
- # @return [String]
1457
- attr_accessor :resource_type
1458
-
1459
- # How valuable this resource is.
1460
- # Corresponds to the JSON property `resourceValue`
1461
- # @return [String]
1462
- attr_accessor :resource_value
1463
-
1464
- def initialize(**args)
1465
- update!(**args)
1466
- end
1467
-
1468
- # Update properties of this object
1469
- def update!(**args)
1470
- @display_name = args[:display_name] if args.key?(:display_name)
1471
- @methods_prop = args[:methods_prop] if args.key?(:methods_prop)
1472
- @name = args[:name] if args.key?(:name)
1473
- @resource = args[:resource] if args.key?(:resource)
1474
- @resource_type = args[:resource_type] if args.key?(:resource_type)
1475
- @resource_value = args[:resource_value] if args.key?(:resource_value)
1476
- end
1477
- end
1478
-
1479
- # A path that an attacker could take to reach an exposed resource.
1480
- class GoogleCloudSecuritycenterV1ExposurePath
1481
- include Google::Apis::Core::Hashable
1482
-
1483
- # A list of the edges between nodes in this exposure path.
1484
- # Corresponds to the JSON property `edges`
1485
- # @return [Array<Google::Apis::SecuritycenterV1beta2::Edge>]
1486
- attr_accessor :edges
1487
-
1488
- # A resource that is exposed as a result of a finding.
1489
- # Corresponds to the JSON property `exposedResource`
1490
- # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ExposedResource]
1491
- attr_accessor :exposed_resource
1492
-
1493
- # Exposure Path Name e.g.: `organizations/123/attackExposureResults/456/
1494
- # exposurePaths/789`
1495
- # Corresponds to the JSON property `name`
1496
- # @return [String]
1497
- attr_accessor :name
1498
-
1499
- # A list of nodes that exist in this exposure path.
1500
- # Corresponds to the JSON property `pathNodes`
1501
- # @return [Array<Google::Apis::SecuritycenterV1beta2::PathNode>]
1502
- attr_accessor :path_nodes
1503
-
1504
- def initialize(**args)
1505
- update!(**args)
1506
- end
1507
-
1508
- # Update properties of this object
1509
- def update!(**args)
1510
- @edges = args[:edges] if args.key?(:edges)
1511
- @exposed_resource = args[:exposed_resource] if args.key?(:exposed_resource)
1512
- @name = args[:name] if args.key?(:name)
1513
- @path_nodes = args[:path_nodes] if args.key?(:path_nodes)
1514
- end
1515
- end
1516
-
1517
1362
  # Representation of third party SIEM/SOAR fields within SCC.
1518
1363
  class GoogleCloudSecuritycenterV1ExternalSystem
1519
1364
  include Google::Apis::Core::Hashable
@@ -1733,84 +1578,6 @@ module Google
1733
1578
  end
1734
1579
  end
1735
1580
 
1736
- # A resource value config is a mapping configuration of user's tag values to
1737
- # resource values. Used by the attack path simulation.
1738
- class GoogleCloudSecuritycenterV1ResourceValueConfig
1739
- include Google::Apis::Core::Hashable
1740
-
1741
- # Output only. Timestamp this resource value config was created.
1742
- # Corresponds to the JSON property `createTime`
1743
- # @return [String]
1744
- attr_accessor :create_time
1745
-
1746
- # Description of the resource value config.
1747
- # Corresponds to the JSON property `description`
1748
- # @return [String]
1749
- attr_accessor :description
1750
-
1751
- # Name for the resource value config
1752
- # Corresponds to the JSON property `name`
1753
- # @return [String]
1754
- attr_accessor :name
1755
-
1756
- # List of resource labels to search for, evaluated with AND. E.g. "
1757
- # resource_labels_selector": `"key": "value", "env": "prod"` will match
1758
- # resources with labels "key": "value" AND "env": "prod" https://cloud.google.
1759
- # com/resource-manager/docs/creating-managing-labels
1760
- # Corresponds to the JSON property `resourceLabelsSelector`
1761
- # @return [Hash<String,String>]
1762
- attr_accessor :resource_labels_selector
1763
-
1764
- # Apply resource_value only to resources that match resource_type. resource_type
1765
- # will be checked with "AND" of other resources. E.g. "storage.googleapis.com/
1766
- # Bucket" with resource_value "HIGH" will apply "HIGH" value only to "storage.
1767
- # googleapis.com/Bucket" resources.
1768
- # Corresponds to the JSON property `resourceType`
1769
- # @return [String]
1770
- attr_accessor :resource_type
1771
-
1772
- # Required. Resource value level this expression represents
1773
- # Corresponds to the JSON property `resourceValue`
1774
- # @return [String]
1775
- attr_accessor :resource_value
1776
-
1777
- # Project or folder to scope this config to. For example, "project/456" would
1778
- # apply this config only to resources in "project/456" scope will be checked
1779
- # with "AND" of other resources.
1780
- # Corresponds to the JSON property `scope`
1781
- # @return [String]
1782
- attr_accessor :scope
1783
-
1784
- # Required. Tag values combined with AND to check against. Values in the form "
1785
- # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1786
- # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1787
- # Corresponds to the JSON property `tagValues`
1788
- # @return [Array<String>]
1789
- attr_accessor :tag_values
1790
-
1791
- # Output only. Timestamp this resource value config was last updated.
1792
- # Corresponds to the JSON property `updateTime`
1793
- # @return [String]
1794
- attr_accessor :update_time
1795
-
1796
- def initialize(**args)
1797
- update!(**args)
1798
- end
1799
-
1800
- # Update properties of this object
1801
- def update!(**args)
1802
- @create_time = args[:create_time] if args.key?(:create_time)
1803
- @description = args[:description] if args.key?(:description)
1804
- @name = args[:name] if args.key?(:name)
1805
- @resource_labels_selector = args[:resource_labels_selector] if args.key?(:resource_labels_selector)
1806
- @resource_type = args[:resource_type] if args.key?(:resource_type)
1807
- @resource_value = args[:resource_value] if args.key?(:resource_value)
1808
- @scope = args[:scope] if args.key?(:scope)
1809
- @tag_values = args[:tag_values] if args.key?(:tag_values)
1810
- @update_time = args[:update_time] if args.key?(:update_time)
1811
- end
1812
- end
1813
-
1814
1581
  # Response of asset discovery run
1815
1582
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1816
1583
  include Google::Apis::Core::Hashable
@@ -2545,66 +2312,6 @@ module Google
2545
2312
  end
2546
2313
  end
2547
2314
 
2548
- # Encapsulates data about a constraint associated with an organization policy.
2549
- class OrgPolicyConstraint
2550
- include Google::Apis::Core::Hashable
2551
-
2552
- # The resource name of the constraint. Example: "organizations/`organization_id`/
2553
- # constraints/`constraint_name`"
2554
- # Corresponds to the JSON property `name`
2555
- # @return [String]
2556
- attr_accessor :name
2557
-
2558
- def initialize(**args)
2559
- update!(**args)
2560
- end
2561
-
2562
- # Update properties of this object
2563
- def update!(**args)
2564
- @name = args[:name] if args.key?(:name)
2565
- end
2566
- end
2567
-
2568
- # Represents one point that an attacker passes through in this exposure path.
2569
- class PathNode
2570
- include Google::Apis::Core::Hashable
2571
-
2572
- # The findings associated with this node in the exposure path.
2573
- # Corresponds to the JSON property `associatedFindings`
2574
- # @return [Array<Google::Apis::SecuritycenterV1beta2::AssociatedFinding>]
2575
- attr_accessor :associated_findings
2576
-
2577
- # Human readable name of this resource.
2578
- # Corresponds to the JSON property `displayName`
2579
- # @return [String]
2580
- attr_accessor :display_name
2581
-
2582
- # The name of the resource at this point in the exposure path. The format of the
2583
- # name is: https://cloud.google.com/apis/design/resource_names#
2584
- # full_resource_name
2585
- # Corresponds to the JSON property `resource`
2586
- # @return [String]
2587
- attr_accessor :resource
2588
-
2589
- # The resource type of this resource. See: https://cloud.google.com/asset-
2590
- # inventory/docs/supported-asset-types
2591
- # Corresponds to the JSON property `resourceType`
2592
- # @return [String]
2593
- attr_accessor :resource_type
2594
-
2595
- def initialize(**args)
2596
- update!(**args)
2597
- end
2598
-
2599
- # Update properties of this object
2600
- def update!(**args)
2601
- @associated_findings = args[:associated_findings] if args.key?(:associated_findings)
2602
- @display_name = args[:display_name] if args.key?(:display_name)
2603
- @resource = args[:resource] if args.key?(:resource)
2604
- @resource_type = args[:resource_type] if args.key?(:resource_type)
2605
- end
2606
- end
2607
-
2608
2315
  # Kubernetes Pod.
2609
2316
  class Pod
2610
2317
  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.45.0"
19
+ GEM_VERSION = "0.46.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
@@ -34,12 +34,6 @@ module Google
34
34
  include Google::Apis::Core::JsonObjectSupport
35
35
  end
36
36
 
37
- class AssociatedFinding
38
- class Representation < Google::Apis::Core::JsonRepresentation; end
39
-
40
- include Google::Apis::Core::JsonObjectSupport
41
- end
42
-
43
37
  class CloudDlpDataProfile
44
38
  class Representation < Google::Apis::Core::JsonRepresentation; end
45
39
 
@@ -124,12 +118,6 @@ module Google
124
118
  include Google::Apis::Core::JsonObjectSupport
125
119
  end
126
120
 
127
- class Edge
128
- class Representation < Google::Apis::Core::JsonRepresentation; end
129
-
130
- include Google::Apis::Core::JsonObjectSupport
131
- end
132
-
133
121
  class EnvironmentVariable
134
122
  class Representation < Google::Apis::Core::JsonRepresentation; end
135
123
 
@@ -196,18 +184,6 @@ module Google
196
184
  include Google::Apis::Core::JsonObjectSupport
197
185
  end
198
186
 
199
- class GoogleCloudSecuritycenterV1ExposedResource
200
- class Representation < Google::Apis::Core::JsonRepresentation; end
201
-
202
- include Google::Apis::Core::JsonObjectSupport
203
- end
204
-
205
- class GoogleCloudSecuritycenterV1ExposurePath
206
- class Representation < Google::Apis::Core::JsonRepresentation; end
207
-
208
- include Google::Apis::Core::JsonObjectSupport
209
- end
210
-
211
187
  class GoogleCloudSecuritycenterV1ExternalSystem
212
188
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
189
 
@@ -232,12 +208,6 @@ module Google
232
208
  include Google::Apis::Core::JsonObjectSupport
233
209
  end
234
210
 
235
- class GoogleCloudSecuritycenterV1ResourceValueConfig
236
- class Representation < Google::Apis::Core::JsonRepresentation; end
237
-
238
- include Google::Apis::Core::JsonObjectSupport
239
- end
240
-
241
211
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
242
212
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
213
 
@@ -346,18 +316,6 @@ module Google
346
316
  include Google::Apis::Core::JsonObjectSupport
347
317
  end
348
318
 
349
- class OrgPolicyConstraint
350
- class Representation < Google::Apis::Core::JsonRepresentation; end
351
-
352
- include Google::Apis::Core::JsonObjectSupport
353
- end
354
-
355
- class PathNode
356
- class Representation < Google::Apis::Core::JsonRepresentation; end
357
-
358
- include Google::Apis::Core::JsonObjectSupport
359
- end
360
-
361
319
  class Pod
362
320
  class Representation < Google::Apis::Core::JsonRepresentation; end
363
321
 
@@ -485,15 +443,6 @@ module Google
485
443
  end
486
444
  end
487
445
 
488
- class AssociatedFinding
489
- # @private
490
- class Representation < Google::Apis::Core::JsonRepresentation
491
- property :canonical_finding_name, as: 'canonicalFindingName'
492
- property :finding_category, as: 'findingCategory'
493
- property :name, as: 'name'
494
- end
495
- end
496
-
497
446
  class CloudDlpDataProfile
498
447
  # @private
499
448
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -632,14 +581,6 @@ module Google
632
581
  end
633
582
  end
634
583
 
635
- class Edge
636
- # @private
637
- class Representation < Google::Apis::Core::JsonRepresentation
638
- property :destination, as: 'destination'
639
- property :source, as: 'source'
640
- end
641
- end
642
-
643
584
  class EnvironmentVariable
644
585
  # @private
645
586
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -737,8 +678,6 @@ module Google
737
678
  property :mute_update_time, as: 'muteUpdateTime'
738
679
  property :name, as: 'name'
739
680
  property :next_steps, as: 'nextSteps'
740
- collection :org_policy_constraints, as: 'orgPolicyConstraints', class: Google::Apis::SecuritycenterV1beta2::OrgPolicyConstraint, decorator: Google::Apis::SecuritycenterV1beta2::OrgPolicyConstraint::Representation
741
-
742
681
  property :parent, as: 'parent'
743
682
  property :parent_display_name, as: 'parentDisplayName'
744
683
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta2::Process, decorator: Google::Apis::SecuritycenterV1beta2::Process::Representation
@@ -801,31 +740,6 @@ module Google
801
740
  end
802
741
  end
803
742
 
804
- class GoogleCloudSecuritycenterV1ExposedResource
805
- # @private
806
- class Representation < Google::Apis::Core::JsonRepresentation
807
- property :display_name, as: 'displayName'
808
- collection :methods_prop, as: 'methods'
809
- property :name, as: 'name'
810
- property :resource, as: 'resource'
811
- property :resource_type, as: 'resourceType'
812
- property :resource_value, as: 'resourceValue'
813
- end
814
- end
815
-
816
- class GoogleCloudSecuritycenterV1ExposurePath
817
- # @private
818
- class Representation < Google::Apis::Core::JsonRepresentation
819
- collection :edges, as: 'edges', class: Google::Apis::SecuritycenterV1beta2::Edge, decorator: Google::Apis::SecuritycenterV1beta2::Edge::Representation
820
-
821
- property :exposed_resource, as: 'exposedResource', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ExposedResource, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV1ExposedResource::Representation
822
-
823
- property :name, as: 'name'
824
- collection :path_nodes, as: 'pathNodes', class: Google::Apis::SecuritycenterV1beta2::PathNode, decorator: Google::Apis::SecuritycenterV1beta2::PathNode::Representation
825
-
826
- end
827
- end
828
-
829
743
  class GoogleCloudSecuritycenterV1ExternalSystem
830
744
  # @private
831
745
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -876,21 +790,6 @@ module Google
876
790
  end
877
791
  end
878
792
 
879
- class GoogleCloudSecuritycenterV1ResourceValueConfig
880
- # @private
881
- class Representation < Google::Apis::Core::JsonRepresentation
882
- property :create_time, as: 'createTime'
883
- property :description, as: 'description'
884
- property :name, as: 'name'
885
- hash :resource_labels_selector, as: 'resourceLabelsSelector'
886
- property :resource_type, as: 'resourceType'
887
- property :resource_value, as: 'resourceValue'
888
- property :scope, as: 'scope'
889
- collection :tag_values, as: 'tagValues'
890
- property :update_time, as: 'updateTime'
891
- end
892
- end
893
-
894
793
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
895
794
  # @private
896
795
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1080,24 +979,6 @@ module Google
1080
979
  end
1081
980
  end
1082
981
 
1083
- class OrgPolicyConstraint
1084
- # @private
1085
- class Representation < Google::Apis::Core::JsonRepresentation
1086
- property :name, as: 'name'
1087
- end
1088
- end
1089
-
1090
- class PathNode
1091
- # @private
1092
- class Representation < Google::Apis::Core::JsonRepresentation
1093
- collection :associated_findings, as: 'associatedFindings', class: Google::Apis::SecuritycenterV1beta2::AssociatedFinding, decorator: Google::Apis::SecuritycenterV1beta2::AssociatedFinding::Representation
1094
-
1095
- property :display_name, as: 'displayName'
1096
- property :resource, as: 'resource'
1097
- property :resource_type, as: 'resourceType'
1098
- end
1099
- end
1100
-
1101
982
  class Pod
1102
983
  # @private
1103
984
  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.45.0
4
+ version: 0.46.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_v1beta2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.45.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.46.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: []