Class: Google::Apis::DnsV1::OperationManagedZoneContext
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DnsV1::OperationManagedZoneContext
 
- 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
Instance Attribute Summary collapse
- 
  
    
      #new_value  ⇒ Google::Apis::DnsV1::ManagedZone 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A zone is a subtree of the DNS namespace under one administrative responsibility. 
- 
  
    
      #old_value  ⇒ Google::Apis::DnsV1::ManagedZone 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A zone is a subtree of the DNS namespace under one administrative responsibility. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ OperationManagedZoneContext 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of OperationManagedZoneContext. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ OperationManagedZoneContext
Returns a new instance of OperationManagedZoneContext
| 664 665 666 | # File 'generated/google/apis/dns_v1/classes.rb', line 664 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#new_value ⇒ Google::Apis::DnsV1::ManagedZone
A zone is a subtree of the DNS namespace under one administrative
responsibility. A ManagedZone is a resource that represents a DNS zone hosted
by the Cloud DNS service.
Corresponds to the JSON property newValue
| 655 656 657 | # File 'generated/google/apis/dns_v1/classes.rb', line 655 def new_value @new_value end | 
#old_value ⇒ Google::Apis::DnsV1::ManagedZone
A zone is a subtree of the DNS namespace under one administrative
responsibility. A ManagedZone is a resource that represents a DNS zone hosted
by the Cloud DNS service.
Corresponds to the JSON property oldValue
| 662 663 664 | # File 'generated/google/apis/dns_v1/classes.rb', line 662 def old_value @old_value end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 669 670 671 672 | # File 'generated/google/apis/dns_v1/classes.rb', line 669 def update!(**args) @new_value = args[:new_value] if args.key?(:new_value) @old_value = args[:old_value] if args.key?(:old_value) end |