Package org.openstack4j.model.senlin
Interface Profile
-
- All Superinterfaces:
ModelEntity,ResourceEntity,Serializable
- All Known Implementing Classes:
SenlinProfile
public interface Profile extends ResourceEntity
This interface describes the getter-methods (and thus components) of a Profile. All getters map to the possible return values ofGET /v1/profiles/{profile_id}- Author:
- lion
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetCreatedAt()Returns the created at time of the profileStringgetDomain()Returns the domain of the profileMap<String,Object>getMetadata()Returns the metadata of the profileStringgetProject()Returns the project of the profileMap<String,Object>getSpec()Returns the spec of the profileStringgetType()Returns the type of the profileDategetUpdatedAt()Returns the updated at time of the profileStringgetUser()Returns the user of the profile-
Methods inherited from interface org.openstack4j.model.ResourceEntity
getId, getName
-
-
-
-
Method Detail
-
getCreatedAt
Date getCreatedAt()
Returns the created at time of the profile- Returns:
- the created at time of the profile
-
getDomain
String getDomain()
Returns the domain of the profile- Returns:
- the domain of the profile
-
getProject
String getProject()
Returns the project of the profile- Returns:
- the project of the profile
-
getMetadata
Map<String,Object> getMetadata()
Returns the metadata of the profile- Returns:
- the metadata of the profile
-
getSpec
Map<String,Object> getSpec()
Returns the spec of the profile- Returns:
- the spec of the profile
-
getType
String getType()
Returns the type of the profile- Returns:
- the type of the profile
-
getUpdatedAt
Date getUpdatedAt()
Returns the updated at time of the profile- Returns:
- the updated at time of the profile
-
getUser
String getUser()
Returns the user of the profile- Returns:
- the user of the profile
-
-