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 GCE private network IDs 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
594 595 596 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 594 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
587 588 589 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 587 def kind @kind end |
#networks ⇒ Array<Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigNetwork>
The list of GCE private network IDs that can see this zone.
Corresponds to the JSON property networks
592 593 594 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 592 def networks @networks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
599 600 601 602 |
# File 'generated/google/apis/dns_v1beta2/classes.rb', line 599 def update!(**args) @kind = args[:kind] if args.key?(:kind) @networks = args[:networks] if args.key?(:networks) end |