Class: Google::Apis::DnsV1beta2::ManagedZonePeeringConfig

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dns_v1beta2/classes.rb,
generated/google/apis/dns_v1beta2/representations.rb,
generated/google/apis/dns_v1beta2/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.



627
628
629
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 627

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)


620
621
622
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 620

def kind
  @kind
end

#target_networkGoogle::Apis::DnsV1beta2::ManagedZonePeeringConfigTargetNetwork

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



625
626
627
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 625

def target_network
  @target_network
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



632
633
634
635
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 632

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