Package com.google.cloud.asset.v1
Interface IamPolicyAnalysisStateOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
IamPolicyAnalysisState
,IamPolicyAnalysisState.Builder
public interface IamPolicyAnalysisStateOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCause()
The human-readable description of the cause of failure.com.google.protobuf.ByteString
getCauseBytes()
The human-readable description of the cause of failure.com.google.rpc.Code
getCode()
The Google standard error code that best describes the state.int
getCodeValue()
The Google standard error code that best describes the state.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCodeValue
int getCodeValue()
The Google standard error code that best describes the state. For example: - OK means the analysis on this entity has been successfully finished; - PERMISSION_DENIED means an access denied error is encountered; - DEADLINE_EXCEEDED means the analysis on this entity hasn't been started in time;
.google.rpc.Code code = 1;
- Returns:
- The enum numeric value on the wire for code.
-
getCode
com.google.rpc.Code getCode()
The Google standard error code that best describes the state. For example: - OK means the analysis on this entity has been successfully finished; - PERMISSION_DENIED means an access denied error is encountered; - DEADLINE_EXCEEDED means the analysis on this entity hasn't been started in time;
.google.rpc.Code code = 1;
- Returns:
- The code.
-
getCause
String getCause()
The human-readable description of the cause of failure.
string cause = 2;
- Returns:
- The cause.
-
getCauseBytes
com.google.protobuf.ByteString getCauseBytes()
The human-readable description of the cause of failure.
string cause = 2;
- Returns:
- The bytes for cause.
-
-