Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -305176,6 +305176,7 @@
"/networksecurity:v1beta1/FirewallEndpointAssociationReference/name": name
"/networksecurity:v1beta1/FirewallEndpointAssociationReference/network": network
"/networksecurity:v1beta1/FirewallEndpointEndpointSettings": firewall_endpoint_endpoint_settings
"/networksecurity:v1beta1/FirewallEndpointEndpointSettings/jumboFramesEnabled": jumbo_frames_enabled
"/networksecurity:v1beta1/GatewaySecurityPolicy": gateway_security_policy
"/networksecurity:v1beta1/GatewaySecurityPolicy/createTime": create_time
"/networksecurity:v1beta1/GatewaySecurityPolicy/description": description
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-networksecurity_v1beta1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-networksecurity_v1beta1

### v0.58.0 (2025-10-19)

* Regenerated from discovery document revision 20251001

### v0.57.0 (2025-10-05)

* Regenerated from discovery document revision 20250925
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1439,12 +1439,20 @@ def update!(**args)
class FirewallEndpointEndpointSettings
include Google::Apis::Core::Hashable

# Optional. Immutable. Indicates whether Jumbo Frames are enabled. Default value
# is false.
# Corresponds to the JSON property `jumboFramesEnabled`
# @return [Boolean]
attr_accessor :jumbo_frames_enabled
alias_method :jumbo_frames_enabled?, :jumbo_frames_enabled

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@jumbo_frames_enabled = args[:jumbo_frames_enabled] if args.key?(:jumbo_frames_enabled)
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module NetworksecurityV1beta1
# Version of the google-apis-networksecurity_v1beta1 gem
GEM_VERSION = "0.57.0"
GEM_VERSION = "0.58.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250925"
REVISION = "20251001"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -1114,6 +1114,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
class FirewallEndpointEndpointSettings
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :jumbo_frames_enabled, as: 'jumboFramesEnabled'
end
end

Expand Down