google-apis-securitycenter_v1beta1 0.38.0 → 0.39.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: abb885709aa24a75bd7676c0323c5383caad796dac8347161def09bf42e64341
4
- data.tar.gz: 1601b9c9c97c98c4cd235ce148decfd432173f048e5b54bd8ca4da3342618565
3
+ metadata.gz: 896d2595f169b7408daa5f981aee1445125d366638f9c8764827b8c528904ad7
4
+ data.tar.gz: 116b46c49cb88e0950525acb1548c8c5cf7d647ecb7abee70374e4feb35b3f9a
5
5
  SHA512:
6
- metadata.gz: edf3f930e5dc6fb02448a866a612109d4eb345f9832d259dd923ae94c7adc11cf6fa629df5040454a33a983b9b9535498e614561fd166159ed0dbbf0b0963a93
7
- data.tar.gz: 21fa19a29b2bcbb62cdf1c49e55ea74b6a35561ba35139aff3a8af45641e0c5bdaa116b11a6a5031d6565046df70d9d959201045787c9b444762a4d3b0d58a68
6
+ metadata.gz: b72cc8e8f553085ad32dc57d21ea83a26393b470b6bbd42b35016eda05da942dd7df917e44cceab93828a3b407aa41e9a7a0221e7f589d95561d3a82ff0d7b2e
7
+ data.tar.gz: 3fdcb84cfda4b313f1974cb265d27da7dbb5987b68f3bffbf310ca7852be5f670fb995b2e0be26c7aa6edf41e21c324eff56bd2f286675453c79ea6f5605e541
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.39.0 (2022-09-16)
4
+
5
+ * Regenerated from discovery document revision 20220909
6
+
3
7
  ### v0.38.0 (2022-08-31)
4
8
 
5
9
  * Regenerated from discovery document revision 20220825
@@ -1142,6 +1142,12 @@ module Google
1142
1142
  # @return [String]
1143
1143
  attr_accessor :parent
1144
1144
 
1145
+ # Output only. The human readable display name of the finding source such as "
1146
+ # Event Threat Detection" or "Security Health Analytics"
1147
+ # Corresponds to the JSON property `parentDisplayName`
1148
+ # @return [String]
1149
+ attr_accessor :parent_display_name
1150
+
1145
1151
  # Represents operating system processes associated with the Finding.
1146
1152
  # Corresponds to the JSON property `processes`
1147
1153
  # @return [Array<Google::Apis::SecuritycenterV1beta1::Process>]
@@ -1219,6 +1225,7 @@ module Google
1219
1225
  @name = args[:name] if args.key?(:name)
1220
1226
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1221
1227
  @parent = args[:parent] if args.key?(:parent)
1228
+ @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1222
1229
  @processes = args[:processes] if args.key?(:processes)
1223
1230
  @resource_name = args[:resource_name] if args.key?(:resource_name)
1224
1231
  @security_marks = args[:security_marks] if args.key?(:security_marks)
@@ -1674,6 +1681,40 @@ module Google
1674
1681
  end
1675
1682
  end
1676
1683
 
1684
+ # A resource value config is a mapping configuration of user's tag values to
1685
+ # resource values. Used by the attack path simulation.
1686
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
1687
+ include Google::Apis::Core::Hashable
1688
+
1689
+ # Name for the resource value config
1690
+ # Corresponds to the JSON property `name`
1691
+ # @return [String]
1692
+ attr_accessor :name
1693
+
1694
+ # Required. Resource value level this expression represents
1695
+ # Corresponds to the JSON property `resourceValue`
1696
+ # @return [String]
1697
+ attr_accessor :resource_value
1698
+
1699
+ # Required. Tag values combined with AND to check against. Values in the form "
1700
+ # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1701
+ # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1702
+ # Corresponds to the JSON property `tagValues`
1703
+ # @return [Array<String>]
1704
+ attr_accessor :tag_values
1705
+
1706
+ def initialize(**args)
1707
+ update!(**args)
1708
+ end
1709
+
1710
+ # Update properties of this object
1711
+ def update!(**args)
1712
+ @name = args[:name] if args.key?(:name)
1713
+ @resource_value = args[:resource_value] if args.key?(:resource_value)
1714
+ @tag_values = args[:tag_values] if args.key?(:tag_values)
1715
+ end
1716
+ end
1717
+
1677
1718
  # Response of asset discovery run
1678
1719
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1679
1720
  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.38.0"
19
+ GEM_VERSION = "0.39.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.9.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220825"
25
+ REVISION = "20220909"
26
26
  end
27
27
  end
28
28
  end
@@ -232,6 +232,12 @@ module Google
232
232
  include Google::Apis::Core::JsonObjectSupport
233
233
  end
234
234
 
235
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
236
+ class Representation < Google::Apis::Core::JsonRepresentation; end
237
+
238
+ include Google::Apis::Core::JsonObjectSupport
239
+ end
240
+
235
241
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
236
242
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
243
 
@@ -797,6 +803,7 @@ module Google
797
803
  property :name, as: 'name'
798
804
  property :next_steps, as: 'nextSteps'
799
805
  property :parent, as: 'parent'
806
+ property :parent_display_name, as: 'parentDisplayName'
800
807
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta1::Process, decorator: Google::Apis::SecuritycenterV1beta1::Process::Representation
801
808
 
802
809
  property :resource_name, as: 'resourceName'
@@ -922,6 +929,15 @@ module Google
922
929
  end
923
930
  end
924
931
 
932
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
933
+ # @private
934
+ class Representation < Google::Apis::Core::JsonRepresentation
935
+ property :name, as: 'name'
936
+ property :resource_value, as: 'resourceValue'
937
+ collection :tag_values, as: 'tagValues'
938
+ end
939
+ end
940
+
925
941
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
926
942
  # @private
927
943
  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.38.0
4
+ version: 0.39.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: 2022-09-05 00:00:00.000000000 Z
11
+ date: 2022-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.7'
19
+ version: 0.7.2
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: '0.7'
29
+ version: 0.7.2
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.38.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.39.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: []