google-apis-securitycenter_v1 0.108.0 → 0.110.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: 563382c162e32c96dff6596fbfbb45690557464ef05ec9a3bd9adee13c5ab2f0
4
- data.tar.gz: 6f82767ff766fc05cff2ddd57bc25c1b6a881fa9bf7465123cef8e6226cdc428
3
+ metadata.gz: 953a8aef568c4f3f04faaa9f4803e7b391f10c41f0fb05d91a0d9893572d505b
4
+ data.tar.gz: cdcf8f1f6856ef72f71e9a648defcbe70d0c6f106b077d59af4fe3c6ef22ff23
5
5
  SHA512:
6
- metadata.gz: a6cdbc3f3c31dae9c7a4dddc992b585b3cb3a1928fb1e13be370c342e5a60905021b83e7b8fc25cb168d50523aeb0fe2bf9d792c6d72d98e94a6dbd0c48c54b3
7
- data.tar.gz: e5d0f45fcdc0678e608d1ee267317ad91054b61f0d75f2359b2b94bf3039226c72e6ea395e8bce64bea57210b7e42f5f9a6c8247366ede8f4516ce259edcf7b0
6
+ metadata.gz: 24720e8bddde5fcc1ffd18f1dbb019192f0cc07e6c6d40d5767799997f3a5f9e714af875675f3a8f2c739ca4446ab7575c7d080f128473bbdf8451c3b54785a9
7
+ data.tar.gz: af9ae6a40a509e0152991fbc59039cfa3e1eb7bdc51d98351a1661d4875ff62c0c9fc9166ca7afab4ec8db6c143310b77486cc3d39ff5506b54750b0f3c3f27d
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.110.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251017
6
+
7
+ ### v0.109.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251006
10
+
3
11
  ### v0.108.0 (2025-09-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20250905
@@ -1455,6 +1455,12 @@ module Google
1455
1455
  # @return [String]
1456
1456
  attr_accessor :data_profile
1457
1457
 
1458
+ # Type of information detected by SDP. Info type includes name, version and
1459
+ # sensitivity of the detected information type.
1460
+ # Corresponds to the JSON property `infoTypes`
1461
+ # @return [Array<Google::Apis::SecuritycenterV1::InfoType>]
1462
+ attr_accessor :info_types
1463
+
1458
1464
  # The resource hierarchy level at which the data profile was generated.
1459
1465
  # Corresponds to the JSON property `parentType`
1460
1466
  # @return [String]
@@ -1467,6 +1473,7 @@ module Google
1467
1473
  # Update properties of this object
1468
1474
  def update!(**args)
1469
1475
  @data_profile = args[:data_profile] if args.key?(:data_profile)
1476
+ @info_types = args[:info_types] if args.key?(:info_types)
1470
1477
  @parent_type = args[:parent_type] if args.key?(:parent_type)
1471
1478
  end
1472
1479
  end
@@ -5759,6 +5766,12 @@ module Google
5759
5766
  # @return [String]
5760
5767
  attr_accessor :data_profile
5761
5768
 
5769
+ # Type of information detected by SDP. Info type includes name, version and
5770
+ # sensitivity of the detected information type.
5771
+ # Corresponds to the JSON property `infoTypes`
5772
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2InfoType>]
5773
+ attr_accessor :info_types
5774
+
5762
5775
  # The resource hierarchy level at which the data profile was generated.
5763
5776
  # Corresponds to the JSON property `parentType`
5764
5777
  # @return [String]
@@ -5771,6 +5784,7 @@ module Google
5771
5784
  # Update properties of this object
5772
5785
  def update!(**args)
5773
5786
  @data_profile = args[:data_profile] if args.key?(:data_profile)
5787
+ @info_types = args[:info_types] if args.key?(:info_types)
5774
5788
  @parent_type = args[:parent_type] if args.key?(:parent_type)
5775
5789
  end
5776
5790
  end
@@ -7552,6 +7566,42 @@ module Google
7552
7566
  end
7553
7567
  end
7554
7568
 
7569
+ # Type of information detected by the API.
7570
+ class GoogleCloudSecuritycenterV2InfoType
7571
+ include Google::Apis::Core::Hashable
7572
+
7573
+ # Name of the information type. Either a name of your choosing when creating a
7574
+ # CustomInfoType, or one of the names listed at https://cloud.google.com/
7575
+ # sensitive-data-protection/docs/infotypes-reference when specifying a built-in
7576
+ # type. When sending Cloud DLP results to Data Catalog, infoType names should
7577
+ # conform to the pattern `[A-Za-z0-9$_-]`1,64``.
7578
+ # Corresponds to the JSON property `name`
7579
+ # @return [String]
7580
+ attr_accessor :name
7581
+
7582
+ # Score is calculated from of all elements in the data profile. A higher level
7583
+ # means the data is more sensitive.
7584
+ # Corresponds to the JSON property `sensitivityScore`
7585
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SensitivityScore]
7586
+ attr_accessor :sensitivity_score
7587
+
7588
+ # Optional version name for this InfoType.
7589
+ # Corresponds to the JSON property `version`
7590
+ # @return [String]
7591
+ attr_accessor :version
7592
+
7593
+ def initialize(**args)
7594
+ update!(**args)
7595
+ end
7596
+
7597
+ # Update properties of this object
7598
+ def update!(**args)
7599
+ @name = args[:name] if args.key?(:name)
7600
+ @sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
7601
+ @version = args[:version] if args.key?(:version)
7602
+ end
7603
+ end
7604
+
7555
7605
  # IP rule information.
7556
7606
  class GoogleCloudSecuritycenterV2IpRule
7557
7607
  include Google::Apis::Core::Hashable
@@ -7943,6 +7993,11 @@ module Google
7943
7993
  class GoogleCloudSecuritycenterV2IssueResourceApplication
7944
7994
  include Google::Apis::Core::Hashable
7945
7995
 
7996
+ # Consumer provided attributes for the application
7997
+ # Corresponds to the JSON property `attributes`
7998
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
7999
+ attr_accessor :attributes
8000
+
7946
8001
  # The resource name of an Application. Format: `projects/`host-project-id`/
7947
8002
  # locations/`location`/applications/`application-id``
7948
8003
  # Corresponds to the JSON property `name`
@@ -7955,10 +8010,111 @@ module Google
7955
8010
 
7956
8011
  # Update properties of this object
7957
8012
  def update!(**args)
8013
+ @attributes = args[:attributes] if args.key?(:attributes)
7958
8014
  @name = args[:name] if args.key?(:name)
7959
8015
  end
7960
8016
  end
7961
8017
 
8018
+ # Consumer provided attributes for the application
8019
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
8020
+ include Google::Apis::Core::Hashable
8021
+
8022
+ # Business team that ensures user needs are met and value is delivered
8023
+ # Corresponds to the JSON property `businessOwners`
8024
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
8025
+ attr_accessor :business_owners
8026
+
8027
+ # Criticality of the Application, Service, or Workload
8028
+ # Corresponds to the JSON property `criticality`
8029
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
8030
+ attr_accessor :criticality
8031
+
8032
+ # Developer team that owns development and coding.
8033
+ # Corresponds to the JSON property `developerOwners`
8034
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
8035
+ attr_accessor :developer_owners
8036
+
8037
+ # Environment of the Application, Service, or Workload
8038
+ # Corresponds to the JSON property `environment`
8039
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
8040
+ attr_accessor :environment
8041
+
8042
+ # Operator team that ensures runtime and operations.
8043
+ # Corresponds to the JSON property `operatorOwners`
8044
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
8045
+ attr_accessor :operator_owners
8046
+
8047
+ def initialize(**args)
8048
+ update!(**args)
8049
+ end
8050
+
8051
+ # Update properties of this object
8052
+ def update!(**args)
8053
+ @business_owners = args[:business_owners] if args.key?(:business_owners)
8054
+ @criticality = args[:criticality] if args.key?(:criticality)
8055
+ @developer_owners = args[:developer_owners] if args.key?(:developer_owners)
8056
+ @environment = args[:environment] if args.key?(:environment)
8057
+ @operator_owners = args[:operator_owners] if args.key?(:operator_owners)
8058
+ end
8059
+ end
8060
+
8061
+ # Contact information of stakeholders.
8062
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
8063
+ include Google::Apis::Core::Hashable
8064
+
8065
+ # Email address of the contacts.
8066
+ # Corresponds to the JSON property `email`
8067
+ # @return [String]
8068
+ attr_accessor :email
8069
+
8070
+ def initialize(**args)
8071
+ update!(**args)
8072
+ end
8073
+
8074
+ # Update properties of this object
8075
+ def update!(**args)
8076
+ @email = args[:email] if args.key?(:email)
8077
+ end
8078
+ end
8079
+
8080
+ # Criticality of the Application, Service, or Workload
8081
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
8082
+ include Google::Apis::Core::Hashable
8083
+
8084
+ # Criticality Type.
8085
+ # Corresponds to the JSON property `type`
8086
+ # @return [String]
8087
+ attr_accessor :type
8088
+
8089
+ def initialize(**args)
8090
+ update!(**args)
8091
+ end
8092
+
8093
+ # Update properties of this object
8094
+ def update!(**args)
8095
+ @type = args[:type] if args.key?(:type)
8096
+ end
8097
+ end
8098
+
8099
+ # Environment of the Application, Service, or Workload
8100
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
8101
+ include Google::Apis::Core::Hashable
8102
+
8103
+ # Environment Type.
8104
+ # Corresponds to the JSON property `type`
8105
+ # @return [String]
8106
+ attr_accessor :type
8107
+
8108
+ def initialize(**args)
8109
+ update!(**args)
8110
+ end
8111
+
8112
+ # Update properties of this object
8113
+ def update!(**args)
8114
+ @type = args[:type] if args.key?(:type)
8115
+ end
8116
+ end
8117
+
7962
8118
  # The AWS metadata of a resource associated with an issue.
7963
8119
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
7964
8120
  include Google::Apis::Core::Hashable
@@ -9624,6 +9780,26 @@ module Google
9624
9780
  end
9625
9781
  end
9626
9782
 
9783
+ # Score is calculated from of all elements in the data profile. A higher level
9784
+ # means the data is more sensitive.
9785
+ class GoogleCloudSecuritycenterV2SensitivityScore
9786
+ include Google::Apis::Core::Hashable
9787
+
9788
+ # The sensitivity score applied to the resource.
9789
+ # Corresponds to the JSON property `score`
9790
+ # @return [String]
9791
+ attr_accessor :score
9792
+
9793
+ def initialize(**args)
9794
+ update!(**args)
9795
+ end
9796
+
9797
+ # Update properties of this object
9798
+ def update!(**args)
9799
+ @score = args[:score] if args.key?(:score)
9800
+ end
9801
+ end
9802
+
9627
9803
  # Identity delegation history of an authenticated service account.
9628
9804
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
9629
9805
  include Google::Apis::Core::Hashable
@@ -10339,6 +10515,42 @@ module Google
10339
10515
  end
10340
10516
  end
10341
10517
 
10518
+ # Type of information detected by the API.
10519
+ class InfoType
10520
+ include Google::Apis::Core::Hashable
10521
+
10522
+ # Name of the information type. Either a name of your choosing when creating a
10523
+ # CustomInfoType, or one of the names listed at https://cloud.google.com/
10524
+ # sensitive-data-protection/docs/infotypes-reference when specifying a built-in
10525
+ # type. When sending Cloud DLP results to Data Catalog, infoType names should
10526
+ # conform to the pattern `[A-Za-z0-9$_-]`1,64``.
10527
+ # Corresponds to the JSON property `name`
10528
+ # @return [String]
10529
+ attr_accessor :name
10530
+
10531
+ # Score is calculated from of all elements in the data profile. A higher level
10532
+ # means the data is more sensitive.
10533
+ # Corresponds to the JSON property `sensitivityScore`
10534
+ # @return [Google::Apis::SecuritycenterV1::SensitivityScore]
10535
+ attr_accessor :sensitivity_score
10536
+
10537
+ # Optional version name for this InfoType.
10538
+ # Corresponds to the JSON property `version`
10539
+ # @return [String]
10540
+ attr_accessor :version
10541
+
10542
+ def initialize(**args)
10543
+ update!(**args)
10544
+ end
10545
+
10546
+ # Update properties of this object
10547
+ def update!(**args)
10548
+ @name = args[:name] if args.key?(:name)
10549
+ @sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
10550
+ @version = args[:version] if args.key?(:version)
10551
+ end
10552
+ end
10553
+
10342
10554
  # IP rule information.
10343
10555
  class IpRule
10344
10556
  include Google::Apis::Core::Hashable
@@ -11027,6 +11239,13 @@ module Google
11027
11239
  # @return [Array<Google::Apis::SecuritycenterV1::Operation>]
11028
11240
  attr_accessor :operations
11029
11241
 
11242
+ # Unordered list. Unreachable resources. Populated when the request sets `
11243
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
11244
+ # when attempting to list all resources across all supported locations.
11245
+ # Corresponds to the JSON property `unreachable`
11246
+ # @return [Array<String>]
11247
+ attr_accessor :unreachable
11248
+
11030
11249
  def initialize(**args)
11031
11250
  update!(**args)
11032
11251
  end
@@ -11035,6 +11254,7 @@ module Google
11035
11254
  def update!(**args)
11036
11255
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
11037
11256
  @operations = args[:operations] if args.key?(:operations)
11257
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
11038
11258
  end
11039
11259
  end
11040
11260
 
@@ -12604,6 +12824,26 @@ module Google
12604
12824
  end
12605
12825
  end
12606
12826
 
12827
+ # Score is calculated from of all elements in the data profile. A higher level
12828
+ # means the data is more sensitive.
12829
+ class SensitivityScore
12830
+ include Google::Apis::Core::Hashable
12831
+
12832
+ # The sensitivity score applied to the resource.
12833
+ # Corresponds to the JSON property `score`
12834
+ # @return [String]
12835
+ attr_accessor :score
12836
+
12837
+ def initialize(**args)
12838
+ update!(**args)
12839
+ end
12840
+
12841
+ # Update properties of this object
12842
+ def update!(**args)
12843
+ @score = args[:score] if args.key?(:score)
12844
+ end
12845
+ end
12846
+
12607
12847
  # Identity delegation history of an authenticated service account.
12608
12848
  class ServiceAccountDelegationInfo
12609
12849
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1
18
18
  # Version of the google-apis-securitycenter_v1 gem
19
- GEM_VERSION = "0.108.0"
19
+ GEM_VERSION = "0.110.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
@@ -1000,6 +1000,12 @@ module Google
1000
1000
  include Google::Apis::Core::JsonObjectSupport
1001
1001
  end
1002
1002
 
1003
+ class GoogleCloudSecuritycenterV2InfoType
1004
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1005
+
1006
+ include Google::Apis::Core::JsonObjectSupport
1007
+ end
1008
+
1003
1009
  class GoogleCloudSecuritycenterV2IpRule
1004
1010
  class Representation < Google::Apis::Core::JsonRepresentation; end
1005
1011
 
@@ -1060,6 +1066,30 @@ module Google
1060
1066
  include Google::Apis::Core::JsonObjectSupport
1061
1067
  end
1062
1068
 
1069
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
1070
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1071
+
1072
+ include Google::Apis::Core::JsonObjectSupport
1073
+ end
1074
+
1075
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
1076
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1077
+
1078
+ include Google::Apis::Core::JsonObjectSupport
1079
+ end
1080
+
1081
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
1082
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1083
+
1084
+ include Google::Apis::Core::JsonObjectSupport
1085
+ end
1086
+
1087
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
1088
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1089
+
1090
+ include Google::Apis::Core::JsonObjectSupport
1091
+ end
1092
+
1063
1093
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
1064
1094
  class Representation < Google::Apis::Core::JsonRepresentation; end
1065
1095
 
@@ -1324,6 +1354,12 @@ module Google
1324
1354
  include Google::Apis::Core::JsonObjectSupport
1325
1355
  end
1326
1356
 
1357
+ class GoogleCloudSecuritycenterV2SensitivityScore
1358
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1359
+
1360
+ include Google::Apis::Core::JsonObjectSupport
1361
+ end
1362
+
1327
1363
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
1328
1364
  class Representation < Google::Apis::Core::JsonRepresentation; end
1329
1365
 
@@ -1426,6 +1462,12 @@ module Google
1426
1462
  include Google::Apis::Core::JsonObjectSupport
1427
1463
  end
1428
1464
 
1465
+ class InfoType
1466
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1467
+
1468
+ include Google::Apis::Core::JsonObjectSupport
1469
+ end
1470
+
1429
1471
  class IpRule
1430
1472
  class Representation < Google::Apis::Core::JsonRepresentation; end
1431
1473
 
@@ -1792,6 +1834,12 @@ module Google
1792
1834
  include Google::Apis::Core::JsonObjectSupport
1793
1835
  end
1794
1836
 
1837
+ class SensitivityScore
1838
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1839
+
1840
+ include Google::Apis::Core::JsonObjectSupport
1841
+ end
1842
+
1795
1843
  class ServiceAccountDelegationInfo
1796
1844
  class Representation < Google::Apis::Core::JsonRepresentation; end
1797
1845
 
@@ -2310,6 +2358,8 @@ module Google
2310
2358
  # @private
2311
2359
  class Representation < Google::Apis::Core::JsonRepresentation
2312
2360
  property :data_profile, as: 'dataProfile'
2361
+ collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1::InfoType, decorator: Google::Apis::SecuritycenterV1::InfoType::Representation
2362
+
2313
2363
  property :parent_type, as: 'parentType'
2314
2364
  end
2315
2365
  end
@@ -3382,6 +3432,8 @@ module Google
3382
3432
  # @private
3383
3433
  class Representation < Google::Apis::Core::JsonRepresentation
3384
3434
  property :data_profile, as: 'dataProfile'
3435
+ collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2InfoType, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2InfoType::Representation
3436
+
3385
3437
  property :parent_type, as: 'parentType'
3386
3438
  end
3387
3439
  end
@@ -3840,6 +3892,16 @@ module Google
3840
3892
  end
3841
3893
  end
3842
3894
 
3895
+ class GoogleCloudSecuritycenterV2InfoType
3896
+ # @private
3897
+ class Representation < Google::Apis::Core::JsonRepresentation
3898
+ property :name, as: 'name'
3899
+ property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SensitivityScore, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2SensitivityScore::Representation
3900
+
3901
+ property :version, as: 'version'
3902
+ end
3903
+ end
3904
+
3843
3905
  class GoogleCloudSecuritycenterV2IpRule
3844
3906
  # @private
3845
3907
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3955,10 +4017,49 @@ module Google
3955
4017
  class GoogleCloudSecuritycenterV2IssueResourceApplication
3956
4018
  # @private
3957
4019
  class Representation < Google::Apis::Core::JsonRepresentation
4020
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
4021
+
3958
4022
  property :name, as: 'name'
3959
4023
  end
3960
4024
  end
3961
4025
 
4026
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
4027
+ # @private
4028
+ class Representation < Google::Apis::Core::JsonRepresentation
4029
+ collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
4030
+
4031
+ property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
4032
+
4033
+ collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
4034
+
4035
+ property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
4036
+
4037
+ collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
4038
+
4039
+ end
4040
+ end
4041
+
4042
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
4043
+ # @private
4044
+ class Representation < Google::Apis::Core::JsonRepresentation
4045
+ property :email, as: 'email'
4046
+ end
4047
+ end
4048
+
4049
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
4050
+ # @private
4051
+ class Representation < Google::Apis::Core::JsonRepresentation
4052
+ property :type, as: 'type'
4053
+ end
4054
+ end
4055
+
4056
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
4057
+ # @private
4058
+ class Representation < Google::Apis::Core::JsonRepresentation
4059
+ property :type, as: 'type'
4060
+ end
4061
+ end
4062
+
3962
4063
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
3963
4064
  # @private
3964
4065
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4412,6 +4513,13 @@ module Google
4412
4513
  end
4413
4514
  end
4414
4515
 
4516
+ class GoogleCloudSecuritycenterV2SensitivityScore
4517
+ # @private
4518
+ class Representation < Google::Apis::Core::JsonRepresentation
4519
+ property :score, as: 'score'
4520
+ end
4521
+ end
4522
+
4415
4523
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
4416
4524
  # @private
4417
4525
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4581,6 +4689,16 @@ module Google
4581
4689
  end
4582
4690
  end
4583
4691
 
4692
+ class InfoType
4693
+ # @private
4694
+ class Representation < Google::Apis::Core::JsonRepresentation
4695
+ property :name, as: 'name'
4696
+ property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1::SensitivityScore, decorator: Google::Apis::SecuritycenterV1::SensitivityScore::Representation
4697
+
4698
+ property :version, as: 'version'
4699
+ end
4700
+ end
4701
+
4584
4702
  class IpRule
4585
4703
  # @private
4586
4704
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4786,6 +4904,7 @@ module Google
4786
4904
  property :next_page_token, as: 'nextPageToken'
4787
4905
  collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1::Operation, decorator: Google::Apis::SecuritycenterV1::Operation::Representation
4788
4906
 
4907
+ collection :unreachable, as: 'unreachable'
4789
4908
  end
4790
4909
  end
4791
4910
 
@@ -5206,6 +5325,13 @@ module Google
5206
5325
  end
5207
5326
  end
5208
5327
 
5328
+ class SensitivityScore
5329
+ # @private
5330
+ class Representation < Google::Apis::Core::JsonRepresentation
5331
+ property :score, as: 'score'
5332
+ end
5333
+ end
5334
+
5209
5335
  class ServiceAccountDelegationInfo
5210
5336
  # @private
5211
5337
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3647,6 +3647,13 @@ module Google
3647
3647
  # The standard list page size.
3648
3648
  # @param [String] page_token
3649
3649
  # The standard list page token.
3650
+ # @param [Boolean] return_partial_success
3651
+ # When set to `true`, operations that are reachable are returned as normal, and
3652
+ # those that are unreachable are returned in the [ListOperationsResponse.
3653
+ # unreachable] field. This can only be `true` when reading across collections e.
3654
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
3655
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
3656
+ # explicitly documented otherwise in service or product specific documentation.
3650
3657
  # @param [String] fields
3651
3658
  # Selector specifying which fields to include in a partial response.
3652
3659
  # @param [String] quota_user
@@ -3664,7 +3671,7 @@ module Google
3664
3671
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3665
3672
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3666
3673
  # @raise [Google::Apis::AuthorizationError] Authorization is required
3667
- def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3674
+ def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
3668
3675
  command = make_simple_command(:get, 'v1/{+name}', options)
3669
3676
  command.response_representation = Google::Apis::SecuritycenterV1::ListOperationsResponse::Representation
3670
3677
  command.response_class = Google::Apis::SecuritycenterV1::ListOperationsResponse
@@ -3672,6 +3679,7 @@ module Google
3672
3679
  command.query['filter'] = filter unless filter.nil?
3673
3680
  command.query['pageSize'] = page_size unless page_size.nil?
3674
3681
  command.query['pageToken'] = page_token unless page_token.nil?
3682
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
3675
3683
  command.query['fields'] = fields unless fields.nil?
3676
3684
  command.query['quotaUser'] = quota_user unless quota_user.nil?
3677
3685
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.108.0
4
+ version: 0.110.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_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.108.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.110.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1
62
62
  rdoc_options: []
63
63
  require_paths: