Interface ExfiltrationOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Exfiltration
,Exfiltration.Builder
public interface ExfiltrationOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExfilResource
getSources(int index)
If there are multiple sources, then the data is considered "joined" between them.int
getSourcesCount()
If there are multiple sources, then the data is considered "joined" between them.List<ExfilResource>
getSourcesList()
If there are multiple sources, then the data is considered "joined" between them.ExfilResourceOrBuilder
getSourcesOrBuilder(int index)
If there are multiple sources, then the data is considered "joined" between them.List<? extends ExfilResourceOrBuilder>
getSourcesOrBuilderList()
If there are multiple sources, then the data is considered "joined" between them.ExfilResource
getTargets(int index)
If there are multiple targets, each target would get a complete copy of the "joined" source data.int
getTargetsCount()
If there are multiple targets, each target would get a complete copy of the "joined" source data.List<ExfilResource>
getTargetsList()
If there are multiple targets, each target would get a complete copy of the "joined" source data.ExfilResourceOrBuilder
getTargetsOrBuilder(int index)
If there are multiple targets, each target would get a complete copy of the "joined" source data.List<? extends ExfilResourceOrBuilder>
getTargetsOrBuilderList()
If there are multiple targets, each target would get a complete copy of the "joined" source data.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getSourcesList
List<ExfilResource> getSourcesList()
If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;
-
getSources
ExfilResource getSources(int index)
If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;
-
getSourcesCount
int getSourcesCount()
If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;
-
getSourcesOrBuilderList
List<? extends ExfilResourceOrBuilder> getSourcesOrBuilderList()
If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;
-
getSourcesOrBuilder
ExfilResourceOrBuilder getSourcesOrBuilder(int index)
If there are multiple sources, then the data is considered "joined" between them. For instance, BigQuery can join multiple tables, and each table would be considered a source.
repeated .google.cloud.securitycenter.v1.ExfilResource sources = 1;
-
getTargetsList
List<ExfilResource> getTargetsList()
If there are multiple targets, each target would get a complete copy of the "joined" source data.
repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;
-
getTargets
ExfilResource getTargets(int index)
If there are multiple targets, each target would get a complete copy of the "joined" source data.
repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;
-
getTargetsCount
int getTargetsCount()
If there are multiple targets, each target would get a complete copy of the "joined" source data.
repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;
-
getTargetsOrBuilderList
List<? extends ExfilResourceOrBuilder> getTargetsOrBuilderList()
If there are multiple targets, each target would get a complete copy of the "joined" source data.
repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;
-
getTargetsOrBuilder
ExfilResourceOrBuilder getTargetsOrBuilder(int index)
If there are multiple targets, each target would get a complete copy of the "joined" source data.
repeated .google.cloud.securitycenter.v1.ExfilResource targets = 2;
-
-