Class EndpointOAuthGoogle.Builder

java.lang.Object
com.ngrok.definitions.EndpointOAuthGoogle.Builder
Enclosing class:
EndpointOAuthGoogle

public static class EndpointOAuthGoogle.Builder extends Object
Builder class for EndpointOAuthGoogle.
  • Method Details

    • clientId

      public EndpointOAuthGoogle.Builder clientId(String clientId)
      the OAuth app client ID. retrieve it from the identity provider's dashboard where you created your own OAuth app. optional. if unspecified, ngrok will use its own managed oauth application which has additional restrictions. see the OAuth module docs for more details. if present, client_secret must be present as well.
      Parameters:
      clientId - the value of the client_id parameter as a String
      Returns:
      this builder instance
    • clientId

      public EndpointOAuthGoogle.Builder clientId(Optional<String> clientId)
      the OAuth app client ID. retrieve it from the identity provider's dashboard where you created your own OAuth app. optional. if unspecified, ngrok will use its own managed oauth application which has additional restrictions. see the OAuth module docs for more details. if present, client_secret must be present as well.
      Parameters:
      clientId - the value of the client_id parameter as a String, wrapped in an Optional
      Returns:
      this builder instance
    • clientSecret

      public EndpointOAuthGoogle.Builder clientSecret(String clientSecret)
      the OAuth app client secret. retrieve if from the identity provider's dashboard where you created your own OAuth app. optional, see all of the caveats in the docs for client_id.
      Parameters:
      clientSecret - the value of the client_secret parameter as a String
      Returns:
      this builder instance
    • clientSecret

      public EndpointOAuthGoogle.Builder clientSecret(Optional<String> clientSecret)
      the OAuth app client secret. retrieve if from the identity provider's dashboard where you created your own OAuth app. optional, see all of the caveats in the docs for client_id.
      Parameters:
      clientSecret - the value of the client_secret parameter as a String, wrapped in an Optional
      Returns:
      this builder instance
    • scopes

      public EndpointOAuthGoogle.Builder scopes(List<String> scopes)
      a list of provider-specific OAuth scopes with the permissions your OAuth app would like to ask for. these may not be set if you are using the ngrok-managed oauth app (i.e. you must pass both client_id and client_secret to set scopes)
      Parameters:
      scopes - the value of the scopes parameter as a List of String
      Returns:
      this builder instance
    • scopes

      public EndpointOAuthGoogle.Builder scopes(Optional<List<String>> scopes)
      a list of provider-specific OAuth scopes with the permissions your OAuth app would like to ask for. these may not be set if you are using the ngrok-managed oauth app (i.e. you must pass both client_id and client_secret to set scopes)
      Parameters:
      scopes - the value of the scopes parameter as a List of String, wrapped in an Optional
      Returns:
      this builder instance
    • emailAddresses

      public EndpointOAuthGoogle.Builder emailAddresses(List<String> emailAddresses)
      a list of email addresses of users authenticated by identity provider who are allowed access to the endpoint
      Parameters:
      emailAddresses - the value of the email_addresses parameter as a List of String
      Returns:
      this builder instance
    • emailAddresses

      public EndpointOAuthGoogle.Builder emailAddresses(Optional<List<String>> emailAddresses)
      a list of email addresses of users authenticated by identity provider who are allowed access to the endpoint
      Parameters:
      emailAddresses - the value of the email_addresses parameter as a List of String, wrapped in an Optional
      Returns:
      this builder instance
    • emailDomains

      public EndpointOAuthGoogle.Builder emailDomains(List<String> emailDomains)
      a list of email domains of users authenticated by identity provider who are allowed access to the endpoint
      Parameters:
      emailDomains - the value of the email_domains parameter as a List of String
      Returns:
      this builder instance
    • emailDomains

      public EndpointOAuthGoogle.Builder emailDomains(Optional<List<String>> emailDomains)
      a list of email domains of users authenticated by identity provider who are allowed access to the endpoint
      Parameters:
      emailDomains - the value of the email_domains parameter as a List of String, wrapped in an Optional
      Returns:
      this builder instance
    • build

      public EndpointOAuthGoogle build()
      Constructs the EndpointOAuthGoogle instance.
      Returns:
      a new EndpointOAuthGoogle