Class: Google::Apis::SpannerV1::Session
- Inherits:
-
Object
- Object
- Google::Apis::SpannerV1::Session
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/spanner_v1/classes.rb,
generated/google/apis/spanner_v1/representations.rb,
generated/google/apis/spanner_v1/representations.rb
Overview
A session in the Cloud Spanner API.
Instance Attribute Summary collapse
-
#name ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Session
constructor
A new instance of Session.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Session
Returns a new instance of Session
1353 1354 1355 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1353 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. The name of the session.
Corresponds to the JSON property name
1351 1352 1353 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1351 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1358 1359 1360 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1358 def update!(**args) @name = args[:name] if args.key?(:name) end |