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
1924 1925 1926 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1924 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. The name of the session.
Corresponds to the JSON property name
1922 1923 1924 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1922 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1929 1930 1931 |
# File 'generated/google/apis/spanner_v1/classes.rb', line 1929 def update!(**args) @name = args[:name] if args.key?(:name) end |