google-apis-securitycenter_v1 0.41.0 → 0.43.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: 896e7223be09b03448a3e79cfab317b549d455b0051d292b6324e6d5118da09f
4
- data.tar.gz: feabf563a347ab41925c2d39a24606d22258afc01fa6c44846234daa709175e8
3
+ metadata.gz: d9b88ea174cb1d8c7e85f6458c8bf93276019b2fdb1ca7d7010c99684157f1dd
4
+ data.tar.gz: 9ebb684d0100f73ac0eb2593b72e66d004c3c1d95c2ca3ed29ea273bd763a73e
5
5
  SHA512:
6
- metadata.gz: 7c8b0cc60300d12ad2681f01bbf1cd2d789ecd9f9ddb3e74a37003dae9f04a9453ed68387c72fc19511df016dce82843661d49f69d45eae9ab4f3b4569872a37
7
- data.tar.gz: 609ab5b942faae01b2b16d870d21b583a6b8fe6b8104e1f1988bde58d63e3181f9b288488993640be2bf6098b5755e3f8878ccbb6d7b994d02c6fb2f8c645a19
6
+ metadata.gz: 34c06f52cc8cda41d3ad7dc633f1f87f28f569b9040c7a43c05a07d4be161a59caa376f205448f4460d9cec6dbc861a71e2c471303ac51f56300832e2c6e4f3c
7
+ data.tar.gz: 2fd63d13aa14a2bacec9f40d9386aa3da6dd74c0ea74e9a22c30d73258939608a7069b55af8626067b5eadba987724421df15a0fe798e1957708c258039700c6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.43.0 (2022-09-21)
4
+
5
+ * Regenerated from discovery document revision 20220915
6
+ * Regenerated using generator version 0.10.0
7
+
8
+ ### v0.42.0 (2022-09-14)
9
+
10
+ * Regenerated from discovery document revision 20220909
11
+
3
12
  ### v0.41.0 (2022-08-31)
4
13
 
5
14
  * Regenerated from discovery document revision 20220825
@@ -1053,7 +1053,7 @@ module Google
1053
1053
  # @return [Array<Google::Apis::SecuritycenterV1::Connection>]
1054
1054
  attr_accessor :connections
1055
1055
 
1056
- # Output only. Map containing the point of contacts for the given finding. The
1056
+ # Output only. Map containing the points of contact for the given finding. The
1057
1057
  # key represents the type of contact, while the value contains a list of all the
1058
1058
  # contacts that pertain. Please refer to: https://cloud.google.com/resource-
1059
1059
  # manager/docs/managing-notification-contacts#notification-categories ` "
@@ -1188,6 +1188,12 @@ module Google
1188
1188
  # @return [String]
1189
1189
  attr_accessor :parent
1190
1190
 
1191
+ # Output only. The human readable display name of the finding source such as "
1192
+ # Event Threat Detection" or "Security Health Analytics".
1193
+ # Corresponds to the JSON property `parentDisplayName`
1194
+ # @return [String]
1195
+ attr_accessor :parent_display_name
1196
+
1191
1197
  # Represents operating system processes associated with the Finding.
1192
1198
  # Corresponds to the JSON property `processes`
1193
1199
  # @return [Array<Google::Apis::SecuritycenterV1::Process>]
@@ -1265,6 +1271,7 @@ module Google
1265
1271
  @name = args[:name] if args.key?(:name)
1266
1272
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1267
1273
  @parent = args[:parent] if args.key?(:parent)
1274
+ @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1268
1275
  @processes = args[:processes] if args.key?(:processes)
1269
1276
  @resource_name = args[:resource_name] if args.key?(:resource_name)
1270
1277
  @security_marks = args[:security_marks] if args.key?(:security_marks)
@@ -1720,6 +1727,40 @@ module Google
1720
1727
  end
1721
1728
  end
1722
1729
 
1730
+ # A resource value config is a mapping configuration of user's tag values to
1731
+ # resource values. Used by the attack path simulation.
1732
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
1733
+ include Google::Apis::Core::Hashable
1734
+
1735
+ # Name for the resource value config
1736
+ # Corresponds to the JSON property `name`
1737
+ # @return [String]
1738
+ attr_accessor :name
1739
+
1740
+ # Required. Resource value level this expression represents
1741
+ # Corresponds to the JSON property `resourceValue`
1742
+ # @return [String]
1743
+ attr_accessor :resource_value
1744
+
1745
+ # Required. Tag values combined with AND to check against. Values in the form "
1746
+ # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1747
+ # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1748
+ # Corresponds to the JSON property `tagValues`
1749
+ # @return [Array<String>]
1750
+ attr_accessor :tag_values
1751
+
1752
+ def initialize(**args)
1753
+ update!(**args)
1754
+ end
1755
+
1756
+ # Update properties of this object
1757
+ def update!(**args)
1758
+ @name = args[:name] if args.key?(:name)
1759
+ @resource_value = args[:resource_value] if args.key?(:resource_value)
1760
+ @tag_values = args[:tag_values] if args.key?(:tag_values)
1761
+ end
1762
+ end
1763
+
1723
1764
  # Response of asset discovery run
1724
1765
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1725
1766
  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.41.0"
19
+ GEM_VERSION = "0.43.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.9.0"
22
+ GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220825"
25
+ REVISION = "20220915"
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
 
@@ -845,6 +851,7 @@ module Google
845
851
  property :name, as: 'name'
846
852
  property :next_steps, as: 'nextSteps'
847
853
  property :parent, as: 'parent'
854
+ property :parent_display_name, as: 'parentDisplayName'
848
855
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1::Process, decorator: Google::Apis::SecuritycenterV1::Process::Representation
849
856
 
850
857
  property :resource_name, as: 'resourceName'
@@ -970,6 +977,15 @@ module Google
970
977
  end
971
978
  end
972
979
 
980
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
981
+ # @private
982
+ class Representation < Google::Apis::Core::JsonRepresentation
983
+ property :name, as: 'name'
984
+ property :resource_value, as: 'resourceValue'
985
+ collection :tag_values, as: 'tagValues'
986
+ end
987
+ end
988
+
973
989
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
974
990
  # @private
975
991
  class Representation < Google::Apis::Core::JsonRepresentation
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.41.0
4
+ version: 0.43.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-26 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.9.0
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.9.0
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_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.41.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.43.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: []