Struct gapi_grpc::google::cloud::domains::v1beta1::ConfigureDnsSettingsRequest[][src]

pub struct ConfigureDnsSettingsRequest {
    pub registration: String,
    pub dns_settings: Option<DnsSettings>,
    pub update_mask: Option<FieldMask>,
    pub validate_only: bool,
}

Request for the ConfigureDnsSettings method.

Fields

registration: String

Required. The name of the Registration whose DNS settings are being updated, in the format projects/*/locations/*/registrations/*.

dns_settings: Option<DnsSettings>

Fields of the DnsSettings to update.

update_mask: Option<FieldMask>

Required. The field mask describing which fields to update as a comma-separated list. For example, if only the name servers are being updated for an existing Custom DNS configuration, the update_mask would be "custom_dns.name_servers".

When changing the DNS provider from one type to another, pass the new provider’s field name as part of the field mask. For example, when changing from a Google Domains DNS configuration to a Custom DNS configuration, the update_mask would be "custom_dns". //

validate_only: bool

Validate the request without actually updating the DNS settings.

Trait Implementations

impl Clone for ConfigureDnsSettingsRequest[src]

impl Debug for ConfigureDnsSettingsRequest[src]

impl Default for ConfigureDnsSettingsRequest[src]

impl Message for ConfigureDnsSettingsRequest[src]

impl PartialEq<ConfigureDnsSettingsRequest> for ConfigureDnsSettingsRequest[src]

impl StructuralPartialEq for ConfigureDnsSettingsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ConfigureDnsSettingsRequest

impl Send for ConfigureDnsSettingsRequest

impl Sync for ConfigureDnsSettingsRequest

impl Unpin for ConfigureDnsSettingsRequest

impl UnwindSafe for ConfigureDnsSettingsRequest

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]