google-apis-networksecurity_v1beta1 0.65.0 → 0.67.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: b54862202765195d19ac3a07011dc53550e08a6907747e2a13cfbad09b94c2b5
4
- data.tar.gz: 6a2b0d3f0e3e7310f50df551f2d2b2adefc85717dc6e32d58297a22f9a460ade
3
+ metadata.gz: a4a0d8630706f71b2ec24ab5eb2c9bf5c38a106778adaf24c6f8d8da18ab39eb
4
+ data.tar.gz: c83d9465d57311f27e29330f82767851410082a3187d4e5c5b788979343a9950
5
5
  SHA512:
6
- metadata.gz: 40ba21f45e7526db8df6a0c85bdf68663ae9524b9530c3e37b36f02f9027b170d0c2f304f6132fa70250718bf8d09cb8542a78c1a5483a3593cd2869b0fd4f01
7
- data.tar.gz: 7de9d3960c05c503fa625e5f37d83ece6d1802bcb1bbe5bebcacab6e6bf9183f3f72427460b014039a1a47bfee87d533cb124ee2581353945265532816d58d77
6
+ metadata.gz: 5956be46faef9a1be08bdf96af4a17b9c8229c255724ed3d01dc5db3bf1233ed85362802c10a87be943517433180cbef8970280b2531601d153350072a03dae6
7
+ data.tar.gz: 978b54e15516b4b36a6057ac97b46a66ed43d97120ae9a91572d682442f8f2f5ed5aea0cfe71057f06d7135ca27a099c24f850e2d89c13047b78a60a25449c66
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-networksecurity_v1beta1
2
2
 
3
+ ### v0.67.0 (2026-07-05)
4
+
5
+ * Regenerated from discovery document revision 20260617
6
+
7
+ ### v0.66.0 (2026-06-14)
8
+
9
+ * Regenerated from discovery document revision 20260524
10
+ * Regenerated using generator version 0.19.0
11
+
3
12
  ### v0.65.0 (2026-05-24)
4
13
 
5
14
  * Regenerated from discovery document revision 20260518
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/networking) may provide gui
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -1413,6 +1413,11 @@ module Google
1413
1413
  # @return [String]
1414
1414
  attr_accessor :update_time
1415
1415
 
1416
+ # Settings for WildFire analysis.
1417
+ # Corresponds to the JSON property `wildfireSettings`
1418
+ # @return [Google::Apis::NetworksecurityV1beta1::FirewallEndpointWildfireSettings]
1419
+ attr_accessor :wildfire_settings
1420
+
1416
1421
  def initialize(**args)
1417
1422
  update!(**args)
1418
1423
  end
@@ -1432,6 +1437,7 @@ module Google
1432
1437
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
1433
1438
  @state = args[:state] if args.key?(:state)
1434
1439
  @update_time = args[:update_time] if args.key?(:update_time)
1440
+ @wildfire_settings = args[:wildfire_settings] if args.key?(:wildfire_settings)
1435
1441
  end
1436
1442
  end
1437
1443
 
@@ -1544,6 +1550,20 @@ module Google
1544
1550
  class FirewallEndpointEndpointSettings
1545
1551
  include Google::Apis::Core::Hashable
1546
1552
 
1553
+ # Optional. The content cloud region of the endpoint.
1554
+ # Corresponds to the JSON property `contentCloudRegion`
1555
+ # @return [String]
1556
+ attr_accessor :content_cloud_region
1557
+
1558
+ # Optional. Whether to block HTTP partial responses for the endpoint. When this
1559
+ # is true, resumption of blocked malicious HTTP file downloads will be blocked
1560
+ # by the firewall. False provides maximum availability, true provides maximum
1561
+ # security.
1562
+ # Corresponds to the JSON property `httpPartialResponseBlocked`
1563
+ # @return [Boolean]
1564
+ attr_accessor :http_partial_response_blocked
1565
+ alias_method :http_partial_response_blocked?, :http_partial_response_blocked
1566
+
1547
1567
  # Optional. Immutable. Indicates whether Jumbo Frames are enabled. Default value
1548
1568
  # is false.
1549
1569
  # Corresponds to the JSON property `jumboFramesEnabled`
@@ -1557,10 +1577,99 @@ module Google
1557
1577
 
1558
1578
  # Update properties of this object
1559
1579
  def update!(**args)
1580
+ @content_cloud_region = args[:content_cloud_region] if args.key?(:content_cloud_region)
1581
+ @http_partial_response_blocked = args[:http_partial_response_blocked] if args.key?(:http_partial_response_blocked)
1560
1582
  @jumbo_frames_enabled = args[:jumbo_frames_enabled] if args.key?(:jumbo_frames_enabled)
1561
1583
  end
1562
1584
  end
1563
1585
 
1586
+ # Settings for WildFire analysis.
1587
+ class FirewallEndpointWildfireSettings
1588
+ include Google::Apis::Core::Hashable
1589
+
1590
+ # Optional. Indicates whether WildFire analysis is enabled. Default value is
1591
+ # false.
1592
+ # Corresponds to the JSON property `enabled`
1593
+ # @return [Boolean]
1594
+ attr_accessor :enabled
1595
+ alias_method :enabled?, :enabled
1596
+
1597
+ # Settings for WildFire inline cloud analysis.
1598
+ # Corresponds to the JSON property `wildfireInlineCloudAnalysisSettings`
1599
+ # @return [Google::Apis::NetworksecurityV1beta1::FirewallEndpointWildfireSettingsWildfireInlineCloudAnalysisSettings]
1600
+ attr_accessor :wildfire_inline_cloud_analysis_settings
1601
+
1602
+ # Optional. Duration in milliseconds on a file being held while the WildFire
1603
+ # real time signature cloud performs a signature lookup. Value between 1 to 5000
1604
+ # is valid. Default value is 1000.
1605
+ # Corresponds to the JSON property `wildfireRealtimeLookupDuration`
1606
+ # @return [String]
1607
+ attr_accessor :wildfire_realtime_lookup_duration
1608
+
1609
+ # Optional. Action to take on WildFire real time signature lookup timeout.
1610
+ # Default value is ALLOW.
1611
+ # Corresponds to the JSON property `wildfireRealtimeLookupTimeoutAction`
1612
+ # @return [String]
1613
+ attr_accessor :wildfire_realtime_lookup_timeout_action
1614
+
1615
+ # Optional. The region where WildFire analysis will be performed. PAN supports
1616
+ # regions: https://docs.paloaltonetworks.com/advanced-wildfire/administration/
1617
+ # advanced-wildfire-overview/advanced-wildfire-deployments/advanced-wildfire-
1618
+ # global-cloud
1619
+ # Corresponds to the JSON property `wildfireRegion`
1620
+ # @return [String]
1621
+ attr_accessor :wildfire_region
1622
+
1623
+ def initialize(**args)
1624
+ update!(**args)
1625
+ end
1626
+
1627
+ # Update properties of this object
1628
+ def update!(**args)
1629
+ @enabled = args[:enabled] if args.key?(:enabled)
1630
+ @wildfire_inline_cloud_analysis_settings = args[:wildfire_inline_cloud_analysis_settings] if args.key?(:wildfire_inline_cloud_analysis_settings)
1631
+ @wildfire_realtime_lookup_duration = args[:wildfire_realtime_lookup_duration] if args.key?(:wildfire_realtime_lookup_duration)
1632
+ @wildfire_realtime_lookup_timeout_action = args[:wildfire_realtime_lookup_timeout_action] if args.key?(:wildfire_realtime_lookup_timeout_action)
1633
+ @wildfire_region = args[:wildfire_region] if args.key?(:wildfire_region)
1634
+ end
1635
+ end
1636
+
1637
+ # Settings for WildFire inline cloud analysis.
1638
+ class FirewallEndpointWildfireSettingsWildfireInlineCloudAnalysisSettings
1639
+ include Google::Apis::Core::Hashable
1640
+
1641
+ # Optional. Timeout in milliseconds on a file being held while WildFire inline
1642
+ # cloud analysis is performed. Value between 1 to 240000 is valid. Default value
1643
+ # is 30000.
1644
+ # Corresponds to the JSON property `maxAnalysisDuration`
1645
+ # @return [String]
1646
+ attr_accessor :max_analysis_duration
1647
+
1648
+ # Optional. Whether to disable WildFire submission log generation for files that
1649
+ # timeout during WildFire inline cloud analysis.
1650
+ # Corresponds to the JSON property `submissionTimeoutLoggingDisabled`
1651
+ # @return [Boolean]
1652
+ attr_accessor :submission_timeout_logging_disabled
1653
+ alias_method :submission_timeout_logging_disabled?, :submission_timeout_logging_disabled
1654
+
1655
+ # Optional. Action to take when WildFire inline cloud analysis times out.
1656
+ # Default value is ALLOW.
1657
+ # Corresponds to the JSON property `timeoutAction`
1658
+ # @return [String]
1659
+ attr_accessor :timeout_action
1660
+
1661
+ def initialize(**args)
1662
+ update!(**args)
1663
+ end
1664
+
1665
+ # Update properties of this object
1666
+ def update!(**args)
1667
+ @max_analysis_duration = args[:max_analysis_duration] if args.key?(:max_analysis_duration)
1668
+ @submission_timeout_logging_disabled = args[:submission_timeout_logging_disabled] if args.key?(:submission_timeout_logging_disabled)
1669
+ @timeout_action = args[:timeout_action] if args.key?(:timeout_action)
1670
+ end
1671
+ end
1672
+
1564
1673
  # The GatewaySecurityPolicy resource contains a collection of
1565
1674
  # GatewaySecurityPolicyRules and associated metadata.
1566
1675
  class GatewaySecurityPolicy
@@ -3210,7 +3319,8 @@ module Google
3210
3319
  # @return [String]
3211
3320
  attr_accessor :next_page_token
3212
3321
 
3213
- # Locations that could not be reached.
3322
+ # Unordered list. Locations that could not be reached. See https://google.aip.
3323
+ # dev/217 for more details.
3214
3324
  # Corresponds to the JSON property `unreachable`
3215
3325
  # @return [Array<String>]
3216
3326
  attr_accessor :unreachable
@@ -3532,6 +3642,37 @@ module Google
3532
3642
  end
3533
3643
  end
3534
3644
 
3645
+ # Message for response to listing WildfireVerdictChangeRequests.
3646
+ class ListWildfireVerdictChangeRequestsResponse
3647
+ include Google::Apis::Core::Hashable
3648
+
3649
+ # A token identifying a page of results the server should return.
3650
+ # Corresponds to the JSON property `nextPageToken`
3651
+ # @return [String]
3652
+ attr_accessor :next_page_token
3653
+
3654
+ # Unordered list. Locations that could not be reached.
3655
+ # Corresponds to the JSON property `unreachable`
3656
+ # @return [Array<String>]
3657
+ attr_accessor :unreachable
3658
+
3659
+ # The list of WildfireVerdictChangeRequests
3660
+ # Corresponds to the JSON property `wildfireVerdictChangeRequests`
3661
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest>]
3662
+ attr_accessor :wildfire_verdict_change_requests
3663
+
3664
+ def initialize(**args)
3665
+ update!(**args)
3666
+ end
3667
+
3668
+ # Update properties of this object
3669
+ def update!(**args)
3670
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
3671
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
3672
+ @wildfire_verdict_change_requests = args[:wildfire_verdict_change_requests] if args.key?(:wildfire_verdict_change_requests)
3673
+ end
3674
+ end
3675
+
3535
3676
  # A resource that represents a Google Cloud location.
3536
3677
  class Location
3537
3678
  include Google::Apis::Core::Hashable
@@ -3997,6 +4138,13 @@ module Google
3997
4138
  # @return [String]
3998
4139
  attr_accessor :network
3999
4140
 
4141
+ # Output only. Identifier used by the data-path. See the NSI GENEVE format for
4142
+ # more details: https://docs.cloud.google.com/network-security-integration/docs/
4143
+ # understand-geneve#network_id
4144
+ # Corresponds to the JSON property `networkCookie`
4145
+ # @return [Fixnum]
4146
+ attr_accessor :network_cookie
4147
+
4000
4148
  # Output only. The current state of the resource does not match the user's
4001
4149
  # intended state, and the system is working to reconcile them. This part of the
4002
4150
  # normal operation (e.g. adding a new location to the target deployment group).
@@ -4030,6 +4178,7 @@ module Google
4030
4178
  @mirroring_endpoint_group = args[:mirroring_endpoint_group] if args.key?(:mirroring_endpoint_group)
4031
4179
  @name = args[:name] if args.key?(:name)
4032
4180
  @network = args[:network] if args.key?(:network)
4181
+ @network_cookie = args[:network_cookie] if args.key?(:network_cookie)
4033
4182
  @reconciling = args[:reconciling] if args.key?(:reconciling)
4034
4183
  @state = args[:state] if args.key?(:state)
4035
4184
  @update_time = args[:update_time] if args.key?(:update_time)
@@ -4635,6 +4784,11 @@ module Google
4635
4784
  # @return [Google::Apis::NetworksecurityV1beta1::UrlFilteringProfile]
4636
4785
  attr_accessor :url_filtering_profile
4637
4786
 
4787
+ # WildfireAnalysisProfile defines Palo Alto Networks WildFire behavior.
4788
+ # Corresponds to the JSON property `wildfireAnalysisProfile`
4789
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireAnalysisProfile]
4790
+ attr_accessor :wildfire_analysis_profile
4791
+
4638
4792
  def initialize(**args)
4639
4793
  update!(**args)
4640
4794
  end
@@ -4652,6 +4806,7 @@ module Google
4652
4806
  @type = args[:type] if args.key?(:type)
4653
4807
  @update_time = args[:update_time] if args.key?(:update_time)
4654
4808
  @url_filtering_profile = args[:url_filtering_profile] if args.key?(:url_filtering_profile)
4809
+ @wildfire_analysis_profile = args[:wildfire_analysis_profile] if args.key?(:wildfire_analysis_profile)
4655
4810
  end
4656
4811
  end
4657
4812
 
@@ -4724,6 +4879,11 @@ module Google
4724
4879
  # @return [String]
4725
4880
  attr_accessor :url_filtering_profile
4726
4881
 
4882
+ # Optional. Reference to a SecurityProfile with the WildFire configuration.
4883
+ # Corresponds to the JSON property `wildfireAnalysisProfile`
4884
+ # @return [String]
4885
+ attr_accessor :wildfire_analysis_profile
4886
+
4727
4887
  def initialize(**args)
4728
4888
  update!(**args)
4729
4889
  end
@@ -4741,6 +4901,7 @@ module Google
4741
4901
  @threat_prevention_profile = args[:threat_prevention_profile] if args.key?(:threat_prevention_profile)
4742
4902
  @update_time = args[:update_time] if args.key?(:update_time)
4743
4903
  @url_filtering_profile = args[:url_filtering_profile] if args.key?(:url_filtering_profile)
4904
+ @wildfire_analysis_profile = args[:wildfire_analysis_profile] if args.key?(:wildfire_analysis_profile)
4744
4905
  end
4745
4906
  end
4746
4907
 
@@ -5221,6 +5382,439 @@ module Google
5221
5382
  @grpc_endpoint = args[:grpc_endpoint] if args.key?(:grpc_endpoint)
5222
5383
  end
5223
5384
  end
5385
+
5386
+ # WildfireAnalysisProfile defines Palo Alto Networks WildFire behavior.
5387
+ class WildfireAnalysisProfile
5388
+ include Google::Apis::Core::Hashable
5389
+
5390
+ # Optional. Configuration for WildFire inline cloud analysis.
5391
+ # Corresponds to the JSON property `wildfireInlineCloudAnalysisRules`
5392
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRule>]
5393
+ attr_accessor :wildfire_inline_cloud_analysis_rules
5394
+
5395
+ # Optional. Configuration for overriding inline ML WildFire actions per protocol.
5396
+ # Corresponds to the JSON property `wildfireInlineMlOverrides`
5397
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlOverride>]
5398
+ attr_accessor :wildfire_inline_ml_overrides
5399
+
5400
+ # Defines the settings for WildFire Inline ML analysis.
5401
+ # Corresponds to the JSON property `wildfireInlineMlSetting`
5402
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings]
5403
+ attr_accessor :wildfire_inline_ml_setting
5404
+
5405
+ # Optional. Settings for WildFire Inline ML analysis.
5406
+ # Corresponds to the JSON property `wildfireInlineMlSettings`
5407
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings>]
5408
+ attr_accessor :wildfire_inline_ml_settings
5409
+
5410
+ # Optional. Configuration for overriding WildFire actions per protocol.
5411
+ # Corresponds to the JSON property `wildfireOverrides`
5412
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireOverride>]
5413
+ attr_accessor :wildfire_overrides
5414
+
5415
+ # Optional. Whether to hold the transfer of a file while the WildFire real-time
5416
+ # signature cloud performs a signature lookup. Default value is false.
5417
+ # Corresponds to the JSON property `wildfireRealtimeLookup`
5418
+ # @return [Boolean]
5419
+ attr_accessor :wildfire_realtime_lookup
5420
+ alias_method :wildfire_realtime_lookup?, :wildfire_realtime_lookup
5421
+
5422
+ # Optional. Configurations for WildFire file submissions.
5423
+ # Corresponds to the JSON property `wildfireSubmissionRules`
5424
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRule>]
5425
+ attr_accessor :wildfire_submission_rules
5426
+
5427
+ # Optional. Configuration for overriding WildFire threats action by threat_id
5428
+ # match.
5429
+ # Corresponds to the JSON property `wildfireThreatOverrides`
5430
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireThreatOverride>]
5431
+ attr_accessor :wildfire_threat_overrides
5432
+
5433
+ def initialize(**args)
5434
+ update!(**args)
5435
+ end
5436
+
5437
+ # Update properties of this object
5438
+ def update!(**args)
5439
+ @wildfire_inline_cloud_analysis_rules = args[:wildfire_inline_cloud_analysis_rules] if args.key?(:wildfire_inline_cloud_analysis_rules)
5440
+ @wildfire_inline_ml_overrides = args[:wildfire_inline_ml_overrides] if args.key?(:wildfire_inline_ml_overrides)
5441
+ @wildfire_inline_ml_setting = args[:wildfire_inline_ml_setting] if args.key?(:wildfire_inline_ml_setting)
5442
+ @wildfire_inline_ml_settings = args[:wildfire_inline_ml_settings] if args.key?(:wildfire_inline_ml_settings)
5443
+ @wildfire_overrides = args[:wildfire_overrides] if args.key?(:wildfire_overrides)
5444
+ @wildfire_realtime_lookup = args[:wildfire_realtime_lookup] if args.key?(:wildfire_realtime_lookup)
5445
+ @wildfire_submission_rules = args[:wildfire_submission_rules] if args.key?(:wildfire_submission_rules)
5446
+ @wildfire_threat_overrides = args[:wildfire_threat_overrides] if args.key?(:wildfire_threat_overrides)
5447
+ end
5448
+ end
5449
+
5450
+ # The list of file type configurations to be scanned by WildFire Inline Cloud
5451
+ # Analysis.
5452
+ class WildfireInlineCloudAnalysisRule
5453
+ include Google::Apis::Core::Hashable
5454
+
5455
+ # Required. Action to take when a threat is detected using WildFire Inline Cloud
5456
+ # Analysis. The default Value is DENY.
5457
+ # Corresponds to the JSON property `action`
5458
+ # @return [String]
5459
+ attr_accessor :action
5460
+
5461
+ # The options to submit a custom list of file types for scan.
5462
+ # Corresponds to the JSON property `customFileTypes`
5463
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRuleCustomFileTypes]
5464
+ attr_accessor :custom_file_types
5465
+
5466
+ # Required. Direction for the file to be analyzed by WildFire Inline Cloud
5467
+ # Analysis.
5468
+ # Corresponds to the JSON property `direction`
5469
+ # @return [String]
5470
+ attr_accessor :direction
5471
+
5472
+ # Required. File selection mode for WildFire inline cloud analysis.
5473
+ # Corresponds to the JSON property `fileSelectionMode`
5474
+ # @return [String]
5475
+ attr_accessor :file_selection_mode
5476
+
5477
+ def initialize(**args)
5478
+ update!(**args)
5479
+ end
5480
+
5481
+ # Update properties of this object
5482
+ def update!(**args)
5483
+ @action = args[:action] if args.key?(:action)
5484
+ @custom_file_types = args[:custom_file_types] if args.key?(:custom_file_types)
5485
+ @direction = args[:direction] if args.key?(:direction)
5486
+ @file_selection_mode = args[:file_selection_mode] if args.key?(:file_selection_mode)
5487
+ end
5488
+ end
5489
+
5490
+ # The options to submit a custom list of file types for scan.
5491
+ class WildfireInlineCloudAnalysisRuleCustomFileTypes
5492
+ include Google::Apis::Core::Hashable
5493
+
5494
+ # Required. File types to be submitted for WildFire inline cloud analysis.
5495
+ # Corresponds to the JSON property `fileTypes`
5496
+ # @return [Array<String>]
5497
+ attr_accessor :file_types
5498
+
5499
+ def initialize(**args)
5500
+ update!(**args)
5501
+ end
5502
+
5503
+ # Update properties of this object
5504
+ def update!(**args)
5505
+ @file_types = args[:file_types] if args.key?(:file_types)
5506
+ end
5507
+ end
5508
+
5509
+ # Defines the file to exclude from WildFire Inline ML analysis.
5510
+ class WildfireInlineMlFileException
5511
+ include Google::Apis::Core::Hashable
5512
+
5513
+ # Optional. Name of the file to exclude from WildFire Inline ML analysis.
5514
+ # Corresponds to the JSON property `filename`
5515
+ # @return [String]
5516
+ attr_accessor :filename
5517
+
5518
+ # Required. Machine learning partial hash of the file to exclude from WildFire
5519
+ # Inline ML analysis.
5520
+ # Corresponds to the JSON property `partialHash`
5521
+ # @return [String]
5522
+ attr_accessor :partial_hash
5523
+
5524
+ def initialize(**args)
5525
+ update!(**args)
5526
+ end
5527
+
5528
+ # Update properties of this object
5529
+ def update!(**args)
5530
+ @filename = args[:filename] if args.key?(:filename)
5531
+ @partial_hash = args[:partial_hash] if args.key?(:partial_hash)
5532
+ end
5533
+ end
5534
+
5535
+ # Defines what action to take for WildFire Inline ML threats per protocol.
5536
+ class WildfireInlineMlOverride
5537
+ include Google::Apis::Core::Hashable
5538
+
5539
+ # Required. The action to take for WildFire Inline ML override.
5540
+ # Corresponds to the JSON property `action`
5541
+ # @return [String]
5542
+ attr_accessor :action
5543
+
5544
+ # Required. Protocol to match for WildFire Inline ML override.
5545
+ # Corresponds to the JSON property `protocol`
5546
+ # @return [String]
5547
+ attr_accessor :protocol
5548
+
5549
+ def initialize(**args)
5550
+ update!(**args)
5551
+ end
5552
+
5553
+ # Update properties of this object
5554
+ def update!(**args)
5555
+ @action = args[:action] if args.key?(:action)
5556
+ @protocol = args[:protocol] if args.key?(:protocol)
5557
+ end
5558
+ end
5559
+
5560
+ # Defines the settings for WildFire Inline ML analysis.
5561
+ class WildfireInlineMlSettings
5562
+ include Google::Apis::Core::Hashable
5563
+
5564
+ # Optional. List of files to exclude from WildFire Inline ML analysis.
5565
+ # Corresponds to the JSON property `fileExceptions`
5566
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlFileException>]
5567
+ attr_accessor :file_exceptions
5568
+
5569
+ # Optional. List of Inline ML configs to enable in WildFire Inline ML analysis.
5570
+ # Corresponds to the JSON property `inlineMlConfigs`
5571
+ # @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettingsInlineMlConfig>]
5572
+ attr_accessor :inline_ml_configs
5573
+
5574
+ def initialize(**args)
5575
+ update!(**args)
5576
+ end
5577
+
5578
+ # Update properties of this object
5579
+ def update!(**args)
5580
+ @file_exceptions = args[:file_exceptions] if args.key?(:file_exceptions)
5581
+ @inline_ml_configs = args[:inline_ml_configs] if args.key?(:inline_ml_configs)
5582
+ end
5583
+ end
5584
+
5585
+ # Configuration for WildFire Inline ML analysis per file type.
5586
+ class WildfireInlineMlSettingsInlineMlConfig
5587
+ include Google::Apis::Core::Hashable
5588
+
5589
+ # Required. Action to take when a threat is detected using Inline ML.
5590
+ # Corresponds to the JSON property `action`
5591
+ # @return [String]
5592
+ attr_accessor :action
5593
+
5594
+ # Required. File type to configure Inline ML for.
5595
+ # Corresponds to the JSON property `fileType`
5596
+ # @return [String]
5597
+ attr_accessor :file_type
5598
+
5599
+ def initialize(**args)
5600
+ update!(**args)
5601
+ end
5602
+
5603
+ # Update properties of this object
5604
+ def update!(**args)
5605
+ @action = args[:action] if args.key?(:action)
5606
+ @file_type = args[:file_type] if args.key?(:file_type)
5607
+ end
5608
+ end
5609
+
5610
+ # Defines what action to take for WildFire threats per protocol.
5611
+ class WildfireOverride
5612
+ include Google::Apis::Core::Hashable
5613
+
5614
+ # Required. Threat action override. For some threat types, only a subset of
5615
+ # actions applies.
5616
+ # Corresponds to the JSON property `action`
5617
+ # @return [String]
5618
+ attr_accessor :action
5619
+
5620
+ # Required. Protocol to match.
5621
+ # Corresponds to the JSON property `protocol`
5622
+ # @return [String]
5623
+ attr_accessor :protocol
5624
+
5625
+ def initialize(**args)
5626
+ update!(**args)
5627
+ end
5628
+
5629
+ # Update properties of this object
5630
+ def update!(**args)
5631
+ @action = args[:action] if args.key?(:action)
5632
+ @protocol = args[:protocol] if args.key?(:protocol)
5633
+ end
5634
+ end
5635
+
5636
+ # Defines the file types to be submitted for WildFire analysis and the direction
5637
+ # of the traffic.
5638
+ class WildfireSubmissionRule
5639
+ include Google::Apis::Core::Hashable
5640
+
5641
+ # The options to submit a custom list of file types for scan.
5642
+ # Corresponds to the JSON property `customFileTypes`
5643
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRuleCustomFileTypes]
5644
+ attr_accessor :custom_file_types
5645
+
5646
+ # Required. Direction for the files to be analyzed by WildFire.
5647
+ # Corresponds to the JSON property `direction`
5648
+ # @return [String]
5649
+ attr_accessor :direction
5650
+
5651
+ # Required. File selection mode for WildFire analysis.
5652
+ # Corresponds to the JSON property `fileSelectionMode`
5653
+ # @return [String]
5654
+ attr_accessor :file_selection_mode
5655
+
5656
+ def initialize(**args)
5657
+ update!(**args)
5658
+ end
5659
+
5660
+ # Update properties of this object
5661
+ def update!(**args)
5662
+ @custom_file_types = args[:custom_file_types] if args.key?(:custom_file_types)
5663
+ @direction = args[:direction] if args.key?(:direction)
5664
+ @file_selection_mode = args[:file_selection_mode] if args.key?(:file_selection_mode)
5665
+ end
5666
+ end
5667
+
5668
+ # The options to submit a custom list of file types for scan.
5669
+ class WildfireSubmissionRuleCustomFileTypes
5670
+ include Google::Apis::Core::Hashable
5671
+
5672
+ # Required. File types to be submitted for WildFire analysis.
5673
+ # Corresponds to the JSON property `fileTypes`
5674
+ # @return [Array<String>]
5675
+ attr_accessor :file_types
5676
+
5677
+ def initialize(**args)
5678
+ update!(**args)
5679
+ end
5680
+
5681
+ # Update properties of this object
5682
+ def update!(**args)
5683
+ @file_types = args[:file_types] if args.key?(:file_types)
5684
+ end
5685
+ end
5686
+
5687
+ # Defines what action to take for a specific WildFire threat_id match.
5688
+ class WildfireThreatOverride
5689
+ include Google::Apis::Core::Hashable
5690
+
5691
+ # Required. Threat action override.
5692
+ # Corresponds to the JSON property `action`
5693
+ # @return [String]
5694
+ attr_accessor :action
5695
+
5696
+ # Required. Threat ID to match.
5697
+ # Corresponds to the JSON property `threatId`
5698
+ # @return [String]
5699
+ attr_accessor :threat_id
5700
+
5701
+ def initialize(**args)
5702
+ update!(**args)
5703
+ end
5704
+
5705
+ # Update properties of this object
5706
+ def update!(**args)
5707
+ @action = args[:action] if args.key?(:action)
5708
+ @threat_id = args[:threat_id] if args.key?(:threat_id)
5709
+ end
5710
+ end
5711
+
5712
+ # Message for a WildfireVerdictChangeRequest.
5713
+ class WildfireVerdictChangeRequest
5714
+ include Google::Apis::Core::Hashable
5715
+
5716
+ # Required. The justification for the verdict change request. Max length 2048
5717
+ # characters.
5718
+ # Corresponds to the JSON property `comment`
5719
+ # @return [String]
5720
+ attr_accessor :comment
5721
+
5722
+ # Output only. The timestamp when the WildfireVerdictChangeRequest was created.
5723
+ # Corresponds to the JSON property `createTime`
5724
+ # @return [String]
5725
+ attr_accessor :create_time
5726
+
5727
+ # Output only. The file name of the Malware Sample.
5728
+ # Corresponds to the JSON property `fileName`
5729
+ # @return [String]
5730
+ attr_accessor :file_name
5731
+
5732
+ # Output only. The file type of the Malware Sample.
5733
+ # Corresponds to the JSON property `fileType`
5734
+ # @return [String]
5735
+ attr_accessor :file_type
5736
+
5737
+ # Output only. The final verdict of the Malware Sample.
5738
+ # Corresponds to the JSON property `finalVerdict`
5739
+ # @return [String]
5740
+ attr_accessor :final_verdict
5741
+
5742
+ # Output only. Identifier. The relative name of the WildfireVerdictChangeRequest.
5743
+ # Output only. This is a unique identifier generated by the third party API.
5744
+ # Format: organizations|projects/`project_or_organization`/locations/`location`/
5745
+ # firewallEndpoints/`firewall_endpoint`/wildfireVerdictChangeRequests/`
5746
+ # wildfire_verdict_change_request_id` Where `wildfire_verdict_change_request_id`
5747
+ # is the ID in the format: ^[0-9a-fA-F]`8`-[0-9a-fA-F]`4`-[0-9a-fA-F]`4`-[0-9a-
5748
+ # fA-F]`4`-[0-9a-fA-F]`12`$
5749
+ # Corresponds to the JSON property `name`
5750
+ # @return [String]
5751
+ attr_accessor :name
5752
+
5753
+ # Required. The suggested verdict to apply to the Malware Sample.
5754
+ # Corresponds to the JSON property `newVerdict`
5755
+ # @return [String]
5756
+ attr_accessor :new_verdict
5757
+
5758
+ # Output only. The original verdict of the Malware Sample.
5759
+ # Corresponds to the JSON property `oldVerdict`
5760
+ # @return [String]
5761
+ attr_accessor :old_verdict
5762
+
5763
+ # Output only. The timestamp when the WildfireVerdictChangeRequest was resolved.
5764
+ # Corresponds to the JSON property `resolutionTime`
5765
+ # @return [String]
5766
+ attr_accessor :resolution_time
5767
+
5768
+ # Required. The SHA256 hash of the Malware Sample to change the verdict of.
5769
+ # Corresponds to the JSON property `sha256`
5770
+ # @return [String]
5771
+ attr_accessor :sha256
5772
+
5773
+ # Output only. The region of the file associated with the Malware Sample.
5774
+ # Corresponds to the JSON property `sourceRegion`
5775
+ # @return [String]
5776
+ attr_accessor :source_region
5777
+
5778
+ # Output only. The review state of the WildfireVerdictChangeRequest.
5779
+ # Corresponds to the JSON property `state`
5780
+ # @return [String]
5781
+ attr_accessor :state
5782
+
5783
+ # Output only. The timestamp when the WildfireVerdictChangeRequest was last
5784
+ # updated.
5785
+ # Corresponds to the JSON property `updateTime`
5786
+ # @return [String]
5787
+ attr_accessor :update_time
5788
+
5789
+ # Output only. The ID of the WildfireVerdictChangeRequest. This is a unique
5790
+ # identifier generated by the third party API. Format: ^[0-9a-fA-F]`8`-[0-9a-fA-
5791
+ # F]`4`-[0-9a-fA-F]`4`-[0-9a-fA-F]`4`-[0-9a-fA-F]`12`$
5792
+ # Corresponds to the JSON property `wildfireVerdictChangeRequestId`
5793
+ # @return [String]
5794
+ attr_accessor :wildfire_verdict_change_request_id
5795
+
5796
+ def initialize(**args)
5797
+ update!(**args)
5798
+ end
5799
+
5800
+ # Update properties of this object
5801
+ def update!(**args)
5802
+ @comment = args[:comment] if args.key?(:comment)
5803
+ @create_time = args[:create_time] if args.key?(:create_time)
5804
+ @file_name = args[:file_name] if args.key?(:file_name)
5805
+ @file_type = args[:file_type] if args.key?(:file_type)
5806
+ @final_verdict = args[:final_verdict] if args.key?(:final_verdict)
5807
+ @name = args[:name] if args.key?(:name)
5808
+ @new_verdict = args[:new_verdict] if args.key?(:new_verdict)
5809
+ @old_verdict = args[:old_verdict] if args.key?(:old_verdict)
5810
+ @resolution_time = args[:resolution_time] if args.key?(:resolution_time)
5811
+ @sha256 = args[:sha256] if args.key?(:sha256)
5812
+ @source_region = args[:source_region] if args.key?(:source_region)
5813
+ @state = args[:state] if args.key?(:state)
5814
+ @update_time = args[:update_time] if args.key?(:update_time)
5815
+ @wildfire_verdict_change_request_id = args[:wildfire_verdict_change_request_id] if args.key?(:wildfire_verdict_change_request_id)
5816
+ end
5817
+ end
5224
5818
  end
5225
5819
  end
5226
5820
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetworksecurityV1beta1
18
18
  # Version of the google-apis-networksecurity_v1beta1 gem
19
- GEM_VERSION = "0.65.0"
19
+ GEM_VERSION = "0.67.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260518"
25
+ REVISION = "20260617"
26
26
  end
27
27
  end
28
28
  end
@@ -250,6 +250,18 @@ module Google
250
250
  include Google::Apis::Core::JsonObjectSupport
251
251
  end
252
252
 
253
+ class FirewallEndpointWildfireSettings
254
+ class Representation < Google::Apis::Core::JsonRepresentation; end
255
+
256
+ include Google::Apis::Core::JsonObjectSupport
257
+ end
258
+
259
+ class FirewallEndpointWildfireSettingsWildfireInlineCloudAnalysisSettings
260
+ class Representation < Google::Apis::Core::JsonRepresentation; end
261
+
262
+ include Google::Apis::Core::JsonObjectSupport
263
+ end
264
+
253
265
  class GatewaySecurityPolicy
254
266
  class Representation < Google::Apis::Core::JsonRepresentation; end
255
267
 
@@ -556,6 +568,12 @@ module Google
556
568
  include Google::Apis::Core::JsonObjectSupport
557
569
  end
558
570
 
571
+ class ListWildfireVerdictChangeRequestsResponse
572
+ class Representation < Google::Apis::Core::JsonRepresentation; end
573
+
574
+ include Google::Apis::Core::JsonObjectSupport
575
+ end
576
+
559
577
  class Location
560
578
  class Representation < Google::Apis::Core::JsonRepresentation; end
561
579
 
@@ -760,6 +778,78 @@ module Google
760
778
  include Google::Apis::Core::JsonObjectSupport
761
779
  end
762
780
 
781
+ class WildfireAnalysisProfile
782
+ class Representation < Google::Apis::Core::JsonRepresentation; end
783
+
784
+ include Google::Apis::Core::JsonObjectSupport
785
+ end
786
+
787
+ class WildfireInlineCloudAnalysisRule
788
+ class Representation < Google::Apis::Core::JsonRepresentation; end
789
+
790
+ include Google::Apis::Core::JsonObjectSupport
791
+ end
792
+
793
+ class WildfireInlineCloudAnalysisRuleCustomFileTypes
794
+ class Representation < Google::Apis::Core::JsonRepresentation; end
795
+
796
+ include Google::Apis::Core::JsonObjectSupport
797
+ end
798
+
799
+ class WildfireInlineMlFileException
800
+ class Representation < Google::Apis::Core::JsonRepresentation; end
801
+
802
+ include Google::Apis::Core::JsonObjectSupport
803
+ end
804
+
805
+ class WildfireInlineMlOverride
806
+ class Representation < Google::Apis::Core::JsonRepresentation; end
807
+
808
+ include Google::Apis::Core::JsonObjectSupport
809
+ end
810
+
811
+ class WildfireInlineMlSettings
812
+ class Representation < Google::Apis::Core::JsonRepresentation; end
813
+
814
+ include Google::Apis::Core::JsonObjectSupport
815
+ end
816
+
817
+ class WildfireInlineMlSettingsInlineMlConfig
818
+ class Representation < Google::Apis::Core::JsonRepresentation; end
819
+
820
+ include Google::Apis::Core::JsonObjectSupport
821
+ end
822
+
823
+ class WildfireOverride
824
+ class Representation < Google::Apis::Core::JsonRepresentation; end
825
+
826
+ include Google::Apis::Core::JsonObjectSupport
827
+ end
828
+
829
+ class WildfireSubmissionRule
830
+ class Representation < Google::Apis::Core::JsonRepresentation; end
831
+
832
+ include Google::Apis::Core::JsonObjectSupport
833
+ end
834
+
835
+ class WildfireSubmissionRuleCustomFileTypes
836
+ class Representation < Google::Apis::Core::JsonRepresentation; end
837
+
838
+ include Google::Apis::Core::JsonObjectSupport
839
+ end
840
+
841
+ class WildfireThreatOverride
842
+ class Representation < Google::Apis::Core::JsonRepresentation; end
843
+
844
+ include Google::Apis::Core::JsonObjectSupport
845
+ end
846
+
847
+ class WildfireVerdictChangeRequest
848
+ class Representation < Google::Apis::Core::JsonRepresentation; end
849
+
850
+ include Google::Apis::Core::JsonObjectSupport
851
+ end
852
+
763
853
  class AddAddressGroupItemsRequest
764
854
  # @private
765
855
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1121,6 +1211,8 @@ module Google
1121
1211
  property :satisfies_pzs, as: 'satisfiesPzs'
1122
1212
  property :state, as: 'state'
1123
1213
  property :update_time, as: 'updateTime'
1214
+ property :wildfire_settings, as: 'wildfireSettings', class: Google::Apis::NetworksecurityV1beta1::FirewallEndpointWildfireSettings, decorator: Google::Apis::NetworksecurityV1beta1::FirewallEndpointWildfireSettings::Representation
1215
+
1124
1216
  end
1125
1217
  end
1126
1218
 
@@ -1151,10 +1243,33 @@ module Google
1151
1243
  class FirewallEndpointEndpointSettings
1152
1244
  # @private
1153
1245
  class Representation < Google::Apis::Core::JsonRepresentation
1246
+ property :content_cloud_region, as: 'contentCloudRegion'
1247
+ property :http_partial_response_blocked, as: 'httpPartialResponseBlocked'
1154
1248
  property :jumbo_frames_enabled, as: 'jumboFramesEnabled'
1155
1249
  end
1156
1250
  end
1157
1251
 
1252
+ class FirewallEndpointWildfireSettings
1253
+ # @private
1254
+ class Representation < Google::Apis::Core::JsonRepresentation
1255
+ property :enabled, as: 'enabled'
1256
+ property :wildfire_inline_cloud_analysis_settings, as: 'wildfireInlineCloudAnalysisSettings', class: Google::Apis::NetworksecurityV1beta1::FirewallEndpointWildfireSettingsWildfireInlineCloudAnalysisSettings, decorator: Google::Apis::NetworksecurityV1beta1::FirewallEndpointWildfireSettingsWildfireInlineCloudAnalysisSettings::Representation
1257
+
1258
+ property :wildfire_realtime_lookup_duration, as: 'wildfireRealtimeLookupDuration'
1259
+ property :wildfire_realtime_lookup_timeout_action, as: 'wildfireRealtimeLookupTimeoutAction'
1260
+ property :wildfire_region, as: 'wildfireRegion'
1261
+ end
1262
+ end
1263
+
1264
+ class FirewallEndpointWildfireSettingsWildfireInlineCloudAnalysisSettings
1265
+ # @private
1266
+ class Representation < Google::Apis::Core::JsonRepresentation
1267
+ property :max_analysis_duration, as: 'maxAnalysisDuration'
1268
+ property :submission_timeout_logging_disabled, as: 'submissionTimeoutLoggingDisabled'
1269
+ property :timeout_action, as: 'timeoutAction'
1270
+ end
1271
+ end
1272
+
1158
1273
  class GatewaySecurityPolicy
1159
1274
  # @private
1160
1275
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1667,6 +1782,16 @@ module Google
1667
1782
  end
1668
1783
  end
1669
1784
 
1785
+ class ListWildfireVerdictChangeRequestsResponse
1786
+ # @private
1787
+ class Representation < Google::Apis::Core::JsonRepresentation
1788
+ property :next_page_token, as: 'nextPageToken'
1789
+ collection :unreachable, as: 'unreachable'
1790
+ collection :wildfire_verdict_change_requests, as: 'wildfireVerdictChangeRequests', class: Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest, decorator: Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
1791
+
1792
+ end
1793
+ end
1794
+
1670
1795
  class Location
1671
1796
  # @private
1672
1797
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -1769,6 +1894,7 @@ module Google
1769
1894
  property :mirroring_endpoint_group, as: 'mirroringEndpointGroup'
1770
1895
  property :name, as: 'name'
1771
1896
  property :network, as: 'network'
1897
+ property :network_cookie, as: 'networkCookie'
1772
1898
  property :reconciling, as: 'reconciling'
1773
1899
  property :state, as: 'state'
1774
1900
  property :update_time, as: 'updateTime'
@@ -1928,6 +2054,8 @@ module Google
1928
2054
  property :update_time, as: 'updateTime'
1929
2055
  property :url_filtering_profile, as: 'urlFilteringProfile', class: Google::Apis::NetworksecurityV1beta1::UrlFilteringProfile, decorator: Google::Apis::NetworksecurityV1beta1::UrlFilteringProfile::Representation
1930
2056
 
2057
+ property :wildfire_analysis_profile, as: 'wildfireAnalysisProfile', class: Google::Apis::NetworksecurityV1beta1::WildfireAnalysisProfile, decorator: Google::Apis::NetworksecurityV1beta1::WildfireAnalysisProfile::Representation
2058
+
1931
2059
  end
1932
2060
  end
1933
2061
 
@@ -1945,6 +2073,7 @@ module Google
1945
2073
  property :threat_prevention_profile, as: 'threatPreventionProfile'
1946
2074
  property :update_time, as: 'updateTime'
1947
2075
  property :url_filtering_profile, as: 'urlFilteringProfile'
2076
+ property :wildfire_analysis_profile, as: 'wildfireAnalysisProfile'
1948
2077
  end
1949
2078
  end
1950
2079
 
@@ -2063,6 +2192,132 @@ module Google
2063
2192
 
2064
2193
  end
2065
2194
  end
2195
+
2196
+ class WildfireAnalysisProfile
2197
+ # @private
2198
+ class Representation < Google::Apis::Core::JsonRepresentation
2199
+ collection :wildfire_inline_cloud_analysis_rules, as: 'wildfireInlineCloudAnalysisRules', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRule, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRule::Representation
2200
+
2201
+ collection :wildfire_inline_ml_overrides, as: 'wildfireInlineMlOverrides', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlOverride, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlOverride::Representation
2202
+
2203
+ property :wildfire_inline_ml_setting, as: 'wildfireInlineMlSetting', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings::Representation
2204
+
2205
+ collection :wildfire_inline_ml_settings, as: 'wildfireInlineMlSettings', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings::Representation
2206
+
2207
+ collection :wildfire_overrides, as: 'wildfireOverrides', class: Google::Apis::NetworksecurityV1beta1::WildfireOverride, decorator: Google::Apis::NetworksecurityV1beta1::WildfireOverride::Representation
2208
+
2209
+ property :wildfire_realtime_lookup, as: 'wildfireRealtimeLookup'
2210
+ collection :wildfire_submission_rules, as: 'wildfireSubmissionRules', class: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRule, decorator: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRule::Representation
2211
+
2212
+ collection :wildfire_threat_overrides, as: 'wildfireThreatOverrides', class: Google::Apis::NetworksecurityV1beta1::WildfireThreatOverride, decorator: Google::Apis::NetworksecurityV1beta1::WildfireThreatOverride::Representation
2213
+
2214
+ end
2215
+ end
2216
+
2217
+ class WildfireInlineCloudAnalysisRule
2218
+ # @private
2219
+ class Representation < Google::Apis::Core::JsonRepresentation
2220
+ property :action, as: 'action'
2221
+ property :custom_file_types, as: 'customFileTypes', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRuleCustomFileTypes, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRuleCustomFileTypes::Representation
2222
+
2223
+ property :direction, as: 'direction'
2224
+ property :file_selection_mode, as: 'fileSelectionMode'
2225
+ end
2226
+ end
2227
+
2228
+ class WildfireInlineCloudAnalysisRuleCustomFileTypes
2229
+ # @private
2230
+ class Representation < Google::Apis::Core::JsonRepresentation
2231
+ collection :file_types, as: 'fileTypes'
2232
+ end
2233
+ end
2234
+
2235
+ class WildfireInlineMlFileException
2236
+ # @private
2237
+ class Representation < Google::Apis::Core::JsonRepresentation
2238
+ property :filename, as: 'filename'
2239
+ property :partial_hash, as: 'partialHash'
2240
+ end
2241
+ end
2242
+
2243
+ class WildfireInlineMlOverride
2244
+ # @private
2245
+ class Representation < Google::Apis::Core::JsonRepresentation
2246
+ property :action, as: 'action'
2247
+ property :protocol, as: 'protocol'
2248
+ end
2249
+ end
2250
+
2251
+ class WildfireInlineMlSettings
2252
+ # @private
2253
+ class Representation < Google::Apis::Core::JsonRepresentation
2254
+ collection :file_exceptions, as: 'fileExceptions', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlFileException, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlFileException::Representation
2255
+
2256
+ collection :inline_ml_configs, as: 'inlineMlConfigs', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettingsInlineMlConfig, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettingsInlineMlConfig::Representation
2257
+
2258
+ end
2259
+ end
2260
+
2261
+ class WildfireInlineMlSettingsInlineMlConfig
2262
+ # @private
2263
+ class Representation < Google::Apis::Core::JsonRepresentation
2264
+ property :action, as: 'action'
2265
+ property :file_type, as: 'fileType'
2266
+ end
2267
+ end
2268
+
2269
+ class WildfireOverride
2270
+ # @private
2271
+ class Representation < Google::Apis::Core::JsonRepresentation
2272
+ property :action, as: 'action'
2273
+ property :protocol, as: 'protocol'
2274
+ end
2275
+ end
2276
+
2277
+ class WildfireSubmissionRule
2278
+ # @private
2279
+ class Representation < Google::Apis::Core::JsonRepresentation
2280
+ property :custom_file_types, as: 'customFileTypes', class: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRuleCustomFileTypes, decorator: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRuleCustomFileTypes::Representation
2281
+
2282
+ property :direction, as: 'direction'
2283
+ property :file_selection_mode, as: 'fileSelectionMode'
2284
+ end
2285
+ end
2286
+
2287
+ class WildfireSubmissionRuleCustomFileTypes
2288
+ # @private
2289
+ class Representation < Google::Apis::Core::JsonRepresentation
2290
+ collection :file_types, as: 'fileTypes'
2291
+ end
2292
+ end
2293
+
2294
+ class WildfireThreatOverride
2295
+ # @private
2296
+ class Representation < Google::Apis::Core::JsonRepresentation
2297
+ property :action, as: 'action'
2298
+ property :threat_id, as: 'threatId'
2299
+ end
2300
+ end
2301
+
2302
+ class WildfireVerdictChangeRequest
2303
+ # @private
2304
+ class Representation < Google::Apis::Core::JsonRepresentation
2305
+ property :comment, as: 'comment'
2306
+ property :create_time, as: 'createTime'
2307
+ property :file_name, as: 'fileName'
2308
+ property :file_type, as: 'fileType'
2309
+ property :final_verdict, as: 'finalVerdict'
2310
+ property :name, as: 'name'
2311
+ property :new_verdict, as: 'newVerdict'
2312
+ property :old_verdict, as: 'oldVerdict'
2313
+ property :resolution_time, as: 'resolutionTime'
2314
+ property :sha256, as: 'sha256'
2315
+ property :source_region, as: 'sourceRegion'
2316
+ property :state, as: 'state'
2317
+ property :update_time, as: 'updateTime'
2318
+ property :wildfire_verdict_change_request_id, as: 'wildfireVerdictChangeRequestId'
2319
+ end
2320
+ end
2066
2321
  end
2067
2322
  end
2068
2323
  end
@@ -756,6 +756,127 @@ module Google
756
756
  execute_or_queue_command(command, &block)
757
757
  end
758
758
 
759
+ # Create WildfireVerdictChangeRequest in a given Firewall Endpoint in an
760
+ # organization and location.
761
+ # @param [String] parent
762
+ # Required. Parent value for CreateWildfireVerdictChangeRequestRequest. The
763
+ # parent is a firewall endpoint resource. Format: organizations|projects/`
764
+ # project_or_organization`/locations/`location`/firewallEndpoints/`
765
+ # firewall_endpoint`
766
+ # @param [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest] wildfire_verdict_change_request_object
767
+ # @param [String] fields
768
+ # Selector specifying which fields to include in a partial response.
769
+ # @param [String] quota_user
770
+ # Available to use for quota purposes for server-side applications. Can be any
771
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
772
+ # @param [Google::Apis::RequestOptions] options
773
+ # Request-specific options
774
+ #
775
+ # @yield [result, err] Result & error if block supplied
776
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest] parsed result object
777
+ # @yieldparam err [StandardError] error object if request failed
778
+ #
779
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest]
780
+ #
781
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
782
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
783
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
784
+ def create_organization_location_firewall_endpoint_wildfire_verdict_change_request(parent, wildfire_verdict_change_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
785
+ command = make_simple_command(:post, 'v1beta1/{+parent}/wildfireVerdictChangeRequests', options)
786
+ command.request_representation = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
787
+ command.request_object = wildfire_verdict_change_request_object
788
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
789
+ command.response_class = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest
790
+ command.params['parent'] = parent unless parent.nil?
791
+ command.query['fields'] = fields unless fields.nil?
792
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
793
+ execute_or_queue_command(command, &block)
794
+ end
795
+
796
+ # Get WildfireVerdictChangeRequest in a given Firewall Endpoint in an
797
+ # organization and location.
798
+ # @param [String] name
799
+ # Required. Name of the WildfireVerdictChangeRequest to retrieve. Format:
800
+ # organizations|projects/`project_or_organization`/locations/`location`/
801
+ # firewallEndpoints/`firewall_endpoint`/wildfireVerdictChangeRequests/`
802
+ # wildfire_verdict_change_request_id` Where `wildfire_verdict_change_request_id`
803
+ # is the ID in the format: ^[0-9a-fA-F]`8`-[0-9a-fA-F]`4`-[0-9a-fA-F]`4`-[0-9a-
804
+ # fA-F]`4`-[0-9a-fA-F]`12`$
805
+ # @param [String] fields
806
+ # Selector specifying which fields to include in a partial response.
807
+ # @param [String] quota_user
808
+ # Available to use for quota purposes for server-side applications. Can be any
809
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
810
+ # @param [Google::Apis::RequestOptions] options
811
+ # Request-specific options
812
+ #
813
+ # @yield [result, err] Result & error if block supplied
814
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest] parsed result object
815
+ # @yieldparam err [StandardError] error object if request failed
816
+ #
817
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest]
818
+ #
819
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
820
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
821
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
822
+ def get_organization_location_firewall_endpoint_wildfire_verdict_change_request(name, fields: nil, quota_user: nil, options: nil, &block)
823
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
824
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
825
+ command.response_class = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest
826
+ command.params['name'] = name unless name.nil?
827
+ command.query['fields'] = fields unless fields.nil?
828
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
829
+ execute_or_queue_command(command, &block)
830
+ end
831
+
832
+ # Lists WildfireVerdictChangeRequests in a given Firewall Endpoint in an
833
+ # organization and location.
834
+ # @param [String] parent
835
+ # Required. Parent value for ListWildfireVerdictChangeRequestsRequest. The
836
+ # parent is a firewall endpoint resource. Format: organizations|projects/`
837
+ # project_or_organization`/locations/`location`/firewallEndpoints/`
838
+ # firewall_endpoint`
839
+ # @param [String] filter
840
+ # Optional. Filter expression to filter the results. See AIP-160 for filtering
841
+ # syntax. Supported fields are: - `sha256` (string, equality only, e.g. `sha256 =
842
+ # "..."`) - `state` (enum, equality only, e.g. `state = "ACTIVE"`) - `
843
+ # create_time` (timestamp, comparisons, e.g. `create_time > "2026-01-01T00:00:
844
+ # 00Z"`)
845
+ # @param [Fixnum] page_size
846
+ # Optional. Requested page size. Server may return fewer items than requested.
847
+ # If unspecified, server will pick an appropriate default.
848
+ # @param [String] page_token
849
+ # Optional. A token identifying a page of results the server should return.
850
+ # @param [String] fields
851
+ # Selector specifying which fields to include in a partial response.
852
+ # @param [String] quota_user
853
+ # Available to use for quota purposes for server-side applications. Can be any
854
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
855
+ # @param [Google::Apis::RequestOptions] options
856
+ # Request-specific options
857
+ #
858
+ # @yield [result, err] Result & error if block supplied
859
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse] parsed result object
860
+ # @yieldparam err [StandardError] error object if request failed
861
+ #
862
+ # @return [Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse]
863
+ #
864
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
865
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
866
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
867
+ def list_organization_location_firewall_endpoint_wildfire_verdict_change_requests(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
868
+ command = make_simple_command(:get, 'v1beta1/{+parent}/wildfireVerdictChangeRequests', options)
869
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse::Representation
870
+ command.response_class = Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse
871
+ command.params['parent'] = parent unless parent.nil?
872
+ command.query['filter'] = filter unless filter.nil?
873
+ command.query['pageSize'] = page_size unless page_size.nil?
874
+ command.query['pageToken'] = page_token unless page_token.nil?
875
+ command.query['fields'] = fields unless fields.nil?
876
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
877
+ execute_or_queue_command(command, &block)
878
+ end
879
+
759
880
  # Starts asynchronous cancellation on a long-running operation. The server makes
760
881
  # a best effort to cancel the operation, but success is not guaranteed. If the
761
882
  # server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
@@ -3601,6 +3722,127 @@ module Google
3601
3722
  execute_or_queue_command(command, &block)
3602
3723
  end
3603
3724
 
3725
+ # Create WildfireVerdictChangeRequest in a given Firewall Endpoint in a project
3726
+ # and location.
3727
+ # @param [String] parent
3728
+ # Required. Parent value for CreateWildfireVerdictChangeRequestRequest. The
3729
+ # parent is a firewall endpoint resource. Format: organizations|projects/`
3730
+ # project_or_organization`/locations/`location`/firewallEndpoints/`
3731
+ # firewall_endpoint`
3732
+ # @param [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest] wildfire_verdict_change_request_object
3733
+ # @param [String] fields
3734
+ # Selector specifying which fields to include in a partial response.
3735
+ # @param [String] quota_user
3736
+ # Available to use for quota purposes for server-side applications. Can be any
3737
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3738
+ # @param [Google::Apis::RequestOptions] options
3739
+ # Request-specific options
3740
+ #
3741
+ # @yield [result, err] Result & error if block supplied
3742
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest] parsed result object
3743
+ # @yieldparam err [StandardError] error object if request failed
3744
+ #
3745
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest]
3746
+ #
3747
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3748
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3749
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3750
+ def create_project_location_firewall_endpoint_wildfire_verdict_change_request(parent, wildfire_verdict_change_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
3751
+ command = make_simple_command(:post, 'v1beta1/{+parent}/wildfireVerdictChangeRequests', options)
3752
+ command.request_representation = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
3753
+ command.request_object = wildfire_verdict_change_request_object
3754
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
3755
+ command.response_class = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest
3756
+ command.params['parent'] = parent unless parent.nil?
3757
+ command.query['fields'] = fields unless fields.nil?
3758
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3759
+ execute_or_queue_command(command, &block)
3760
+ end
3761
+
3762
+ # Get WildfireVerdictChangeRequest in a given Firewall Endpoint in a project and
3763
+ # location.
3764
+ # @param [String] name
3765
+ # Required. Name of the WildfireVerdictChangeRequest to retrieve. Format:
3766
+ # organizations|projects/`project_or_organization`/locations/`location`/
3767
+ # firewallEndpoints/`firewall_endpoint`/wildfireVerdictChangeRequests/`
3768
+ # wildfire_verdict_change_request_id` Where `wildfire_verdict_change_request_id`
3769
+ # is the ID in the format: ^[0-9a-fA-F]`8`-[0-9a-fA-F]`4`-[0-9a-fA-F]`4`-[0-9a-
3770
+ # fA-F]`4`-[0-9a-fA-F]`12`$
3771
+ # @param [String] fields
3772
+ # Selector specifying which fields to include in a partial response.
3773
+ # @param [String] quota_user
3774
+ # Available to use for quota purposes for server-side applications. Can be any
3775
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3776
+ # @param [Google::Apis::RequestOptions] options
3777
+ # Request-specific options
3778
+ #
3779
+ # @yield [result, err] Result & error if block supplied
3780
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest] parsed result object
3781
+ # @yieldparam err [StandardError] error object if request failed
3782
+ #
3783
+ # @return [Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest]
3784
+ #
3785
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3786
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3787
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3788
+ def get_project_location_firewall_endpoint_wildfire_verdict_change_request(name, fields: nil, quota_user: nil, options: nil, &block)
3789
+ command = make_simple_command(:get, 'v1beta1/{+name}', options)
3790
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest::Representation
3791
+ command.response_class = Google::Apis::NetworksecurityV1beta1::WildfireVerdictChangeRequest
3792
+ command.params['name'] = name unless name.nil?
3793
+ command.query['fields'] = fields unless fields.nil?
3794
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3795
+ execute_or_queue_command(command, &block)
3796
+ end
3797
+
3798
+ # Lists WildfireVerdictChangeRequests in a given Firewall Endpoint in a project
3799
+ # and location.
3800
+ # @param [String] parent
3801
+ # Required. Parent value for ListWildfireVerdictChangeRequestsRequest. The
3802
+ # parent is a firewall endpoint resource. Format: organizations|projects/`
3803
+ # project_or_organization`/locations/`location`/firewallEndpoints/`
3804
+ # firewall_endpoint`
3805
+ # @param [String] filter
3806
+ # Optional. Filter expression to filter the results. See AIP-160 for filtering
3807
+ # syntax. Supported fields are: - `sha256` (string, equality only, e.g. `sha256 =
3808
+ # "..."`) - `state` (enum, equality only, e.g. `state = "ACTIVE"`) - `
3809
+ # create_time` (timestamp, comparisons, e.g. `create_time > "2026-01-01T00:00:
3810
+ # 00Z"`)
3811
+ # @param [Fixnum] page_size
3812
+ # Optional. Requested page size. Server may return fewer items than requested.
3813
+ # If unspecified, server will pick an appropriate default.
3814
+ # @param [String] page_token
3815
+ # Optional. A token identifying a page of results the server should return.
3816
+ # @param [String] fields
3817
+ # Selector specifying which fields to include in a partial response.
3818
+ # @param [String] quota_user
3819
+ # Available to use for quota purposes for server-side applications. Can be any
3820
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
3821
+ # @param [Google::Apis::RequestOptions] options
3822
+ # Request-specific options
3823
+ #
3824
+ # @yield [result, err] Result & error if block supplied
3825
+ # @yieldparam result [Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse] parsed result object
3826
+ # @yieldparam err [StandardError] error object if request failed
3827
+ #
3828
+ # @return [Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse]
3829
+ #
3830
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
3831
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
3832
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
3833
+ def list_project_location_firewall_endpoint_wildfire_verdict_change_requests(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
3834
+ command = make_simple_command(:get, 'v1beta1/{+parent}/wildfireVerdictChangeRequests', options)
3835
+ command.response_representation = Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse::Representation
3836
+ command.response_class = Google::Apis::NetworksecurityV1beta1::ListWildfireVerdictChangeRequestsResponse
3837
+ command.params['parent'] = parent unless parent.nil?
3838
+ command.query['filter'] = filter unless filter.nil?
3839
+ command.query['pageSize'] = page_size unless page_size.nil?
3840
+ command.query['pageToken'] = page_token unless page_token.nil?
3841
+ command.query['fields'] = fields unless fields.nil?
3842
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
3843
+ execute_or_queue_command(command, &block)
3844
+ end
3845
+
3604
3846
  # Creates a new GatewaySecurityPolicy in a given project and location.
3605
3847
  # @param [String] parent
3606
3848
  # Required. The parent resource of the GatewaySecurityPolicy. Must be in the
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-networksecurity_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.65.0
4
+ version: 0.67.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-networksecurity_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.65.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.67.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-networksecurity_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="