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.



6112
6113
6114
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6112

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

Instance Attribute Details

#create_timeString

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

Returns:

  • (String)


6093
6094
6095
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6093

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)


6100
6101
6102
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6100

def name
  @name
end

#stateString

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

Returns:

  • (String)


6105
6106
6107
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6105

def state
  @state
end

#user_idString

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

Returns:

  • (String)


6110
6111
6112
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6110

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6117
6118
6119
6120
6121
6122
# File 'lib/google/apis/dataplex_v1/classes.rb', line 6117

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