Class: Google::Apis::SpannerV1::Session

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Session

Returns a new instance of Session



1836
1837
1838
# File 'generated/google/apis/spanner_v1/classes.rb', line 1836

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

Instance Attribute Details

#nameString

Required. The name of the session. Corresponds to the JSON property name

Returns:

  • (String)


1834
1835
1836
# File 'generated/google/apis/spanner_v1/classes.rb', line 1834

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1841
1842
1843
# File 'generated/google/apis/spanner_v1/classes.rb', line 1841

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