Class: Google::Apis::BigqueryV2::ConnectionProperty
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ConnectionProperty
- 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
-
#key ⇒ String
[Required] Name of the connection property to set.
-
#value ⇒ String
[Required] Value of the connection property.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ConnectionProperty
constructor
A new instance of ConnectionProperty.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ConnectionProperty
Returns a new instance of ConnectionProperty.
1221 1222 1223 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1221 def initialize(**args) update!(**args) end |
Instance Attribute Details
#key ⇒ String
[Required] Name of the connection property to set.
Corresponds to the JSON property key
1214 1215 1216 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1214 def key @key end |
#value ⇒ String
[Required] Value of the connection property.
Corresponds to the JSON property value
1219 1220 1221 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1219 def value @value end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1226 1227 1228 1229 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 1226 def update!(**args) @key = args[:key] if args.key?(:key) @value = args[:value] if args.key?(:value) end |