google-apis-securitycenter_v1beta2 0.34.0 → 0.36.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: 7ea332c32f6c0402f38205c1550d1046d4f235a13b83cb1af32da0134411dae9
4
- data.tar.gz: d09532d14521e2ee835e6ad5b003ac6b3300fb54e57c1c517b85906c1dbf7e92
3
+ metadata.gz: 2b8a07211b64a5c4985e7d778d937d6267ebf60ab7121df485cb678e8bb38cca
4
+ data.tar.gz: fb33a5a8d1e051bd3eacde5c695a4f070c354086c998f3f99370fa591beefa99
5
5
  SHA512:
6
- metadata.gz: 30b1ff2ed080e42e73951be20c30245c591b6f344d01239bb455930e67e7086697ed37c12c225fefe74e7f90f43dbebebe9d5105a98795e9214f696fbe4de7b3
7
- data.tar.gz: 918c21d6169e3c19b7210c7e54cdab835dbfad971c9264745d9de27f083e8bfa14677ede9345c25e0757d9562e281108f42de5c257b38876aef1e02a79c402f4
6
+ metadata.gz: 1a04828fbc107f6f5e43692eb5e97d8a4121c5847187ec62b604af25de305c70cb837651e1023b3a01ca5df7920117905c2f1ea644fd89ae513ba766a62c4c4b
7
+ data.tar.gz: 2ad4d32265d03590fe670121f77563af43b29e956c4c412cd484c2c7f462ce78ed345b984202d257b48706619f2d17fb74d9f829e699ba46161eb0f0d71a0500
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.36.0 (2022-09-22)
4
+
5
+ * Regenerated from discovery document revision 20220915
6
+ * Regenerated using generator version 0.10.0
7
+
8
+ ### v0.35.0 (2022-09-15)
9
+
10
+ * Regenerated from discovery document revision 20220909
11
+
3
12
  ### v0.34.0 (2022-08-30)
4
13
 
5
14
  * Regenerated from discovery document revision 20220825
@@ -842,7 +842,7 @@ module Google
842
842
  # @return [Array<Google::Apis::SecuritycenterV1beta2::Connection>]
843
843
  attr_accessor :connections
844
844
 
845
- # Output only. Map containing the point of contacts for the given finding. The
845
+ # Output only. Map containing the points of contact for the given finding. The
846
846
  # key represents the type of contact, while the value contains a list of all the
847
847
  # contacts that pertain. Please refer to: https://cloud.google.com/resource-
848
848
  # manager/docs/managing-notification-contacts#notification-categories ` "
@@ -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.36.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
@@ -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.36.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_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.36.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: []