class Google::Apis::ManagedidentitiesV1::ReconfigureTrustRequest
Request message for ReconfigureTrust
Attributes
target_dns_ip_addresses[RW]
Required. The target DNS server IP addresses to resolve the remote domain involved in the trust. Corresponds to the JSON property `targetDnsIpAddresses` @return [Array<String>]
target_domain_name[RW]
Required. The fully-qualified target domain name which will be in trust with current domain. Corresponds to the JSON property `targetDomainName` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/managedidentities_v1/classes.rb, line 1669 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/managedidentities_v1/classes.rb, line 1674 def update!(**args) @target_dns_ip_addresses = args[:target_dns_ip_addresses] if args.key?(:target_dns_ip_addresses) @target_domain_name = args[:target_domain_name] if args.key?(:target_domain_name) end