Class: Google::Apis::DnsV2beta1::ChangesListResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DnsV2beta1::ChangesListResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dns_v2beta1/classes.rb,
 generated/google/apis/dns_v2beta1/representations.rb,
 generated/google/apis/dns_v2beta1/representations.rb
Overview
The response to a request to enumerate Changes to a ResourceRecordSets collection.
Instance Attribute Summary collapse
- 
  
    
      #changes  ⇒ Array<Google::Apis::DnsV2beta1::Change> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The requested changes. 
- 
  
    
      #header  ⇒ Google::Apis::DnsV2beta1::ResponseHeader 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Elements common to every response. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Type of resource. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The presence of this field indicates that there exist more results following your last page of results in pagination order. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ChangesListResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ChangesListResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ChangesListResponse
Returns a new instance of ChangesListResponse
| 114 115 116 | # File 'generated/google/apis/dns_v2beta1/classes.rb', line 114 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#changes ⇒ Array<Google::Apis::DnsV2beta1::Change>
The requested changes.
Corresponds to the JSON property changes
| 90 91 92 | # File 'generated/google/apis/dns_v2beta1/classes.rb', line 90 def changes @changes end | 
#header ⇒ Google::Apis::DnsV2beta1::ResponseHeader
Elements common to every response.
Corresponds to the JSON property header
| 95 96 97 | # File 'generated/google/apis/dns_v2beta1/classes.rb', line 95 def header @header end | 
#kind ⇒ String
Type of resource.
Corresponds to the JSON property kind
| 100 101 102 | # File 'generated/google/apis/dns_v2beta1/classes.rb', line 100 def kind @kind end | 
#next_page_token ⇒ String
The presence of this field indicates that there exist more results following
your last page of results in pagination order. To fetch them, make another
list request using this value as your pagination token.
In this way you can retrieve the complete contents of even very large
collections one page at a time. However, if the contents of the collection
change between the first and last paginated list request, the set of all
elements returned will be an inconsistent view of the collection. There is no
way to retrieve a "snapshot" of collections larger than the maximum page size.
Corresponds to the JSON property nextPageToken
| 112 113 114 | # File 'generated/google/apis/dns_v2beta1/classes.rb', line 112 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 119 120 121 122 123 124 | # File 'generated/google/apis/dns_v2beta1/classes.rb', line 119 def update!(**args) @changes = args[:changes] if args.key?(:changes) @header = args[:header] if args.key?(:header) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |