Class: Google::Apis::DnsV1::ManagedZonePeeringConfig

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ManagedZonePeeringConfig

Returns a new instance of ManagedZonePeeringConfig.



609
610
611
# File 'generated/google/apis/dns_v1/classes.rb', line 609

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#kindString

Identifies what kind of resource this is. Value: the fixed string "dns# managedZonePeeringConfig". Corresponds to the JSON property kind

Returns:

  • (String)


602
603
604
# File 'generated/google/apis/dns_v1/classes.rb', line 602

def kind
  @kind
end

#target_networkGoogle::Apis::DnsV1::ManagedZonePeeringConfigTargetNetwork

The network with which to peer. Corresponds to the JSON property targetNetwork



607
608
609
# File 'generated/google/apis/dns_v1/classes.rb', line 607

def target_network
  @target_network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



614
615
616
617
# File 'generated/google/apis/dns_v1/classes.rb', line 614

def update!(**args)
  @kind = args[:kind] if args.key?(:kind)
  @target_network = args[:target_network] if args.key?(:target_network)
end