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.



3731
3732
3733
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3731

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

Instance Attribute Details

#create_timeString

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

Returns:

  • (String)


3712
3713
3714
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3712

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)


3719
3720
3721
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3719

def name
  @name
end

#stateString

Corresponds to the JSON property state

Returns:

  • (String)


3724
3725
3726
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3724

def state
  @state
end

#user_idString

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

Returns:

  • (String)


3729
3730
3731
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3729

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3736
3737
3738
3739
3740
3741
# File 'lib/google/apis/dataplex_v1/classes.rb', line 3736

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