Uses of Interface
com.adobe.aio.cloudmanager.Program
-
Packages that use Program Package Description com.adobe.aio.cloudmanager -
-
Uses of Program in com.adobe.aio.cloudmanager
Methods in com.adobe.aio.cloudmanager that return Program Modifier and Type Method Description @NotNull Program
ProgramApi. get(@NotNull String programId)
Get the program with the specified id.Methods in com.adobe.aio.cloudmanager that return types with arguments of type Program Modifier and Type Method Description @NotNull Collection<Program>
ProgramApi. list(@NotNull Tenant tenant)
List all programs for the specified tenant.@NotNull Collection<Program>
ProgramApi. list(@NotNull String tenantId)
List all programs for the specified tenant.Methods in com.adobe.aio.cloudmanager with parameters of type Program Modifier and Type Method Description void
ProgramApi. delete(@NotNull Program program)
Delete the program.@NotNull Repository
RepositoryApi. get(@NotNull Program program, @NotNull String repositoryId)
Get a specific repository in the program.@NotNull Collection<Pipeline>
PipelineApi. list(@NotNull Program program)
List all pipelines within the specified program.@NotNull Collection<Repository>
RepositoryApi. list(@NotNull Program program)
List all repositories for the specified program.@NotNull Collection<Repository>
RepositoryApi. list(@NotNull Program program, int limit)
List all repositories for the specified program, up to the defined limit.@NotNull Collection<Repository>
RepositoryApi. list(@NotNull Program program, int start, int limit)
List all repositories for the specified program, from the starting position, up to the defined limit.
-