google-apis-securitycenter_v1beta1 0.38.0 → 0.40.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: abb885709aa24a75bd7676c0323c5383caad796dac8347161def09bf42e64341
4
- data.tar.gz: 1601b9c9c97c98c4cd235ce148decfd432173f048e5b54bd8ca4da3342618565
3
+ metadata.gz: 2cc19113595b8d0703406bf5562a3309c1ca1ce278b5ae37e5303adebc7e2faa
4
+ data.tar.gz: a32815006bf541548808e579d15a3b94711be193f6b52ab7292538de77ad5477
5
5
  SHA512:
6
- metadata.gz: edf3f930e5dc6fb02448a866a612109d4eb345f9832d259dd923ae94c7adc11cf6fa629df5040454a33a983b9b9535498e614561fd166159ed0dbbf0b0963a93
7
- data.tar.gz: 21fa19a29b2bcbb62cdf1c49e55ea74b6a35561ba35139aff3a8af45641e0c5bdaa116b11a6a5031d6565046df70d9d959201045787c9b444762a4d3b0d58a68
6
+ metadata.gz: a715d1e3be2d3cfb604724de5fced2cc3b9346f553fb33bc8510449247c5ab041496d38106fab483d16eebd19b8f6551fd7dd865814d11c37a037598f0c62322
7
+ data.tar.gz: b3826bfdb07cee1f2e99626e2b31a938ae68eea0406affa6d42a3955f14aa98810ab3df842d3b1f7f03db63ba26e64e4fea92a41bc08f81ef8654dcc523e9d68
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.40.0 (2022-09-30)
4
+
5
+ * Regenerated from discovery document revision 20220921
6
+ * Regenerated using generator version 0.10.0
7
+
8
+ ### v0.39.0 (2022-09-16)
9
+
10
+ * Regenerated from discovery document revision 20220909
11
+
3
12
  ### v0.38.0 (2022-08-31)
4
13
 
5
14
  * Regenerated from discovery document revision 20220825
@@ -91,6 +91,14 @@ module Google
91
91
  # @return [String]
92
92
  attr_accessor :user_agent_family
93
93
 
94
+ # A string representing a username. This is likely not an IAM principal. For
95
+ # instance, this may be the system user name if the finding is VM-related, or
96
+ # this may be some type of application login user name, depending on the type of
97
+ # finding.
98
+ # Corresponds to the JSON property `username`
99
+ # @return [String]
100
+ attr_accessor :username
101
+
94
102
  def initialize(**args)
95
103
  update!(**args)
96
104
  end
@@ -106,6 +114,7 @@ module Google
106
114
  @service_account_key_name = args[:service_account_key_name] if args.key?(:service_account_key_name)
107
115
  @service_name = args[:service_name] if args.key?(:service_name)
108
116
  @user_agent_family = args[:user_agent_family] if args.key?(:user_agent_family)
117
+ @username = args[:username] if args.key?(:username)
109
118
  end
110
119
  end
111
120
 
@@ -1007,7 +1016,7 @@ module Google
1007
1016
  # @return [Array<Google::Apis::SecuritycenterV1beta1::Connection>]
1008
1017
  attr_accessor :connections
1009
1018
 
1010
- # Output only. Map containing the point of contacts for the given finding. The
1019
+ # Output only. Map containing the points of contact for the given finding. The
1011
1020
  # key represents the type of contact, while the value contains a list of all the
1012
1021
  # contacts that pertain. Please refer to: https://cloud.google.com/resource-
1013
1022
  # manager/docs/managing-notification-contacts#notification-categories ` "
@@ -1142,6 +1151,12 @@ module Google
1142
1151
  # @return [String]
1143
1152
  attr_accessor :parent
1144
1153
 
1154
+ # Output only. The human readable display name of the finding source such as "
1155
+ # Event Threat Detection" or "Security Health Analytics".
1156
+ # Corresponds to the JSON property `parentDisplayName`
1157
+ # @return [String]
1158
+ attr_accessor :parent_display_name
1159
+
1145
1160
  # Represents operating system processes associated with the Finding.
1146
1161
  # Corresponds to the JSON property `processes`
1147
1162
  # @return [Array<Google::Apis::SecuritycenterV1beta1::Process>]
@@ -1219,6 +1234,7 @@ module Google
1219
1234
  @name = args[:name] if args.key?(:name)
1220
1235
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1221
1236
  @parent = args[:parent] if args.key?(:parent)
1237
+ @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1222
1238
  @processes = args[:processes] if args.key?(:processes)
1223
1239
  @resource_name = args[:resource_name] if args.key?(:resource_name)
1224
1240
  @security_marks = args[:security_marks] if args.key?(:security_marks)
@@ -1455,6 +1471,32 @@ module Google
1455
1471
  end
1456
1472
  end
1457
1473
 
1474
+ # A resource that is exposed as a result of a finding.
1475
+ class GoogleCloudSecuritycenterV1ExposedResource
1476
+ include Google::Apis::Core::Hashable
1477
+
1478
+ def initialize(**args)
1479
+ update!(**args)
1480
+ end
1481
+
1482
+ # Update properties of this object
1483
+ def update!(**args)
1484
+ end
1485
+ end
1486
+
1487
+ # A path that an attacker could take to reach an exposed resource.
1488
+ class GoogleCloudSecuritycenterV1ExposurePath
1489
+ include Google::Apis::Core::Hashable
1490
+
1491
+ def initialize(**args)
1492
+ update!(**args)
1493
+ end
1494
+
1495
+ # Update properties of this object
1496
+ def update!(**args)
1497
+ end
1498
+ end
1499
+
1458
1500
  # Representation of third party SIEM/SOAR fields within SCC.
1459
1501
  class GoogleCloudSecuritycenterV1ExternalSystem
1460
1502
  include Google::Apis::Core::Hashable
@@ -1674,6 +1716,40 @@ module Google
1674
1716
  end
1675
1717
  end
1676
1718
 
1719
+ # A resource value config is a mapping configuration of user's tag values to
1720
+ # resource values. Used by the attack path simulation.
1721
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
1722
+ include Google::Apis::Core::Hashable
1723
+
1724
+ # Name for the resource value config
1725
+ # Corresponds to the JSON property `name`
1726
+ # @return [String]
1727
+ attr_accessor :name
1728
+
1729
+ # Required. Resource value level this expression represents
1730
+ # Corresponds to the JSON property `resourceValue`
1731
+ # @return [String]
1732
+ attr_accessor :resource_value
1733
+
1734
+ # Required. Tag values combined with AND to check against. Values in the form "
1735
+ # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1736
+ # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1737
+ # Corresponds to the JSON property `tagValues`
1738
+ # @return [Array<String>]
1739
+ attr_accessor :tag_values
1740
+
1741
+ def initialize(**args)
1742
+ update!(**args)
1743
+ end
1744
+
1745
+ # Update properties of this object
1746
+ def update!(**args)
1747
+ @name = args[:name] if args.key?(:name)
1748
+ @resource_value = args[:resource_value] if args.key?(:resource_value)
1749
+ @tag_values = args[:tag_values] if args.key?(:tag_values)
1750
+ end
1751
+ end
1752
+
1677
1753
  # Response of asset discovery run
1678
1754
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1679
1755
  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.40.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 = "20220921"
26
26
  end
27
27
  end
28
28
  end
@@ -208,6 +208,18 @@ module Google
208
208
  include Google::Apis::Core::JsonObjectSupport
209
209
  end
210
210
 
211
+ class GoogleCloudSecuritycenterV1ExposedResource
212
+ class Representation < Google::Apis::Core::JsonRepresentation; end
213
+
214
+ include Google::Apis::Core::JsonObjectSupport
215
+ end
216
+
217
+ class GoogleCloudSecuritycenterV1ExposurePath
218
+ class Representation < Google::Apis::Core::JsonRepresentation; end
219
+
220
+ include Google::Apis::Core::JsonObjectSupport
221
+ end
222
+
211
223
  class GoogleCloudSecuritycenterV1ExternalSystem
212
224
  class Representation < Google::Apis::Core::JsonRepresentation; end
213
225
 
@@ -232,6 +244,12 @@ module Google
232
244
  include Google::Apis::Core::JsonObjectSupport
233
245
  end
234
246
 
247
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
248
+ class Representation < Google::Apis::Core::JsonRepresentation; end
249
+
250
+ include Google::Apis::Core::JsonObjectSupport
251
+ end
252
+
235
253
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
236
254
  class Representation < Google::Apis::Core::JsonRepresentation; end
237
255
 
@@ -540,6 +558,7 @@ module Google
540
558
  property :service_account_key_name, as: 'serviceAccountKeyName'
541
559
  property :service_name, as: 'serviceName'
542
560
  property :user_agent_family, as: 'userAgentFamily'
561
+ property :username, as: 'username'
543
562
  end
544
563
  end
545
564
 
@@ -797,6 +816,7 @@ module Google
797
816
  property :name, as: 'name'
798
817
  property :next_steps, as: 'nextSteps'
799
818
  property :parent, as: 'parent'
819
+ property :parent_display_name, as: 'parentDisplayName'
800
820
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta1::Process, decorator: Google::Apis::SecuritycenterV1beta1::Process::Representation
801
821
 
802
822
  property :resource_name, as: 'resourceName'
@@ -872,6 +892,18 @@ module Google
872
892
  end
873
893
  end
874
894
 
895
+ class GoogleCloudSecuritycenterV1ExposedResource
896
+ # @private
897
+ class Representation < Google::Apis::Core::JsonRepresentation
898
+ end
899
+ end
900
+
901
+ class GoogleCloudSecuritycenterV1ExposurePath
902
+ # @private
903
+ class Representation < Google::Apis::Core::JsonRepresentation
904
+ end
905
+ end
906
+
875
907
  class GoogleCloudSecuritycenterV1ExternalSystem
876
908
  # @private
877
909
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -922,6 +954,15 @@ module Google
922
954
  end
923
955
  end
924
956
 
957
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
958
+ # @private
959
+ class Representation < Google::Apis::Core::JsonRepresentation
960
+ property :name, as: 'name'
961
+ property :resource_value, as: 'resourceValue'
962
+ collection :tag_values, as: 'tagValues'
963
+ end
964
+ end
965
+
925
966
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
926
967
  # @private
927
968
  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.40.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-10-03 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_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.40.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: []