Class: Google::Apis::BigqueryV2::ConnectionProperty

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ConnectionProperty

Returns a new instance of ConnectionProperty.



1225
1226
1227
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1225

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

Instance Attribute Details

#keyString

[Required] Name of the connection property to set. Corresponds to the JSON property key

Returns:

  • (String)


1218
1219
1220
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1218

def key
  @key
end

#valueString

[Required] Value of the connection property. Corresponds to the JSON property value

Returns:

  • (String)


1223
1224
1225
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1223

def value
  @value
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1230
1231
1232
1233
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1230

def update!(**args)
  @key = args[:key] if args.key?(:key)
  @value = args[:value] if args.key?(:value)
end