Class: Google::Apis::DnsV2beta1::PolicyNetwork

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

Returns a new instance of PolicyNetwork



1051
1052
1053
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 1051

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

Instance Attribute Details

#kindString

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

Returns:

  • (String)


1042
1043
1044
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 1042

def kind
  @kind
end

#network_urlString

The fully qualified URL of the VPC network to bind to. This should be formatted like https://www.googleapis.com/compute/v1/projects/`project`/global/ networks/network Corresponds to the JSON property networkUrl

Returns:

  • (String)


1049
1050
1051
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 1049

def network_url
  @network_url
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1056
1057
1058
1059
# File 'generated/google/apis/dns_v2beta1/classes.rb', line 1056

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