google-apis-networksecurity_v1beta1 0.65.0 → 0.66.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/networksecurity_v1beta1/classes.rb +587 -1
- data/lib/google/apis/networksecurity_v1beta1/gem_version.rb +3 -3
- data/lib/google/apis/networksecurity_v1beta1/representations.rb +254 -0
- data/lib/google/apis/networksecurity_v1beta1/service.rb +242 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7c01353de1667a554207a96c6b0ed5a03741e112524f8f490723a57297f2fcfb
|
|
4
|
+
data.tar.gz: e0c52466e6b341bfb28e18b45b734ccc79d5bd9181bc970e80d8ee3d0f6fa014
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57ecc88a7a78e4a08a66d67cad2d8036b5bf23fbe0c605f5f6749f42b42b2bfba00e42590ed8d3cc4f1d9e35205eb2508fb48d58875cf180fa072445904e6bcc
|
|
7
|
+
data.tar.gz: f2654b85daaabd45f6e97b1df55be812c4500b0993eb801dbc08d5ac5395d46cf448d062cc3533135e8fcedb42a44b44b89e89eaf3dae359ad3d273be66d81e3
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Release history for google-apis-networksecurity_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.66.0 (2026-06-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260524
|
|
6
|
+
* Regenerated using generator version 0.19.0
|
|
7
|
+
|
|
3
8
|
### v0.65.0 (2026-05-24)
|
|
4
9
|
|
|
5
10
|
* 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.
|
|
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
|
|
@@ -4635,6 +4776,11 @@ module Google
|
|
|
4635
4776
|
# @return [Google::Apis::NetworksecurityV1beta1::UrlFilteringProfile]
|
|
4636
4777
|
attr_accessor :url_filtering_profile
|
|
4637
4778
|
|
|
4779
|
+
# WildfireAnalysisProfile defines Palo Alto Networks WildFire behavior.
|
|
4780
|
+
# Corresponds to the JSON property `wildfireAnalysisProfile`
|
|
4781
|
+
# @return [Google::Apis::NetworksecurityV1beta1::WildfireAnalysisProfile]
|
|
4782
|
+
attr_accessor :wildfire_analysis_profile
|
|
4783
|
+
|
|
4638
4784
|
def initialize(**args)
|
|
4639
4785
|
update!(**args)
|
|
4640
4786
|
end
|
|
@@ -4652,6 +4798,7 @@ module Google
|
|
|
4652
4798
|
@type = args[:type] if args.key?(:type)
|
|
4653
4799
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4654
4800
|
@url_filtering_profile = args[:url_filtering_profile] if args.key?(:url_filtering_profile)
|
|
4801
|
+
@wildfire_analysis_profile = args[:wildfire_analysis_profile] if args.key?(:wildfire_analysis_profile)
|
|
4655
4802
|
end
|
|
4656
4803
|
end
|
|
4657
4804
|
|
|
@@ -4724,6 +4871,11 @@ module Google
|
|
|
4724
4871
|
# @return [String]
|
|
4725
4872
|
attr_accessor :url_filtering_profile
|
|
4726
4873
|
|
|
4874
|
+
# Optional. Reference to a SecurityProfile with the WildFire configuration.
|
|
4875
|
+
# Corresponds to the JSON property `wildfireAnalysisProfile`
|
|
4876
|
+
# @return [String]
|
|
4877
|
+
attr_accessor :wildfire_analysis_profile
|
|
4878
|
+
|
|
4727
4879
|
def initialize(**args)
|
|
4728
4880
|
update!(**args)
|
|
4729
4881
|
end
|
|
@@ -4741,6 +4893,7 @@ module Google
|
|
|
4741
4893
|
@threat_prevention_profile = args[:threat_prevention_profile] if args.key?(:threat_prevention_profile)
|
|
4742
4894
|
@update_time = args[:update_time] if args.key?(:update_time)
|
|
4743
4895
|
@url_filtering_profile = args[:url_filtering_profile] if args.key?(:url_filtering_profile)
|
|
4896
|
+
@wildfire_analysis_profile = args[:wildfire_analysis_profile] if args.key?(:wildfire_analysis_profile)
|
|
4744
4897
|
end
|
|
4745
4898
|
end
|
|
4746
4899
|
|
|
@@ -5221,6 +5374,439 @@ module Google
|
|
|
5221
5374
|
@grpc_endpoint = args[:grpc_endpoint] if args.key?(:grpc_endpoint)
|
|
5222
5375
|
end
|
|
5223
5376
|
end
|
|
5377
|
+
|
|
5378
|
+
# WildfireAnalysisProfile defines Palo Alto Networks WildFire behavior.
|
|
5379
|
+
class WildfireAnalysisProfile
|
|
5380
|
+
include Google::Apis::Core::Hashable
|
|
5381
|
+
|
|
5382
|
+
# Optional. Configuration for WildFire inline cloud analysis.
|
|
5383
|
+
# Corresponds to the JSON property `wildfireInlineCloudAnalysisRules`
|
|
5384
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRule>]
|
|
5385
|
+
attr_accessor :wildfire_inline_cloud_analysis_rules
|
|
5386
|
+
|
|
5387
|
+
# Optional. Configuration for overriding inline ML WildFire actions per protocol.
|
|
5388
|
+
# Corresponds to the JSON property `wildfireInlineMlOverrides`
|
|
5389
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlOverride>]
|
|
5390
|
+
attr_accessor :wildfire_inline_ml_overrides
|
|
5391
|
+
|
|
5392
|
+
# Defines the settings for WildFire Inline ML analysis.
|
|
5393
|
+
# Corresponds to the JSON property `wildfireInlineMlSetting`
|
|
5394
|
+
# @return [Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings]
|
|
5395
|
+
attr_accessor :wildfire_inline_ml_setting
|
|
5396
|
+
|
|
5397
|
+
# Optional. Settings for WildFire Inline ML analysis.
|
|
5398
|
+
# Corresponds to the JSON property `wildfireInlineMlSettings`
|
|
5399
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings>]
|
|
5400
|
+
attr_accessor :wildfire_inline_ml_settings
|
|
5401
|
+
|
|
5402
|
+
# Optional. Configuration for overriding WildFire actions per protocol.
|
|
5403
|
+
# Corresponds to the JSON property `wildfireOverrides`
|
|
5404
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireOverride>]
|
|
5405
|
+
attr_accessor :wildfire_overrides
|
|
5406
|
+
|
|
5407
|
+
# Optional. Whether to hold the transfer of a file while the WildFire real-time
|
|
5408
|
+
# signature cloud performs a signature lookup. Default value is false.
|
|
5409
|
+
# Corresponds to the JSON property `wildfireRealtimeLookup`
|
|
5410
|
+
# @return [Boolean]
|
|
5411
|
+
attr_accessor :wildfire_realtime_lookup
|
|
5412
|
+
alias_method :wildfire_realtime_lookup?, :wildfire_realtime_lookup
|
|
5413
|
+
|
|
5414
|
+
# Optional. Configurations for WildFire file submissions.
|
|
5415
|
+
# Corresponds to the JSON property `wildfireSubmissionRules`
|
|
5416
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRule>]
|
|
5417
|
+
attr_accessor :wildfire_submission_rules
|
|
5418
|
+
|
|
5419
|
+
# Optional. Configuration for overriding WildFire threats action by threat_id
|
|
5420
|
+
# match.
|
|
5421
|
+
# Corresponds to the JSON property `wildfireThreatOverrides`
|
|
5422
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireThreatOverride>]
|
|
5423
|
+
attr_accessor :wildfire_threat_overrides
|
|
5424
|
+
|
|
5425
|
+
def initialize(**args)
|
|
5426
|
+
update!(**args)
|
|
5427
|
+
end
|
|
5428
|
+
|
|
5429
|
+
# Update properties of this object
|
|
5430
|
+
def update!(**args)
|
|
5431
|
+
@wildfire_inline_cloud_analysis_rules = args[:wildfire_inline_cloud_analysis_rules] if args.key?(:wildfire_inline_cloud_analysis_rules)
|
|
5432
|
+
@wildfire_inline_ml_overrides = args[:wildfire_inline_ml_overrides] if args.key?(:wildfire_inline_ml_overrides)
|
|
5433
|
+
@wildfire_inline_ml_setting = args[:wildfire_inline_ml_setting] if args.key?(:wildfire_inline_ml_setting)
|
|
5434
|
+
@wildfire_inline_ml_settings = args[:wildfire_inline_ml_settings] if args.key?(:wildfire_inline_ml_settings)
|
|
5435
|
+
@wildfire_overrides = args[:wildfire_overrides] if args.key?(:wildfire_overrides)
|
|
5436
|
+
@wildfire_realtime_lookup = args[:wildfire_realtime_lookup] if args.key?(:wildfire_realtime_lookup)
|
|
5437
|
+
@wildfire_submission_rules = args[:wildfire_submission_rules] if args.key?(:wildfire_submission_rules)
|
|
5438
|
+
@wildfire_threat_overrides = args[:wildfire_threat_overrides] if args.key?(:wildfire_threat_overrides)
|
|
5439
|
+
end
|
|
5440
|
+
end
|
|
5441
|
+
|
|
5442
|
+
# The list of file type configurations to be scanned by WildFire Inline Cloud
|
|
5443
|
+
# Analysis.
|
|
5444
|
+
class WildfireInlineCloudAnalysisRule
|
|
5445
|
+
include Google::Apis::Core::Hashable
|
|
5446
|
+
|
|
5447
|
+
# Required. Action to take when a threat is detected using WildFire Inline Cloud
|
|
5448
|
+
# Analysis. The default Value is DENY.
|
|
5449
|
+
# Corresponds to the JSON property `action`
|
|
5450
|
+
# @return [String]
|
|
5451
|
+
attr_accessor :action
|
|
5452
|
+
|
|
5453
|
+
# The options to submit a custom list of file types for scan.
|
|
5454
|
+
# Corresponds to the JSON property `customFileTypes`
|
|
5455
|
+
# @return [Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRuleCustomFileTypes]
|
|
5456
|
+
attr_accessor :custom_file_types
|
|
5457
|
+
|
|
5458
|
+
# Required. Direction for the file to be analyzed by WildFire Inline Cloud
|
|
5459
|
+
# Analysis.
|
|
5460
|
+
# Corresponds to the JSON property `direction`
|
|
5461
|
+
# @return [String]
|
|
5462
|
+
attr_accessor :direction
|
|
5463
|
+
|
|
5464
|
+
# Required. File selection mode for WildFire inline cloud analysis.
|
|
5465
|
+
# Corresponds to the JSON property `fileSelectionMode`
|
|
5466
|
+
# @return [String]
|
|
5467
|
+
attr_accessor :file_selection_mode
|
|
5468
|
+
|
|
5469
|
+
def initialize(**args)
|
|
5470
|
+
update!(**args)
|
|
5471
|
+
end
|
|
5472
|
+
|
|
5473
|
+
# Update properties of this object
|
|
5474
|
+
def update!(**args)
|
|
5475
|
+
@action = args[:action] if args.key?(:action)
|
|
5476
|
+
@custom_file_types = args[:custom_file_types] if args.key?(:custom_file_types)
|
|
5477
|
+
@direction = args[:direction] if args.key?(:direction)
|
|
5478
|
+
@file_selection_mode = args[:file_selection_mode] if args.key?(:file_selection_mode)
|
|
5479
|
+
end
|
|
5480
|
+
end
|
|
5481
|
+
|
|
5482
|
+
# The options to submit a custom list of file types for scan.
|
|
5483
|
+
class WildfireInlineCloudAnalysisRuleCustomFileTypes
|
|
5484
|
+
include Google::Apis::Core::Hashable
|
|
5485
|
+
|
|
5486
|
+
# Required. File types to be submitted for WildFire inline cloud analysis.
|
|
5487
|
+
# Corresponds to the JSON property `fileTypes`
|
|
5488
|
+
# @return [Array<String>]
|
|
5489
|
+
attr_accessor :file_types
|
|
5490
|
+
|
|
5491
|
+
def initialize(**args)
|
|
5492
|
+
update!(**args)
|
|
5493
|
+
end
|
|
5494
|
+
|
|
5495
|
+
# Update properties of this object
|
|
5496
|
+
def update!(**args)
|
|
5497
|
+
@file_types = args[:file_types] if args.key?(:file_types)
|
|
5498
|
+
end
|
|
5499
|
+
end
|
|
5500
|
+
|
|
5501
|
+
# Defines the file to exclude from WildFire Inline ML analysis.
|
|
5502
|
+
class WildfireInlineMlFileException
|
|
5503
|
+
include Google::Apis::Core::Hashable
|
|
5504
|
+
|
|
5505
|
+
# Optional. Name of the file to exclude from WildFire Inline ML analysis.
|
|
5506
|
+
# Corresponds to the JSON property `filename`
|
|
5507
|
+
# @return [String]
|
|
5508
|
+
attr_accessor :filename
|
|
5509
|
+
|
|
5510
|
+
# Required. Machine learning partial hash of the file to exclude from WildFire
|
|
5511
|
+
# Inline ML analysis.
|
|
5512
|
+
# Corresponds to the JSON property `partialHash`
|
|
5513
|
+
# @return [String]
|
|
5514
|
+
attr_accessor :partial_hash
|
|
5515
|
+
|
|
5516
|
+
def initialize(**args)
|
|
5517
|
+
update!(**args)
|
|
5518
|
+
end
|
|
5519
|
+
|
|
5520
|
+
# Update properties of this object
|
|
5521
|
+
def update!(**args)
|
|
5522
|
+
@filename = args[:filename] if args.key?(:filename)
|
|
5523
|
+
@partial_hash = args[:partial_hash] if args.key?(:partial_hash)
|
|
5524
|
+
end
|
|
5525
|
+
end
|
|
5526
|
+
|
|
5527
|
+
# Defines what action to take for WildFire Inline ML threats per protocol.
|
|
5528
|
+
class WildfireInlineMlOverride
|
|
5529
|
+
include Google::Apis::Core::Hashable
|
|
5530
|
+
|
|
5531
|
+
# Required. The action to take for WildFire Inline ML override.
|
|
5532
|
+
# Corresponds to the JSON property `action`
|
|
5533
|
+
# @return [String]
|
|
5534
|
+
attr_accessor :action
|
|
5535
|
+
|
|
5536
|
+
# Required. Protocol to match for WildFire Inline ML override.
|
|
5537
|
+
# Corresponds to the JSON property `protocol`
|
|
5538
|
+
# @return [String]
|
|
5539
|
+
attr_accessor :protocol
|
|
5540
|
+
|
|
5541
|
+
def initialize(**args)
|
|
5542
|
+
update!(**args)
|
|
5543
|
+
end
|
|
5544
|
+
|
|
5545
|
+
# Update properties of this object
|
|
5546
|
+
def update!(**args)
|
|
5547
|
+
@action = args[:action] if args.key?(:action)
|
|
5548
|
+
@protocol = args[:protocol] if args.key?(:protocol)
|
|
5549
|
+
end
|
|
5550
|
+
end
|
|
5551
|
+
|
|
5552
|
+
# Defines the settings for WildFire Inline ML analysis.
|
|
5553
|
+
class WildfireInlineMlSettings
|
|
5554
|
+
include Google::Apis::Core::Hashable
|
|
5555
|
+
|
|
5556
|
+
# Optional. List of files to exclude from WildFire Inline ML analysis.
|
|
5557
|
+
# Corresponds to the JSON property `fileExceptions`
|
|
5558
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlFileException>]
|
|
5559
|
+
attr_accessor :file_exceptions
|
|
5560
|
+
|
|
5561
|
+
# Optional. List of Inline ML configs to enable in WildFire Inline ML analysis.
|
|
5562
|
+
# Corresponds to the JSON property `inlineMlConfigs`
|
|
5563
|
+
# @return [Array<Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettingsInlineMlConfig>]
|
|
5564
|
+
attr_accessor :inline_ml_configs
|
|
5565
|
+
|
|
5566
|
+
def initialize(**args)
|
|
5567
|
+
update!(**args)
|
|
5568
|
+
end
|
|
5569
|
+
|
|
5570
|
+
# Update properties of this object
|
|
5571
|
+
def update!(**args)
|
|
5572
|
+
@file_exceptions = args[:file_exceptions] if args.key?(:file_exceptions)
|
|
5573
|
+
@inline_ml_configs = args[:inline_ml_configs] if args.key?(:inline_ml_configs)
|
|
5574
|
+
end
|
|
5575
|
+
end
|
|
5576
|
+
|
|
5577
|
+
# Configuration for WildFire Inline ML analysis per file type.
|
|
5578
|
+
class WildfireInlineMlSettingsInlineMlConfig
|
|
5579
|
+
include Google::Apis::Core::Hashable
|
|
5580
|
+
|
|
5581
|
+
# Required. Action to take when a threat is detected using Inline ML.
|
|
5582
|
+
# Corresponds to the JSON property `action`
|
|
5583
|
+
# @return [String]
|
|
5584
|
+
attr_accessor :action
|
|
5585
|
+
|
|
5586
|
+
# Required. File type to configure Inline ML for.
|
|
5587
|
+
# Corresponds to the JSON property `fileType`
|
|
5588
|
+
# @return [String]
|
|
5589
|
+
attr_accessor :file_type
|
|
5590
|
+
|
|
5591
|
+
def initialize(**args)
|
|
5592
|
+
update!(**args)
|
|
5593
|
+
end
|
|
5594
|
+
|
|
5595
|
+
# Update properties of this object
|
|
5596
|
+
def update!(**args)
|
|
5597
|
+
@action = args[:action] if args.key?(:action)
|
|
5598
|
+
@file_type = args[:file_type] if args.key?(:file_type)
|
|
5599
|
+
end
|
|
5600
|
+
end
|
|
5601
|
+
|
|
5602
|
+
# Defines what action to take for WildFire threats per protocol.
|
|
5603
|
+
class WildfireOverride
|
|
5604
|
+
include Google::Apis::Core::Hashable
|
|
5605
|
+
|
|
5606
|
+
# Required. Threat action override. For some threat types, only a subset of
|
|
5607
|
+
# actions applies.
|
|
5608
|
+
# Corresponds to the JSON property `action`
|
|
5609
|
+
# @return [String]
|
|
5610
|
+
attr_accessor :action
|
|
5611
|
+
|
|
5612
|
+
# Required. Protocol to match.
|
|
5613
|
+
# Corresponds to the JSON property `protocol`
|
|
5614
|
+
# @return [String]
|
|
5615
|
+
attr_accessor :protocol
|
|
5616
|
+
|
|
5617
|
+
def initialize(**args)
|
|
5618
|
+
update!(**args)
|
|
5619
|
+
end
|
|
5620
|
+
|
|
5621
|
+
# Update properties of this object
|
|
5622
|
+
def update!(**args)
|
|
5623
|
+
@action = args[:action] if args.key?(:action)
|
|
5624
|
+
@protocol = args[:protocol] if args.key?(:protocol)
|
|
5625
|
+
end
|
|
5626
|
+
end
|
|
5627
|
+
|
|
5628
|
+
# Defines the file types to be submitted for WildFire analysis and the direction
|
|
5629
|
+
# of the traffic.
|
|
5630
|
+
class WildfireSubmissionRule
|
|
5631
|
+
include Google::Apis::Core::Hashable
|
|
5632
|
+
|
|
5633
|
+
# The options to submit a custom list of file types for scan.
|
|
5634
|
+
# Corresponds to the JSON property `customFileTypes`
|
|
5635
|
+
# @return [Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRuleCustomFileTypes]
|
|
5636
|
+
attr_accessor :custom_file_types
|
|
5637
|
+
|
|
5638
|
+
# Required. Direction for the files to be analyzed by WildFire.
|
|
5639
|
+
# Corresponds to the JSON property `direction`
|
|
5640
|
+
# @return [String]
|
|
5641
|
+
attr_accessor :direction
|
|
5642
|
+
|
|
5643
|
+
# Required. File selection mode for WildFire analysis.
|
|
5644
|
+
# Corresponds to the JSON property `fileSelectionMode`
|
|
5645
|
+
# @return [String]
|
|
5646
|
+
attr_accessor :file_selection_mode
|
|
5647
|
+
|
|
5648
|
+
def initialize(**args)
|
|
5649
|
+
update!(**args)
|
|
5650
|
+
end
|
|
5651
|
+
|
|
5652
|
+
# Update properties of this object
|
|
5653
|
+
def update!(**args)
|
|
5654
|
+
@custom_file_types = args[:custom_file_types] if args.key?(:custom_file_types)
|
|
5655
|
+
@direction = args[:direction] if args.key?(:direction)
|
|
5656
|
+
@file_selection_mode = args[:file_selection_mode] if args.key?(:file_selection_mode)
|
|
5657
|
+
end
|
|
5658
|
+
end
|
|
5659
|
+
|
|
5660
|
+
# The options to submit a custom list of file types for scan.
|
|
5661
|
+
class WildfireSubmissionRuleCustomFileTypes
|
|
5662
|
+
include Google::Apis::Core::Hashable
|
|
5663
|
+
|
|
5664
|
+
# Required. File types to be submitted for WildFire analysis.
|
|
5665
|
+
# Corresponds to the JSON property `fileTypes`
|
|
5666
|
+
# @return [Array<String>]
|
|
5667
|
+
attr_accessor :file_types
|
|
5668
|
+
|
|
5669
|
+
def initialize(**args)
|
|
5670
|
+
update!(**args)
|
|
5671
|
+
end
|
|
5672
|
+
|
|
5673
|
+
# Update properties of this object
|
|
5674
|
+
def update!(**args)
|
|
5675
|
+
@file_types = args[:file_types] if args.key?(:file_types)
|
|
5676
|
+
end
|
|
5677
|
+
end
|
|
5678
|
+
|
|
5679
|
+
# Defines what action to take for a specific WildFire threat_id match.
|
|
5680
|
+
class WildfireThreatOverride
|
|
5681
|
+
include Google::Apis::Core::Hashable
|
|
5682
|
+
|
|
5683
|
+
# Required. Threat action override.
|
|
5684
|
+
# Corresponds to the JSON property `action`
|
|
5685
|
+
# @return [String]
|
|
5686
|
+
attr_accessor :action
|
|
5687
|
+
|
|
5688
|
+
# Required. Threat ID to match.
|
|
5689
|
+
# Corresponds to the JSON property `threatId`
|
|
5690
|
+
# @return [String]
|
|
5691
|
+
attr_accessor :threat_id
|
|
5692
|
+
|
|
5693
|
+
def initialize(**args)
|
|
5694
|
+
update!(**args)
|
|
5695
|
+
end
|
|
5696
|
+
|
|
5697
|
+
# Update properties of this object
|
|
5698
|
+
def update!(**args)
|
|
5699
|
+
@action = args[:action] if args.key?(:action)
|
|
5700
|
+
@threat_id = args[:threat_id] if args.key?(:threat_id)
|
|
5701
|
+
end
|
|
5702
|
+
end
|
|
5703
|
+
|
|
5704
|
+
# Message for a WildfireVerdictChangeRequest.
|
|
5705
|
+
class WildfireVerdictChangeRequest
|
|
5706
|
+
include Google::Apis::Core::Hashable
|
|
5707
|
+
|
|
5708
|
+
# Required. The justification for the verdict change request. Max length 2048
|
|
5709
|
+
# characters.
|
|
5710
|
+
# Corresponds to the JSON property `comment`
|
|
5711
|
+
# @return [String]
|
|
5712
|
+
attr_accessor :comment
|
|
5713
|
+
|
|
5714
|
+
# Output only. The timestamp when the WildfireVerdictChangeRequest was created.
|
|
5715
|
+
# Corresponds to the JSON property `createTime`
|
|
5716
|
+
# @return [String]
|
|
5717
|
+
attr_accessor :create_time
|
|
5718
|
+
|
|
5719
|
+
# Output only. The file name of the Malware Sample.
|
|
5720
|
+
# Corresponds to the JSON property `fileName`
|
|
5721
|
+
# @return [String]
|
|
5722
|
+
attr_accessor :file_name
|
|
5723
|
+
|
|
5724
|
+
# Output only. The file type of the Malware Sample.
|
|
5725
|
+
# Corresponds to the JSON property `fileType`
|
|
5726
|
+
# @return [String]
|
|
5727
|
+
attr_accessor :file_type
|
|
5728
|
+
|
|
5729
|
+
# Output only. The final verdict of the Malware Sample.
|
|
5730
|
+
# Corresponds to the JSON property `finalVerdict`
|
|
5731
|
+
# @return [String]
|
|
5732
|
+
attr_accessor :final_verdict
|
|
5733
|
+
|
|
5734
|
+
# Output only. Identifier. The relative name of the WildfireVerdictChangeRequest.
|
|
5735
|
+
# Output only. This is a unique identifier generated by the third party API.
|
|
5736
|
+
# Format: organizations|projects/`project_or_organization`/locations/`location`/
|
|
5737
|
+
# firewallEndpoints/`firewall_endpoint`/wildfireVerdictChangeRequests/`
|
|
5738
|
+
# wildfire_verdict_change_request_id` Where `wildfire_verdict_change_request_id`
|
|
5739
|
+
# is the ID in the format: ^[0-9a-fA-F]`8`-[0-9a-fA-F]`4`-[0-9a-fA-F]`4`-[0-9a-
|
|
5740
|
+
# fA-F]`4`-[0-9a-fA-F]`12`$
|
|
5741
|
+
# Corresponds to the JSON property `name`
|
|
5742
|
+
# @return [String]
|
|
5743
|
+
attr_accessor :name
|
|
5744
|
+
|
|
5745
|
+
# Required. The suggested verdict to apply to the Malware Sample.
|
|
5746
|
+
# Corresponds to the JSON property `newVerdict`
|
|
5747
|
+
# @return [String]
|
|
5748
|
+
attr_accessor :new_verdict
|
|
5749
|
+
|
|
5750
|
+
# Output only. The original verdict of the Malware Sample.
|
|
5751
|
+
# Corresponds to the JSON property `oldVerdict`
|
|
5752
|
+
# @return [String]
|
|
5753
|
+
attr_accessor :old_verdict
|
|
5754
|
+
|
|
5755
|
+
# Output only. The timestamp when the WildfireVerdictChangeRequest was resolved.
|
|
5756
|
+
# Corresponds to the JSON property `resolutionTime`
|
|
5757
|
+
# @return [String]
|
|
5758
|
+
attr_accessor :resolution_time
|
|
5759
|
+
|
|
5760
|
+
# Required. The SHA256 hash of the Malware Sample to change the verdict of.
|
|
5761
|
+
# Corresponds to the JSON property `sha256`
|
|
5762
|
+
# @return [String]
|
|
5763
|
+
attr_accessor :sha256
|
|
5764
|
+
|
|
5765
|
+
# Output only. The region of the file associated with the Malware Sample.
|
|
5766
|
+
# Corresponds to the JSON property `sourceRegion`
|
|
5767
|
+
# @return [String]
|
|
5768
|
+
attr_accessor :source_region
|
|
5769
|
+
|
|
5770
|
+
# Output only. The review state of the WildfireVerdictChangeRequest.
|
|
5771
|
+
# Corresponds to the JSON property `state`
|
|
5772
|
+
# @return [String]
|
|
5773
|
+
attr_accessor :state
|
|
5774
|
+
|
|
5775
|
+
# Output only. The timestamp when the WildfireVerdictChangeRequest was last
|
|
5776
|
+
# updated.
|
|
5777
|
+
# Corresponds to the JSON property `updateTime`
|
|
5778
|
+
# @return [String]
|
|
5779
|
+
attr_accessor :update_time
|
|
5780
|
+
|
|
5781
|
+
# Output only. The ID of the WildfireVerdictChangeRequest. This is a unique
|
|
5782
|
+
# identifier generated by the third party API. Format: ^[0-9a-fA-F]`8`-[0-9a-fA-
|
|
5783
|
+
# F]`4`-[0-9a-fA-F]`4`-[0-9a-fA-F]`4`-[0-9a-fA-F]`12`$
|
|
5784
|
+
# Corresponds to the JSON property `wildfireVerdictChangeRequestId`
|
|
5785
|
+
# @return [String]
|
|
5786
|
+
attr_accessor :wildfire_verdict_change_request_id
|
|
5787
|
+
|
|
5788
|
+
def initialize(**args)
|
|
5789
|
+
update!(**args)
|
|
5790
|
+
end
|
|
5791
|
+
|
|
5792
|
+
# Update properties of this object
|
|
5793
|
+
def update!(**args)
|
|
5794
|
+
@comment = args[:comment] if args.key?(:comment)
|
|
5795
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
|
5796
|
+
@file_name = args[:file_name] if args.key?(:file_name)
|
|
5797
|
+
@file_type = args[:file_type] if args.key?(:file_type)
|
|
5798
|
+
@final_verdict = args[:final_verdict] if args.key?(:final_verdict)
|
|
5799
|
+
@name = args[:name] if args.key?(:name)
|
|
5800
|
+
@new_verdict = args[:new_verdict] if args.key?(:new_verdict)
|
|
5801
|
+
@old_verdict = args[:old_verdict] if args.key?(:old_verdict)
|
|
5802
|
+
@resolution_time = args[:resolution_time] if args.key?(:resolution_time)
|
|
5803
|
+
@sha256 = args[:sha256] if args.key?(:sha256)
|
|
5804
|
+
@source_region = args[:source_region] if args.key?(:source_region)
|
|
5805
|
+
@state = args[:state] if args.key?(:state)
|
|
5806
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
|
5807
|
+
@wildfire_verdict_change_request_id = args[:wildfire_verdict_change_request_id] if args.key?(:wildfire_verdict_change_request_id)
|
|
5808
|
+
end
|
|
5809
|
+
end
|
|
5224
5810
|
end
|
|
5225
5811
|
end
|
|
5226
5812
|
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.
|
|
19
|
+
GEM_VERSION = "0.66.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.19.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260524"
|
|
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
|
|
@@ -1928,6 +2053,8 @@ module Google
|
|
|
1928
2053
|
property :update_time, as: 'updateTime'
|
|
1929
2054
|
property :url_filtering_profile, as: 'urlFilteringProfile', class: Google::Apis::NetworksecurityV1beta1::UrlFilteringProfile, decorator: Google::Apis::NetworksecurityV1beta1::UrlFilteringProfile::Representation
|
|
1930
2055
|
|
|
2056
|
+
property :wildfire_analysis_profile, as: 'wildfireAnalysisProfile', class: Google::Apis::NetworksecurityV1beta1::WildfireAnalysisProfile, decorator: Google::Apis::NetworksecurityV1beta1::WildfireAnalysisProfile::Representation
|
|
2057
|
+
|
|
1931
2058
|
end
|
|
1932
2059
|
end
|
|
1933
2060
|
|
|
@@ -1945,6 +2072,7 @@ module Google
|
|
|
1945
2072
|
property :threat_prevention_profile, as: 'threatPreventionProfile'
|
|
1946
2073
|
property :update_time, as: 'updateTime'
|
|
1947
2074
|
property :url_filtering_profile, as: 'urlFilteringProfile'
|
|
2075
|
+
property :wildfire_analysis_profile, as: 'wildfireAnalysisProfile'
|
|
1948
2076
|
end
|
|
1949
2077
|
end
|
|
1950
2078
|
|
|
@@ -2063,6 +2191,132 @@ module Google
|
|
|
2063
2191
|
|
|
2064
2192
|
end
|
|
2065
2193
|
end
|
|
2194
|
+
|
|
2195
|
+
class WildfireAnalysisProfile
|
|
2196
|
+
# @private
|
|
2197
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2198
|
+
collection :wildfire_inline_cloud_analysis_rules, as: 'wildfireInlineCloudAnalysisRules', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRule, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRule::Representation
|
|
2199
|
+
|
|
2200
|
+
collection :wildfire_inline_ml_overrides, as: 'wildfireInlineMlOverrides', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlOverride, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlOverride::Representation
|
|
2201
|
+
|
|
2202
|
+
property :wildfire_inline_ml_setting, as: 'wildfireInlineMlSetting', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings::Representation
|
|
2203
|
+
|
|
2204
|
+
collection :wildfire_inline_ml_settings, as: 'wildfireInlineMlSettings', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettings::Representation
|
|
2205
|
+
|
|
2206
|
+
collection :wildfire_overrides, as: 'wildfireOverrides', class: Google::Apis::NetworksecurityV1beta1::WildfireOverride, decorator: Google::Apis::NetworksecurityV1beta1::WildfireOverride::Representation
|
|
2207
|
+
|
|
2208
|
+
property :wildfire_realtime_lookup, as: 'wildfireRealtimeLookup'
|
|
2209
|
+
collection :wildfire_submission_rules, as: 'wildfireSubmissionRules', class: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRule, decorator: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRule::Representation
|
|
2210
|
+
|
|
2211
|
+
collection :wildfire_threat_overrides, as: 'wildfireThreatOverrides', class: Google::Apis::NetworksecurityV1beta1::WildfireThreatOverride, decorator: Google::Apis::NetworksecurityV1beta1::WildfireThreatOverride::Representation
|
|
2212
|
+
|
|
2213
|
+
end
|
|
2214
|
+
end
|
|
2215
|
+
|
|
2216
|
+
class WildfireInlineCloudAnalysisRule
|
|
2217
|
+
# @private
|
|
2218
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2219
|
+
property :action, as: 'action'
|
|
2220
|
+
property :custom_file_types, as: 'customFileTypes', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRuleCustomFileTypes, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineCloudAnalysisRuleCustomFileTypes::Representation
|
|
2221
|
+
|
|
2222
|
+
property :direction, as: 'direction'
|
|
2223
|
+
property :file_selection_mode, as: 'fileSelectionMode'
|
|
2224
|
+
end
|
|
2225
|
+
end
|
|
2226
|
+
|
|
2227
|
+
class WildfireInlineCloudAnalysisRuleCustomFileTypes
|
|
2228
|
+
# @private
|
|
2229
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2230
|
+
collection :file_types, as: 'fileTypes'
|
|
2231
|
+
end
|
|
2232
|
+
end
|
|
2233
|
+
|
|
2234
|
+
class WildfireInlineMlFileException
|
|
2235
|
+
# @private
|
|
2236
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2237
|
+
property :filename, as: 'filename'
|
|
2238
|
+
property :partial_hash, as: 'partialHash'
|
|
2239
|
+
end
|
|
2240
|
+
end
|
|
2241
|
+
|
|
2242
|
+
class WildfireInlineMlOverride
|
|
2243
|
+
# @private
|
|
2244
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2245
|
+
property :action, as: 'action'
|
|
2246
|
+
property :protocol, as: 'protocol'
|
|
2247
|
+
end
|
|
2248
|
+
end
|
|
2249
|
+
|
|
2250
|
+
class WildfireInlineMlSettings
|
|
2251
|
+
# @private
|
|
2252
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2253
|
+
collection :file_exceptions, as: 'fileExceptions', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlFileException, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlFileException::Representation
|
|
2254
|
+
|
|
2255
|
+
collection :inline_ml_configs, as: 'inlineMlConfigs', class: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettingsInlineMlConfig, decorator: Google::Apis::NetworksecurityV1beta1::WildfireInlineMlSettingsInlineMlConfig::Representation
|
|
2256
|
+
|
|
2257
|
+
end
|
|
2258
|
+
end
|
|
2259
|
+
|
|
2260
|
+
class WildfireInlineMlSettingsInlineMlConfig
|
|
2261
|
+
# @private
|
|
2262
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2263
|
+
property :action, as: 'action'
|
|
2264
|
+
property :file_type, as: 'fileType'
|
|
2265
|
+
end
|
|
2266
|
+
end
|
|
2267
|
+
|
|
2268
|
+
class WildfireOverride
|
|
2269
|
+
# @private
|
|
2270
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2271
|
+
property :action, as: 'action'
|
|
2272
|
+
property :protocol, as: 'protocol'
|
|
2273
|
+
end
|
|
2274
|
+
end
|
|
2275
|
+
|
|
2276
|
+
class WildfireSubmissionRule
|
|
2277
|
+
# @private
|
|
2278
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2279
|
+
property :custom_file_types, as: 'customFileTypes', class: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRuleCustomFileTypes, decorator: Google::Apis::NetworksecurityV1beta1::WildfireSubmissionRuleCustomFileTypes::Representation
|
|
2280
|
+
|
|
2281
|
+
property :direction, as: 'direction'
|
|
2282
|
+
property :file_selection_mode, as: 'fileSelectionMode'
|
|
2283
|
+
end
|
|
2284
|
+
end
|
|
2285
|
+
|
|
2286
|
+
class WildfireSubmissionRuleCustomFileTypes
|
|
2287
|
+
# @private
|
|
2288
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2289
|
+
collection :file_types, as: 'fileTypes'
|
|
2290
|
+
end
|
|
2291
|
+
end
|
|
2292
|
+
|
|
2293
|
+
class WildfireThreatOverride
|
|
2294
|
+
# @private
|
|
2295
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2296
|
+
property :action, as: 'action'
|
|
2297
|
+
property :threat_id, as: 'threatId'
|
|
2298
|
+
end
|
|
2299
|
+
end
|
|
2300
|
+
|
|
2301
|
+
class WildfireVerdictChangeRequest
|
|
2302
|
+
# @private
|
|
2303
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
2304
|
+
property :comment, as: 'comment'
|
|
2305
|
+
property :create_time, as: 'createTime'
|
|
2306
|
+
property :file_name, as: 'fileName'
|
|
2307
|
+
property :file_type, as: 'fileType'
|
|
2308
|
+
property :final_verdict, as: 'finalVerdict'
|
|
2309
|
+
property :name, as: 'name'
|
|
2310
|
+
property :new_verdict, as: 'newVerdict'
|
|
2311
|
+
property :old_verdict, as: 'oldVerdict'
|
|
2312
|
+
property :resolution_time, as: 'resolutionTime'
|
|
2313
|
+
property :sha256, as: 'sha256'
|
|
2314
|
+
property :source_region, as: 'sourceRegion'
|
|
2315
|
+
property :state, as: 'state'
|
|
2316
|
+
property :update_time, as: 'updateTime'
|
|
2317
|
+
property :wildfire_verdict_change_request_id, as: 'wildfireVerdictChangeRequestId'
|
|
2318
|
+
end
|
|
2319
|
+
end
|
|
2066
2320
|
end
|
|
2067
2321
|
end
|
|
2068
2322
|
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.
|
|
4
|
+
version: 0.66.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.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-networksecurity_v1beta1/v0.66.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.
|
|
69
|
+
version: '3.2'
|
|
70
70
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
71
71
|
requirements:
|
|
72
72
|
- - ">="
|