google-apis-securitycenter_v1beta2 0.90.0 → 0.92.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: 1ccfe853603768c998b0c11ff00a7d3738ea5b42be33f6f3da5d4dc7b0d4f318
4
- data.tar.gz: e6637d12c8e6d7620ddb4748bb7f35e76625e99d07aa150c2ffd5281e44c86b5
3
+ metadata.gz: 122b9c0452ea21c00e59cc9417b81a2d79e352c8e8ee3d21bfb3f944a4907422
4
+ data.tar.gz: 5d9be1a430e136b9c39cee0079bd0bf99af40a8f132387af1f590e9bdb3c2d00
5
5
  SHA512:
6
- metadata.gz: 5ac4747c9f2271f3a2702a7345156c91cb26ab232054138106143a1e641f4d197f382035082b203d0366f774355f1fe2ad77bf940724ef5a5dd3537580c19e2d
7
- data.tar.gz: e5b90057c3fdf03002867ed2a39ba748d817ca39d9e7c4471721edd39fdf5c4478beba916a7b57a3a52af639be3d729bd3e2db201f8e6d18bf2108ef0646c1ba
6
+ metadata.gz: 3d1d3e86b622efd967dc32886e7560abfd0240d4e58047f751ee3d5a18c93b57c6733d0b847928f63ccb1eedbddf17e9ea5e5211a6a20ade3729c68649948362
7
+ data.tar.gz: cab3fffb0b2e60c42af9cb68de4a74c6eb29e6673743ed0eb8a1826bef182e1b3268e8e895565c70625dffd1d5dcc8ee2d1aa13f38d5dbc5688c3a1bcbf3233f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1beta2
2
2
 
3
+ ### v0.92.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251017
6
+
7
+ ### v0.91.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251006
10
+
3
11
  ### v0.90.0 (2025-09-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20250905
@@ -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
@@ -7277,6 +7327,11 @@ module Google
7277
7327
  class GoogleCloudSecuritycenterV2IssueResourceApplication
7278
7328
  include Google::Apis::Core::Hashable
7279
7329
 
7330
+ # Consumer provided attributes for the application
7331
+ # Corresponds to the JSON property `attributes`
7332
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
7333
+ attr_accessor :attributes
7334
+
7280
7335
  # The resource name of an Application. Format: `projects/`host-project-id`/
7281
7336
  # locations/`location`/applications/`application-id``
7282
7337
  # Corresponds to the JSON property `name`
@@ -7289,10 +7344,111 @@ module Google
7289
7344
 
7290
7345
  # Update properties of this object
7291
7346
  def update!(**args)
7347
+ @attributes = args[:attributes] if args.key?(:attributes)
7292
7348
  @name = args[:name] if args.key?(:name)
7293
7349
  end
7294
7350
  end
7295
7351
 
7352
+ # Consumer provided attributes for the application
7353
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
7354
+ include Google::Apis::Core::Hashable
7355
+
7356
+ # Business team that ensures user needs are met and value is delivered
7357
+ # Corresponds to the JSON property `businessOwners`
7358
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
7359
+ attr_accessor :business_owners
7360
+
7361
+ # Criticality of the Application, Service, or Workload
7362
+ # Corresponds to the JSON property `criticality`
7363
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
7364
+ attr_accessor :criticality
7365
+
7366
+ # Developer team that owns development and coding.
7367
+ # Corresponds to the JSON property `developerOwners`
7368
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
7369
+ attr_accessor :developer_owners
7370
+
7371
+ # Environment of the Application, Service, or Workload
7372
+ # Corresponds to the JSON property `environment`
7373
+ # @return [Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
7374
+ attr_accessor :environment
7375
+
7376
+ # Operator team that ensures runtime and operations.
7377
+ # Corresponds to the JSON property `operatorOwners`
7378
+ # @return [Array<Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
7379
+ attr_accessor :operator_owners
7380
+
7381
+ def initialize(**args)
7382
+ update!(**args)
7383
+ end
7384
+
7385
+ # Update properties of this object
7386
+ def update!(**args)
7387
+ @business_owners = args[:business_owners] if args.key?(:business_owners)
7388
+ @criticality = args[:criticality] if args.key?(:criticality)
7389
+ @developer_owners = args[:developer_owners] if args.key?(:developer_owners)
7390
+ @environment = args[:environment] if args.key?(:environment)
7391
+ @operator_owners = args[:operator_owners] if args.key?(:operator_owners)
7392
+ end
7393
+ end
7394
+
7395
+ # Contact information of stakeholders.
7396
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
7397
+ include Google::Apis::Core::Hashable
7398
+
7399
+ # Email address of the contacts.
7400
+ # Corresponds to the JSON property `email`
7401
+ # @return [String]
7402
+ attr_accessor :email
7403
+
7404
+ def initialize(**args)
7405
+ update!(**args)
7406
+ end
7407
+
7408
+ # Update properties of this object
7409
+ def update!(**args)
7410
+ @email = args[:email] if args.key?(:email)
7411
+ end
7412
+ end
7413
+
7414
+ # Criticality of the Application, Service, or Workload
7415
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
7416
+ include Google::Apis::Core::Hashable
7417
+
7418
+ # Criticality Type.
7419
+ # Corresponds to the JSON property `type`
7420
+ # @return [String]
7421
+ attr_accessor :type
7422
+
7423
+ def initialize(**args)
7424
+ update!(**args)
7425
+ end
7426
+
7427
+ # Update properties of this object
7428
+ def update!(**args)
7429
+ @type = args[:type] if args.key?(:type)
7430
+ end
7431
+ end
7432
+
7433
+ # Environment of the Application, Service, or Workload
7434
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
7435
+ include Google::Apis::Core::Hashable
7436
+
7437
+ # Environment Type.
7438
+ # Corresponds to the JSON property `type`
7439
+ # @return [String]
7440
+ attr_accessor :type
7441
+
7442
+ def initialize(**args)
7443
+ update!(**args)
7444
+ end
7445
+
7446
+ # Update properties of this object
7447
+ def update!(**args)
7448
+ @type = args[:type] if args.key?(:type)
7449
+ end
7450
+ end
7451
+
7296
7452
  # The AWS metadata of a resource associated with an issue.
7297
7453
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
7298
7454
  include Google::Apis::Core::Hashable
@@ -8958,6 +9114,26 @@ module Google
8958
9114
  end
8959
9115
  end
8960
9116
 
9117
+ # Score is calculated from of all elements in the data profile. A higher level
9118
+ # means the data is more sensitive.
9119
+ class GoogleCloudSecuritycenterV2SensitivityScore
9120
+ include Google::Apis::Core::Hashable
9121
+
9122
+ # The sensitivity score applied to the resource.
9123
+ # Corresponds to the JSON property `score`
9124
+ # @return [String]
9125
+ attr_accessor :score
9126
+
9127
+ def initialize(**args)
9128
+ update!(**args)
9129
+ end
9130
+
9131
+ # Update properties of this object
9132
+ def update!(**args)
9133
+ @score = args[:score] if args.key?(:score)
9134
+ end
9135
+ end
9136
+
8961
9137
  # Identity delegation history of an authenticated service account.
8962
9138
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
8963
9139
  include Google::Apis::Core::Hashable
@@ -9336,6 +9512,42 @@ module Google
9336
9512
  end
9337
9513
  end
9338
9514
 
9515
+ # Type of information detected by the API.
9516
+ class InfoType
9517
+ include Google::Apis::Core::Hashable
9518
+
9519
+ # Name of the information type. Either a name of your choosing when creating a
9520
+ # CustomInfoType, or one of the names listed at https://cloud.google.com/
9521
+ # sensitive-data-protection/docs/infotypes-reference when specifying a built-in
9522
+ # type. When sending Cloud DLP results to Data Catalog, infoType names should
9523
+ # conform to the pattern `[A-Za-z0-9$_-]`1,64``.
9524
+ # Corresponds to the JSON property `name`
9525
+ # @return [String]
9526
+ attr_accessor :name
9527
+
9528
+ # Score is calculated from of all elements in the data profile. A higher level
9529
+ # means the data is more sensitive.
9530
+ # Corresponds to the JSON property `sensitivityScore`
9531
+ # @return [Google::Apis::SecuritycenterV1beta2::SensitivityScore]
9532
+ attr_accessor :sensitivity_score
9533
+
9534
+ # Optional version name for this InfoType.
9535
+ # Corresponds to the JSON property `version`
9536
+ # @return [String]
9537
+ attr_accessor :version
9538
+
9539
+ def initialize(**args)
9540
+ update!(**args)
9541
+ end
9542
+
9543
+ # Update properties of this object
9544
+ def update!(**args)
9545
+ @name = args[:name] if args.key?(:name)
9546
+ @sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
9547
+ @version = args[:version] if args.key?(:version)
9548
+ end
9549
+ end
9550
+
9339
9551
  # IP rule information.
9340
9552
  class IpRule
9341
9553
  include Google::Apis::Core::Hashable
@@ -10699,6 +10911,26 @@ module Google
10699
10911
  end
10700
10912
  end
10701
10913
 
10914
+ # Score is calculated from of all elements in the data profile. A higher level
10915
+ # means the data is more sensitive.
10916
+ class SensitivityScore
10917
+ include Google::Apis::Core::Hashable
10918
+
10919
+ # The sensitivity score applied to the resource.
10920
+ # Corresponds to the JSON property `score`
10921
+ # @return [String]
10922
+ attr_accessor :score
10923
+
10924
+ def initialize(**args)
10925
+ update!(**args)
10926
+ end
10927
+
10928
+ # Update properties of this object
10929
+ def update!(**args)
10930
+ @score = args[:score] if args.key?(:score)
10931
+ end
10932
+ end
10933
+
10702
10934
  # Identity delegation history of an authenticated service account.
10703
10935
  class ServiceAccountDelegationInfo
10704
10936
  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.90.0"
19
+ GEM_VERSION = "0.92.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 = "20250905"
25
+ REVISION = "20251017"
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
 
@@ -964,6 +970,30 @@ module Google
964
970
  include Google::Apis::Core::JsonObjectSupport
965
971
  end
966
972
 
973
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
974
+ class Representation < Google::Apis::Core::JsonRepresentation; end
975
+
976
+ include Google::Apis::Core::JsonObjectSupport
977
+ end
978
+
979
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
985
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
986
+ class Representation < Google::Apis::Core::JsonRepresentation; end
987
+
988
+ include Google::Apis::Core::JsonObjectSupport
989
+ end
990
+
991
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
992
+ class Representation < Google::Apis::Core::JsonRepresentation; end
993
+
994
+ include Google::Apis::Core::JsonObjectSupport
995
+ end
996
+
967
997
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
968
998
  class Representation < Google::Apis::Core::JsonRepresentation; end
969
999
 
@@ -1228,6 +1258,12 @@ module Google
1228
1258
  include Google::Apis::Core::JsonObjectSupport
1229
1259
  end
1230
1260
 
1261
+ class GoogleCloudSecuritycenterV2SensitivityScore
1262
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1263
+
1264
+ include Google::Apis::Core::JsonObjectSupport
1265
+ end
1266
+
1231
1267
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
1232
1268
  class Representation < Google::Apis::Core::JsonRepresentation; end
1233
1269
 
@@ -1294,6 +1330,12 @@ module Google
1294
1330
  include Google::Apis::Core::JsonObjectSupport
1295
1331
  end
1296
1332
 
1333
+ class InfoType
1334
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1335
+
1336
+ include Google::Apis::Core::JsonObjectSupport
1337
+ end
1338
+
1297
1339
  class IpRule
1298
1340
  class Representation < Google::Apis::Core::JsonRepresentation; end
1299
1341
 
@@ -1510,6 +1552,12 @@ module Google
1510
1552
  include Google::Apis::Core::JsonObjectSupport
1511
1553
  end
1512
1554
 
1555
+ class SensitivityScore
1556
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1557
+
1558
+ include Google::Apis::Core::JsonObjectSupport
1559
+ end
1560
+
1513
1561
  class ServiceAccountDelegationInfo
1514
1562
  class Representation < Google::Apis::Core::JsonRepresentation; end
1515
1563
 
@@ -1828,6 +1876,8 @@ module Google
1828
1876
  # @private
1829
1877
  class Representation < Google::Apis::Core::JsonRepresentation
1830
1878
  property :data_profile, as: 'dataProfile'
1879
+ collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1beta2::InfoType, decorator: Google::Apis::SecuritycenterV1beta2::InfoType::Representation
1880
+
1831
1881
  property :parent_type, as: 'parentType'
1832
1882
  end
1833
1883
  end
@@ -2861,6 +2911,8 @@ module Google
2861
2911
  # @private
2862
2912
  class Representation < Google::Apis::Core::JsonRepresentation
2863
2913
  property :data_profile, as: 'dataProfile'
2914
+ collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InfoType, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2InfoType::Representation
2915
+
2864
2916
  property :parent_type, as: 'parentType'
2865
2917
  end
2866
2918
  end
@@ -3319,6 +3371,16 @@ module Google
3319
3371
  end
3320
3372
  end
3321
3373
 
3374
+ class GoogleCloudSecuritycenterV2InfoType
3375
+ # @private
3376
+ class Representation < Google::Apis::Core::JsonRepresentation
3377
+ property :name, as: 'name'
3378
+ property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SensitivityScore, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2SensitivityScore::Representation
3379
+
3380
+ property :version, as: 'version'
3381
+ end
3382
+ end
3383
+
3322
3384
  class GoogleCloudSecuritycenterV2IpRule
3323
3385
  # @private
3324
3386
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3434,10 +3496,49 @@ module Google
3434
3496
  class GoogleCloudSecuritycenterV2IssueResourceApplication
3435
3497
  # @private
3436
3498
  class Representation < Google::Apis::Core::JsonRepresentation
3499
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
3500
+
3437
3501
  property :name, as: 'name'
3438
3502
  end
3439
3503
  end
3440
3504
 
3505
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
3506
+ # @private
3507
+ class Representation < Google::Apis::Core::JsonRepresentation
3508
+ collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
3509
+
3510
+ property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
3511
+
3512
+ collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
3513
+
3514
+ property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
3515
+
3516
+ collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta2::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
3517
+
3518
+ end
3519
+ end
3520
+
3521
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
3522
+ # @private
3523
+ class Representation < Google::Apis::Core::JsonRepresentation
3524
+ property :email, as: 'email'
3525
+ end
3526
+ end
3527
+
3528
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
3529
+ # @private
3530
+ class Representation < Google::Apis::Core::JsonRepresentation
3531
+ property :type, as: 'type'
3532
+ end
3533
+ end
3534
+
3535
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
3536
+ # @private
3537
+ class Representation < Google::Apis::Core::JsonRepresentation
3538
+ property :type, as: 'type'
3539
+ end
3540
+ end
3541
+
3441
3542
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
3442
3543
  # @private
3443
3544
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3891,6 +3992,13 @@ module Google
3891
3992
  end
3892
3993
  end
3893
3994
 
3995
+ class GoogleCloudSecuritycenterV2SensitivityScore
3996
+ # @private
3997
+ class Representation < Google::Apis::Core::JsonRepresentation
3998
+ property :score, as: 'score'
3999
+ end
4000
+ end
4001
+
3894
4002
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
3895
4003
  # @private
3896
4004
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3999,6 +4107,16 @@ module Google
3999
4107
  end
4000
4108
  end
4001
4109
 
4110
+ class InfoType
4111
+ # @private
4112
+ class Representation < Google::Apis::Core::JsonRepresentation
4113
+ property :name, as: 'name'
4114
+ property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1beta2::SensitivityScore, decorator: Google::Apis::SecuritycenterV1beta2::SensitivityScore::Representation
4115
+
4116
+ property :version, as: 'version'
4117
+ end
4118
+ end
4119
+
4002
4120
  class IpRule
4003
4121
  # @private
4004
4122
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4371,6 +4489,13 @@ module Google
4371
4489
  end
4372
4490
  end
4373
4491
 
4492
+ class SensitivityScore
4493
+ # @private
4494
+ class Representation < Google::Apis::Core::JsonRepresentation
4495
+ property :score, as: 'score'
4496
+ end
4497
+ end
4498
+
4374
4499
  class ServiceAccountDelegationInfo
4375
4500
  # @private
4376
4501
  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.90.0
4
+ version: 0.92.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.90.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta2/v0.92.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: