Interface ManagedActiveDirectoryConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ManagedActiveDirectoryConfig,ManagedActiveDirectoryConfig.Builder
public interface ManagedActiveDirectoryConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetComputer()The computer name is used as a prefix to the mount remote target.com.google.protobuf.ByteStringgetComputerBytes()The computer name is used as a prefix to the mount remote target.StringgetDomain()Fully qualified domain name.com.google.protobuf.ByteStringgetDomainBytes()Fully qualified domain name.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDomain
String getDomain()
Fully qualified domain name.
string domain = 1;- Returns:
- The domain.
-
getDomainBytes
com.google.protobuf.ByteString getDomainBytes()
Fully qualified domain name.
string domain = 1;- Returns:
- The bytes for domain.
-
getComputer
String getComputer()
The computer name is used as a prefix to the mount remote target. Example: if the computer_name is `my-computer`, the mount command will look like: `$mount -o vers=4,sec=krb5 my-computer.filestore.<domain>:<share>`.
string computer = 2;- Returns:
- The computer.
-
getComputerBytes
com.google.protobuf.ByteString getComputerBytes()
The computer name is used as a prefix to the mount remote target. Example: if the computer_name is `my-computer`, the mount command will look like: `$mount -o vers=4,sec=krb5 my-computer.filestore.<domain>:<share>`.
string computer = 2;- Returns:
- The bytes for computer.
-
-