Class: Google::Apis::DnsV1::Policy

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dns_v1/classes.rb,
lib/google/apis/dns_v1/representations.rb,
lib/google/apis/dns_v1/representations.rb

Overview

A policy is a collection of DNS rules applied to one or more Virtual Private Cloud resources.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Policy

Returns a new instance of Policy.



1634
1635
1636
# File 'lib/google/apis/dns_v1/classes.rb', line 1634

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

Instance Attribute Details

#alternative_name_server_configGoogle::Apis::DnsV1::PolicyAlternativeNameServerConfig

Sets an alternative name server for the associated networks. When specified, all DNS queries are forwarded to a name server that you choose. Names such as . internal are not available when an alternative name server is specified. Corresponds to the JSON property alternativeNameServerConfig



1591
1592
1593
# File 'lib/google/apis/dns_v1/classes.rb', line 1591

def alternative_name_server_config
  @alternative_name_server_config
end

#descriptionString

A mutable string of at most 1024 characters associated with this resource for the user's convenience. Has no effect on the policy's function. Corresponds to the JSON property description

Returns:

  • (String)


1597
1598
1599
# File 'lib/google/apis/dns_v1/classes.rb', line 1597

def description
  @description
end

#enable_inbound_forwardingBoolean Also known as: enable_inbound_forwarding?

Allows networks bound to this policy to receive DNS queries sent by VMs or applications over VPN connections. When enabled, a virtual IP address is allocated from each of the subnetworks that are bound to this policy. Corresponds to the JSON property enableInboundForwarding

Returns:

  • (Boolean)


1604
1605
1606
# File 'lib/google/apis/dns_v1/classes.rb', line 1604

def enable_inbound_forwarding
  @enable_inbound_forwarding
end

#enable_loggingBoolean Also known as: enable_logging?

Controls whether logging is enabled for the networks bound to this policy. Defaults to no logging if not set. Corresponds to the JSON property enableLogging

Returns:

  • (Boolean)


1611
1612
1613
# File 'lib/google/apis/dns_v1/classes.rb', line 1611

def enable_logging
  @enable_logging
end

#idFixnum

Unique identifier for the resource; defined by the server (output only). Corresponds to the JSON property id

Returns:

  • (Fixnum)


1617
1618
1619
# File 'lib/google/apis/dns_v1/classes.rb', line 1617

def id
  @id
end

#kindString

Corresponds to the JSON property kind

Returns:

  • (String)


1622
1623
1624
# File 'lib/google/apis/dns_v1/classes.rb', line 1622

def kind
  @kind
end

#nameString

User-assigned name for this policy. Corresponds to the JSON property name

Returns:

  • (String)


1627
1628
1629
# File 'lib/google/apis/dns_v1/classes.rb', line 1627

def name
  @name
end

#networksArray<Google::Apis::DnsV1::PolicyNetwork>

List of network names specifying networks to which this policy is applied. Corresponds to the JSON property networks



1632
1633
1634
# File 'lib/google/apis/dns_v1/classes.rb', line 1632

def networks
  @networks
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
# File 'lib/google/apis/dns_v1/classes.rb', line 1639

def update!(**args)
  @alternative_name_server_config = args[:alternative_name_server_config] if args.key?(:alternative_name_server_config)
  @description = args[:description] if args.key?(:description)
  @enable_inbound_forwarding = args[:enable_inbound_forwarding] if args.key?(:enable_inbound_forwarding)
  @enable_logging = args[:enable_logging] if args.key?(:enable_logging)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
  @name = args[:name] if args.key?(:name)
  @networks = args[:networks] if args.key?(:networks)
end