Class: Google::Apis::ApigeeV1::GoogleCloudApigeeV1Session

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

Overview

Session carries the debug session id and its creation time.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudApigeeV1Session

Returns a new instance of GoogleCloudApigeeV1Session.



5502
5503
5504
# File 'generated/google/apis/apigee_v1/classes.rb', line 5502

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

Instance Attribute Details

#idString

The debug session ID. Corresponds to the JSON property id

Returns:

  • (String)


5495
5496
5497
# File 'generated/google/apis/apigee_v1/classes.rb', line 5495

def id
  @id
end

#timestamp_msFixnum

The first transaction creation timestamp in millisecond, recoreded by UAP. Corresponds to the JSON property timestampMs

Returns:

  • (Fixnum)


5500
5501
5502
# File 'generated/google/apis/apigee_v1/classes.rb', line 5500

def timestamp_ms
  @timestamp_ms
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5507
5508
5509
5510
# File 'generated/google/apis/apigee_v1/classes.rb', line 5507

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