google-apis-securitycenter_v1beta2 0.86.0 → 0.87.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c890cd796d52215f9b1bba09f3c3a6b29617799aeadc6719d39a312fb5d3db5
|
4
|
+
data.tar.gz: 42597b9dee9d0afcba7f4e26d51305827cc1f832dac2ab0521cac8fc643da684
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84d435d97d4e5d0bf91c41f412b880c6d0ad8bdf394b2b6c13384dcdc46546e7ac3fc4f61405ea923eff615b711dddd0be18da7351a3196dfaa49f1248890e69
|
7
|
+
data.tar.gz: 5182f3a545713fd75a423134d15cfabae964934bcd8a942353fdf85c32441e84abed785c5b29586148f2affb4b5f8af6e9879f7db0e987ca9392a7d138a2447f
|
data/CHANGELOG.md
CHANGED
@@ -891,6 +891,43 @@ module Google
|
|
891
891
|
end
|
892
892
|
end
|
893
893
|
|
894
|
+
# CloudControl associated with the finding.
|
895
|
+
class CloudControl
|
896
|
+
include Google::Apis::Core::Hashable
|
897
|
+
|
898
|
+
# Name of the CloudControl associated with the finding.
|
899
|
+
# Corresponds to the JSON property `cloudControlName`
|
900
|
+
# @return [String]
|
901
|
+
attr_accessor :cloud_control_name
|
902
|
+
|
903
|
+
# Policy type of the CloudControl
|
904
|
+
# Corresponds to the JSON property `policyType`
|
905
|
+
# @return [String]
|
906
|
+
attr_accessor :policy_type
|
907
|
+
|
908
|
+
# Type of cloud control.
|
909
|
+
# Corresponds to the JSON property `type`
|
910
|
+
# @return [String]
|
911
|
+
attr_accessor :type
|
912
|
+
|
913
|
+
# Version of the Cloud Control
|
914
|
+
# Corresponds to the JSON property `version`
|
915
|
+
# @return [Fixnum]
|
916
|
+
attr_accessor :version
|
917
|
+
|
918
|
+
def initialize(**args)
|
919
|
+
update!(**args)
|
920
|
+
end
|
921
|
+
|
922
|
+
# Update properties of this object
|
923
|
+
def update!(**args)
|
924
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
925
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
926
|
+
@type = args[:type] if args.key?(:type)
|
927
|
+
@version = args[:version] if args.key?(:version)
|
928
|
+
end
|
929
|
+
end
|
930
|
+
|
894
931
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
895
932
|
# with the finding.
|
896
933
|
class CloudDlpDataProfile
|
@@ -1034,6 +1071,39 @@ module Google
|
|
1034
1071
|
end
|
1035
1072
|
end
|
1036
1073
|
|
1074
|
+
# Compliance Details associated with the finding.
|
1075
|
+
class ComplianceDetails
|
1076
|
+
include Google::Apis::Core::Hashable
|
1077
|
+
|
1078
|
+
# CloudControl associated with the finding.
|
1079
|
+
# Corresponds to the JSON property `cloudControl`
|
1080
|
+
# @return [Google::Apis::SecuritycenterV1beta2::CloudControl]
|
1081
|
+
attr_accessor :cloud_control
|
1082
|
+
|
1083
|
+
# Cloud Control Deployments associated with the finding. For example,
|
1084
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
1085
|
+
# deploymentIdentifier
|
1086
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
1087
|
+
# @return [Array<String>]
|
1088
|
+
attr_accessor :cloud_control_deployment_names
|
1089
|
+
|
1090
|
+
# Details of Frameworks associated with the finding
|
1091
|
+
# Corresponds to the JSON property `frameworks`
|
1092
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Framework>]
|
1093
|
+
attr_accessor :frameworks
|
1094
|
+
|
1095
|
+
def initialize(**args)
|
1096
|
+
update!(**args)
|
1097
|
+
end
|
1098
|
+
|
1099
|
+
# Update properties of this object
|
1100
|
+
def update!(**args)
|
1101
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
1102
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
1103
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
1104
|
+
end
|
1105
|
+
end
|
1106
|
+
|
1037
1107
|
# Configuration of a module.
|
1038
1108
|
class Config
|
1039
1109
|
include Google::Apis::Core::Hashable
|
@@ -1239,6 +1309,31 @@ module Google
|
|
1239
1309
|
end
|
1240
1310
|
end
|
1241
1311
|
|
1312
|
+
# Compliance control associated with the finding.
|
1313
|
+
class Control
|
1314
|
+
include Google::Apis::Core::Hashable
|
1315
|
+
|
1316
|
+
# Name of the Control
|
1317
|
+
# Corresponds to the JSON property `controlName`
|
1318
|
+
# @return [String]
|
1319
|
+
attr_accessor :control_name
|
1320
|
+
|
1321
|
+
# Display name of the control. For example, AU-02.
|
1322
|
+
# Corresponds to the JSON property `displayName`
|
1323
|
+
# @return [String]
|
1324
|
+
attr_accessor :display_name
|
1325
|
+
|
1326
|
+
def initialize(**args)
|
1327
|
+
update!(**args)
|
1328
|
+
end
|
1329
|
+
|
1330
|
+
# Update properties of this object
|
1331
|
+
def update!(**args)
|
1332
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
1333
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
1334
|
+
end
|
1335
|
+
end
|
1336
|
+
|
1242
1337
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
1243
1338
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
1244
1339
|
# vulnerability.
|
@@ -2194,6 +2289,11 @@ module Google
|
|
2194
2289
|
# @return [Google::Apis::SecuritycenterV1beta2::CloudDlpInspection]
|
2195
2290
|
attr_accessor :cloud_dlp_inspection
|
2196
2291
|
|
2292
|
+
# Compliance Details associated with the finding.
|
2293
|
+
# Corresponds to the JSON property `complianceDetails`
|
2294
|
+
# @return [Google::Apis::SecuritycenterV1beta2::ComplianceDetails]
|
2295
|
+
attr_accessor :compliance_details
|
2296
|
+
|
2197
2297
|
# Contains compliance information for security standards associated to the
|
2198
2298
|
# finding.
|
2199
2299
|
# Corresponds to the JSON property `compliances`
|
@@ -2520,6 +2620,7 @@ module Google
|
|
2520
2620
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
2521
2621
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
2522
2622
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
2623
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
2523
2624
|
@compliances = args[:compliances] if args.key?(:compliances)
|
2524
2625
|
@connections = args[:connections] if args.key?(:connections)
|
2525
2626
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -2598,6 +2699,54 @@ module Google
|
|
2598
2699
|
end
|
2599
2700
|
end
|
2600
2701
|
|
2702
|
+
# Compliance framework associated with the finding.
|
2703
|
+
class Framework
|
2704
|
+
include Google::Apis::Core::Hashable
|
2705
|
+
|
2706
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
2707
|
+
# or Assured Workloads
|
2708
|
+
# Corresponds to the JSON property `category`
|
2709
|
+
# @return [Array<String>]
|
2710
|
+
attr_accessor :category
|
2711
|
+
|
2712
|
+
# The controls associated with the framework.
|
2713
|
+
# Corresponds to the JSON property `controls`
|
2714
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::Control>]
|
2715
|
+
attr_accessor :controls
|
2716
|
+
|
2717
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
2718
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
2719
|
+
# string like MyFramework
|
2720
|
+
# Corresponds to the JSON property `displayName`
|
2721
|
+
# @return [String]
|
2722
|
+
attr_accessor :display_name
|
2723
|
+
|
2724
|
+
# Name of the framework associated with the finding
|
2725
|
+
# Corresponds to the JSON property `name`
|
2726
|
+
# @return [String]
|
2727
|
+
attr_accessor :name
|
2728
|
+
|
2729
|
+
# Type of the framework associated with the finding, to specify whether the
|
2730
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
2731
|
+
# defined by the customer (equivalent to security posture)
|
2732
|
+
# Corresponds to the JSON property `type`
|
2733
|
+
# @return [String]
|
2734
|
+
attr_accessor :type
|
2735
|
+
|
2736
|
+
def initialize(**args)
|
2737
|
+
update!(**args)
|
2738
|
+
end
|
2739
|
+
|
2740
|
+
# Update properties of this object
|
2741
|
+
def update!(**args)
|
2742
|
+
@category = args[:category] if args.key?(:category)
|
2743
|
+
@controls = args[:controls] if args.key?(:controls)
|
2744
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
2745
|
+
@name = args[:name] if args.key?(:name)
|
2746
|
+
@type = args[:type] if args.key?(:type)
|
2747
|
+
end
|
2748
|
+
end
|
2749
|
+
|
2601
2750
|
# Google Cloud metadata associated with the resource. Only applicable if the
|
2602
2751
|
# finding's cloud provider is Google Cloud.
|
2603
2752
|
class GcpMetadata
|
@@ -4888,6 +5037,43 @@ module Google
|
|
4888
5037
|
end
|
4889
5038
|
end
|
4890
5039
|
|
5040
|
+
# CloudControl associated with the finding.
|
5041
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
5042
|
+
include Google::Apis::Core::Hashable
|
5043
|
+
|
5044
|
+
# Name of the CloudControl associated with the finding.
|
5045
|
+
# Corresponds to the JSON property `cloudControlName`
|
5046
|
+
# @return [String]
|
5047
|
+
attr_accessor :cloud_control_name
|
5048
|
+
|
5049
|
+
# Policy type of the CloudControl
|
5050
|
+
# Corresponds to the JSON property `policyType`
|
5051
|
+
# @return [String]
|
5052
|
+
attr_accessor :policy_type
|
5053
|
+
|
5054
|
+
# Type of cloud control.
|
5055
|
+
# Corresponds to the JSON property `type`
|
5056
|
+
# @return [String]
|
5057
|
+
attr_accessor :type
|
5058
|
+
|
5059
|
+
# Version of the Cloud Control
|
5060
|
+
# Corresponds to the JSON property `version`
|
5061
|
+
# @return [Fixnum]
|
5062
|
+
attr_accessor :version
|
5063
|
+
|
5064
|
+
def initialize(**args)
|
5065
|
+
update!(**args)
|
5066
|
+
end
|
5067
|
+
|
5068
|
+
# Update properties of this object
|
5069
|
+
def update!(**args)
|
5070
|
+
@cloud_control_name = args[:cloud_control_name] if args.key?(:cloud_control_name)
|
5071
|
+
@policy_type = args[:policy_type] if args.key?(:policy_type)
|
5072
|
+
@type = args[:type] if args.key?(:type)
|
5073
|
+
@version = args[:version] if args.key?(:version)
|
5074
|
+
end
|
5075
|
+
end
|
5076
|
+
|
4891
5077
|
# The [data profile](https://cloud.google.com/dlp/docs/data-profiles) associated
|
4892
5078
|
# with the finding.
|
4893
5079
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
@@ -5031,6 +5217,39 @@ module Google
|
|
5031
5217
|
end
|
5032
5218
|
end
|
5033
5219
|
|
5220
|
+
# Compliance Details associated with the finding.
|
5221
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
5222
|
+
include Google::Apis::Core::Hashable
|
5223
|
+
|
5224
|
+
# CloudControl associated with the finding.
|
5225
|
+
# Corresponds to the JSON property `cloudControl`
|
5226
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudControl]
|
5227
|
+
attr_accessor :cloud_control
|
5228
|
+
|
5229
|
+
# Cloud Control Deployments associated with the finding. For example,
|
5230
|
+
# organizations/123/locations/global/cloudControlDeployments/
|
5231
|
+
# deploymentIdentifier
|
5232
|
+
# Corresponds to the JSON property `cloudControlDeploymentNames`
|
5233
|
+
# @return [Array<String>]
|
5234
|
+
attr_accessor :cloud_control_deployment_names
|
5235
|
+
|
5236
|
+
# Details of Frameworks associated with the finding
|
5237
|
+
# Corresponds to the JSON property `frameworks`
|
5238
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Framework>]
|
5239
|
+
attr_accessor :frameworks
|
5240
|
+
|
5241
|
+
def initialize(**args)
|
5242
|
+
update!(**args)
|
5243
|
+
end
|
5244
|
+
|
5245
|
+
# Update properties of this object
|
5246
|
+
def update!(**args)
|
5247
|
+
@cloud_control = args[:cloud_control] if args.key?(:cloud_control)
|
5248
|
+
@cloud_control_deployment_names = args[:cloud_control_deployment_names] if args.key?(:cloud_control_deployment_names)
|
5249
|
+
@frameworks = args[:frameworks] if args.key?(:frameworks)
|
5250
|
+
end
|
5251
|
+
end
|
5252
|
+
|
5034
5253
|
# Contains information about the IP connection associated with the finding.
|
5035
5254
|
class GoogleCloudSecuritycenterV2Connection
|
5036
5255
|
include Google::Apis::Core::Hashable
|
@@ -5158,6 +5377,31 @@ module Google
|
|
5158
5377
|
end
|
5159
5378
|
end
|
5160
5379
|
|
5380
|
+
# Compliance control associated with the finding.
|
5381
|
+
class GoogleCloudSecuritycenterV2Control
|
5382
|
+
include Google::Apis::Core::Hashable
|
5383
|
+
|
5384
|
+
# Name of the Control
|
5385
|
+
# Corresponds to the JSON property `controlName`
|
5386
|
+
# @return [String]
|
5387
|
+
attr_accessor :control_name
|
5388
|
+
|
5389
|
+
# Display name of the control. For example, AU-02.
|
5390
|
+
# Corresponds to the JSON property `displayName`
|
5391
|
+
# @return [String]
|
5392
|
+
attr_accessor :display_name
|
5393
|
+
|
5394
|
+
def initialize(**args)
|
5395
|
+
update!(**args)
|
5396
|
+
end
|
5397
|
+
|
5398
|
+
# Update properties of this object
|
5399
|
+
def update!(**args)
|
5400
|
+
@control_name = args[:control_name] if args.key?(:control_name)
|
5401
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
5402
|
+
end
|
5403
|
+
end
|
5404
|
+
|
5161
5405
|
# CVE stands for Common Vulnerabilities and Exposures. Information from the [CVE
|
5162
5406
|
# record](https://www.cve.org/ResourcesSupport/Glossary) that describes this
|
5163
5407
|
# vulnerability.
|
@@ -6041,6 +6285,11 @@ module Google
|
|
6041
6285
|
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpInspection]
|
6042
6286
|
attr_accessor :cloud_dlp_inspection
|
6043
6287
|
|
6288
|
+
# Compliance Details associated with the finding.
|
6289
|
+
# Corresponds to the JSON property `complianceDetails`
|
6290
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ComplianceDetails]
|
6291
|
+
attr_accessor :compliance_details
|
6292
|
+
|
6044
6293
|
# Contains compliance information for security standards associated to the
|
6045
6294
|
# finding.
|
6046
6295
|
# Corresponds to the JSON property `compliances`
|
@@ -6377,6 +6626,7 @@ module Google
|
|
6377
6626
|
@cloud_armor = args[:cloud_armor] if args.key?(:cloud_armor)
|
6378
6627
|
@cloud_dlp_data_profile = args[:cloud_dlp_data_profile] if args.key?(:cloud_dlp_data_profile)
|
6379
6628
|
@cloud_dlp_inspection = args[:cloud_dlp_inspection] if args.key?(:cloud_dlp_inspection)
|
6629
|
+
@compliance_details = args[:compliance_details] if args.key?(:compliance_details)
|
6380
6630
|
@compliances = args[:compliances] if args.key?(:compliances)
|
6381
6631
|
@connections = args[:connections] if args.key?(:connections)
|
6382
6632
|
@contacts = args[:contacts] if args.key?(:contacts)
|
@@ -6455,6 +6705,54 @@ module Google
|
|
6455
6705
|
end
|
6456
6706
|
end
|
6457
6707
|
|
6708
|
+
# Compliance framework associated with the finding.
|
6709
|
+
class GoogleCloudSecuritycenterV2Framework
|
6710
|
+
include Google::Apis::Core::Hashable
|
6711
|
+
|
6712
|
+
# Category of the framework associated with the finding. E.g. Security Benchmark,
|
6713
|
+
# or Assured Workloads
|
6714
|
+
# Corresponds to the JSON property `category`
|
6715
|
+
# @return [Array<String>]
|
6716
|
+
attr_accessor :category
|
6717
|
+
|
6718
|
+
# The controls associated with the framework.
|
6719
|
+
# Corresponds to the JSON property `controls`
|
6720
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Control>]
|
6721
|
+
attr_accessor :controls
|
6722
|
+
|
6723
|
+
# Display name of the framework. For a standard framework, this will look like e.
|
6724
|
+
# g. PCI DSS 3.2.1, whereas for a custom framework it can be a user defined
|
6725
|
+
# string like MyFramework
|
6726
|
+
# Corresponds to the JSON property `displayName`
|
6727
|
+
# @return [String]
|
6728
|
+
attr_accessor :display_name
|
6729
|
+
|
6730
|
+
# Name of the framework associated with the finding
|
6731
|
+
# Corresponds to the JSON property `name`
|
6732
|
+
# @return [String]
|
6733
|
+
attr_accessor :name
|
6734
|
+
|
6735
|
+
# Type of the framework associated with the finding, to specify whether the
|
6736
|
+
# framework is built-in (pre-defined and immutable) or a custom framework
|
6737
|
+
# defined by the customer (equivalent to security posture)
|
6738
|
+
# Corresponds to the JSON property `type`
|
6739
|
+
# @return [String]
|
6740
|
+
attr_accessor :type
|
6741
|
+
|
6742
|
+
def initialize(**args)
|
6743
|
+
update!(**args)
|
6744
|
+
end
|
6745
|
+
|
6746
|
+
# Update properties of this object
|
6747
|
+
def update!(**args)
|
6748
|
+
@category = args[:category] if args.key?(:category)
|
6749
|
+
@controls = args[:controls] if args.key?(:controls)
|
6750
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
6751
|
+
@name = args[:name] if args.key?(:name)
|
6752
|
+
@type = args[:type] if args.key?(:type)
|
6753
|
+
end
|
6754
|
+
end
|
6755
|
+
|
6458
6756
|
# Represents a geographical location for a given access.
|
6459
6757
|
class GoogleCloudSecuritycenterV2Geolocation
|
6460
6758
|
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.
|
19
|
+
GEM_VERSION = "0.87.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250721"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -154,6 +154,12 @@ module Google
|
|
154
154
|
include Google::Apis::Core::JsonObjectSupport
|
155
155
|
end
|
156
156
|
|
157
|
+
class CloudControl
|
158
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
|
+
|
160
|
+
include Google::Apis::Core::JsonObjectSupport
|
161
|
+
end
|
162
|
+
|
157
163
|
class CloudDlpDataProfile
|
158
164
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
159
165
|
|
@@ -178,6 +184,12 @@ module Google
|
|
178
184
|
include Google::Apis::Core::JsonObjectSupport
|
179
185
|
end
|
180
186
|
|
187
|
+
class ComplianceDetails
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
181
193
|
class Config
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
195
|
|
@@ -214,6 +226,12 @@ module Google
|
|
214
226
|
include Google::Apis::Core::JsonObjectSupport
|
215
227
|
end
|
216
228
|
|
229
|
+
class Control
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
217
235
|
class Cve
|
218
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
237
|
|
@@ -364,6 +382,12 @@ module Google
|
|
364
382
|
include Google::Apis::Core::JsonObjectSupport
|
365
383
|
end
|
366
384
|
|
385
|
+
class Framework
|
386
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
387
|
+
|
388
|
+
include Google::Apis::Core::JsonObjectSupport
|
389
|
+
end
|
390
|
+
|
367
391
|
class GcpMetadata
|
368
392
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
369
393
|
|
@@ -658,6 +682,12 @@ module Google
|
|
658
682
|
include Google::Apis::Core::JsonObjectSupport
|
659
683
|
end
|
660
684
|
|
685
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
|
+
|
688
|
+
include Google::Apis::Core::JsonObjectSupport
|
689
|
+
end
|
690
|
+
|
661
691
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
662
692
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
663
693
|
|
@@ -682,6 +712,12 @@ module Google
|
|
682
712
|
include Google::Apis::Core::JsonObjectSupport
|
683
713
|
end
|
684
714
|
|
715
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
716
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
717
|
+
|
718
|
+
include Google::Apis::Core::JsonObjectSupport
|
719
|
+
end
|
720
|
+
|
685
721
|
class GoogleCloudSecuritycenterV2Connection
|
686
722
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
723
|
|
@@ -706,6 +742,12 @@ module Google
|
|
706
742
|
include Google::Apis::Core::JsonObjectSupport
|
707
743
|
end
|
708
744
|
|
745
|
+
class GoogleCloudSecuritycenterV2Control
|
746
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
747
|
+
|
748
|
+
include Google::Apis::Core::JsonObjectSupport
|
749
|
+
end
|
750
|
+
|
709
751
|
class GoogleCloudSecuritycenterV2Cve
|
710
752
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
711
753
|
|
@@ -832,6 +874,12 @@ module Google
|
|
832
874
|
include Google::Apis::Core::JsonObjectSupport
|
833
875
|
end
|
834
876
|
|
877
|
+
class GoogleCloudSecuritycenterV2Framework
|
878
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
879
|
+
|
880
|
+
include Google::Apis::Core::JsonObjectSupport
|
881
|
+
end
|
882
|
+
|
835
883
|
class GoogleCloudSecuritycenterV2Geolocation
|
836
884
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
837
885
|
|
@@ -1760,6 +1808,16 @@ module Google
|
|
1760
1808
|
end
|
1761
1809
|
end
|
1762
1810
|
|
1811
|
+
class CloudControl
|
1812
|
+
# @private
|
1813
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1814
|
+
property :cloud_control_name, as: 'cloudControlName'
|
1815
|
+
property :policy_type, as: 'policyType'
|
1816
|
+
property :type, as: 'type'
|
1817
|
+
property :version, as: 'version'
|
1818
|
+
end
|
1819
|
+
end
|
1820
|
+
|
1763
1821
|
class CloudDlpDataProfile
|
1764
1822
|
# @private
|
1765
1823
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1797,6 +1855,17 @@ module Google
|
|
1797
1855
|
end
|
1798
1856
|
end
|
1799
1857
|
|
1858
|
+
class ComplianceDetails
|
1859
|
+
# @private
|
1860
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1861
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1beta2::CloudControl, decorator: Google::Apis::SecuritycenterV1beta2::CloudControl::Representation
|
1862
|
+
|
1863
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
1864
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1beta2::Framework, decorator: Google::Apis::SecuritycenterV1beta2::Framework::Representation
|
1865
|
+
|
1866
|
+
end
|
1867
|
+
end
|
1868
|
+
|
1800
1869
|
class Config
|
1801
1870
|
# @private
|
1802
1871
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1855,6 +1924,14 @@ module Google
|
|
1855
1924
|
end
|
1856
1925
|
end
|
1857
1926
|
|
1927
|
+
class Control
|
1928
|
+
# @private
|
1929
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1930
|
+
property :control_name, as: 'controlName'
|
1931
|
+
property :display_name, as: 'displayName'
|
1932
|
+
end
|
1933
|
+
end
|
1934
|
+
|
1858
1935
|
class Cve
|
1859
1936
|
# @private
|
1860
1937
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2108,6 +2185,8 @@ module Google
|
|
2108
2185
|
|
2109
2186
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1beta2::CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1beta2::CloudDlpInspection::Representation
|
2110
2187
|
|
2188
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1beta2::ComplianceDetails, decorator: Google::Apis::SecuritycenterV1beta2::ComplianceDetails::Representation
|
2189
|
+
|
2111
2190
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1beta2::Compliance, decorator: Google::Apis::SecuritycenterV1beta2::Compliance::Representation
|
2112
2191
|
|
2113
2192
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1beta2::Connection, decorator: Google::Apis::SecuritycenterV1beta2::Connection::Representation
|
@@ -2200,6 +2279,18 @@ module Google
|
|
2200
2279
|
end
|
2201
2280
|
end
|
2202
2281
|
|
2282
|
+
class Framework
|
2283
|
+
# @private
|
2284
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2285
|
+
collection :category, as: 'category'
|
2286
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1beta2::Control, decorator: Google::Apis::SecuritycenterV1beta2::Control::Representation
|
2287
|
+
|
2288
|
+
property :display_name, as: 'displayName'
|
2289
|
+
property :name, as: 'name'
|
2290
|
+
property :type, as: 'type'
|
2291
|
+
end
|
2292
|
+
end
|
2293
|
+
|
2203
2294
|
class GcpMetadata
|
2204
2295
|
# @private
|
2205
2296
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2749,6 +2840,16 @@ module Google
|
|
2749
2840
|
end
|
2750
2841
|
end
|
2751
2842
|
|
2843
|
+
class GoogleCloudSecuritycenterV2CloudControl
|
2844
|
+
# @private
|
2845
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2846
|
+
property :cloud_control_name, as: 'cloudControlName'
|
2847
|
+
property :policy_type, as: 'policyType'
|
2848
|
+
property :type, as: 'type'
|
2849
|
+
property :version, as: 'version'
|
2850
|
+
end
|
2851
|
+
end
|
2852
|
+
|
2752
2853
|
class GoogleCloudSecuritycenterV2CloudDlpDataProfile
|
2753
2854
|
# @private
|
2754
2855
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2786,6 +2887,17 @@ module Google
|
|
2786
2887
|
end
|
2787
2888
|
end
|
2788
2889
|
|
2890
|
+
class GoogleCloudSecuritycenterV2ComplianceDetails
|
2891
|
+
# @private
|
2892
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2893
|
+
property :cloud_control, as: 'cloudControl', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudControl, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudControl::Representation
|
2894
|
+
|
2895
|
+
collection :cloud_control_deployment_names, as: 'cloudControlDeploymentNames'
|
2896
|
+
collection :frameworks, as: 'frameworks', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Framework, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Framework::Representation
|
2897
|
+
|
2898
|
+
end
|
2899
|
+
end
|
2900
|
+
|
2789
2901
|
class GoogleCloudSecuritycenterV2Connection
|
2790
2902
|
# @private
|
2791
2903
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2824,6 +2936,14 @@ module Google
|
|
2824
2936
|
end
|
2825
2937
|
end
|
2826
2938
|
|
2939
|
+
class GoogleCloudSecuritycenterV2Control
|
2940
|
+
# @private
|
2941
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2942
|
+
property :control_name, as: 'controlName'
|
2943
|
+
property :display_name, as: 'displayName'
|
2944
|
+
end
|
2945
|
+
end
|
2946
|
+
|
2827
2947
|
class GoogleCloudSecuritycenterV2Cve
|
2828
2948
|
# @private
|
2829
2949
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3050,6 +3170,8 @@ module Google
|
|
3050
3170
|
|
3051
3171
|
property :cloud_dlp_inspection, as: 'cloudDlpInspection', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpInspection, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2CloudDlpInspection::Representation
|
3052
3172
|
|
3173
|
+
property :compliance_details, as: 'complianceDetails', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ComplianceDetails, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2ComplianceDetails::Representation
|
3174
|
+
|
3053
3175
|
collection :compliances, as: 'compliances', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Compliance, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Compliance::Representation
|
3054
3176
|
|
3055
3177
|
collection :connections, as: 'connections', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Connection, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Connection::Representation
|
@@ -3142,6 +3264,18 @@ module Google
|
|
3142
3264
|
end
|
3143
3265
|
end
|
3144
3266
|
|
3267
|
+
class GoogleCloudSecuritycenterV2Framework
|
3268
|
+
# @private
|
3269
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3270
|
+
collection :category, as: 'category'
|
3271
|
+
collection :controls, as: 'controls', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Control, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2Control::Representation
|
3272
|
+
|
3273
|
+
property :display_name, as: 'displayName'
|
3274
|
+
property :name, as: 'name'
|
3275
|
+
property :type, as: 'type'
|
3276
|
+
end
|
3277
|
+
end
|
3278
|
+
|
3145
3279
|
class GoogleCloudSecuritycenterV2Geolocation
|
3146
3280
|
# @private
|
3147
3281
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-securitycenter_v1beta2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.87.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.87.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|