Class: Google::Apis::RedisV1::OperationMetadata
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::RedisV1::OperationMetadata
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/redis_v1/classes.rb,
lib/google/apis/redis_v1/representations.rb,
lib/google/apis/redis_v1/representations.rb 
Overview
Pre-defined metadata fields.
Instance Attribute Summary collapse
- 
  
    
      #api_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #create_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #end_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #requested_cancellation  ⇒ Boolean 
    
    
      (also: #requested_cancellation?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #status_message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #target  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 - 
  
    
      #verb  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Output only.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperationMetadata 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of OperationMetadata.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ OperationMetadata
Returns a new instance of OperationMetadata.
      2511 2512 2513  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2511 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#api_version ⇒ String
Output only. API version used to start the operation.
Corresponds to the JSON property apiVersion
      2475 2476 2477  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2475 def api_version @api_version end  | 
  
#create_time ⇒ String
Output only. The time the operation was created.
Corresponds to the JSON property createTime
      2480 2481 2482  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2480 def create_time @create_time end  | 
  
#end_time ⇒ String
Output only. The time the operation finished running.
Corresponds to the JSON property endTime
      2485 2486 2487  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2485 def end_time @end_time end  | 
  
#requested_cancellation ⇒ Boolean Also known as: requested_cancellation?
Output only. Identifies whether the user has requested cancellation of the
operation. Operations that have successfully been cancelled have Operation.
error value with a google.rpc.Status.code of 1, corresponding to Code.
CANCELLED.
Corresponds to the JSON property requestedCancellation
      2493 2494 2495  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2493 def requested_cancellation @requested_cancellation end  | 
  
#status_message ⇒ String
Output only. Human-readable status of the operation, if any.
Corresponds to the JSON property statusMessage
      2499 2500 2501  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2499 def @status_message end  | 
  
#target ⇒ String
Output only. Server-defined resource path for the target of the operation.
Corresponds to the JSON property target
      2504 2505 2506  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2504 def target @target end  | 
  
#verb ⇒ String
Output only. Name of the verb executed by the operation.
Corresponds to the JSON property verb
      2509 2510 2511  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2509 def verb @verb end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2516 2517 2518 2519 2520 2521 2522 2523 2524  | 
    
      # File 'lib/google/apis/redis_v1/classes.rb', line 2516 def update!(**args) @api_version = args[:api_version] if args.key?(:api_version) @create_time = args[:create_time] if args.key?(:create_time) @end_time = args[:end_time] if args.key?(:end_time) @requested_cancellation = args[:requested_cancellation] if args.key?(:requested_cancellation) @status_message = args[:status_message] if args.key?(:status_message) @target = args[:target] if args.key?(:target) @verb = args[:verb] if args.key?(:verb) end  |