google-apis-securitycenter_v1beta1 0.107.0 → 0.109.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: 933f4bba1f1fbe2fc657da3a58875b72c3bb6e623690dd317eed9cba41f4abd7
4
- data.tar.gz: a55618a8d7947b90dc26f1fd6e310a7890f43423aa31bae4fafd9675135c46d6
3
+ metadata.gz: d08b4c391dd25f7f54e3e853df961dfd936e8641cdabd7462f71824cc81b4dc2
4
+ data.tar.gz: 3ad5ab54c8b808b76a8c61d9aa021673d1ffbbd2ddf7ab72564bb35ec79ec7c6
5
5
  SHA512:
6
- metadata.gz: ff9638a0d9b949b5d5fa163f9b4734b2cdda96012eedf221d312fd17b91681541eb4dcf9a2ec7c1a9c5152ac6f88e9173bd3ab819c969e7e8f43d8cdb2646931
7
- data.tar.gz: 2468d5f3cf629a2c16b7971a0f15cb44f094f01b23b0a94beb74c7f1f56b9684fb3df62c38be53f04777ff5d2641df8dc3f6db1ff4526b20b63d5630367bd60b
6
+ metadata.gz: 8eb6b26ce82dcbd6c536b561042e56d66657e211c2d970a47f71c9fab7aa5291d4bc7fb1b042d14e9886848c8122cd3e4af37bef6263ba197e9ad2f42f453e6f
7
+ data.tar.gz: be532b316b03df559e80c869ce681534f9c61d1385ecda7930d0429c9526cd9a43f179f5ff0b1a8896b5818ddd626981da14488d2ff72bd03e06edecf277b13c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-securitycenter_v1beta1
2
2
 
3
+ ### v0.109.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260619
6
+
7
+ ### v0.108.0 (2026-06-21)
8
+
9
+ * Regenerated from discovery document revision 20260615
10
+
3
11
  ### v0.107.0 (2026-06-14)
4
12
 
5
13
  * Regenerated from discovery document revision 20260526
@@ -2240,6 +2240,11 @@ module Google
2240
2240
  # @return [String]
2241
2241
  attr_accessor :network_ingress_firewall_policy
2242
2242
 
2243
+ #
2244
+ # Corresponds to the JSON property `networkPathInsightsGenerationTime`
2245
+ # @return [String]
2246
+ attr_accessor :network_path_insights_generation_time
2247
+
2243
2248
  #
2244
2249
  # Corresponds to the JSON property `privateIpAddress`
2245
2250
  # @return [String]
@@ -2294,6 +2299,7 @@ module Google
2294
2299
  @load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
2295
2300
  @network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
2296
2301
  @network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
2302
+ @network_path_insights_generation_time = args[:network_path_insights_generation_time] if args.key?(:network_path_insights_generation_time)
2297
2303
  @private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
2298
2304
  @private_port = args[:private_port] if args.key?(:private_port)
2299
2305
  @psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
@@ -2575,6 +2581,11 @@ module Google
2575
2581
  # @return [Array<Google::Apis::SecuritycenterV1beta1::IamBinding>]
2576
2582
  attr_accessor :iam_bindings
2577
2583
 
2584
+ #
2585
+ # Corresponds to the JSON property `iamDetails`
2586
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1IamDetails]
2587
+ attr_accessor :iam_details
2588
+
2578
2589
  #
2579
2590
  # Corresponds to the JSON property `indicator`
2580
2591
  # @return [Google::Apis::SecuritycenterV1beta1::Indicator]
@@ -2777,6 +2788,7 @@ module Google
2777
2788
  @finding_class = args[:finding_class] if args.key?(:finding_class)
2778
2789
  @group_memberships = args[:group_memberships] if args.key?(:group_memberships)
2779
2790
  @iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
2791
+ @iam_details = args[:iam_details] if args.key?(:iam_details)
2780
2792
  @indicator = args[:indicator] if args.key?(:indicator)
2781
2793
  @ip_rules = args[:ip_rules] if args.key?(:ip_rules)
2782
2794
  @job = args[:job] if args.key?(:job)
@@ -3287,6 +3299,50 @@ module Google
3287
3299
  end
3288
3300
  end
3289
3301
 
3302
+ #
3303
+ class GoogleCloudSecuritycenterV1IamDetails
3304
+ include Google::Apis::Core::Hashable
3305
+
3306
+ #
3307
+ # Corresponds to the JSON property `iamRolePermissions`
3308
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1IamRolePermission>]
3309
+ attr_accessor :iam_role_permissions
3310
+
3311
+ def initialize(**args)
3312
+ update!(**args)
3313
+ end
3314
+
3315
+ # Update properties of this object
3316
+ def update!(**args)
3317
+ @iam_role_permissions = args[:iam_role_permissions] if args.key?(:iam_role_permissions)
3318
+ end
3319
+ end
3320
+
3321
+ #
3322
+ class GoogleCloudSecuritycenterV1IamRolePermission
3323
+ include Google::Apis::Core::Hashable
3324
+
3325
+ #
3326
+ # Corresponds to the JSON property `name`
3327
+ # @return [String]
3328
+ attr_accessor :name
3329
+
3330
+ #
3331
+ # Corresponds to the JSON property `role`
3332
+ # @return [String]
3333
+ attr_accessor :role
3334
+
3335
+ def initialize(**args)
3336
+ update!(**args)
3337
+ end
3338
+
3339
+ # Update properties of this object
3340
+ def update!(**args)
3341
+ @name = args[:name] if args.key?(:name)
3342
+ @role = args[:role] if args.key?(:role)
3343
+ end
3344
+ end
3345
+
3290
3346
  #
3291
3347
  class GoogleCloudSecuritycenterV1MuteConfig
3292
3348
  include Google::Apis::Core::Hashable
@@ -6306,6 +6362,11 @@ module Google
6306
6362
  # @return [String]
6307
6363
  attr_accessor :network_ingress_firewall_policy
6308
6364
 
6365
+ #
6366
+ # Corresponds to the JSON property `networkPathInsightsGenerationTime`
6367
+ # @return [String]
6368
+ attr_accessor :network_path_insights_generation_time
6369
+
6309
6370
  #
6310
6371
  # Corresponds to the JSON property `privateIpAddress`
6311
6372
  # @return [String]
@@ -6360,6 +6421,7 @@ module Google
6360
6421
  @load_balancer_firewall_policy = args[:load_balancer_firewall_policy] if args.key?(:load_balancer_firewall_policy)
6361
6422
  @network_endpoint_group = args[:network_endpoint_group] if args.key?(:network_endpoint_group)
6362
6423
  @network_ingress_firewall_policy = args[:network_ingress_firewall_policy] if args.key?(:network_ingress_firewall_policy)
6424
+ @network_path_insights_generation_time = args[:network_path_insights_generation_time] if args.key?(:network_path_insights_generation_time)
6363
6425
  @private_ip_address = args[:private_ip_address] if args.key?(:private_ip_address)
6364
6426
  @private_port = args[:private_port] if args.key?(:private_port)
6365
6427
  @psc_network_attachment = args[:psc_network_attachment] if args.key?(:psc_network_attachment)
@@ -6725,6 +6787,11 @@ module Google
6725
6787
  # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamBinding>]
6726
6788
  attr_accessor :iam_bindings
6727
6789
 
6790
+ #
6791
+ # Corresponds to the JSON property `iamDetails`
6792
+ # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamDetails]
6793
+ attr_accessor :iam_details
6794
+
6728
6795
  #
6729
6796
  # Corresponds to the JSON property `indicator`
6730
6797
  # @return [Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Indicator]
@@ -6928,6 +6995,7 @@ module Google
6928
6995
  @finding_class = args[:finding_class] if args.key?(:finding_class)
6929
6996
  @group_memberships = args[:group_memberships] if args.key?(:group_memberships)
6930
6997
  @iam_bindings = args[:iam_bindings] if args.key?(:iam_bindings)
6998
+ @iam_details = args[:iam_details] if args.key?(:iam_details)
6931
6999
  @indicator = args[:indicator] if args.key?(:indicator)
6932
7000
  @ip_rules = args[:ip_rules] if args.key?(:ip_rules)
6933
7001
  @job = args[:job] if args.key?(:job)
@@ -7131,6 +7199,50 @@ module Google
7131
7199
  end
7132
7200
  end
7133
7201
 
7202
+ #
7203
+ class GoogleCloudSecuritycenterV2IamDetails
7204
+ include Google::Apis::Core::Hashable
7205
+
7206
+ #
7207
+ # Corresponds to the JSON property `iamRolePermissions`
7208
+ # @return [Array<Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamRolePermission>]
7209
+ attr_accessor :iam_role_permissions
7210
+
7211
+ def initialize(**args)
7212
+ update!(**args)
7213
+ end
7214
+
7215
+ # Update properties of this object
7216
+ def update!(**args)
7217
+ @iam_role_permissions = args[:iam_role_permissions] if args.key?(:iam_role_permissions)
7218
+ end
7219
+ end
7220
+
7221
+ #
7222
+ class GoogleCloudSecuritycenterV2IamRolePermission
7223
+ include Google::Apis::Core::Hashable
7224
+
7225
+ #
7226
+ # Corresponds to the JSON property `name`
7227
+ # @return [String]
7228
+ attr_accessor :name
7229
+
7230
+ #
7231
+ # Corresponds to the JSON property `role`
7232
+ # @return [String]
7233
+ attr_accessor :role
7234
+
7235
+ def initialize(**args)
7236
+ update!(**args)
7237
+ end
7238
+
7239
+ # Update properties of this object
7240
+ def update!(**args)
7241
+ @name = args[:name] if args.key?(:name)
7242
+ @role = args[:role] if args.key?(:role)
7243
+ end
7244
+ end
7245
+
7134
7246
  #
7135
7247
  class GoogleCloudSecuritycenterV2Indicator
7136
7248
  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.107.0"
19
+ GEM_VERSION = "0.109.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 = "20260526"
25
+ REVISION = "20260619"
26
26
  end
27
27
  end
28
28
  end
@@ -520,6 +520,18 @@ module Google
520
520
  include Google::Apis::Core::JsonObjectSupport
521
521
  end
522
522
 
523
+ class GoogleCloudSecuritycenterV1IamDetails
524
+ class Representation < Google::Apis::Core::JsonRepresentation; end
525
+
526
+ include Google::Apis::Core::JsonObjectSupport
527
+ end
528
+
529
+ class GoogleCloudSecuritycenterV1IamRolePermission
530
+ class Representation < Google::Apis::Core::JsonRepresentation; end
531
+
532
+ include Google::Apis::Core::JsonObjectSupport
533
+ end
534
+
523
535
  class GoogleCloudSecuritycenterV1MuteConfig
524
536
  class Representation < Google::Apis::Core::JsonRepresentation; end
525
537
 
@@ -1072,6 +1084,18 @@ module Google
1072
1084
  include Google::Apis::Core::JsonObjectSupport
1073
1085
  end
1074
1086
 
1087
+ class GoogleCloudSecuritycenterV2IamDetails
1088
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1089
+
1090
+ include Google::Apis::Core::JsonObjectSupport
1091
+ end
1092
+
1093
+ class GoogleCloudSecuritycenterV2IamRolePermission
1094
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1095
+
1096
+ include Google::Apis::Core::JsonObjectSupport
1097
+ end
1098
+
1075
1099
  class GoogleCloudSecuritycenterV2Indicator
1076
1100
  class Representation < Google::Apis::Core::JsonRepresentation; end
1077
1101
 
@@ -2673,6 +2697,7 @@ module Google
2673
2697
  property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
2674
2698
  property :network_endpoint_group, as: 'networkEndpointGroup'
2675
2699
  property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
2700
+ property :network_path_insights_generation_time, as: 'networkPathInsightsGenerationTime'
2676
2701
  property :private_ip_address, as: 'privateIpAddress'
2677
2702
  property :private_port, as: 'privatePort'
2678
2703
  property :psc_network_attachment, as: 'pscNetworkAttachment'
@@ -2775,6 +2800,8 @@ module Google
2775
2800
 
2776
2801
  collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta1::IamBinding, decorator: Google::Apis::SecuritycenterV1beta1::IamBinding::Representation
2777
2802
 
2803
+ property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1IamDetails, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1IamDetails::Representation
2804
+
2778
2805
  property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta1::Indicator, decorator: Google::Apis::SecuritycenterV1beta1::Indicator::Representation
2779
2806
 
2780
2807
  property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1beta1::IpRules, decorator: Google::Apis::SecuritycenterV1beta1::IpRules::Representation
@@ -2970,6 +2997,22 @@ module Google
2970
2997
  end
2971
2998
  end
2972
2999
 
3000
+ class GoogleCloudSecuritycenterV1IamDetails
3001
+ # @private
3002
+ class Representation < Google::Apis::Core::JsonRepresentation
3003
+ collection :iam_role_permissions, as: 'iamRolePermissions', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1IamRolePermission, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV1IamRolePermission::Representation
3004
+
3005
+ end
3006
+ end
3007
+
3008
+ class GoogleCloudSecuritycenterV1IamRolePermission
3009
+ # @private
3010
+ class Representation < Google::Apis::Core::JsonRepresentation
3011
+ property :name, as: 'name'
3012
+ property :role, as: 'role'
3013
+ end
3014
+ end
3015
+
2973
3016
  class GoogleCloudSecuritycenterV1MuteConfig
2974
3017
  # @private
2975
3018
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3841,6 +3884,7 @@ module Google
3841
3884
  property :load_balancer_firewall_policy, as: 'loadBalancerFirewallPolicy'
3842
3885
  property :network_endpoint_group, as: 'networkEndpointGroup'
3843
3886
  property :network_ingress_firewall_policy, as: 'networkIngressFirewallPolicy'
3887
+ property :network_path_insights_generation_time, as: 'networkPathInsightsGenerationTime'
3844
3888
  property :private_ip_address, as: 'privateIpAddress'
3845
3889
  property :private_port, as: 'privatePort'
3846
3890
  property :psc_network_attachment, as: 'pscNetworkAttachment'
@@ -3962,6 +4006,8 @@ module Google
3962
4006
 
3963
4007
  collection :iam_bindings, as: 'iamBindings', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamBinding, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamBinding::Representation
3964
4008
 
4009
+ property :iam_details, as: 'iamDetails', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamDetails, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamDetails::Representation
4010
+
3965
4011
  property :indicator, as: 'indicator', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Indicator, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2Indicator::Representation
3966
4012
 
3967
4013
  property :ip_rules, as: 'ipRules', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IpRules, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IpRules::Representation
@@ -4069,6 +4115,22 @@ module Google
4069
4115
  end
4070
4116
  end
4071
4117
 
4118
+ class GoogleCloudSecuritycenterV2IamDetails
4119
+ # @private
4120
+ class Representation < Google::Apis::Core::JsonRepresentation
4121
+ collection :iam_role_permissions, as: 'iamRolePermissions', class: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamRolePermission, decorator: Google::Apis::SecuritycenterV1beta1::GoogleCloudSecuritycenterV2IamRolePermission::Representation
4122
+
4123
+ end
4124
+ end
4125
+
4126
+ class GoogleCloudSecuritycenterV2IamRolePermission
4127
+ # @private
4128
+ class Representation < Google::Apis::Core::JsonRepresentation
4129
+ property :name, as: 'name'
4130
+ property :role, as: 'role'
4131
+ end
4132
+ end
4133
+
4072
4134
  class GoogleCloudSecuritycenterV2Indicator
4073
4135
  # @private
4074
4136
  class Representation < Google::Apis::Core::JsonRepresentation
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.107.0
4
+ version: 0.109.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.107.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-securitycenter_v1beta1/v0.109.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: