Interface DnsAuthorization.DnsResourceRecordOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
DnsAuthorization.DnsResourceRecord
,DnsAuthorization.DnsResourceRecord.Builder
- Enclosing class:
- DnsAuthorization
public static interface DnsAuthorization.DnsResourceRecordOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getData()
Output only.com.google.protobuf.ByteString
getDataBytes()
Output only.String
getName()
Output only.com.google.protobuf.ByteString
getNameBytes()
Output only.String
getType()
Output only.com.google.protobuf.ByteString
getTypeBytes()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Output only. Fully qualified name of the DNS Resource Record. e.g. `_acme-challenge.example.com`
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Output only. Fully qualified name of the DNS Resource Record. e.g. `_acme-challenge.example.com`
string name = 1 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for name.
-
getType
String getType()
Output only. Type of the DNS Resource Record. Currently always set to "CNAME".
string type = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
Output only. Type of the DNS Resource Record. Currently always set to "CNAME".
string type = 2 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for type.
-
getData
String getData()
Output only. Data of the DNS Resource Record.
string data = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The data.
-
getDataBytes
com.google.protobuf.ByteString getDataBytes()
Output only. Data of the DNS Resource Record.
string data = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
- Returns:
- The bytes for data.
-
-