Interface AccessReasonOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
AccessReason,AccessReason.Builder
public interface AccessReasonOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDetail()More detail about certain reason types.com.google.protobuf.ByteStringgetDetailBytes()More detail about certain reason types.AccessReason.TypegetType()Type of access justification.intgetTypeValue()Type of access justification.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getTypeValue
int getTypeValue()
Type of access justification.
.google.cloud.accessapproval.v1.AccessReason.Type type = 1;- Returns:
- The enum numeric value on the wire for type.
-
getType
AccessReason.Type getType()
Type of access justification.
.google.cloud.accessapproval.v1.AccessReason.Type type = 1;- Returns:
- The type.
-
getDetail
String getDetail()
More detail about certain reason types. See comments for each type above.
string detail = 2;- Returns:
- The detail.
-
getDetailBytes
com.google.protobuf.ByteString getDetailBytes()
More detail about certain reason types. See comments for each type above.
string detail = 2;- Returns:
- The bytes for detail.
-
-