Interface SpringService.DefinitionStages.WithConfigurationService
- All Known Subinterfaces:
SpringService.Definition,SpringService.DefinitionStages.WithEnterpriseTierCreate
- Enclosing interface:
- SpringService.DefinitionStages
public static interface SpringService.DefinitionStages.WithConfigurationService
(Enterprise Tier Only)
The stage of a spring service definition allowing to specify the enterprise tier configuration service
-
Method Summary
Modifier and TypeMethodDescriptionwithDefaultGitRepository(String uri, String branch, List<String> filePatterns) Specifies the default git repository for the spring service.Specifies additional git repository for the spring service.Specifies complete git repository configuration for the spring service.
-
Method Details
-
withDefaultGitRepository
SpringService.DefinitionStages.WithEnterpriseTierCreate withDefaultGitRepository(String uri, String branch, List<String> filePatterns) Specifies the default git repository for the spring service.- Parameters:
uri- the uri of the git repositorybranch- branch of the git repositoryfilePatterns- patterns for configuration files to be selected from the git repository- Returns:
- the next stage of spring service definition
-
withGitRepository
SpringService.DefinitionStages.WithEnterpriseTierCreate withGitRepository(String name, String uri, String branch, List<String> filePatterns) Specifies additional git repository for the spring service. New repository configurations will override the old with the same name.- Parameters:
name- the name of the git repositoryuri- the uri of the git repositorybranch- branch of the git repositoryfilePatterns- patterns for configuration files to be selected from the git repository- Returns:
- the next stage of spring service definition
-
withGitRepositoryConfig
SpringService.DefinitionStages.WithEnterpriseTierCreate withGitRepositoryConfig(ConfigurationServiceGitProperty gitConfig) Specifies complete git repository configuration for the spring service. New repository configurations will override the old with the same name.- Parameters:
gitConfig- git repository configuration- Returns:
- the next stage of spring service definition
-