google-apis-securitycenter_v1 0.118.0 → 0.119.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: 4df576e938ce8f6f1d4f1023c8609607a507f27422fe1b1f50651d5820d3e0dc
4
- data.tar.gz: fb37f5ce80daffb3f2e5df805ee67200d77b3b0cef977d3a718c28fab02a396f
3
+ metadata.gz: 0bcdd3ed01bcf036ed2d3b12d8df43bb92ce31ae8c5b7bf9cf2b4f1a4ddfcfdd
4
+ data.tar.gz: 2366df0a602bbf8dcd9e8d1b5c00e4c31501028d6c788ba1bfa73e7c33cf7d55
5
5
  SHA512:
6
- metadata.gz: ec4d2925bc14daf981b26a364fd3c20e7565af4ab51a455670e47f43a2aacba070769ef2f76f48bd68d0178654f17ab5fb857bce724cc44bcf6be71922942563
7
- data.tar.gz: 526dfb6c145a13a40030c35b961f9b3f961826269a16f0c7e8055ec0fcf25fddec500f92589a2d732b13f56ee0ada9b57a1326337d5cfdf06429cc732bcaff47
6
+ metadata.gz: 425ef9b3f526acd8e12a0b9d05f2d9a946c2b8b292215d77f557ac85b899715affdbf60ff4071b3448adce5b1cfc978c3123bd7d49b01f21c763acc2792d8656
7
+ data.tar.gz: 6f8bd37502c36f37f1d07ac213420ff86026ce8bdc4f6d917b36abb9292b3e504c3a229d1a6c4537d05af1a3dbe312123bc48274f78bb90ae8236531d9481d90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-securitycenter_v1
2
2
 
3
+ ### v0.119.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260619
6
+
3
7
  ### v0.118.0 (2026-06-21)
4
8
 
5
9
  * Regenerated from discovery document revision 20260615
@@ -3012,6 +3012,11 @@ module Google
3012
3012
  # @return [Array<Google::Apis::SecuritycenterV1::IamBinding>]
3013
3013
  attr_accessor :iam_bindings
3014
3014
 
3015
+ #
3016
+ # Corresponds to the JSON property `iamDetails`
3017
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1IamDetails]
3018
+ attr_accessor :iam_details
3019
+
3015
3020
  #
3016
3021
  # Corresponds to the JSON property `indicator`
3017
3022
  # @return [Google::Apis::SecuritycenterV1::Indicator]
@@ -3214,6 +3219,7 @@ module Google
3214
3219
  @finding_class = args[:finding_class] if args.key?(:finding_class)
3215
3220
  @group_memberships = args[:group_memberships] if args.key?(:group_memberships)
3216
3221
  @iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
3222
+ @iam_details = args[:iam_details] if args.key?(:iam_details)
3217
3223
  @indicator = args[:indicator] if args.key?(:indicator)
3218
3224
  @ip_rules = args[:ip_rules] if args.key?(:ip_rules)
3219
3225
  @job = args[:job] if args.key?(:job)
@@ -3724,6 +3730,50 @@ module Google
3724
3730
  end
3725
3731
  end
3726
3732
 
3733
+ #
3734
+ class GoogleCloudSecuritycenterV1IamDetails
3735
+ include Google::Apis::Core::Hashable
3736
+
3737
+ #
3738
+ # Corresponds to the JSON property `iamRolePermissions`
3739
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1IamRolePermission>]
3740
+ attr_accessor :iam_role_permissions
3741
+
3742
+ def initialize(**args)
3743
+ update!(**args)
3744
+ end
3745
+
3746
+ # Update properties of this object
3747
+ def update!(**args)
3748
+ @iam_role_permissions = args[:iam_role_permissions] if args.key?(:iam_role_permissions)
3749
+ end
3750
+ end
3751
+
3752
+ #
3753
+ class GoogleCloudSecuritycenterV1IamRolePermission
3754
+ include Google::Apis::Core::Hashable
3755
+
3756
+ #
3757
+ # Corresponds to the JSON property `name`
3758
+ # @return [String]
3759
+ attr_accessor :name
3760
+
3761
+ #
3762
+ # Corresponds to the JSON property `role`
3763
+ # @return [String]
3764
+ attr_accessor :role
3765
+
3766
+ def initialize(**args)
3767
+ update!(**args)
3768
+ end
3769
+
3770
+ # Update properties of this object
3771
+ def update!(**args)
3772
+ @name = args[:name] if args.key?(:name)
3773
+ @role = args[:role] if args.key?(:role)
3774
+ end
3775
+ end
3776
+
3727
3777
  #
3728
3778
  class GoogleCloudSecuritycenterV1MuteConfig
3729
3779
  include Google::Apis::Core::Hashable
@@ -7070,6 +7120,11 @@ module Google
7070
7120
  # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamBinding>]
7071
7121
  attr_accessor :iam_bindings
7072
7122
 
7123
+ #
7124
+ # Corresponds to the JSON property `iamDetails`
7125
+ # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamDetails]
7126
+ attr_accessor :iam_details
7127
+
7073
7128
  #
7074
7129
  # Corresponds to the JSON property `indicator`
7075
7130
  # @return [Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Indicator]
@@ -7273,6 +7328,7 @@ module Google
7273
7328
  @finding_class = args[:finding_class] if args.key?(:finding_class)
7274
7329
  @group_memberships = args[:group_memberships] if args.key?(:group_memberships)
7275
7330
  @iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
7331
+ @iam_details = args[:iam_details] if args.key?(:iam_details)
7276
7332
  @indicator = args[:indicator] if args.key?(:indicator)
7277
7333
  @ip_rules = args[:ip_rules] if args.key?(:ip_rules)
7278
7334
  @job = args[:job] if args.key?(:job)
@@ -7476,6 +7532,50 @@ module Google
7476
7532
  end
7477
7533
  end
7478
7534
 
7535
+ #
7536
+ class GoogleCloudSecuritycenterV2IamDetails
7537
+ include Google::Apis::Core::Hashable
7538
+
7539
+ #
7540
+ # Corresponds to the JSON property `iamRolePermissions`
7541
+ # @return [Array<Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamRolePermission>]
7542
+ attr_accessor :iam_role_permissions
7543
+
7544
+ def initialize(**args)
7545
+ update!(**args)
7546
+ end
7547
+
7548
+ # Update properties of this object
7549
+ def update!(**args)
7550
+ @iam_role_permissions = args[:iam_role_permissions] if args.key?(:iam_role_permissions)
7551
+ end
7552
+ end
7553
+
7554
+ #
7555
+ class GoogleCloudSecuritycenterV2IamRolePermission
7556
+ include Google::Apis::Core::Hashable
7557
+
7558
+ #
7559
+ # Corresponds to the JSON property `name`
7560
+ # @return [String]
7561
+ attr_accessor :name
7562
+
7563
+ #
7564
+ # Corresponds to the JSON property `role`
7565
+ # @return [String]
7566
+ attr_accessor :role
7567
+
7568
+ def initialize(**args)
7569
+ update!(**args)
7570
+ end
7571
+
7572
+ # Update properties of this object
7573
+ def update!(**args)
7574
+ @name = args[:name] if args.key?(:name)
7575
+ @role = args[:role] if args.key?(:role)
7576
+ end
7577
+ end
7578
+
7479
7579
  #
7480
7580
  class GoogleCloudSecuritycenterV2Indicator
7481
7581
  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.118.0"
19
+ GEM_VERSION = "0.119.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260615"
25
+ REVISION = "20260619"
26
26
  end
27
27
  end
28
28
  end
@@ -586,6 +586,18 @@ module Google
586
586
  include Google::Apis::Core::JsonObjectSupport
587
587
  end
588
588
 
589
+ class GoogleCloudSecuritycenterV1IamDetails
590
+ class Representation < Google::Apis::Core::JsonRepresentation; end
591
+
592
+ include Google::Apis::Core::JsonObjectSupport
593
+ end
594
+
595
+ class GoogleCloudSecuritycenterV1IamRolePermission
596
+ class Representation < Google::Apis::Core::JsonRepresentation; end
597
+
598
+ include Google::Apis::Core::JsonObjectSupport
599
+ end
600
+
589
601
  class GoogleCloudSecuritycenterV1MuteConfig
590
602
  class Representation < Google::Apis::Core::JsonRepresentation; end
591
603
 
@@ -1126,6 +1138,18 @@ module Google
1126
1138
  include Google::Apis::Core::JsonObjectSupport
1127
1139
  end
1128
1140
 
1141
+ class GoogleCloudSecuritycenterV2IamDetails
1142
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1143
+
1144
+ include Google::Apis::Core::JsonObjectSupport
1145
+ end
1146
+
1147
+ class GoogleCloudSecuritycenterV2IamRolePermission
1148
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1149
+
1150
+ include Google::Apis::Core::JsonObjectSupport
1151
+ end
1152
+
1129
1153
  class GoogleCloudSecuritycenterV2Indicator
1130
1154
  class Representation < Google::Apis::Core::JsonRepresentation; end
1131
1155
 
@@ -3129,6 +3153,8 @@ module Google
3129
3153
 
3130
3154
  collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1::IamBinding, decorator: Google::Apis::SecuritycenterV1::IamBinding::Representation
3131
3155
 
3156
+ property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1IamDetails, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1IamDetails::Representation
3157
+
3132
3158
  property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1::Indicator, decorator: Google::Apis::SecuritycenterV1::Indicator::Representation
3133
3159
 
3134
3160
  property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1::IpRules, decorator: Google::Apis::SecuritycenterV1::IpRules::Representation
@@ -3324,6 +3350,22 @@ module Google
3324
3350
  end
3325
3351
  end
3326
3352
 
3353
+ class GoogleCloudSecuritycenterV1IamDetails
3354
+ # @private
3355
+ class Representation < Google::Apis::Core::JsonRepresentation
3356
+ collection :iam_role_permissions, as: 'iamRolePermissions', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1IamRolePermission, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV1IamRolePermission::Representation
3357
+
3358
+ end
3359
+ end
3360
+
3361
+ class GoogleCloudSecuritycenterV1IamRolePermission
3362
+ # @private
3363
+ class Representation < Google::Apis::Core::JsonRepresentation
3364
+ property :name, as: 'name'
3365
+ property :role, as: 'role'
3366
+ end
3367
+ end
3368
+
3327
3369
  class GoogleCloudSecuritycenterV1MuteConfig
3328
3370
  # @private
3329
3371
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4292,6 +4334,8 @@ module Google
4292
4334
 
4293
4335
  collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamBinding, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamBinding::Representation
4294
4336
 
4337
+ property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamDetails, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamDetails::Representation
4338
+
4295
4339
  property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Indicator, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2Indicator::Representation
4296
4340
 
4297
4341
  property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IpRules, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IpRules::Representation
@@ -4399,6 +4443,22 @@ module Google
4399
4443
  end
4400
4444
  end
4401
4445
 
4446
+ class GoogleCloudSecuritycenterV2IamDetails
4447
+ # @private
4448
+ class Representation < Google::Apis::Core::JsonRepresentation
4449
+ collection :iam_role_permissions, as: 'iamRolePermissions', class: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamRolePermission, decorator: Google::Apis::SecuritycenterV1::GoogleCloudSecuritycenterV2IamRolePermission::Representation
4450
+
4451
+ end
4452
+ end
4453
+
4454
+ class GoogleCloudSecuritycenterV2IamRolePermission
4455
+ # @private
4456
+ class Representation < Google::Apis::Core::JsonRepresentation
4457
+ property :name, as: 'name'
4458
+ property :role, as: 'role'
4459
+ end
4460
+ end
4461
+
4402
4462
  class GoogleCloudSecuritycenterV2Indicator
4403
4463
  # @private
4404
4464
  class Representation < Google::Apis::Core::JsonRepresentation
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.118.0
4
+ version: 0.119.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.118.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1/v0.119.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: