Class: Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpecArgument
- Inherits:
-
Object
- Object
- Google::Apis::DatacatalogV1::GoogleCloudDatacatalogV1RoutineSpecArgument
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/datacatalog_v1/classes.rb,
lib/google/apis/datacatalog_v1/representations.rb,
lib/google/apis/datacatalog_v1/representations.rb
Overview
Input or output argument of a function or stored procedure.
Instance Attribute Summary collapse
-
#mode ⇒ String
Specifies whether the argument is input or output.
-
#name ⇒ String
The name of the argument.
-
#type ⇒ String
Type of the argument.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDatacatalogV1RoutineSpecArgument
constructor
A new instance of GoogleCloudDatacatalogV1RoutineSpecArgument.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDatacatalogV1RoutineSpecArgument
Returns a new instance of GoogleCloudDatacatalogV1RoutineSpecArgument.
2414 2415 2416 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2414 def initialize(**args) update!(**args) end |
Instance Attribute Details
#mode ⇒ String
Specifies whether the argument is input or output.
Corresponds to the JSON property mode
2400 2401 2402 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2400 def mode @mode end |
#name ⇒ String
The name of the argument. A return argument of a function might not have a
name.
Corresponds to the JSON property name
2406 2407 2408 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2406 def name @name end |
#type ⇒ String
Type of the argument. The exact value depends on the source system and the
language.
Corresponds to the JSON property type
2412 2413 2414 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2412 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2419 2420 2421 2422 2423 |
# File 'lib/google/apis/datacatalog_v1/classes.rb', line 2419 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 |