Class: Google::Apis::DnsV1::Change
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DnsV1::Change
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dns_v1/classes.rb,
 generated/google/apis/dns_v1/representations.rb,
 generated/google/apis/dns_v1/representations.rb
Overview
An atomic update to a collection of ResourceRecordSets.
Instance Attribute Summary collapse
- 
  
    
      #additions  ⇒ Array<Google::Apis::DnsV1::ResourceRecordSet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Which ResourceRecordSets to add? Corresponds to the JSON property additions.
- 
  
    
      #deletions  ⇒ Array<Google::Apis::DnsV1::ResourceRecordSet> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Which ResourceRecordSets to remove? Must match existing data exactly. 
- 
  
    
      #id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique identifier for the resource; defined by the server (output only). 
- 
  
    
      #is_serving  ⇒ Boolean 
    
    
      (also: #is_serving?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If the DNS queries for the zone will be served. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies what kind of resource this is. 
- 
  
    
      #start_time  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time that this operation was started by the server (output only). 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Status of the operation (output only). 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Change 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Change. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Change
Returns a new instance of Change
| 66 67 68 | # File 'generated/google/apis/dns_v1/classes.rb', line 66 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#additions ⇒ Array<Google::Apis::DnsV1::ResourceRecordSet>
Which ResourceRecordSets to add?
Corresponds to the JSON property additions
| 32 33 34 | # File 'generated/google/apis/dns_v1/classes.rb', line 32 def additions @additions end | 
#deletions ⇒ Array<Google::Apis::DnsV1::ResourceRecordSet>
Which ResourceRecordSets to remove? Must match existing data exactly.
Corresponds to the JSON property deletions
| 37 38 39 | # File 'generated/google/apis/dns_v1/classes.rb', line 37 def deletions @deletions end | 
#id ⇒ String
Unique identifier for the resource; defined by the server (output only).
Corresponds to the JSON property id
| 42 43 44 | # File 'generated/google/apis/dns_v1/classes.rb', line 42 def id @id end | 
#is_serving ⇒ Boolean Also known as: is_serving?
If the DNS queries for the zone will be served.
Corresponds to the JSON property isServing
| 47 48 49 | # File 'generated/google/apis/dns_v1/classes.rb', line 47 def is_serving @is_serving end | 
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "dns#change".
Corresponds to the JSON property kind
| 53 54 55 | # File 'generated/google/apis/dns_v1/classes.rb', line 53 def kind @kind end | 
#start_time ⇒ String
The time that this operation was started by the server (output only). This is
in RFC3339 text format.
Corresponds to the JSON property startTime
| 59 60 61 | # File 'generated/google/apis/dns_v1/classes.rb', line 59 def start_time @start_time end | 
#status ⇒ String
Status of the operation (output only).
Corresponds to the JSON property status
| 64 65 66 | # File 'generated/google/apis/dns_v1/classes.rb', line 64 def status @status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 71 72 73 74 75 76 77 78 79 | # File 'generated/google/apis/dns_v1/classes.rb', line 71 def update!(**args) @additions = args[:additions] if args.key?(:additions) @deletions = args[:deletions] if args.key?(:deletions) @id = args[:id] if args.key?(:id) @is_serving = args[:is_serving] if args.key?(:is_serving) @kind = args[:kind] if args.key?(:kind) @start_time = args[:start_time] if args.key?(:start_time) @status = args[:status] if args.key?(:status) end |