Package com.strongdm.api
Interface Connector
- All Known Implementing Classes:
AWSConnector,AzureConnector,GCPConnector
public interface Connector
A Connector configures scanning for a given system.
-
Method Summary
Modifier and TypeMethodDescriptionReturns the description of the Connector.Returns the exclude tags of the Connector.getId()Returns the unique identifier of the Connector.Returns the include tags of the Connector.getName()Returns the name of the Connector.Returns the scan period of the Connector.Returns the services of the Connector.voidsetDescription(String description) Sets the description of the Connector.voidsetExcludeTags(Iterable<Tag> excludeTags) Sets the exclude tags of the Connector.voidsetIncludeTags(Iterable<Tag> includeTags) Sets the include tags of the Connector.voidSets the name of the Connector.voidsetScanPeriod(String scanPeriod) Sets the scan period of the Connector.voidsetServices(Iterable<String> services) Sets the services of the Connector.
-
Method Details
-
getId
String getId()Returns the unique identifier of the Connector. -
getName
String getName()Returns the name of the Connector. -
setName
Sets the name of the Connector. -
getDescription
String getDescription()Returns the description of the Connector. -
setDescription
Sets the description of the Connector. -
getServices
Returns the services of the Connector. -
setServices
Sets the services of the Connector. -
getIncludeTags
Returns the include tags of the Connector. -
setIncludeTags
Sets the include tags of the Connector. -
getExcludeTags
Returns the exclude tags of the Connector. -
setExcludeTags
Sets the exclude tags of the Connector. -
getScanPeriod
String getScanPeriod()Returns the scan period of the Connector. -
setScanPeriod
Sets the scan period of the Connector.
-