Package com.adobe.aio.cloudmanager
Interface Program
-
public interface Program
A Program definition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
delete()
Delete this program.String
getId()
Identifier of the program.String
getName()
Name of the program.Collection<Region>
listRegions()
List all regions which can be used to create environments for this program.
-
-
-
Method Detail
-
getId
String getId()
Identifier of the program. Unique within the space.- Returns:
- id
-
getName
String getName()
Name of the program.- Returns:
- name
-
delete
void delete() throws CloudManagerApiException
Delete this program.- Throws:
CloudManagerApiException
- when an error occurs
-
listRegions
Collection<Region> listRegions() throws CloudManagerApiException
List all regions which can be used to create environments for this program.- Returns:
- the list of regions
- Throws:
CloudManagerApiException
- when any error occurs
-
-