Package com.google.monitoring.v3
Interface UptimeCheckConfig.HttpCheck.BasicAuthenticationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UptimeCheckConfig.HttpCheck.BasicAuthentication
,UptimeCheckConfig.HttpCheck.BasicAuthentication.Builder
- Enclosing class:
- UptimeCheckConfig.HttpCheck
public static interface UptimeCheckConfig.HttpCheck.BasicAuthenticationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getPassword()
The password to use when authenticating with the HTTP server.com.google.protobuf.ByteString
getPasswordBytes()
The password to use when authenticating with the HTTP server.String
getUsername()
The username to use when authenticating with the HTTP server.com.google.protobuf.ByteString
getUsernameBytes()
The username to use when authenticating with the HTTP server.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getUsername
String getUsername()
The username to use when authenticating with the HTTP server.
string username = 1;
- Returns:
- The username.
-
getUsernameBytes
com.google.protobuf.ByteString getUsernameBytes()
The username to use when authenticating with the HTTP server.
string username = 1;
- Returns:
- The bytes for username.
-
getPassword
String getPassword()
The password to use when authenticating with the HTTP server.
string password = 2;
- Returns:
- The password.
-
getPasswordBytes
com.google.protobuf.ByteString getPasswordBytes()
The password to use when authenticating with the HTTP server.
string password = 2;
- Returns:
- The bytes for password.
-
-