com.google.cloud.domains.v1.TransferParametersOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-domains-v1 Show documentation
Show all versions of proto-google-cloud-domains-v1 Show documentation
Proto library for google-cloud-domains
/*
* Copyright 2024 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/cloud/domains/v1/domains.proto
// Protobuf Java Version: 3.25.3
package com.google.cloud.domains.v1;
public interface TransferParametersOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.domains.v1.TransferParameters)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The domain name. Unicode domain names are expressed in Punycode format.
*
*
* string domain_name = 1;
*
* @return The domainName.
*/
java.lang.String getDomainName();
/**
*
*
*
* The domain name. Unicode domain names are expressed in Punycode format.
*
*
* string domain_name = 1;
*
* @return The bytes for domainName.
*/
com.google.protobuf.ByteString getDomainNameBytes();
/**
*
*
*
* The registrar that currently manages the domain.
*
*
* string current_registrar = 2;
*
* @return The currentRegistrar.
*/
java.lang.String getCurrentRegistrar();
/**
*
*
*
* The registrar that currently manages the domain.
*
*
* string current_registrar = 2;
*
* @return The bytes for currentRegistrar.
*/
com.google.protobuf.ByteString getCurrentRegistrarBytes();
/**
*
*
*
* The name servers that currently store the configuration of the domain.
*
*
* repeated string name_servers = 3;
*
* @return A list containing the nameServers.
*/
java.util.List getNameServersList();
/**
*
*
*
* The name servers that currently store the configuration of the domain.
*
*
* repeated string name_servers = 3;
*
* @return The count of nameServers.
*/
int getNameServersCount();
/**
*
*
*
* The name servers that currently store the configuration of the domain.
*
*
* repeated string name_servers = 3;
*
* @param index The index of the element to return.
* @return The nameServers at the given index.
*/
java.lang.String getNameServers(int index);
/**
*
*
*
* The name servers that currently store the configuration of the domain.
*
*
* repeated string name_servers = 3;
*
* @param index The index of the value to return.
* @return The bytes of the nameServers at the given index.
*/
com.google.protobuf.ByteString getNameServersBytes(int index);
/**
*
*
*
* Indicates whether the domain is protected by a transfer lock. For a
* transfer to succeed, this must show `UNLOCKED`. To unlock a domain,
* go to its current registrar.
*
*
* .google.cloud.domains.v1.TransferLockState transfer_lock_state = 4;
*
* @return The enum numeric value on the wire for transferLockState.
*/
int getTransferLockStateValue();
/**
*
*
*
* Indicates whether the domain is protected by a transfer lock. For a
* transfer to succeed, this must show `UNLOCKED`. To unlock a domain,
* go to its current registrar.
*
*
* .google.cloud.domains.v1.TransferLockState transfer_lock_state = 4;
*
* @return The transferLockState.
*/
com.google.cloud.domains.v1.TransferLockState getTransferLockState();
/**
*
*
*
* Contact privacy options that the domain supports.
*
*
* repeated .google.cloud.domains.v1.ContactPrivacy supported_privacy = 5;
*
* @return A list containing the supportedPrivacy.
*/
java.util.List getSupportedPrivacyList();
/**
*
*
*
* Contact privacy options that the domain supports.
*
*
* repeated .google.cloud.domains.v1.ContactPrivacy supported_privacy = 5;
*
* @return The count of supportedPrivacy.
*/
int getSupportedPrivacyCount();
/**
*
*
*
* Contact privacy options that the domain supports.
*
*
* repeated .google.cloud.domains.v1.ContactPrivacy supported_privacy = 5;
*
* @param index The index of the element to return.
* @return The supportedPrivacy at the given index.
*/
com.google.cloud.domains.v1.ContactPrivacy getSupportedPrivacy(int index);
/**
*
*
*
* Contact privacy options that the domain supports.
*
*
* repeated .google.cloud.domains.v1.ContactPrivacy supported_privacy = 5;
*
* @return A list containing the enum numeric values on the wire for supportedPrivacy.
*/
java.util.List getSupportedPrivacyValueList();
/**
*
*
*
* Contact privacy options that the domain supports.
*
*
* repeated .google.cloud.domains.v1.ContactPrivacy supported_privacy = 5;
*
* @param index The index of the value to return.
* @return The enum numeric value on the wire of supportedPrivacy at the given index.
*/
int getSupportedPrivacyValue(int index);
/**
*
*
*
* Price to transfer or renew the domain for one year.
*
*
* .google.type.Money yearly_price = 6;
*
* @return Whether the yearlyPrice field is set.
*/
boolean hasYearlyPrice();
/**
*
*
*
* Price to transfer or renew the domain for one year.
*
*
* .google.type.Money yearly_price = 6;
*
* @return The yearlyPrice.
*/
com.google.type.Money getYearlyPrice();
/**
*
*
*
* Price to transfer or renew the domain for one year.
*
*
* .google.type.Money yearly_price = 6;
*/
com.google.type.MoneyOrBuilder getYearlyPriceOrBuilder();
}