Class: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfig
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfig
- 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.
-
#networks ⇒ Array<Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork>
The list of VPC networks that can see this zone.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ManagedZonePrivateVisibilityConfig
constructor
A new instance of ManagedZonePrivateVisibilityConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ManagedZonePrivateVisibilityConfig
Returns a new instance of ManagedZonePrivateVisibilityConfig
602 603 604 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 602 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "dns#
managedZonePrivateVisibilityConfig".
Corresponds to the JSON property kind
595 596 597 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 595 def kind @kind end |
#networks ⇒ Array<Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork>
The list of VPC networks that can see this zone.
Corresponds to the JSON property networks
600 601 602 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 600 def networks @networks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
607 608 609 610 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 607 def update!(**args) @kind = args[:kind] if args.key?(:kind) @networks = args[:networks] if args.key?(:networks) end |