Class: Google::Apis::ServicenetworkingV1::PeeredDnsDomain
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ServicenetworkingV1::PeeredDnsDomain
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/servicenetworking_v1/classes.rb,
lib/google/apis/servicenetworking_v1/representations.rb,
lib/google/apis/servicenetworking_v1/representations.rb 
Overview
DNS domain suffix for which requests originating in the producer VPC network are resolved in the associated consumer VPC network.
Instance Attribute Summary collapse
- 
  
    
      #dns_suffix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The DNS domain name suffix e.g.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
User assigned name for this resource.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ PeeredDnsDomain 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of PeeredDnsDomain.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ PeeredDnsDomain
Returns a new instance of PeeredDnsDomain.
      3657 3658 3659  | 
    
      # File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3657 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#dns_suffix ⇒ String
The DNS domain name suffix e.g. example.com.. Cloud DNS requires that a DNS
suffix ends with a trailing dot.
Corresponds to the JSON property dnsSuffix
      3648 3649 3650  | 
    
      # File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3648 def dns_suffix @dns_suffix end  | 
  
#name ⇒ String
User assigned name for this resource. Must be unique within the consumer
network. The name must be 1-63 characters long, must begin with a letter, end
with a letter or digit, and only contain lowercase letters, digits or dashes.
Corresponds to the JSON property name
      3655 3656 3657  | 
    
      # File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3655 def name @name end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      3662 3663 3664 3665  | 
    
      # File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3662 def update!(**args) @dns_suffix = args[:dns_suffix] if args.key?(:dns_suffix) @name = args[:name] if args.key?(:name) end  |