Interface SpringApp.DefinitionStages.WithEndpoint
-
- All Known Subinterfaces:
SpringApp.Definition,SpringApp.DefinitionStages.WithCreate
- Enclosing interface:
- SpringApp.DefinitionStages
public static interface SpringApp.DefinitionStages.WithEndpointThe stage of a spring app definition allowing to specify the endpoint.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SpringApp.DefinitionStages.WithCreatewithCustomDomain(String domain)Specifies the custom domain for the spring app.SpringApp.DefinitionStages.WithCreatewithCustomDomain(String domain, String certThumbprint)Specifies the custom domain for the spring app.SpringApp.DefinitionStages.WithCreatewithDefaultPublicEndpoint()Enables the default public endpoint for the spring app.SpringApp.DefinitionStages.WithCreatewithHttpsOnly()Enables https only for the spring app.
-
-
-
Method Detail
-
withDefaultPublicEndpoint
SpringApp.DefinitionStages.WithCreate withDefaultPublicEndpoint()
Enables the default public endpoint for the spring app.- Returns:
- the next stage of spring app definition
-
withCustomDomain
SpringApp.DefinitionStages.WithCreate withCustomDomain(String domain)
Specifies the custom domain for the spring app.- Parameters:
domain- the domain name- Returns:
- the next stage of spring app definition
-
withCustomDomain
SpringApp.DefinitionStages.WithCreate withCustomDomain(String domain, String certThumbprint)
Specifies the custom domain for the spring app.- Parameters:
domain- the domain namecertThumbprint- the thumbprint of certificate for https- Returns:
- the next stage of spring app update
-
withHttpsOnly
SpringApp.DefinitionStages.WithCreate withHttpsOnly()
Enables https only for the spring app.- Returns:
- the next stage of spring app definition
-
-