Interface SpringApp.UpdateStages.WithEndpoint

All Known Subinterfaces:
SpringApp.Update
Enclosing interface:
SpringApp.UpdateStages

public static interface SpringApp.UpdateStages.WithEndpoint
The stage of a spring app update allowing to specify the endpoint.
  • Method Details

    • withDefaultPublicEndpoint

      SpringApp.Update withDefaultPublicEndpoint()
      Enables the default public endpoint for the spring app.
      Returns:
      the next stage of spring app update
    • withoutDefaultPublicEndpoint

      SpringApp.Update withoutDefaultPublicEndpoint()
      Disables the default public endpoint for the spring app.
      Returns:
      the next stage of spring app update
    • withCustomDomain

      SpringApp.Update withCustomDomain(String domain)
      Specifies the custom domain for the spring app.
      Parameters:
      domain - the domain name
      Returns:
      the next stage of spring app update
    • withCustomDomain

      SpringApp.Update withCustomDomain(String domain, String certThumbprint)
      Specifies the custom domain for the spring app.
      Parameters:
      domain - the domain name
      certThumbprint - the thumbprint of certificate for https
      Returns:
      the next stage of spring app update
    • withoutCustomDomain

      SpringApp.Update withoutCustomDomain(String domain)
      Removes the custom domain for the spring app.
      Parameters:
      domain - the domain name
      Returns:
      the next stage of spring app update
    • withHttpsOnly

      SpringApp.Update withHttpsOnly()
      Enables https only for the spring app.
      Returns:
      the next stage of spring app update
    • withoutHttpsOnly

      SpringApp.Update withoutHttpsOnly()
      Disables https only for the spring app.
      Returns:
      the next stage of spring app update