Class: Google::Apis::DataplexV1::GoogleCloudDataplexV1Session

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

Overview

Represents an active analyze session running for a user.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDataplexV1Session

Returns a new instance of GoogleCloudDataplexV1Session.



4870
4871
4872
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4870

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

Instance Attribute Details

#create_timeString

Output only. Session start time. Corresponds to the JSON property createTime

Returns:

  • (String)


4851
4852
4853
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4851

def create_time
  @create_time
end

#nameString

Output only. The relative resource name of the content, of the form: projects/ project_id/locations/location_id/lakes/lake_id/environment/ environment_id/sessions/session_id Corresponds to the JSON property name

Returns:

  • (String)


4858
4859
4860
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4858

def name
  @name
end

#stateString

Output only. State of Session Corresponds to the JSON property state

Returns:

  • (String)


4863
4864
4865
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4863

def state
  @state
end

#user_idString

Output only. Email of user running the session. Corresponds to the JSON property userId

Returns:

  • (String)


4868
4869
4870
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4868

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4875
4876
4877
4878
4879
4880
# File 'lib/google/apis/dataplex_v1/classes.rb', line 4875

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