Uses of Interface
com.adobe.aio.cloudmanager.Environment
-
Packages that use Environment Package Description com.adobe.aio.cloudmanager -
-
Uses of Environment in com.adobe.aio.cloudmanager
Methods in com.adobe.aio.cloudmanager that return Environment Modifier and Type Method Description @NotNull EnvironmentEnvironmentApi. create(@NotNull String programId, @NotNull String name, Environment.Type type, @NotNull String region, String description)Create a new environment in the program.EnvironmentEnvironmentApi. get(@NotNull String programId, @NotNull String environmentId)Retrieve the environment within the program context.Methods in com.adobe.aio.cloudmanager that return types with arguments of type Environment Modifier and Type Method Description Optional<Environment>EnvironmentApi. get(@NotNull String programId, @NotNull Predicate<Environment> predicate)Returns the first environment which matches the predicate, within the program context.@NotNull Collection<Environment>EnvironmentApi. list(@NotNull String programId)List all environments in the program.@NotNull Collection<Environment>EnvironmentApi. list(@NotNull String programId, Environment.Type type)List all environments in the program, of the specified type.Methods in com.adobe.aio.cloudmanager with parameters of type Environment Modifier and Type Method Description voidEnvironmentApi. createRegionDeployments(@NotNull Environment environment, @NotNull Region... regions)Create a new deployment in the specified region.voidEnvironmentApi. delete(@NotNull Environment environment)Delete the environment.voidEnvironmentApi. delete(@NotNull Environment environment, boolean ignoreFailure)Delete the environment.@NotNull Collection<EnvironmentLog>EnvironmentApi. downloadLogs(@NotNull Environment environment, @NotNull LogOption logOption, int days, @NotNull File dir)Downloads the logs for the environment, to the specified folder.StringEnvironmentApi. getLogDownloadUrl(@NotNull Environment environment, @NotNull LogOption option, @NotNull LocalDate date)Get the fully qualified URL to the log file for download.@NotNull Set<Variable>EnvironmentApi. getVariables(@NotNull Environment environment)List all variables associated with the environment.Collection<EnvironmentLog>EnvironmentApi. listLogs(@NotNull Environment environment, @NotNull LogOption option, int days)List logs of the specified type for the environment.@NotNull Collection<RegionDeployment>EnvironmentApi. listRegionDeployments(@NotNull Environment environment)Get the region deployment.voidEnvironmentApi. removeRegionDeployments(@NotNull Environment environment, @NotNull Region... regions)Remove the deployment from the specified region.voidEnvironmentApi. resetRde(@NotNull Environment environment)Reset the Rapid Development Environment.@NotNull Set<Variable>EnvironmentApi. setVariables(@NotNull Environment environment, Variable... variables)Set the variables in the environment.booleanEnvironment.NamePredicate. test(Environment environment)Method parameters in com.adobe.aio.cloudmanager with type arguments of type Environment Modifier and Type Method Description Optional<Environment>EnvironmentApi. get(@NotNull String programId, @NotNull Predicate<Environment> predicate)Returns the first environment which matches the predicate, within the program context.
-