class Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpecArgument
Input or output argument of a function or stored procedure.
Attributes
mode[RW]
Specifies whether the argument is input or output. Corresponds to the JSON property `mode` @return [String]
name[RW]
The name of the argument. A return argument of a function might not have a name. Corresponds to the JSON property `name` @return [String]
type[RW]
Type of the argument. The exact value depends on the source system and the language. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/datacatalog_v1/classes.rb, line 1270 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/datacatalog_v1/classes.rb, line 1275 def update!(**args) @mode = args[:mode] if args.key?(:mode) @name = args[:name] if args.key?(:name) @type = args[:type] if args.key?(:type) end