Class: Google::Apis::ServicenetworkingV1::RemoveDnsZoneRequest

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

Overview

Request to remove a private managed DNS zone in the shared producer host project and a matching DNS peering zone in the consumer project.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ RemoveDnsZoneRequest

Returns a new instance of RemoveDnsZoneRequest.



3175
3176
3177
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3175

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

Instance Attribute Details

#consumer_networkString

Required. The network that the consumer is using to connect with services. Must be in the form of projects/project/global/networks/network project is the project number, as in '12345' network is the network name. Corresponds to the JSON property consumerNetwork

Returns:

  • (String)


3167
3168
3169
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3167

def consumer_network
  @consumer_network
end

#nameString

Required. The name for both the private zone in the shared producer host project and the peering zone in the consumer project. Corresponds to the JSON property name

Returns:

  • (String)


3173
3174
3175
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3173

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3180
3181
3182
3183
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3180

def update!(**args)
  @consumer_network = args[:consumer_network] if args.key?(:consumer_network)
  @name = args[:name] if args.key?(:name)
end