google-apis-securitycenter_v1beta2 0.90.0 → 0.91.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: 9d48690144c92eb07b5ebc970ea54bb9741d0838f0094c9a9c28e3d32d4578c8
|
4
|
+
data.tar.gz: bbd1865501e1614501bea2bd03a56e2d142a61d16baac0604bd76da98d9788ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa4099b9195700b6cb81bd4b5daa51ea9004475fce210eceb0fd4b084bbb7e670b43d20674bfdd7f8d0b8eedca73e03372cb145a93b98992f0e67b65d2fa5425
|
7
|
+
data.tar.gz: f3a2437c3f10472106b73642c9ef4c8f24e99caa52c778674f90cf48b072bab76c37af16e220e433419bd33d0982e4c3d2ec4c579cd20dd7e1e0d0fd04cc4bab
|
data/CHANGELOG.md
CHANGED
@@ -939,6 +939,12 @@ module Google
|
|
939
939
|
# @return [String]
|
940
940
|
attr_accessor :data_profile
|
941
941
|
|
942
|
+
# Type of information detected by SDP. Info type includes name, version and
|
943
|
+
# sensitivity of the detected information type.
|
944
|
+
# Corresponds to the JSON property `infoTypes`
|
945
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::InfoType>]
|
946
|
+
attr_accessor :info_types
|
947
|
+
|
942
948
|
# The resource hierarchy level at which the data profile was generated.
|
943
949
|
# Corresponds to the JSON property `parentType`
|
944
950
|
# @return [String]
|
@@ -951,6 +957,7 @@ module Google
|
|
951
957
|
# Update properties of this object
|
952
958
|
def update!(**args)
|
953
959
|
@data_profile = args[:data_profile] if args.key?(:data_profile)
|
960
|
+
@info_types = args[:info_types] if args.key?(:info_types)
|
954
961
|
@parent_type = args[:parent_type] if args.key?(:parent_type)
|
955
962
|
end
|
956
963
|
end
|
@@ -5093,6 +5100,12 @@ module Google
|
|
5093
5100
|
# @return [String]
|
5094
5101
|
attr_accessor :data_profile
|
5095
5102
|
|
5103
|
+
# Type of information detected by SDP. Info type includes name, version and
|
5104
|
+
# sensitivity of the detected information type.
|
5105
|
+
# Corresponds to the JSON property `infoTypes`
|
5106
|
+
# @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InfoType>]
|
5107
|
+
attr_accessor :info_types
|
5108
|
+
|
5096
5109
|
# The resource hierarchy level at which the data profile was generated.
|
5097
5110
|
# Corresponds to the JSON property `parentType`
|
5098
5111
|
# @return [String]
|
@@ -5105,6 +5118,7 @@ module Google
|
|
5105
5118
|
# Update properties of this object
|
5106
5119
|
def update!(**args)
|
5107
5120
|
@data_profile = args[:data_profile] if args.key?(:data_profile)
|
5121
|
+
@info_types = args[:info_types] if args.key?(:info_types)
|
5108
5122
|
@parent_type = args[:parent_type] if args.key?(:parent_type)
|
5109
5123
|
end
|
5110
5124
|
end
|
@@ -6886,6 +6900,42 @@ module Google
|
|
6886
6900
|
end
|
6887
6901
|
end
|
6888
6902
|
|
6903
|
+
# Type of information detected by the API.
|
6904
|
+
class GoogleCloudSecuritycenterV2InfoType
|
6905
|
+
include Google::Apis::Core::Hashable
|
6906
|
+
|
6907
|
+
# Name of the information type. Either a name of your choosing when creating a
|
6908
|
+
# CustomInfoType, or one of the names listed at https://cloud.google.com/
|
6909
|
+
# sensitive-data-protection/docs/infotypes-reference when specifying a built-in
|
6910
|
+
# type. When sending Cloud DLP results to Data Catalog, infoType names should
|
6911
|
+
# conform to the pattern `[A-Za-z0-9$_-]`1,64``.
|
6912
|
+
# Corresponds to the JSON property `name`
|
6913
|
+
# @return [String]
|
6914
|
+
attr_accessor :name
|
6915
|
+
|
6916
|
+
# Score is calculated from of all elements in the data profile. A higher level
|
6917
|
+
# means the data is more sensitive.
|
6918
|
+
# Corresponds to the JSON property `sensitivityScore`
|
6919
|
+
# @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SensitivityScore]
|
6920
|
+
attr_accessor :sensitivity_score
|
6921
|
+
|
6922
|
+
# Optional version name for this InfoType.
|
6923
|
+
# Corresponds to the JSON property `version`
|
6924
|
+
# @return [String]
|
6925
|
+
attr_accessor :version
|
6926
|
+
|
6927
|
+
def initialize(**args)
|
6928
|
+
update!(**args)
|
6929
|
+
end
|
6930
|
+
|
6931
|
+
# Update properties of this object
|
6932
|
+
def update!(**args)
|
6933
|
+
@name = args[:name] if args.key?(:name)
|
6934
|
+
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
6935
|
+
@version = args[:version] if args.key?(:version)
|
6936
|
+
end
|
6937
|
+
end
|
6938
|
+
|
6889
6939
|
# IP rule information.
|
6890
6940
|
class GoogleCloudSecuritycenterV2IpRule
|
6891
6941
|
include Google::Apis::Core::Hashable
|
@@ -8958,6 +9008,26 @@ module Google
|
|
8958
9008
|
end
|
8959
9009
|
end
|
8960
9010
|
|
9011
|
+
# Score is calculated from of all elements in the data profile. A higher level
|
9012
|
+
# means the data is more sensitive.
|
9013
|
+
class GoogleCloudSecuritycenterV2SensitivityScore
|
9014
|
+
include Google::Apis::Core::Hashable
|
9015
|
+
|
9016
|
+
# The sensitivity score applied to the resource.
|
9017
|
+
# Corresponds to the JSON property `score`
|
9018
|
+
# @return [String]
|
9019
|
+
attr_accessor :score
|
9020
|
+
|
9021
|
+
def initialize(**args)
|
9022
|
+
update!(**args)
|
9023
|
+
end
|
9024
|
+
|
9025
|
+
# Update properties of this object
|
9026
|
+
def update!(**args)
|
9027
|
+
@score = args[:score] if args.key?(:score)
|
9028
|
+
end
|
9029
|
+
end
|
9030
|
+
|
8961
9031
|
# Identity delegation history of an authenticated service account.
|
8962
9032
|
class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
|
8963
9033
|
include Google::Apis::Core::Hashable
|
@@ -9336,6 +9406,42 @@ module Google
|
|
9336
9406
|
end
|
9337
9407
|
end
|
9338
9408
|
|
9409
|
+
# Type of information detected by the API.
|
9410
|
+
class InfoType
|
9411
|
+
include Google::Apis::Core::Hashable
|
9412
|
+
|
9413
|
+
# Name of the information type. Either a name of your choosing when creating a
|
9414
|
+
# CustomInfoType, or one of the names listed at https://cloud.google.com/
|
9415
|
+
# sensitive-data-protection/docs/infotypes-reference when specifying a built-in
|
9416
|
+
# type. When sending Cloud DLP results to Data Catalog, infoType names should
|
9417
|
+
# conform to the pattern `[A-Za-z0-9$_-]`1,64``.
|
9418
|
+
# Corresponds to the JSON property `name`
|
9419
|
+
# @return [String]
|
9420
|
+
attr_accessor :name
|
9421
|
+
|
9422
|
+
# Score is calculated from of all elements in the data profile. A higher level
|
9423
|
+
# means the data is more sensitive.
|
9424
|
+
# Corresponds to the JSON property `sensitivityScore`
|
9425
|
+
# @return [Google::Apis::SecuritycenterV1beta2::SensitivityScore]
|
9426
|
+
attr_accessor :sensitivity_score
|
9427
|
+
|
9428
|
+
# Optional version name for this InfoType.
|
9429
|
+
# Corresponds to the JSON property `version`
|
9430
|
+
# @return [String]
|
9431
|
+
attr_accessor :version
|
9432
|
+
|
9433
|
+
def initialize(**args)
|
9434
|
+
update!(**args)
|
9435
|
+
end
|
9436
|
+
|
9437
|
+
# Update properties of this object
|
9438
|
+
def update!(**args)
|
9439
|
+
@name = args[:name] if args.key?(:name)
|
9440
|
+
@sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
|
9441
|
+
@version = args[:version] if args.key?(:version)
|
9442
|
+
end
|
9443
|
+
end
|
9444
|
+
|
9339
9445
|
# IP rule information.
|
9340
9446
|
class IpRule
|
9341
9447
|
include Google::Apis::Core::Hashable
|
@@ -10699,6 +10805,26 @@ module Google
|
|
10699
10805
|
end
|
10700
10806
|
end
|
10701
10807
|
|
10808
|
+
# Score is calculated from of all elements in the data profile. A higher level
|
10809
|
+
# means the data is more sensitive.
|
10810
|
+
class SensitivityScore
|
10811
|
+
include Google::Apis::Core::Hashable
|
10812
|
+
|
10813
|
+
# The sensitivity score applied to the resource.
|
10814
|
+
# Corresponds to the JSON property `score`
|
10815
|
+
# @return [String]
|
10816
|
+
attr_accessor :score
|
10817
|
+
|
10818
|
+
def initialize(**args)
|
10819
|
+
update!(**args)
|
10820
|
+
end
|
10821
|
+
|
10822
|
+
# Update properties of this object
|
10823
|
+
def update!(**args)
|
10824
|
+
@score = args[:score] if args.key?(:score)
|
10825
|
+
end
|
10826
|
+
end
|
10827
|
+
|
10702
10828
|
# Identity delegation history of an authenticated service account.
|
10703
10829
|
class ServiceAccountDelegationInfo
|
10704
10830
|
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.91.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 = "20251006"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -904,6 +904,12 @@ module Google
|
|
904
904
|
include Google::Apis::Core::JsonObjectSupport
|
905
905
|
end
|
906
906
|
|
907
|
+
class GoogleCloudSecuritycenterV2InfoType
|
908
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
909
|
+
|
910
|
+
include Google::Apis::Core::JsonObjectSupport
|
911
|
+
end
|
912
|
+
|
907
913
|
class GoogleCloudSecuritycenterV2IpRule
|
908
914
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
909
915
|
|
@@ -1228,6 +1234,12 @@ module Google
|
|
1228
1234
|
include Google::Apis::Core::JsonObjectSupport
|
1229
1235
|
end
|
1230
1236
|
|
1237
|
+
class GoogleCloudSecuritycenterV2SensitivityScore
|
1238
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1239
|
+
|
1240
|
+
include Google::Apis::Core::JsonObjectSupport
|
1241
|
+
end
|
1242
|
+
|
1231
1243
|
class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
|
1232
1244
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1233
1245
|
|
@@ -1294,6 +1306,12 @@ module Google
|
|
1294
1306
|
include Google::Apis::Core::JsonObjectSupport
|
1295
1307
|
end
|
1296
1308
|
|
1309
|
+
class InfoType
|
1310
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1311
|
+
|
1312
|
+
include Google::Apis::Core::JsonObjectSupport
|
1313
|
+
end
|
1314
|
+
|
1297
1315
|
class IpRule
|
1298
1316
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1299
1317
|
|
@@ -1510,6 +1528,12 @@ module Google
|
|
1510
1528
|
include Google::Apis::Core::JsonObjectSupport
|
1511
1529
|
end
|
1512
1530
|
|
1531
|
+
class SensitivityScore
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1533
|
+
|
1534
|
+
include Google::Apis::Core::JsonObjectSupport
|
1535
|
+
end
|
1536
|
+
|
1513
1537
|
class ServiceAccountDelegationInfo
|
1514
1538
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1515
1539
|
|
@@ -1828,6 +1852,8 @@ module Google
|
|
1828
1852
|
# @private
|
1829
1853
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1830
1854
|
property :data_profile, as: 'dataProfile'
|
1855
|
+
collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1beta2::InfoType, decorator: Google::Apis::SecuritycenterV1beta2::InfoType::Representation
|
1856
|
+
|
1831
1857
|
property :parent_type, as: 'parentType'
|
1832
1858
|
end
|
1833
1859
|
end
|
@@ -2861,6 +2887,8 @@ module Google
|
|
2861
2887
|
# @private
|
2862
2888
|
class Representation < Google::Apis::Core::JsonRepresentation
|
2863
2889
|
property :data_profile, as: 'dataProfile'
|
2890
|
+
collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InfoType, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InfoType::Representation
|
2891
|
+
|
2864
2892
|
property :parent_type, as: 'parentType'
|
2865
2893
|
end
|
2866
2894
|
end
|
@@ -3319,6 +3347,16 @@ module Google
|
|
3319
3347
|
end
|
3320
3348
|
end
|
3321
3349
|
|
3350
|
+
class GoogleCloudSecuritycenterV2InfoType
|
3351
|
+
# @private
|
3352
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3353
|
+
property :name, as: 'name'
|
3354
|
+
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SensitivityScore, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SensitivityScore::Representation
|
3355
|
+
|
3356
|
+
property :version, as: 'version'
|
3357
|
+
end
|
3358
|
+
end
|
3359
|
+
|
3322
3360
|
class GoogleCloudSecuritycenterV2IpRule
|
3323
3361
|
# @private
|
3324
3362
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3891,6 +3929,13 @@ module Google
|
|
3891
3929
|
end
|
3892
3930
|
end
|
3893
3931
|
|
3932
|
+
class GoogleCloudSecuritycenterV2SensitivityScore
|
3933
|
+
# @private
|
3934
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
3935
|
+
property :score, as: 'score'
|
3936
|
+
end
|
3937
|
+
end
|
3938
|
+
|
3894
3939
|
class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
|
3895
3940
|
# @private
|
3896
3941
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -3999,6 +4044,16 @@ module Google
|
|
3999
4044
|
end
|
4000
4045
|
end
|
4001
4046
|
|
4047
|
+
class InfoType
|
4048
|
+
# @private
|
4049
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4050
|
+
property :name, as: 'name'
|
4051
|
+
property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1beta2::SensitivityScore, decorator: Google::Apis::SecuritycenterV1beta2::SensitivityScore::Representation
|
4052
|
+
|
4053
|
+
property :version, as: 'version'
|
4054
|
+
end
|
4055
|
+
end
|
4056
|
+
|
4002
4057
|
class IpRule
|
4003
4058
|
# @private
|
4004
4059
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -4371,6 +4426,13 @@ module Google
|
|
4371
4426
|
end
|
4372
4427
|
end
|
4373
4428
|
|
4429
|
+
class SensitivityScore
|
4430
|
+
# @private
|
4431
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4432
|
+
property :score, as: 'score'
|
4433
|
+
end
|
4434
|
+
end
|
4435
|
+
|
4374
4436
|
class ServiceAccountDelegationInfo
|
4375
4437
|
# @private
|
4376
4438
|
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.91.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.91.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:
|