class Google::Apis::TrafficdirectorV2::Pipe
Attributes
mode[RW]
The mode for the Pipe
. Not applicable for abstract sockets. Corresponds to the JSON property `mode` @return [Fixnum]
path[RW]
Unix Domain Socket path. On Linux, paths starting with '@' will use the abstract namespace. The starting '@' is replaced by a null byte by Envoy. Paths starting with '@' will result in an error in environments other than Linux. Corresponds to the JSON property `path` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/trafficdirector_v2/classes.rb, line 877 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/trafficdirector_v2/classes.rb, line 882 def update!(**args) @mode = args[:mode] if args.key?(:mode) @path = args[:path] if args.key?(:path) end