Class: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork
- 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
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#network_url ⇒ String
The fully qualified URL of the VPC network to bind to.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagedZonePrivateVisibilityConfigNetwork
constructor
A new instance of ManagedZonePrivateVisibilityConfigNetwork.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedZonePrivateVisibilityConfigNetwork
Returns a new instance of ManagedZonePrivateVisibilityConfigNetwork
630 631 632 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 630 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "dns#
managedZonePrivateVisibilityConfigNetwork".
Corresponds to the JSON property kind
621 622 623 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 621 def kind @kind end |
#network_url ⇒ String
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
628 629 630 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 628 def network_url @network_url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
635 636 637 638 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 635 def update!(**args) @kind = args[:kind] if args.key?(:kind) @network_url = args[:network_url] if args.key?(:network_url) end |