class Google::Apis::ConnectorsV1::InputParameter

Metadata of an input parameter.

Attributes

data_type[RW]

The data type of the Parameter. Corresponds to the JSON property ‘dataType` @return [String]

default_value[RW]

The following field specifies the default value of the Parameter provided by the external system if a value is not provided. Corresponds to the JSON property ‘defaultValue` @return [Object]

description[RW]

A brief description of the Parameter. Corresponds to the JSON property ‘description` @return [String]

nullable[RW]

Specifies whether a null value is allowed. Corresponds to the JSON property ‘nullable` @return [Boolean]

nullable?[RW]

Specifies whether a null value is allowed. Corresponds to the JSON property ‘nullable` @return [Boolean]

parameter[RW]

Name of the Parameter. Corresponds to the JSON property ‘parameter` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/connectors_v1/classes.rb, line 962
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/connectors_v1/classes.rb, line 967
def update!(**args)
  @data_type = args[:data_type] if args.key?(:data_type)
  @default_value = args[:default_value] if args.key?(:default_value)
  @description = args[:description] if args.key?(:description)
  @nullable = args[:nullable] if args.key?(:nullable)
  @parameter = args[:parameter] if args.key?(:parameter)
end