class Google::Apis::ServicenetworkingV1::UpdateDnsRecordSetRequest
Request to update a record set from a private managed DNS zone in the shared producer host project. The name, type, ttl, and data values of the existing record set must all exactly match an existing record set in the specified zone.
Attributes
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` @return [String]
Represents a DNS record set resource. Corresponds to the JSON property `existingDnsRecordSet` @return [Google::Apis::ServicenetworkingV1::DnsRecordSet]
Represents a DNS record set resource. Corresponds to the JSON property `newDnsRecordSet` @return [Google::Apis::ServicenetworkingV1::DnsRecordSet]
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` @return [String]
Public Class Methods
# File lib/google/apis/servicenetworking_v1/classes.rb, line 4127 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/servicenetworking_v1/classes.rb, line 4132 def update!(**args) @consumer_network = args[:consumer_network] if args.key?(:consumer_network) @existing_dns_record_set = args[:existing_dns_record_set] if args.key?(:existing_dns_record_set) @new_dns_record_set = args[:new_dns_record_set] if args.key?(:new_dns_record_set) @zone = args[:zone] if args.key?(:zone) end