class Google::Apis::DnsV1::ManagedZonePeeringConfigTargetNetwork

Attributes

deactivate_time[RW]

The time at which the zone was deactivated, in RFC 3339 date-time format. An empty string indicates that the peering connection is active. The producer network can deactivate a zone. The zone is automatically deactivated if the producer network that the zone targeted is deleted. Output only. Corresponds to the JSON property `deactivateTime` @return [String]

kind[RW]

Corresponds to the JSON property `kind` @return [String]

network_url[RW]

The fully qualified URL of the VPC network to forward queries to. This should be formatted like www.googleapis.com/compute/v1/projects/`project`/ global/networks/`network` Corresponds to the JSON property `networkUrl` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dns_v1/classes.rb, line 1132
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dns_v1/classes.rb, line 1137
def update!(**args)
  @deactivate_time = args[:deactivate_time] if args.key?(:deactivate_time)
  @kind = args[:kind] if args.key?(:kind)
  @network_url = args[:network_url] if args.key?(:network_url)
end