google-apis-securitycenter_v1beta1 0.50.0 → 0.51.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e5f99c2fb6d42b8e2f1517d53abfa7b08a3b1e370f81704dd0b5cf00da13b0d6
4
- data.tar.gz: 01f7d6b22a99d3fa1015b1edffcad8bbceae210e7ff1261c035663a5d3255919
3
+ metadata.gz: 8bac438667e70c3bd0661af12ce737a3916cd35051eb8c00c8dc8cedc5363114
4
+ data.tar.gz: 5dc521fb8f3b64f1c2c33fb45e5018ccb7d356f39754efbfcc2d705cfd4461c0
5
5
  SHA512:
6
- metadata.gz: 65c175e8781de4a5a35fe59e8eafbd528d70e8dff3f45981be51e971106867393d2ba1256a0e9e0e49e780f02702b0a6a58a43435ea0a4774a95d592e4c700ce
7
- data.tar.gz: 92cf6a3ecdc740bb739baf44edccd01e1acf7bde43ba9053845ed8ac24edaedca42592334bc164669ce4d82fdad7ee01878f9e14c0be08e2d1d86ad14bd7eb53
6
+ metadata.gz: 6a34fe6540a79e046eccb8d74a159442d71fb87652fb7caa86b54e00bd929c47401271a44ef626b90e3218cbe3102779d43f78a93c4e96e4a7a0988aa91a0b81
7
+ data.tar.gz: 95539d492a4e179580c91e386f2cc5a2a95dad9d676c7ecb56ece9e5ba94004fb12a1f2b114b5d628ceccac2f11635a473bfbcb11bf8e133ffb41f5ec8abeb20
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.51.0 (2023-04-16)
4
+
5
+ * Regenerated from discovery document revision 20230406
6
+
3
7
  ### v0.50.0 (2023-04-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230329
@@ -1571,6 +1571,156 @@ module Google
1571
1571
  end
1572
1572
  end
1573
1573
 
1574
+ # Defines the properties in a custom module configuration for Security Health
1575
+ # Analytics. Use the custom module configuration to create custom detectors that
1576
+ # generate custom findings for resources that you specify.
1577
+ class GoogleCloudSecuritycenterV1CustomConfig
1578
+ include Google::Apis::Core::Hashable
1579
+
1580
+ # A set of optional name-value pairs that define custom source properties to
1581
+ # return with each finding that is generated by the custom module. The custom
1582
+ # source properties that are defined here are included in the finding JSON under
1583
+ # `sourceProperties`.
1584
+ # Corresponds to the JSON property `customOutput`
1585
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomOutputSpec]
1586
+ attr_accessor :custom_output
1587
+
1588
+ # Text that describes the vulnerability or misconfiguration that the custom
1589
+ # module detects. This explanation is returned with each finding instance to
1590
+ # help investigators understand the detected issue. The text must be enclosed in
1591
+ # quotation marks.
1592
+ # Corresponds to the JSON property `description`
1593
+ # @return [String]
1594
+ attr_accessor :description
1595
+
1596
+ # Represents a textual expression in the Common Expression Language (CEL) syntax.
1597
+ # CEL is a C-like expression language. The syntax and semantics of CEL are
1598
+ # documented at https://github.com/google/cel-spec. Example (Comparison): title:
1599
+ # "Summary size limit" description: "Determines if a summary is less than 100
1600
+ # chars" expression: "document.summary.size() < 100" Example (Equality): title: "
1601
+ # Requestor is owner" description: "Determines if requestor is the document
1602
+ # owner" expression: "document.owner == request.auth.claims.email" Example (
1603
+ # Logic): title: "Public documents" description: "Determine whether the document
1604
+ # should be publicly visible" expression: "document.type != 'private' &&
1605
+ # document.type != 'internal'" Example (Data Manipulation): title: "Notification
1606
+ # string" description: "Create a notification string with a timestamp."
1607
+ # expression: "'New message received at ' + string(document.create_time)" The
1608
+ # exact variables and functions that may be referenced within an expression are
1609
+ # determined by the service that evaluates it. See the service documentation for
1610
+ # additional information.
1611
+ # Corresponds to the JSON property `predicate`
1612
+ # @return [Google::Apis::SecuritycenterV1beta1::Expr]
1613
+ attr_accessor :predicate
1614
+
1615
+ # An explanation of the recommended steps that security teams can take to
1616
+ # resolve the detected issue. This explanation is returned with each finding
1617
+ # generated by this module in the `nextSteps` property of the finding JSON.
1618
+ # Corresponds to the JSON property `recommendation`
1619
+ # @return [String]
1620
+ attr_accessor :recommendation
1621
+
1622
+ # Resource for selecting resource type.
1623
+ # Corresponds to the JSON property `resourceSelector`
1624
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceSelector]
1625
+ attr_accessor :resource_selector
1626
+
1627
+ # The severity to assign to findings generated by the module.
1628
+ # Corresponds to the JSON property `severity`
1629
+ # @return [String]
1630
+ attr_accessor :severity
1631
+
1632
+ def initialize(**args)
1633
+ update!(**args)
1634
+ end
1635
+
1636
+ # Update properties of this object
1637
+ def update!(**args)
1638
+ @custom_output = args[:custom_output] if args.key?(:custom_output)
1639
+ @description = args[:description] if args.key?(:description)
1640
+ @predicate = args[:predicate] if args.key?(:predicate)
1641
+ @recommendation = args[:recommendation] if args.key?(:recommendation)
1642
+ @resource_selector = args[:resource_selector] if args.key?(:resource_selector)
1643
+ @severity = args[:severity] if args.key?(:severity)
1644
+ end
1645
+ end
1646
+
1647
+ # A set of optional name-value pairs that define custom source properties to
1648
+ # return with each finding that is generated by the custom module. The custom
1649
+ # source properties that are defined here are included in the finding JSON under
1650
+ # `sourceProperties`.
1651
+ class GoogleCloudSecuritycenterV1CustomOutputSpec
1652
+ include Google::Apis::Core::Hashable
1653
+
1654
+ # A list of custom output properties to add to the finding.
1655
+ # Corresponds to the JSON property `properties`
1656
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1Property>]
1657
+ attr_accessor :properties
1658
+
1659
+ def initialize(**args)
1660
+ update!(**args)
1661
+ end
1662
+
1663
+ # Update properties of this object
1664
+ def update!(**args)
1665
+ @properties = args[:properties] if args.key?(:properties)
1666
+ end
1667
+ end
1668
+
1669
+ # An EffectiveSecurityHealthAnalyticsCustomModule is the representation of a
1670
+ # Security Health Analytics custom module at a specified level of the resource
1671
+ # hierarchy: organization, folder, or project. If a custom module is inherited
1672
+ # from a parent organization or folder, the value of the `enablementState`
1673
+ # property in EffectiveSecurityHealthAnalyticsCustomModule is set to the value
1674
+ # that is effective in the parent, instead of `INHERITED`. For example, if the
1675
+ # module is enabled in a parent organization or folder, the effective
1676
+ # enablement_state for the module in all child folders or projects is also `
1677
+ # enabled`. EffectiveSecurityHealthAnalyticsCustomModule is read-only.
1678
+ class GoogleCloudSecuritycenterV1EffectiveSecurityHealthAnalyticsCustomModule
1679
+ include Google::Apis::Core::Hashable
1680
+
1681
+ # Defines the properties in a custom module configuration for Security Health
1682
+ # Analytics. Use the custom module configuration to create custom detectors that
1683
+ # generate custom findings for resources that you specify.
1684
+ # Corresponds to the JSON property `customConfig`
1685
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomConfig]
1686
+ attr_accessor :custom_config
1687
+
1688
+ # Output only. The display name for the custom module. The name must be between
1689
+ # 1 and 128 characters, start with a lowercase letter, and contain alphanumeric
1690
+ # characters or underscores only.
1691
+ # Corresponds to the JSON property `displayName`
1692
+ # @return [String]
1693
+ attr_accessor :display_name
1694
+
1695
+ # Output only. The effective state of enablement for the module at the given
1696
+ # level of the hierarchy.
1697
+ # Corresponds to the JSON property `enablementState`
1698
+ # @return [String]
1699
+ attr_accessor :enablement_state
1700
+
1701
+ # Output only. The resource name of the custom module. Its format is "
1702
+ # organizations/`organization`/securityHealthAnalyticsSettings/
1703
+ # effectiveCustomModules/`customModule`", or "folders/`folder`/
1704
+ # securityHealthAnalyticsSettings/effectiveCustomModules/`customModule`", or "
1705
+ # projects/`project`/securityHealthAnalyticsSettings/effectiveCustomModules/`
1706
+ # customModule`"
1707
+ # Corresponds to the JSON property `name`
1708
+ # @return [String]
1709
+ attr_accessor :name
1710
+
1711
+ def initialize(**args)
1712
+ update!(**args)
1713
+ end
1714
+
1715
+ # Update properties of this object
1716
+ def update!(**args)
1717
+ @custom_config = args[:custom_config] if args.key?(:custom_config)
1718
+ @display_name = args[:display_name] if args.key?(:display_name)
1719
+ @enablement_state = args[:enablement_state] if args.key?(:enablement_state)
1720
+ @name = args[:name] if args.key?(:name)
1721
+ end
1722
+ end
1723
+
1574
1724
  # Representation of third party SIEM/SOAR fields within SCC.
1575
1725
  class GoogleCloudSecuritycenterV1ExternalSystem
1576
1726
  include Google::Apis::Core::Hashable
@@ -1726,6 +1876,45 @@ module Google
1726
1876
  end
1727
1877
  end
1728
1878
 
1879
+ # An individual name-value pair that defines a custom source property.
1880
+ class GoogleCloudSecuritycenterV1Property
1881
+ include Google::Apis::Core::Hashable
1882
+
1883
+ # Name of the property for the custom output.
1884
+ # Corresponds to the JSON property `name`
1885
+ # @return [String]
1886
+ attr_accessor :name
1887
+
1888
+ # Represents a textual expression in the Common Expression Language (CEL) syntax.
1889
+ # CEL is a C-like expression language. The syntax and semantics of CEL are
1890
+ # documented at https://github.com/google/cel-spec. Example (Comparison): title:
1891
+ # "Summary size limit" description: "Determines if a summary is less than 100
1892
+ # chars" expression: "document.summary.size() < 100" Example (Equality): title: "
1893
+ # Requestor is owner" description: "Determines if requestor is the document
1894
+ # owner" expression: "document.owner == request.auth.claims.email" Example (
1895
+ # Logic): title: "Public documents" description: "Determine whether the document
1896
+ # should be publicly visible" expression: "document.type != 'private' &&
1897
+ # document.type != 'internal'" Example (Data Manipulation): title: "Notification
1898
+ # string" description: "Create a notification string with a timestamp."
1899
+ # expression: "'New message received at ' + string(document.create_time)" The
1900
+ # exact variables and functions that may be referenced within an expression are
1901
+ # determined by the service that evaluates it. See the service documentation for
1902
+ # additional information.
1903
+ # Corresponds to the JSON property `valueExpression`
1904
+ # @return [Google::Apis::SecuritycenterV1beta1::Expr]
1905
+ attr_accessor :value_expression
1906
+
1907
+ def initialize(**args)
1908
+ update!(**args)
1909
+ end
1910
+
1911
+ # Update properties of this object
1912
+ def update!(**args)
1913
+ @name = args[:name] if args.key?(:name)
1914
+ @value_expression = args[:value_expression] if args.key?(:value_expression)
1915
+ end
1916
+ end
1917
+
1729
1918
  # Information related to the Google Cloud resource.
1730
1919
  class GoogleCloudSecuritycenterV1Resource
1731
1920
  include Google::Apis::Core::Hashable
@@ -1790,6 +1979,25 @@ module Google
1790
1979
  end
1791
1980
  end
1792
1981
 
1982
+ # Resource for selecting resource type.
1983
+ class GoogleCloudSecuritycenterV1ResourceSelector
1984
+ include Google::Apis::Core::Hashable
1985
+
1986
+ # The resource types to run the detector on.
1987
+ # Corresponds to the JSON property `resourceTypes`
1988
+ # @return [Array<String>]
1989
+ attr_accessor :resource_types
1990
+
1991
+ def initialize(**args)
1992
+ update!(**args)
1993
+ end
1994
+
1995
+ # Update properties of this object
1996
+ def update!(**args)
1997
+ @resource_types = args[:resource_types] if args.key?(:resource_types)
1998
+ end
1999
+ end
2000
+
1793
2001
  # Response of asset discovery run
1794
2002
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1795
2003
  include Google::Apis::Core::Hashable
@@ -1815,6 +2023,80 @@ module Google
1815
2023
  end
1816
2024
  end
1817
2025
 
2026
+ # Represents an instance of a Security Health Analytics custom module, including
2027
+ # its full module name, display name, enablement state, and last updated time.
2028
+ # You can create a custom module at the organization, folder, or project level.
2029
+ # Custom modules that you create at the organization or folder level are
2030
+ # inherited by the child folders and projects.
2031
+ class GoogleCloudSecuritycenterV1SecurityHealthAnalyticsCustomModule
2032
+ include Google::Apis::Core::Hashable
2033
+
2034
+ # Output only. If empty, indicates that the custom module was created in the
2035
+ # organization, folder, or project in which you are viewing the custom module.
2036
+ # Otherwise, `ancestor_module` specifies the organization or folder from which
2037
+ # the custom module is inherited.
2038
+ # Corresponds to the JSON property `ancestorModule`
2039
+ # @return [String]
2040
+ attr_accessor :ancestor_module
2041
+
2042
+ # Defines the properties in a custom module configuration for Security Health
2043
+ # Analytics. Use the custom module configuration to create custom detectors that
2044
+ # generate custom findings for resources that you specify.
2045
+ # Corresponds to the JSON property `customConfig`
2046
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomConfig]
2047
+ attr_accessor :custom_config
2048
+
2049
+ # The display name of the Security Health Analytics custom module. This display
2050
+ # name becomes the finding category for all findings that are returned by this
2051
+ # custom module. The display name must be between 1 and 128 characters, start
2052
+ # with a lowercase letter, and contain alphanumeric characters or underscores
2053
+ # only.
2054
+ # Corresponds to the JSON property `displayName`
2055
+ # @return [String]
2056
+ attr_accessor :display_name
2057
+
2058
+ # The enablement state of the custom module.
2059
+ # Corresponds to the JSON property `enablementState`
2060
+ # @return [String]
2061
+ attr_accessor :enablement_state
2062
+
2063
+ # Output only. The editor that last updated the custom module.
2064
+ # Corresponds to the JSON property `lastEditor`
2065
+ # @return [String]
2066
+ attr_accessor :last_editor
2067
+
2068
+ # Immutable. The resource name of the custom module. Its format is "
2069
+ # organizations/`organization`/securityHealthAnalyticsSettings/customModules/`
2070
+ # customModule`", or "folders/`folder`/securityHealthAnalyticsSettings/
2071
+ # customModules/`customModule`", or "projects/`project`/
2072
+ # securityHealthAnalyticsSettings/customModules/`customModule`" The id `
2073
+ # customModule` is server-generated and is not user settable. It will be a
2074
+ # numeric id containing 1-20 digits.
2075
+ # Corresponds to the JSON property `name`
2076
+ # @return [String]
2077
+ attr_accessor :name
2078
+
2079
+ # Output only. The time at which the custom module was last updated.
2080
+ # Corresponds to the JSON property `updateTime`
2081
+ # @return [String]
2082
+ attr_accessor :update_time
2083
+
2084
+ def initialize(**args)
2085
+ update!(**args)
2086
+ end
2087
+
2088
+ # Update properties of this object
2089
+ def update!(**args)
2090
+ @ancestor_module = args[:ancestor_module] if args.key?(:ancestor_module)
2091
+ @custom_config = args[:custom_config] if args.key?(:custom_config)
2092
+ @display_name = args[:display_name] if args.key?(:display_name)
2093
+ @enablement_state = args[:enablement_state] if args.key?(:enablement_state)
2094
+ @last_editor = args[:last_editor] if args.key?(:last_editor)
2095
+ @name = args[:name] if args.key?(:name)
2096
+ @update_time = args[:update_time] if args.key?(:update_time)
2097
+ end
2098
+ end
2099
+
1818
2100
  # Security Command Center finding. A finding is a record of assessment data (
1819
2101
  # security, risk, health or privacy) ingested into Security Command Center for
1820
2102
  # presentation, notification, analysis, policy testing, and enforcement. For
@@ -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.50.0"
19
+ GEM_VERSION = "0.51.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 = "20230329"
25
+ REVISION = "20230406"
26
26
  end
27
27
  end
28
28
  end
@@ -220,6 +220,24 @@ module Google
220
220
  include Google::Apis::Core::JsonObjectSupport
221
221
  end
222
222
 
223
+ class GoogleCloudSecuritycenterV1CustomConfig
224
+ class Representation < Google::Apis::Core::JsonRepresentation; end
225
+
226
+ include Google::Apis::Core::JsonObjectSupport
227
+ end
228
+
229
+ class GoogleCloudSecuritycenterV1CustomOutputSpec
230
+ class Representation < Google::Apis::Core::JsonRepresentation; end
231
+
232
+ include Google::Apis::Core::JsonObjectSupport
233
+ end
234
+
235
+ class GoogleCloudSecuritycenterV1EffectiveSecurityHealthAnalyticsCustomModule
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
223
241
  class GoogleCloudSecuritycenterV1ExternalSystem
224
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
225
243
 
@@ -238,18 +256,36 @@ module Google
238
256
  include Google::Apis::Core::JsonObjectSupport
239
257
  end
240
258
 
259
+ class GoogleCloudSecuritycenterV1Property
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
241
265
  class GoogleCloudSecuritycenterV1Resource
242
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
243
267
 
244
268
  include Google::Apis::Core::JsonObjectSupport
245
269
  end
246
270
 
271
+ class GoogleCloudSecuritycenterV1ResourceSelector
272
+ class Representation < Google::Apis::Core::JsonRepresentation; end
273
+
274
+ include Google::Apis::Core::JsonObjectSupport
275
+ end
276
+
247
277
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
248
278
  class Representation < Google::Apis::Core::JsonRepresentation; end
249
279
 
250
280
  include Google::Apis::Core::JsonObjectSupport
251
281
  end
252
282
 
283
+ class GoogleCloudSecuritycenterV1SecurityHealthAnalyticsCustomModule
284
+ class Representation < Google::Apis::Core::JsonRepresentation; end
285
+
286
+ include Google::Apis::Core::JsonObjectSupport
287
+ end
288
+
253
289
  class GoogleCloudSecuritycenterV1beta1Finding
254
290
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
291
 
@@ -918,6 +954,40 @@ module Google
918
954
  end
919
955
  end
920
956
 
957
+ class GoogleCloudSecuritycenterV1CustomConfig
958
+ # @private
959
+ class Representation < Google::Apis::Core::JsonRepresentation
960
+ property :custom_output, as: 'customOutput', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomOutputSpec, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomOutputSpec::Representation
961
+
962
+ property :description, as: 'description'
963
+ property :predicate, as: 'predicate', class: Google::Apis::SecuritycenterV1beta1::Expr, decorator: Google::Apis::SecuritycenterV1beta1::Expr::Representation
964
+
965
+ property :recommendation, as: 'recommendation'
966
+ property :resource_selector, as: 'resourceSelector', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceSelector, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1ResourceSelector::Representation
967
+
968
+ property :severity, as: 'severity'
969
+ end
970
+ end
971
+
972
+ class GoogleCloudSecuritycenterV1CustomOutputSpec
973
+ # @private
974
+ class Representation < Google::Apis::Core::JsonRepresentation
975
+ collection :properties, as: 'properties', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1Property, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1Property::Representation
976
+
977
+ end
978
+ end
979
+
980
+ class GoogleCloudSecuritycenterV1EffectiveSecurityHealthAnalyticsCustomModule
981
+ # @private
982
+ class Representation < Google::Apis::Core::JsonRepresentation
983
+ property :custom_config, as: 'customConfig', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomConfig, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomConfig::Representation
984
+
985
+ property :display_name, as: 'displayName'
986
+ property :enablement_state, as: 'enablementState'
987
+ property :name, as: 'name'
988
+ end
989
+ end
990
+
921
991
  class GoogleCloudSecuritycenterV1ExternalSystem
922
992
  # @private
923
993
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -953,6 +1023,15 @@ module Google
953
1023
  end
954
1024
  end
955
1025
 
1026
+ class GoogleCloudSecuritycenterV1Property
1027
+ # @private
1028
+ class Representation < Google::Apis::Core::JsonRepresentation
1029
+ property :name, as: 'name'
1030
+ property :value_expression, as: 'valueExpression', class: Google::Apis::SecuritycenterV1beta1::Expr, decorator: Google::Apis::SecuritycenterV1beta1::Expr::Representation
1031
+
1032
+ end
1033
+ end
1034
+
956
1035
  class GoogleCloudSecuritycenterV1Resource
957
1036
  # @private
958
1037
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -968,6 +1047,13 @@ module Google
968
1047
  end
969
1048
  end
970
1049
 
1050
+ class GoogleCloudSecuritycenterV1ResourceSelector
1051
+ # @private
1052
+ class Representation < Google::Apis::Core::JsonRepresentation
1053
+ collection :resource_types, as: 'resourceTypes'
1054
+ end
1055
+ end
1056
+
971
1057
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
972
1058
  # @private
973
1059
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -976,6 +1062,20 @@ module Google
976
1062
  end
977
1063
  end
978
1064
 
1065
+ class GoogleCloudSecuritycenterV1SecurityHealthAnalyticsCustomModule
1066
+ # @private
1067
+ class Representation < Google::Apis::Core::JsonRepresentation
1068
+ property :ancestor_module, as: 'ancestorModule'
1069
+ property :custom_config, as: 'customConfig', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomConfig, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1CustomConfig::Representation
1070
+
1071
+ property :display_name, as: 'displayName'
1072
+ property :enablement_state, as: 'enablementState'
1073
+ property :last_editor, as: 'lastEditor'
1074
+ property :name, as: 'name'
1075
+ property :update_time, as: 'updateTime'
1076
+ end
1077
+ end
1078
+
979
1079
  class GoogleCloudSecuritycenterV1beta1Finding
980
1080
  # @private
981
1081
  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.50.0
4
+ version: 0.51.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-04-02 00:00:00.000000000 Z
11
+ date: 2023-04-16 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.50.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.51.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: []