Interface ExfilResourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExfilResource
,ExfilResource.Builder
public interface ExfilResourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getComponents(int index)
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames.com.google.protobuf.ByteString
getComponentsBytes(int index)
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames.int
getComponentsCount()
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames.List<String>
getComponentsList()
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames.String
getName()
The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).com.google.protobuf.ByteString
getNameBytes()
The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The resource's [full resource name](https://cloud.google.com/apis/design/resource_names#full_resource_name).
string name = 1;
- Returns:
- The bytes for name.
-
getComponentsList
List<String> getComponentsList()
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
repeated string components = 2;
- Returns:
- A list containing the components.
-
getComponentsCount
int getComponentsCount()
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
repeated string components = 2;
- Returns:
- The count of components.
-
getComponents
String getComponents(int index)
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
repeated string components = 2;
- Parameters:
index
- The index of the element to return.- Returns:
- The components at the given index.
-
getComponentsBytes
com.google.protobuf.ByteString getComponentsBytes(int index)
Subcomponents of the asset that was exfiltrated, like URIs used during exfiltration, table names, databases, and filenames. For example, multiple tables might have been exfiltrated from the same Cloud SQL instance, or multiple files might have been exfiltrated from the same Cloud Storage bucket.
repeated string components = 2;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the components at the given index.
-
-