Class: Google::Apis::AppengineV1beta5::OperationMetadataExperimental

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

Overview

Metadata for the given google.longrunning.Operation.

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) ⇒ OperationMetadataExperimental

Returns a new instance of OperationMetadataExperimental



1839
1840
1841
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1839

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

Instance Attribute Details

#end_timeString

Time that this operation completed.@OutputOnly Corresponds to the JSON property endTime

Returns:

  • (String)


1826
1827
1828
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1826

def end_time
  @end_time
end

#insert_timeString

Time that this operation was created.@OutputOnly Corresponds to the JSON property insertTime

Returns:

  • (String)


1821
1822
1823
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1821

def insert_time
  @insert_time
end

#method_propString

API method that initiated this operation. Example: google.appengine. experimental.CustomDomains.CreateCustomDomain.@OutputOnly Corresponds to the JSON property method

Returns:

  • (String)


1816
1817
1818
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1816

def method_prop
  @method_prop
end

#targetString

Name of the resource that this operation is acting on. Example: apps/myapp/ customDomains/example.com.@OutputOnly Corresponds to the JSON property target

Returns:

  • (String)


1837
1838
1839
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1837

def target
  @target
end

#userString

User who requested this operation.@OutputOnly Corresponds to the JSON property user

Returns:

  • (String)


1831
1832
1833
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1831

def user
  @user
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1844
1845
1846
1847
1848
1849
1850
# File 'generated/google/apis/appengine_v1beta5/classes.rb', line 1844

def update!(**args)
  @method_prop = args[:method_prop] if args.key?(:method_prop)
  @insert_time = args[:insert_time] if args.key?(:insert_time)
  @end_time = args[:end_time] if args.key?(:end_time)
  @user = args[:user] if args.key?(:user)
  @target = args[:target] if args.key?(:target)
end