Package org.openstack4j.model.sahara
Interface DataSource
-
- All Superinterfaces:
Buildable<DataSourceBuilder>,ModelEntity,Serializable
- All Known Implementing Classes:
SaharaDataSource
public interface DataSource extends ModelEntity, Buildable<DataSourceBuilder>
An OpenStack Data Source- Author:
- [email protected], [email protected]
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.openstack4j.common.Buildable
Buildable.Builder<T extends Buildable.Builder<T,M>,M extends Buildable<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCreatedAt()DataSourceCredentialsgetCredentials()StringgetDescription()StringgetId()StringgetName()StringgetTenantId()StringgetType()DategetUpdatedAt()StringgetURL()
-
-
-
Method Detail
-
getDescription
String getDescription()
- Returns:
- the description of the data source
-
getURL
String getURL()
- Returns:
- the URL of the data source
-
getTenantId
String getTenantId()
- Returns:
- the tenant id of the data source
-
getCreatedAt
Date getCreatedAt()
- Returns:
- the created date of the data source
-
getUpdatedAt
Date getUpdatedAt()
- Returns:
- the updated date of the data source
-
getType
String getType()
- Returns:
- the type of the data source
-
getId
String getId()
- Returns:
- the identifier of the data source
-
getName
String getName()
- Returns:
- the name of the data source
-
getCredentials
DataSourceCredentials getCredentials()
- Returns:
- the credentials of the data source
-
-