google-apis-securitycenter_v1beta2 0.33.0 → 0.35.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: ffacacf40445e33a8d1c63ebfb893d3564dfdb33699462b50e3e70ab8b1d1b43
4
- data.tar.gz: 90e5a03c9da065da711f804134d068868708edb7f68cb13cb1a95df0fc4fca90
3
+ metadata.gz: 9504fefcce36a32787fb545185a9b2d8d159b2e5f61a12226961f0e3f57ab18f
4
+ data.tar.gz: 71728fa1f5441dcccf03ada16e54b83d4015a0af1edde485c30975e4264cc22f
5
5
  SHA512:
6
- metadata.gz: 4dccc38619c93ec04bfefed99bfe5d98cb5350c88252bffae3ba4482c273688ea1180742372ccc62047da8671beab8f4126e42fa758b1e2032871620501a2f1d
7
- data.tar.gz: a9b4ec0283f49f2bd66381eb11cb59374afe71951a5c5e959a74555ed21bff6eaa7c1f63abd26fd2965306452b77bfa25cc3025d2f09b5eb9507156c26c36238
6
+ metadata.gz: 7d846a101545b032ac88aefa1b99b7b3194fe4544dba3eff879cc64cf167d38750505eb09e8b2c07474068f3cae4305676917b00973b4ef2b5900de95b93a87e
7
+ data.tar.gz: b7fb332411724e5719e14d9612c9224b122acba65f76a1df07523bb3e150d8dd21a333aac414c3ec446abca2f433ef7bea321b16076e0e5a464aa5f9bb37dd4c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
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
+
7
+ ### v0.34.0 (2022-08-30)
8
+
9
+ * Regenerated from discovery document revision 20220825
10
+
3
11
  ### v0.33.0 (2022-08-25)
4
12
 
5
13
  * Regenerated from discovery document revision 20220824
@@ -54,8 +54,8 @@ module Google
54
54
  # A string representing the principal_subject associated with the identity. As
55
55
  # compared to `principal_email`, supports principals that aren't associated with
56
56
  # email addresses, such as third party principals. For most identities, the
57
- # format will be `principal://iam.googleapis.com/`identity pool name`/subject/`
58
- # subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM,
57
+ # format will be `principal://iam.googleapis.com/`identity pool name`/subjects/`
58
+ # subject`` except for some GKE identities (GKE_WORKLOAD, FREEFORM,
59
59
  # GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:`
60
60
  # identity pool name`[`subject`]`
61
61
  # Corresponds to the JSON property `principalSubject`
@@ -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
@@ -2499,7 +2540,7 @@ module Google
2499
2540
  class ServiceAccountDelegationInfo
2500
2541
  include Google::Apis::Core::Hashable
2501
2542
 
2502
- # The email address of a Google account. .
2543
+ # The email address of a Google account.
2503
2544
  # Corresponds to the JSON property `principalEmail`
2504
2545
  # @return [String]
2505
2546
  attr_accessor :principal_email
@@ -2507,8 +2548,8 @@ module Google
2507
2548
  # A string representing the principal_subject associated with the identity. As
2508
2549
  # compared to `principal_email`, supports principals that aren't associated with
2509
2550
  # email addresses, such as third party principals. For most identities, the
2510
- # format will be `principal://iam.googleapis.com/`identity pool name`/subject/`
2511
- # subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM,
2551
+ # format will be `principal://iam.googleapis.com/`identity pool name`/subjects/`
2552
+ # subject`` except for some GKE identities (GKE_WORKLOAD, FREEFORM,
2512
2553
  # GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:`
2513
2554
  # identity pool name`[`subject`]`
2514
2555
  # Corresponds to the JSON property `principalSubject`
@@ -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.33.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 = "20220824"
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.33.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-08-29 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.33.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: []