google-apis-securitycenter_v1beta1 0.97.0 → 0.99.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: e87e8891953d353872edf86a4ffa0fc7809eda2dac6e3392ac4c4e7e17cb6910
4
- data.tar.gz: 10db40f028abf3e75905a77ff5b9dd5cc3187c2dac72fb2b0febf669db273320
3
+ metadata.gz: 1d33b69f31b434fc6a84addc34b288e609739c1185e9ad897cde77e69dec1f06
4
+ data.tar.gz: 40602262f780517caa2f5909d597f0c638e8e473c3432890c296de2cb74f1b7e
5
5
  SHA512:
6
- metadata.gz: 2876c047f8bc67035c5641ce37c338bfdfa591c1112b6f284f86fa1b4644da3214a1d7c1ef54dd1e909073b56d2edab41020f5d4a5655b3ccd0cdf301cc7f1e7
7
- data.tar.gz: 555e86168fc0b8a8ba435609393820416b18210438f3c0456f27a26b04cf4c8a449e9596ffe192f93ed205c6b21fcbb50e3818a2ffe8670557a997da5b711e4c
6
+ metadata.gz: 91c28c439a71ff2a7a788a88e9f1368ae5aa1d4b3296e1e578bfcae0cc6778167855447122d7760b885025d71388efd0eadea703c963b9d22502514c0854a30a
7
+ data.tar.gz: 16c89a7fd23e692233cd8cf9f7b7387f7f6578a03957c36c4b4b69497b41860ce94d69176d6d48030621b0ff3348548f6feec5e778150c7dd6fb544683672dc5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.99.0 (2025-10-26)
4
+
5
+ * Regenerated from discovery document revision 20251017
6
+
7
+ ### v0.98.0 (2025-10-12)
8
+
9
+ * Regenerated from discovery document revision 20251006
10
+
3
11
  ### v0.97.0 (2025-09-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20250905
@@ -1210,6 +1210,12 @@ module Google
1210
1210
  # @return [String]
1211
1211
  attr_accessor :data_profile
1212
1212
 
1213
+ # Type of information detected by SDP. Info type includes name, version and
1214
+ # sensitivity of the detected information type.
1215
+ # Corresponds to the JSON property `infoTypes`
1216
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::InfoType>]
1217
+ attr_accessor :info_types
1218
+
1213
1219
  # The resource hierarchy level at which the data profile was generated.
1214
1220
  # Corresponds to the JSON property `parentType`
1215
1221
  # @return [String]
@@ -1222,6 +1228,7 @@ module Google
1222
1228
  # Update properties of this object
1223
1229
  def update!(**args)
1224
1230
  @data_profile = args[:data_profile] if args.key?(:data_profile)
1231
+ @info_types = args[:info_types] if args.key?(:info_types)
1225
1232
  @parent_type = args[:parent_type] if args.key?(:parent_type)
1226
1233
  end
1227
1234
  end
@@ -5409,6 +5416,12 @@ module Google
5409
5416
  # @return [String]
5410
5417
  attr_accessor :data_profile
5411
5418
 
5419
+ # Type of information detected by SDP. Info type includes name, version and
5420
+ # sensitivity of the detected information type.
5421
+ # Corresponds to the JSON property `infoTypes`
5422
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2InfoType>]
5423
+ attr_accessor :info_types
5424
+
5412
5425
  # The resource hierarchy level at which the data profile was generated.
5413
5426
  # Corresponds to the JSON property `parentType`
5414
5427
  # @return [String]
@@ -5421,6 +5434,7 @@ module Google
5421
5434
  # Update properties of this object
5422
5435
  def update!(**args)
5423
5436
  @data_profile = args[:data_profile] if args.key?(:data_profile)
5437
+ @info_types = args[:info_types] if args.key?(:info_types)
5424
5438
  @parent_type = args[:parent_type] if args.key?(:parent_type)
5425
5439
  end
5426
5440
  end
@@ -7202,6 +7216,42 @@ module Google
7202
7216
  end
7203
7217
  end
7204
7218
 
7219
+ # Type of information detected by the API.
7220
+ class GoogleCloudSecuritycenterV2InfoType
7221
+ include Google::Apis::Core::Hashable
7222
+
7223
+ # Name of the information type. Either a name of your choosing when creating a
7224
+ # CustomInfoType, or one of the names listed at https://cloud.google.com/
7225
+ # sensitive-data-protection/docs/infotypes-reference when specifying a built-in
7226
+ # type. When sending Cloud DLP results to Data Catalog, infoType names should
7227
+ # conform to the pattern `[A-Za-z0-9$_-]`1,64``.
7228
+ # Corresponds to the JSON property `name`
7229
+ # @return [String]
7230
+ attr_accessor :name
7231
+
7232
+ # Score is calculated from of all elements in the data profile. A higher level
7233
+ # means the data is more sensitive.
7234
+ # Corresponds to the JSON property `sensitivityScore`
7235
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SensitivityScore]
7236
+ attr_accessor :sensitivity_score
7237
+
7238
+ # Optional version name for this InfoType.
7239
+ # Corresponds to the JSON property `version`
7240
+ # @return [String]
7241
+ attr_accessor :version
7242
+
7243
+ def initialize(**args)
7244
+ update!(**args)
7245
+ end
7246
+
7247
+ # Update properties of this object
7248
+ def update!(**args)
7249
+ @name = args[:name] if args.key?(:name)
7250
+ @sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
7251
+ @version = args[:version] if args.key?(:version)
7252
+ end
7253
+ end
7254
+
7205
7255
  # IP rule information.
7206
7256
  class GoogleCloudSecuritycenterV2IpRule
7207
7257
  include Google::Apis::Core::Hashable
@@ -7593,6 +7643,11 @@ module Google
7593
7643
  class GoogleCloudSecuritycenterV2IssueResourceApplication
7594
7644
  include Google::Apis::Core::Hashable
7595
7645
 
7646
+ # Consumer provided attributes for the application
7647
+ # Corresponds to the JSON property `attributes`
7648
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes]
7649
+ attr_accessor :attributes
7650
+
7596
7651
  # The resource name of an Application. Format: `projects/`host-project-id`/
7597
7652
  # locations/`location`/applications/`application-id``
7598
7653
  # Corresponds to the JSON property `name`
@@ -7605,10 +7660,111 @@ module Google
7605
7660
 
7606
7661
  # Update properties of this object
7607
7662
  def update!(**args)
7663
+ @attributes = args[:attributes] if args.key?(:attributes)
7608
7664
  @name = args[:name] if args.key?(:name)
7609
7665
  end
7610
7666
  end
7611
7667
 
7668
+ # Consumer provided attributes for the application
7669
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
7670
+ include Google::Apis::Core::Hashable
7671
+
7672
+ # Business team that ensures user needs are met and value is delivered
7673
+ # Corresponds to the JSON property `businessOwners`
7674
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
7675
+ attr_accessor :business_owners
7676
+
7677
+ # Criticality of the Application, Service, or Workload
7678
+ # Corresponds to the JSON property `criticality`
7679
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality]
7680
+ attr_accessor :criticality
7681
+
7682
+ # Developer team that owns development and coding.
7683
+ # Corresponds to the JSON property `developerOwners`
7684
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
7685
+ attr_accessor :developer_owners
7686
+
7687
+ # Environment of the Application, Service, or Workload
7688
+ # Corresponds to the JSON property `environment`
7689
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment]
7690
+ attr_accessor :environment
7691
+
7692
+ # Operator team that ensures runtime and operations.
7693
+ # Corresponds to the JSON property `operatorOwners`
7694
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo>]
7695
+ attr_accessor :operator_owners
7696
+
7697
+ def initialize(**args)
7698
+ update!(**args)
7699
+ end
7700
+
7701
+ # Update properties of this object
7702
+ def update!(**args)
7703
+ @business_owners = args[:business_owners] if args.key?(:business_owners)
7704
+ @criticality = args[:criticality] if args.key?(:criticality)
7705
+ @developer_owners = args[:developer_owners] if args.key?(:developer_owners)
7706
+ @environment = args[:environment] if args.key?(:environment)
7707
+ @operator_owners = args[:operator_owners] if args.key?(:operator_owners)
7708
+ end
7709
+ end
7710
+
7711
+ # Contact information of stakeholders.
7712
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
7713
+ include Google::Apis::Core::Hashable
7714
+
7715
+ # Email address of the contacts.
7716
+ # Corresponds to the JSON property `email`
7717
+ # @return [String]
7718
+ attr_accessor :email
7719
+
7720
+ def initialize(**args)
7721
+ update!(**args)
7722
+ end
7723
+
7724
+ # Update properties of this object
7725
+ def update!(**args)
7726
+ @email = args[:email] if args.key?(:email)
7727
+ end
7728
+ end
7729
+
7730
+ # Criticality of the Application, Service, or Workload
7731
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
7732
+ include Google::Apis::Core::Hashable
7733
+
7734
+ # Criticality Type.
7735
+ # Corresponds to the JSON property `type`
7736
+ # @return [String]
7737
+ attr_accessor :type
7738
+
7739
+ def initialize(**args)
7740
+ update!(**args)
7741
+ end
7742
+
7743
+ # Update properties of this object
7744
+ def update!(**args)
7745
+ @type = args[:type] if args.key?(:type)
7746
+ end
7747
+ end
7748
+
7749
+ # Environment of the Application, Service, or Workload
7750
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
7751
+ include Google::Apis::Core::Hashable
7752
+
7753
+ # Environment Type.
7754
+ # Corresponds to the JSON property `type`
7755
+ # @return [String]
7756
+ attr_accessor :type
7757
+
7758
+ def initialize(**args)
7759
+ update!(**args)
7760
+ end
7761
+
7762
+ # Update properties of this object
7763
+ def update!(**args)
7764
+ @type = args[:type] if args.key?(:type)
7765
+ end
7766
+ end
7767
+
7612
7768
  # The AWS metadata of a resource associated with an issue.
7613
7769
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
7614
7770
  include Google::Apis::Core::Hashable
@@ -9274,6 +9430,26 @@ module Google
9274
9430
  end
9275
9431
  end
9276
9432
 
9433
+ # Score is calculated from of all elements in the data profile. A higher level
9434
+ # means the data is more sensitive.
9435
+ class GoogleCloudSecuritycenterV2SensitivityScore
9436
+ include Google::Apis::Core::Hashable
9437
+
9438
+ # The sensitivity score applied to the resource.
9439
+ # Corresponds to the JSON property `score`
9440
+ # @return [String]
9441
+ attr_accessor :score
9442
+
9443
+ def initialize(**args)
9444
+ update!(**args)
9445
+ end
9446
+
9447
+ # Update properties of this object
9448
+ def update!(**args)
9449
+ @score = args[:score] if args.key?(:score)
9450
+ end
9451
+ end
9452
+
9277
9453
  # Identity delegation history of an authenticated service account.
9278
9454
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
9279
9455
  include Google::Apis::Core::Hashable
@@ -9891,6 +10067,42 @@ module Google
9891
10067
  end
9892
10068
  end
9893
10069
 
10070
+ # Type of information detected by the API.
10071
+ class InfoType
10072
+ include Google::Apis::Core::Hashable
10073
+
10074
+ # Name of the information type. Either a name of your choosing when creating a
10075
+ # CustomInfoType, or one of the names listed at https://cloud.google.com/
10076
+ # sensitive-data-protection/docs/infotypes-reference when specifying a built-in
10077
+ # type. When sending Cloud DLP results to Data Catalog, infoType names should
10078
+ # conform to the pattern `[A-Za-z0-9$_-]`1,64``.
10079
+ # Corresponds to the JSON property `name`
10080
+ # @return [String]
10081
+ attr_accessor :name
10082
+
10083
+ # Score is calculated from of all elements in the data profile. A higher level
10084
+ # means the data is more sensitive.
10085
+ # Corresponds to the JSON property `sensitivityScore`
10086
+ # @return [Google::Apis::SecuritycenterV1beta1::SensitivityScore]
10087
+ attr_accessor :sensitivity_score
10088
+
10089
+ # Optional version name for this InfoType.
10090
+ # Corresponds to the JSON property `version`
10091
+ # @return [String]
10092
+ attr_accessor :version
10093
+
10094
+ def initialize(**args)
10095
+ update!(**args)
10096
+ end
10097
+
10098
+ # Update properties of this object
10099
+ def update!(**args)
10100
+ @name = args[:name] if args.key?(:name)
10101
+ @sensitivity_score = args[:sensitivity_score] if args.key?(:sensitivity_score)
10102
+ @version = args[:version] if args.key?(:version)
10103
+ end
10104
+ end
10105
+
9894
10106
  # IP rule information.
9895
10107
  class IpRule
9896
10108
  include Google::Apis::Core::Hashable
@@ -10306,6 +10518,13 @@ module Google
10306
10518
  # @return [Array<Google::Apis::SecuritycenterV1beta1::Operation>]
10307
10519
  attr_accessor :operations
10308
10520
 
10521
+ # Unordered list. Unreachable resources. Populated when the request sets `
10522
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
10523
+ # when attempting to list all resources across all supported locations.
10524
+ # Corresponds to the JSON property `unreachable`
10525
+ # @return [Array<String>]
10526
+ attr_accessor :unreachable
10527
+
10309
10528
  def initialize(**args)
10310
10529
  update!(**args)
10311
10530
  end
@@ -10314,6 +10533,7 @@ module Google
10314
10533
  def update!(**args)
10315
10534
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
10316
10535
  @operations = args[:operations] if args.key?(:operations)
10536
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
10317
10537
  end
10318
10538
  end
10319
10539
 
@@ -11523,6 +11743,26 @@ module Google
11523
11743
  end
11524
11744
  end
11525
11745
 
11746
+ # Score is calculated from of all elements in the data profile. A higher level
11747
+ # means the data is more sensitive.
11748
+ class SensitivityScore
11749
+ include Google::Apis::Core::Hashable
11750
+
11751
+ # The sensitivity score applied to the resource.
11752
+ # Corresponds to the JSON property `score`
11753
+ # @return [String]
11754
+ attr_accessor :score
11755
+
11756
+ def initialize(**args)
11757
+ update!(**args)
11758
+ end
11759
+
11760
+ # Update properties of this object
11761
+ def update!(**args)
11762
+ @score = args[:score] if args.key?(:score)
11763
+ end
11764
+ end
11765
+
11526
11766
  # Identity delegation history of an authenticated service account.
11527
11767
  class ServiceAccountDelegationInfo
11528
11768
  include Google::Apis::Core::Hashable
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module SecuritycenterV1beta1
18
18
  # Version of the google-apis-securitycenter_v1beta1 gem
19
- GEM_VERSION = "0.97.0"
19
+ GEM_VERSION = "0.99.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
@@ -946,6 +946,12 @@ module Google
946
946
  include Google::Apis::Core::JsonObjectSupport
947
947
  end
948
948
 
949
+ class GoogleCloudSecuritycenterV2InfoType
950
+ class Representation < Google::Apis::Core::JsonRepresentation; end
951
+
952
+ include Google::Apis::Core::JsonObjectSupport
953
+ end
954
+
949
955
  class GoogleCloudSecuritycenterV2IpRule
950
956
  class Representation < Google::Apis::Core::JsonRepresentation; end
951
957
 
@@ -1006,6 +1012,30 @@ module Google
1006
1012
  include Google::Apis::Core::JsonObjectSupport
1007
1013
  end
1008
1014
 
1015
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
1016
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1017
+
1018
+ include Google::Apis::Core::JsonObjectSupport
1019
+ end
1020
+
1021
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
1022
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1023
+
1024
+ include Google::Apis::Core::JsonObjectSupport
1025
+ end
1026
+
1027
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
1028
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1029
+
1030
+ include Google::Apis::Core::JsonObjectSupport
1031
+ end
1032
+
1033
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
1034
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1035
+
1036
+ include Google::Apis::Core::JsonObjectSupport
1037
+ end
1038
+
1009
1039
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
1010
1040
  class Representation < Google::Apis::Core::JsonRepresentation; end
1011
1041
 
@@ -1270,6 +1300,12 @@ module Google
1270
1300
  include Google::Apis::Core::JsonObjectSupport
1271
1301
  end
1272
1302
 
1303
+ class GoogleCloudSecuritycenterV2SensitivityScore
1304
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1305
+
1306
+ include Google::Apis::Core::JsonObjectSupport
1307
+ end
1308
+
1273
1309
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
1274
1310
  class Representation < Google::Apis::Core::JsonRepresentation; end
1275
1311
 
@@ -1366,6 +1402,12 @@ module Google
1366
1402
  include Google::Apis::Core::JsonObjectSupport
1367
1403
  end
1368
1404
 
1405
+ class InfoType
1406
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1407
+
1408
+ include Google::Apis::Core::JsonObjectSupport
1409
+ end
1410
+
1369
1411
  class IpRule
1370
1412
  class Representation < Google::Apis::Core::JsonRepresentation; end
1371
1413
 
@@ -1624,6 +1666,12 @@ module Google
1624
1666
  include Google::Apis::Core::JsonObjectSupport
1625
1667
  end
1626
1668
 
1669
+ class SensitivityScore
1670
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1671
+
1672
+ include Google::Apis::Core::JsonObjectSupport
1673
+ end
1674
+
1627
1675
  class ServiceAccountDelegationInfo
1628
1676
  class Representation < Google::Apis::Core::JsonRepresentation; end
1629
1677
 
@@ -2015,6 +2063,8 @@ module Google
2015
2063
  # @private
2016
2064
  class Representation < Google::Apis::Core::JsonRepresentation
2017
2065
  property :data_profile, as: 'dataProfile'
2066
+ collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1beta1::InfoType, decorator: Google::Apis::SecuritycenterV1beta1::InfoType::Representation
2067
+
2018
2068
  property :parent_type, as: 'parentType'
2019
2069
  end
2020
2070
  end
@@ -3054,6 +3104,8 @@ module Google
3054
3104
  # @private
3055
3105
  class Representation < Google::Apis::Core::JsonRepresentation
3056
3106
  property :data_profile, as: 'dataProfile'
3107
+ collection :info_types, as: 'infoTypes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2InfoType, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2InfoType::Representation
3108
+
3057
3109
  property :parent_type, as: 'parentType'
3058
3110
  end
3059
3111
  end
@@ -3512,6 +3564,16 @@ module Google
3512
3564
  end
3513
3565
  end
3514
3566
 
3567
+ class GoogleCloudSecuritycenterV2InfoType
3568
+ # @private
3569
+ class Representation < Google::Apis::Core::JsonRepresentation
3570
+ property :name, as: 'name'
3571
+ property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SensitivityScore, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2SensitivityScore::Representation
3572
+
3573
+ property :version, as: 'version'
3574
+ end
3575
+ end
3576
+
3515
3577
  class GoogleCloudSecuritycenterV2IpRule
3516
3578
  # @private
3517
3579
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3627,10 +3689,49 @@ module Google
3627
3689
  class GoogleCloudSecuritycenterV2IssueResourceApplication
3628
3690
  # @private
3629
3691
  class Representation < Google::Apis::Core::JsonRepresentation
3692
+ property :attributes, as: 'attributes', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes::Representation
3693
+
3630
3694
  property :name, as: 'name'
3631
3695
  end
3632
3696
  end
3633
3697
 
3698
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributes
3699
+ # @private
3700
+ class Representation < Google::Apis::Core::JsonRepresentation
3701
+ collection :business_owners, as: 'businessOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
3702
+
3703
+ property :criticality, as: 'criticality', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality::Representation
3704
+
3705
+ collection :developer_owners, as: 'developerOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
3706
+
3707
+ property :environment, as: 'environment', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment::Representation
3708
+
3709
+ collection :operator_owners, as: 'operatorOwners', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo::Representation
3710
+
3711
+ end
3712
+ end
3713
+
3714
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesContactInfo
3715
+ # @private
3716
+ class Representation < Google::Apis::Core::JsonRepresentation
3717
+ property :email, as: 'email'
3718
+ end
3719
+ end
3720
+
3721
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesCriticality
3722
+ # @private
3723
+ class Representation < Google::Apis::Core::JsonRepresentation
3724
+ property :type, as: 'type'
3725
+ end
3726
+ end
3727
+
3728
+ class GoogleCloudSecuritycenterV2IssueResourceApplicationAttributesEnvironment
3729
+ # @private
3730
+ class Representation < Google::Apis::Core::JsonRepresentation
3731
+ property :type, as: 'type'
3732
+ end
3733
+ end
3734
+
3634
3735
  class GoogleCloudSecuritycenterV2IssueResourceAwsMetadata
3635
3736
  # @private
3636
3737
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4084,6 +4185,13 @@ module Google
4084
4185
  end
4085
4186
  end
4086
4187
 
4188
+ class GoogleCloudSecuritycenterV2SensitivityScore
4189
+ # @private
4190
+ class Representation < Google::Apis::Core::JsonRepresentation
4191
+ property :score, as: 'score'
4192
+ end
4193
+ end
4194
+
4087
4195
  class GoogleCloudSecuritycenterV2ServiceAccountDelegationInfo
4088
4196
  # @private
4089
4197
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4243,6 +4351,16 @@ module Google
4243
4351
  end
4244
4352
  end
4245
4353
 
4354
+ class InfoType
4355
+ # @private
4356
+ class Representation < Google::Apis::Core::JsonRepresentation
4357
+ property :name, as: 'name'
4358
+ property :sensitivity_score, as: 'sensitivityScore', class: Google::Apis::SecuritycenterV1beta1::SensitivityScore, decorator: Google::Apis::SecuritycenterV1beta1::SensitivityScore::Representation
4359
+
4360
+ property :version, as: 'version'
4361
+ end
4362
+ end
4363
+
4246
4364
  class IpRule
4247
4365
  # @private
4248
4366
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4356,6 +4474,7 @@ module Google
4356
4474
  property :next_page_token, as: 'nextPageToken'
4357
4475
  collection :operations, as: 'operations', class: Google::Apis::SecuritycenterV1beta1::Operation, decorator: Google::Apis::SecuritycenterV1beta1::Operation::Representation
4358
4476
 
4477
+ collection :unreachable, as: 'unreachable'
4359
4478
  end
4360
4479
  end
4361
4480
 
@@ -4681,6 +4800,13 @@ module Google
4681
4800
  end
4682
4801
  end
4683
4802
 
4803
+ class SensitivityScore
4804
+ # @private
4805
+ class Representation < Google::Apis::Core::JsonRepresentation
4806
+ property :score, as: 'score'
4807
+ end
4808
+ end
4809
+
4684
4810
  class ServiceAccountDelegationInfo
4685
4811
  # @private
4686
4812
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -437,6 +437,13 @@ module Google
437
437
  # The standard list page size.
438
438
  # @param [String] page_token
439
439
  # The standard list page token.
440
+ # @param [Boolean] return_partial_success
441
+ # When set to `true`, operations that are reachable are returned as normal, and
442
+ # those that are unreachable are returned in the [ListOperationsResponse.
443
+ # unreachable] field. This can only be `true` when reading across collections e.
444
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
445
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
446
+ # explicitly documented otherwise in service or product specific documentation.
440
447
  # @param [String] fields
441
448
  # Selector specifying which fields to include in a partial response.
442
449
  # @param [String] quota_user
@@ -454,7 +461,7 @@ module Google
454
461
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
455
462
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
456
463
  # @raise [Google::Apis::AuthorizationError] Authorization is required
457
- def list_organization_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
464
+ 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)
458
465
  command = make_simple_command(:get, 'v1beta1/{+name}', options)
459
466
  command.response_representation = Google::Apis::SecuritycenterV1beta1::ListOperationsResponse::Representation
460
467
  command.response_class = Google::Apis::SecuritycenterV1beta1::ListOperationsResponse
@@ -462,6 +469,7 @@ module Google
462
469
  command.query['filter'] = filter unless filter.nil?
463
470
  command.query['pageSize'] = page_size unless page_size.nil?
464
471
  command.query['pageToken'] = page_token unless page_token.nil?
472
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
465
473
  command.query['fields'] = fields unless fields.nil?
466
474
  command.query['quotaUser'] = quota_user unless quota_user.nil?
467
475
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-securitycenter_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.97.0
4
+ version: 0.99.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.97.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.99.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-securitycenter_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths: