Package com.google.cloud.asset.v1p7beta1
Interface RelationshipAttributesOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
RelationshipAttributes,RelationshipAttributes.Builder
public interface RelationshipAttributesOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()The detail of the relationship, e.g.com.google.protobuf.ByteStringgetActionBytes()The detail of the relationship, e.g.StringgetSourceResourceType()The source asset type.com.google.protobuf.ByteStringgetSourceResourceTypeBytes()The source asset type.StringgetTargetResourceType()The target asset type.com.google.protobuf.ByteStringgetTargetResourceTypeBytes()The target asset type.StringgetType()The unique identifier of the relationship type.com.google.protobuf.ByteStringgetTypeBytes()The unique identifier of the relationship type.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getType
String getType()
The unique identifier of the relationship type. Example: `INSTANCE_TO_INSTANCEGROUP`
string type = 4;- Returns:
- The type.
-
getTypeBytes
com.google.protobuf.ByteString getTypeBytes()
The unique identifier of the relationship type. Example: `INSTANCE_TO_INSTANCEGROUP`
string type = 4;- Returns:
- The bytes for type.
-
getSourceResourceType
String getSourceResourceType()
The source asset type. Example: `compute.googleapis.com/Instance`
string source_resource_type = 1;- Returns:
- The sourceResourceType.
-
getSourceResourceTypeBytes
com.google.protobuf.ByteString getSourceResourceTypeBytes()
The source asset type. Example: `compute.googleapis.com/Instance`
string source_resource_type = 1;- Returns:
- The bytes for sourceResourceType.
-
getTargetResourceType
String getTargetResourceType()
The target asset type. Example: `compute.googleapis.com/Disk`
string target_resource_type = 2;- Returns:
- The targetResourceType.
-
getTargetResourceTypeBytes
com.google.protobuf.ByteString getTargetResourceTypeBytes()
The target asset type. Example: `compute.googleapis.com/Disk`
string target_resource_type = 2;- Returns:
- The bytes for targetResourceType.
-
getAction
String getAction()
The detail of the relationship, e.g. `contains`, `attaches`
string action = 3;- Returns:
- The action.
-
getActionBytes
com.google.protobuf.ByteString getActionBytes()
The detail of the relationship, e.g. `contains`, `attaches`
string action = 3;- Returns:
- The bytes for action.
-
-