google-apis-securitycenter_v1beta2 0.34.0 → 0.35.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: 7ea332c32f6c0402f38205c1550d1046d4f235a13b83cb1af32da0134411dae9
4
- data.tar.gz: d09532d14521e2ee835e6ad5b003ac6b3300fb54e57c1c517b85906c1dbf7e92
3
+ metadata.gz: 9504fefcce36a32787fb545185a9b2d8d159b2e5f61a12226961f0e3f57ab18f
4
+ data.tar.gz: 71728fa1f5441dcccf03ada16e54b83d4015a0af1edde485c30975e4264cc22f
5
5
  SHA512:
6
- metadata.gz: 30b1ff2ed080e42e73951be20c30245c591b6f344d01239bb455930e67e7086697ed37c12c225fefe74e7f90f43dbebebe9d5105a98795e9214f696fbe4de7b3
7
- data.tar.gz: 918c21d6169e3c19b7210c7e54cdab835dbfad971c9264745d9de27f083e8bfa14677ede9345c25e0757d9562e281108f42de5c257b38876aef1e02a79c402f4
6
+ metadata.gz: 7d846a101545b032ac88aefa1b99b7b3194fe4544dba3eff879cc64cf167d38750505eb09e8b2c07474068f3cae4305676917b00973b4ef2b5900de95b93a87e
7
+ data.tar.gz: b7fb332411724e5719e14d9612c9224b122acba65f76a1df07523bb3e150d8dd21a333aac414c3ec446abca2f433ef7bea321b16076e0e5a464aa5f9bb37dd4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.35.0 (2022-09-15)
4
+
5
+ * Regenerated from discovery document revision 20220909
6
+
3
7
  ### v0.34.0 (2022-08-30)
4
8
 
5
9
  * Regenerated from discovery document revision 20220825
@@ -977,6 +977,12 @@ module Google
977
977
  # @return [String]
978
978
  attr_accessor :parent
979
979
 
980
+ # Output only. The human readable display name of the finding source such as "
981
+ # Event Threat Detection" or "Security Health Analytics"
982
+ # Corresponds to the JSON property `parentDisplayName`
983
+ # @return [String]
984
+ attr_accessor :parent_display_name
985
+
980
986
  # Represents operating system processes associated with the Finding.
981
987
  # Corresponds to the JSON property `processes`
982
988
  # @return [Array<Google::Apis::SecuritycenterV1beta2::Process>]
@@ -1054,6 +1060,7 @@ module Google
1054
1060
  @name = args[:name] if args.key?(:name)
1055
1061
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1056
1062
  @parent = args[:parent] if args.key?(:parent)
1063
+ @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1057
1064
  @processes = args[:processes] if args.key?(:processes)
1058
1065
  @resource_name = args[:resource_name] if args.key?(:resource_name)
1059
1066
  @security_marks = args[:security_marks] if args.key?(:security_marks)
@@ -1462,6 +1469,40 @@ module Google
1462
1469
  end
1463
1470
  end
1464
1471
 
1472
+ # A resource value config is a mapping configuration of user's tag values to
1473
+ # resource values. Used by the attack path simulation.
1474
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
1475
+ include Google::Apis::Core::Hashable
1476
+
1477
+ # Name for the resource value config
1478
+ # Corresponds to the JSON property `name`
1479
+ # @return [String]
1480
+ attr_accessor :name
1481
+
1482
+ # Required. Resource value level this expression represents
1483
+ # Corresponds to the JSON property `resourceValue`
1484
+ # @return [String]
1485
+ attr_accessor :resource_value
1486
+
1487
+ # Required. Tag values combined with AND to check against. Values in the form "
1488
+ # tagValues/123" E.g. [ "tagValues/123", "tagValues/456", "tagValues/789" ]
1489
+ # https://cloud.google.com/resource-manager/docs/tags/tags-creating-and-managing
1490
+ # Corresponds to the JSON property `tagValues`
1491
+ # @return [Array<String>]
1492
+ attr_accessor :tag_values
1493
+
1494
+ def initialize(**args)
1495
+ update!(**args)
1496
+ end
1497
+
1498
+ # Update properties of this object
1499
+ def update!(**args)
1500
+ @name = args[:name] if args.key?(:name)
1501
+ @resource_value = args[:resource_value] if args.key?(:resource_value)
1502
+ @tag_values = args[:tag_values] if args.key?(:tag_values)
1503
+ end
1504
+ end
1505
+
1465
1506
  # Response of asset discovery run
1466
1507
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
1467
1508
  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.34.0"
19
+ GEM_VERSION = "0.35.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
@@ -196,6 +196,12 @@ module Google
196
196
  include Google::Apis::Core::JsonObjectSupport
197
197
  end
198
198
 
199
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
200
+ class Representation < Google::Apis::Core::JsonRepresentation; end
201
+
202
+ include Google::Apis::Core::JsonObjectSupport
203
+ end
204
+
199
205
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
200
206
  class Representation < Google::Apis::Core::JsonRepresentation; end
201
207
 
@@ -634,6 +640,7 @@ module Google
634
640
  property :name, as: 'name'
635
641
  property :next_steps, as: 'nextSteps'
636
642
  property :parent, as: 'parent'
643
+ property :parent_display_name, as: 'parentDisplayName'
637
644
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta2::Process, decorator: Google::Apis::SecuritycenterV1beta2::Process::Representation
638
645
 
639
646
  property :resource_name, as: 'resourceName'
@@ -744,6 +751,15 @@ module Google
744
751
  end
745
752
  end
746
753
 
754
+ class GoogleCloudSecuritycenterV1ResourceValueConfig
755
+ # @private
756
+ class Representation < Google::Apis::Core::JsonRepresentation
757
+ property :name, as: 'name'
758
+ property :resource_value, as: 'resourceValue'
759
+ collection :tag_values, as: 'tagValues'
760
+ end
761
+ end
762
+
747
763
  class GoogleCloudSecuritycenterV1RunAssetDiscoveryResponse
748
764
  # @private
749
765
  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.34.0
4
+ version: 0.35.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
@@ -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.34.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.35.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: []