Class: Google::Apis::ReplicapoolV1beta2::OperationList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ReplicapoolV1beta2::OperationList
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/replicapool_v1beta2/classes.rb,
 generated/google/apis/replicapool_v1beta2/representations.rb,
 generated/google/apis/replicapool_v1beta2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique identifier for the resource; defined by the server (output only). 
- 
  
    
      #items  ⇒ Array<Google::Apis::ReplicapoolV1beta2::Operation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The operation resources. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of resource. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A token used to continue a truncated list request (output only). 
- 
  
    
      #self_link  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Server defined URL for this resource (output only). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperationList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OperationList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationList
Returns a new instance of OperationList
| 589 590 591 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 589 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#id ⇒ String
Unique identifier for the resource; defined by the server (output only).
Corresponds to the JSON property id
| 567 568 569 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 567 def id @id end | 
#items ⇒ Array<Google::Apis::ReplicapoolV1beta2::Operation>
The operation resources.
Corresponds to the JSON property items
| 572 573 574 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 572 def items @items end | 
#kind ⇒ String
Type of resource.
Corresponds to the JSON property kind
| 577 578 579 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 577 def kind @kind end | 
#next_page_token ⇒ String
A token used to continue a truncated list request (output only).
Corresponds to the JSON property nextPageToken
| 582 583 584 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 582 def next_page_token @next_page_token end | 
#self_link ⇒ String
Server defined URL for this resource (output only).
Corresponds to the JSON property selfLink
| 587 588 589 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 587 def self_link @self_link end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 594 595 596 597 598 599 600 | # File 'generated/google/apis/replicapool_v1beta2/classes.rb', line 594 def update!(**args) @id = args[:id] if args.key?(:id) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @self_link = args[:self_link] if args.key?(:self_link) end |