Class: Google::Apis::ServicenetworkingV1::RemoveDnsRecordSetRequest
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1::RemoveDnsRecordSetRequest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1/classes.rb,
lib/google/apis/servicenetworking_v1/representations.rb,
lib/google/apis/servicenetworking_v1/representations.rb
Overview
Request to remove a record set from a private managed DNS zone in the shared producer host project. The name, type, ttl, and data values must all exactly match an existing record set in the specified zone.
Instance Attribute Summary collapse
-
#consumer_network ⇒ String
Required.
-
#dns_record_set ⇒ Google::Apis::ServicenetworkingV1::DnsRecordSet
Represents a DNS record set resource.
-
#zone ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RemoveDnsRecordSetRequest
constructor
A new instance of RemoveDnsRecordSetRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RemoveDnsRecordSetRequest
Returns a new instance of RemoveDnsRecordSetRequest.
3230 3231 3232 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3230 def initialize(**args) update!(**args) end |
Instance Attribute Details
#consumer_network ⇒ String
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
3217 3218 3219 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3217 def consumer_network @consumer_network end |
#dns_record_set ⇒ Google::Apis::ServicenetworkingV1::DnsRecordSet
Represents a DNS record set resource.
Corresponds to the JSON property dnsRecordSet
3222 3223 3224 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3222 def dns_record_set @dns_record_set end |
#zone ⇒ String
Required. The name of the private DNS zone in the shared producer host project
from which the record set will be removed.
Corresponds to the JSON property zone
3228 3229 3230 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3228 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3235 3236 3237 3238 3239 |
# File 'lib/google/apis/servicenetworking_v1/classes.rb', line 3235 def update!(**args) @consumer_network = args[:consumer_network] if args.key?(:consumer_network) @dns_record_set = args[:dns_record_set] if args.key?(:dns_record_set) @zone = args[:zone] if args.key?(:zone) end |