Class: Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfig
- Inherits:
-
Object
- Object
- Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dns_v1beta2/classes.rb,
lib/google/apis/dns_v1beta2/representations.rb,
lib/google/apis/dns_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#gke_clusters ⇒ Array<Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigGkeCluster>
The list of Google Kubernetes Engine clusters that can see this zone.
-
#kind ⇒ String
Corresponds to the JSON property
kind
. -
#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.
Constructor Details
#initialize(**args) ⇒ ManagedZonePrivateVisibilityConfig
Returns a new instance of ManagedZonePrivateVisibilityConfig.
1177 1178 1179 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1177 def initialize(**args) update!(**args) end |
Instance Attribute Details
#gke_clusters ⇒ Array<Google::Apis::DnsV1beta2::ManagedZonePrivateVisibilityConfigGkeCluster>
The list of Google Kubernetes Engine clusters that can see this zone.
Corresponds to the JSON property gkeClusters
1165 1166 1167 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1165 def gke_clusters @gke_clusters end |
#kind ⇒ String
Corresponds to the JSON property kind
1170 1171 1172 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1170 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
1175 1176 1177 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1175 def networks @networks end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1182 1183 1184 1185 1186 |
# File 'lib/google/apis/dns_v1beta2/classes.rb', line 1182 def update!(**args) @gke_clusters = args[:gke_clusters] if args.key?(:gke_clusters) @kind = args[:kind] if args.key?(:kind) @networks = args[:networks] if args.key?(:networks) end |