google-apis-securitycenter_v1beta1 0.61.0 → 0.63.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: 5fd15059ca5c199847ded89d3b916f71eb0aad65b36eba50f00073df097cf813
4
- data.tar.gz: 3b47d1df2e8c0ba9245905945d788d2c4907aefef1323934c2340511bdd4a02c
3
+ metadata.gz: 1039eaed174b6f8493bb39ff3e8bc3b382dd81aa1195d472c3dd418ed3ebd0e6
4
+ data.tar.gz: 73e858e9fe50c42b608b0239b2cb48bd9d21c0c88ddf5f532a259387463e7537
5
5
  SHA512:
6
- metadata.gz: 31e715fcacd692d15b641a77fa1deb1166596c9a4bc05db025c110f5655302912d6010daa85d3fbb5ea09738a3e4741bf5e8c5ad3a79837a4e4f85a496aaf3cd
7
- data.tar.gz: d6252c2d9f58edba793e3f894385688ae55f3087cef3edd337676af50a5bec78c9afa702789f2c23a82b687e850f677e7ad44baa70854af4f3fac5fb69926379
6
+ metadata.gz: 628b5993da57aded8ef4f4415bef6520da2b24d086f6f627c5fe24ae0015fadc4574ce334ba5ebbfdf5945fd2713e8e4511876533d9ea416417ff1efaa2a1cc7
7
+ data.tar.gz: aaed85be4908ce5f93019a0ce21029fc273c46ece8cd88ead4c645208846bf38bd7b180526df08146f7a9cbb64035f615f58881b0f26e876058d7eeb5d0c5e4d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.63.0 (2023-10-29)
4
+
5
+ * Regenerated from discovery document revision 20231023
6
+
7
+ ### v0.62.0 (2023-10-15)
8
+
9
+ * Regenerated from discovery document revision 20231005
10
+
3
11
  ### v0.61.0 (2023-10-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20231001
@@ -1352,6 +1352,11 @@ module Google
1352
1352
  # @return [String]
1353
1353
  attr_accessor :next_steps
1354
1354
 
1355
+ # Contains information about the org policies associated with the finding.
1356
+ # Corresponds to the JSON property `orgPolicies`
1357
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::OrgPolicy>]
1358
+ attr_accessor :org_policies
1359
+
1355
1360
  # The relative resource name of the source the finding belongs to. See: https://
1356
1361
  # cloud.google.com/apis/design/resource_names#relative_resource_name This field
1357
1362
  # is immutable after creation time. For example: "organizations/`organization_id`
@@ -1457,6 +1462,7 @@ module Google
1457
1462
  @mute_update_time = args[:mute_update_time] if args.key?(:mute_update_time)
1458
1463
  @name = args[:name] if args.key?(:name)
1459
1464
  @next_steps = args[:next_steps] if args.key?(:next_steps)
1465
+ @org_policies = args[:org_policies] if args.key?(:org_policies)
1460
1466
  @parent = args[:parent] if args.key?(:parent)
1461
1467
  @parent_display_name = args[:parent_display_name] if args.key?(:parent_display_name)
1462
1468
  @processes = args[:processes] if args.key?(:processes)
@@ -1938,7 +1944,10 @@ module Google
1938
1944
 
1939
1945
  # This field will be ignored if provided on config creation. Format "
1940
1946
  # organizations/`organization`/muteConfigs/`mute_config`" "folders/`folder`/
1941
- # muteConfigs/`mute_config`" "projects/`project`/muteConfigs/`mute_config`"
1947
+ # muteConfigs/`mute_config`" "projects/`project`/muteConfigs/`mute_config`" "
1948
+ # organizations/`organization`/locations/global/muteConfigs/`mute_config`" "
1949
+ # folders/`folder`/locations/global/muteConfigs/`mute_config`" "projects/`
1950
+ # project`/locations/global/muteConfigs/`mute_config`"
1942
1951
  # Corresponds to the JSON property `name`
1943
1952
  # @return [String]
1944
1953
  attr_accessor :name
@@ -2123,8 +2132,8 @@ module Google
2123
2132
  end
2124
2133
  end
2125
2134
 
2126
- # A resource value config is a mapping configuration of user's tag values to
2127
- # resource values. Used by the attack path simulation.
2135
+ # A resource value config (RVC) is a mapping configuration of user's resources
2136
+ # to resource values. Used in Attack path simulations.
2128
2137
  class GoogleCloudSecuritycenterV1ResourceValueConfig
2129
2138
  include Google::Apis::Core::Hashable
2130
2139
 
@@ -3646,6 +3655,26 @@ module Google
3646
3655
  end
3647
3656
  end
3648
3657
 
3658
+ # Contains information about the org policies associated with the finding.
3659
+ class OrgPolicy
3660
+ include Google::Apis::Core::Hashable
3661
+
3662
+ # The resource name of the org policy. Example: "organizations/`organization_id`/
3663
+ # policies/`constraint_name`"
3664
+ # Corresponds to the JSON property `name`
3665
+ # @return [String]
3666
+ attr_accessor :name
3667
+
3668
+ def initialize(**args)
3669
+ update!(**args)
3670
+ end
3671
+
3672
+ # Update properties of this object
3673
+ def update!(**args)
3674
+ @name = args[:name] if args.key?(:name)
3675
+ end
3676
+ end
3677
+
3649
3678
  # User specified settings that are attached to the Security Command Center
3650
3679
  # organization.
3651
3680
  class OrganizationSettings
@@ -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.61.0"
19
+ GEM_VERSION = "0.63.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20231001"
25
+ REVISION = "20231023"
26
26
  end
27
27
  end
28
28
  end
@@ -484,6 +484,12 @@ module Google
484
484
  include Google::Apis::Core::JsonObjectSupport
485
485
  end
486
486
 
487
+ class OrgPolicy
488
+ class Representation < Google::Apis::Core::JsonRepresentation; end
489
+
490
+ include Google::Apis::Core::JsonObjectSupport
491
+ end
492
+
487
493
  class OrganizationSettings
488
494
  class Representation < Google::Apis::Core::JsonRepresentation; end
489
495
 
@@ -929,6 +935,8 @@ module Google
929
935
  property :mute_update_time, as: 'muteUpdateTime'
930
936
  property :name, as: 'name'
931
937
  property :next_steps, as: 'nextSteps'
938
+ collection :org_policies, as: 'orgPolicies', class: Google::Apis::SecuritycenterV1beta1::OrgPolicy, decorator: Google::Apis::SecuritycenterV1beta1::OrgPolicy::Representation
939
+
932
940
  property :parent, as: 'parent'
933
941
  property :parent_display_name, as: 'parentDisplayName'
934
942
  collection :processes, as: 'processes', class: Google::Apis::SecuritycenterV1beta1::Process, decorator: Google::Apis::SecuritycenterV1beta1::Process::Representation
@@ -1474,6 +1482,13 @@ module Google
1474
1482
  end
1475
1483
  end
1476
1484
 
1485
+ class OrgPolicy
1486
+ # @private
1487
+ class Representation < Google::Apis::Core::JsonRepresentation
1488
+ property :name, as: 'name'
1489
+ end
1490
+ end
1491
+
1477
1492
  class OrganizationSettings
1478
1493
  # @private
1479
1494
  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.61.0
4
+ version: 0.63.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: 2023-10-08 00:00:00.000000000 Z
11
+ date: 2023-10-29 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_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.61.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.63.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: []