Class: Google::Apis::ServicenetworkingV1::UpdateDnsRecordSetRequest
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1::UpdateDnsRecordSetRequest
- 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 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.
Instance Attribute Summary collapse
-
#consumer_network ⇒ String
Required.
-
#existing_dns_record_set ⇒ Google::Apis::ServicenetworkingV1::DnsRecordSet
Represents a DNS record set resource.
-
#new_dns_record_set ⇒ Google::Apis::ServicenetworkingV1::DnsRecordSet
Represents a DNS record set resource.
-
#zone ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ UpdateDnsRecordSetRequest
constructor
A new instance of UpdateDnsRecordSetRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ UpdateDnsRecordSetRequest
Returns a new instance of UpdateDnsRecordSetRequest.
3990 3991 3992 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3990 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
3972 3973 3974 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3972 def consumer_network @consumer_network end |
#existing_dns_record_set ⇒ Google::Apis::ServicenetworkingV1::DnsRecordSet
Represents a DNS record set resource.
Corresponds to the JSON property existingDnsRecordSet
3977 3978 3979 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3977 def existing_dns_record_set @existing_dns_record_set end |
#new_dns_record_set ⇒ Google::Apis::ServicenetworkingV1::DnsRecordSet
Represents a DNS record set resource.
Corresponds to the JSON property newDnsRecordSet
3982 3983 3984 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3982 def new_dns_record_set @new_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
3988 3989 3990 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3988 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3995 3996 3997 3998 3999 4000 |
# File 'generated/google/apis/servicenetworking_v1/classes.rb', line 3995 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 |