Class SiteAuthSettingsInner

java.lang.Object
com.azure.core.management.ProxyResource
com.azure.resourcemanager.appservice.models.ProxyOnlyResource
com.azure.resourcemanager.appservice.fluent.models.SiteAuthSettingsInner

public final class SiteAuthSettingsInner extends ProxyOnlyResource
Configuration settings for the Azure App Service Authentication / Authorization feature.
  • Constructor Details

    • SiteAuthSettingsInner

      public SiteAuthSettingsInner()
  • Method Details

    • withKind

      public SiteAuthSettingsInner withKind(String kind)
      Set the kind property: Kind of resource.
      Overrides:
      withKind in class ProxyOnlyResource
      Parameters:
      kind - the kind value to set.
      Returns:
      the ProxyOnlyResource object itself.
    • enabled

      public Boolean enabled()
      Get the enabled property: <code>true</code> if the Authentication / Authorization feature is enabled for the current app; otherwise, <code>false</code>.
      Returns:
      the enabled value.
    • withEnabled

      public SiteAuthSettingsInner withEnabled(Boolean enabled)
      Set the enabled property: <code>true</code> if the Authentication / Authorization feature is enabled for the current app; otherwise, <code>false</code>.
      Parameters:
      enabled - the enabled value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • runtimeVersion

      public String runtimeVersion()
      Get the runtimeVersion property: The RuntimeVersion of the Authentication / Authorization feature in use for the current app. The setting in this value can control the behavior of certain features in the Authentication / Authorization module.
      Returns:
      the runtimeVersion value.
    • withRuntimeVersion

      public SiteAuthSettingsInner withRuntimeVersion(String runtimeVersion)
      Set the runtimeVersion property: The RuntimeVersion of the Authentication / Authorization feature in use for the current app. The setting in this value can control the behavior of certain features in the Authentication / Authorization module.
      Parameters:
      runtimeVersion - the runtimeVersion value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • unauthenticatedClientAction

      public UnauthenticatedClientAction unauthenticatedClientAction()
      Get the unauthenticatedClientAction property: The action to take when an unauthenticated client attempts to access the app.
      Returns:
      the unauthenticatedClientAction value.
    • withUnauthenticatedClientAction

      public SiteAuthSettingsInner withUnauthenticatedClientAction(UnauthenticatedClientAction unauthenticatedClientAction)
      Set the unauthenticatedClientAction property: The action to take when an unauthenticated client attempts to access the app.
      Parameters:
      unauthenticatedClientAction - the unauthenticatedClientAction value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • tokenStoreEnabled

      public Boolean tokenStoreEnabled()
      Get the tokenStoreEnabled property: <code>true</code> to durably store platform-specific security tokens that are obtained during login flows; otherwise, <code>false</code>. The default is <code>false</code>.
      Returns:
      the tokenStoreEnabled value.
    • withTokenStoreEnabled

      public SiteAuthSettingsInner withTokenStoreEnabled(Boolean tokenStoreEnabled)
      Set the tokenStoreEnabled property: <code>true</code> to durably store platform-specific security tokens that are obtained during login flows; otherwise, <code>false</code>. The default is <code>false</code>.
      Parameters:
      tokenStoreEnabled - the tokenStoreEnabled value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • allowedExternalRedirectUrls

      public List<String> allowedExternalRedirectUrls()
      Get the allowedExternalRedirectUrls property: External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored. This is an advanced setting typically only needed by Windows Store application backends. Note that URLs within the current domain are always implicitly allowed.
      Returns:
      the allowedExternalRedirectUrls value.
    • withAllowedExternalRedirectUrls

      public SiteAuthSettingsInner withAllowedExternalRedirectUrls(List<String> allowedExternalRedirectUrls)
      Set the allowedExternalRedirectUrls property: External URLs that can be redirected to as part of logging in or logging out of the app. Note that the query string part of the URL is ignored. This is an advanced setting typically only needed by Windows Store application backends. Note that URLs within the current domain are always implicitly allowed.
      Parameters:
      allowedExternalRedirectUrls - the allowedExternalRedirectUrls value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • defaultProvider

      public BuiltInAuthenticationProvider defaultProvider()
      Get the defaultProvider property: The default authentication provider to use when multiple providers are configured. This setting is only needed if multiple providers are configured and the unauthenticated client action is set to "RedirectToLoginPage".
      Returns:
      the defaultProvider value.
    • withDefaultProvider

      public SiteAuthSettingsInner withDefaultProvider(BuiltInAuthenticationProvider defaultProvider)
      Set the defaultProvider property: The default authentication provider to use when multiple providers are configured. This setting is only needed if multiple providers are configured and the unauthenticated client action is set to "RedirectToLoginPage".
      Parameters:
      defaultProvider - the defaultProvider value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • tokenRefreshExtensionHours

      public Double tokenRefreshExtensionHours()
      Get the tokenRefreshExtensionHours property: The number of hours after session token expiration that a session token can be used to call the token refresh API. The default is 72 hours.
      Returns:
      the tokenRefreshExtensionHours value.
    • withTokenRefreshExtensionHours

      public SiteAuthSettingsInner withTokenRefreshExtensionHours(Double tokenRefreshExtensionHours)
      Set the tokenRefreshExtensionHours property: The number of hours after session token expiration that a session token can be used to call the token refresh API. The default is 72 hours.
      Parameters:
      tokenRefreshExtensionHours - the tokenRefreshExtensionHours value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • clientId

      public String clientId()
      Get the clientId property: The Client ID of this relying party application, known as the client_id. This setting is required for enabling OpenID Connection authentication with Azure Active Directory or other 3rd party OpenID Connect providers. More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html.
      Returns:
      the clientId value.
    • withClientId

      public SiteAuthSettingsInner withClientId(String clientId)
      Set the clientId property: The Client ID of this relying party application, known as the client_id. This setting is required for enabling OpenID Connection authentication with Azure Active Directory or other 3rd party OpenID Connect providers. More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html.
      Parameters:
      clientId - the clientId value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • clientSecret

      public String clientSecret()
      Get the clientSecret property: The Client Secret of this relying party application (in Azure Active Directory, this is also referred to as the Key). This setting is optional. If no client secret is configured, the OpenID Connect implicit auth flow is used to authenticate end users. Otherwise, the OpenID Connect Authorization Code Flow is used to authenticate end users. More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html.
      Returns:
      the clientSecret value.
    • withClientSecret

      public SiteAuthSettingsInner withClientSecret(String clientSecret)
      Set the clientSecret property: The Client Secret of this relying party application (in Azure Active Directory, this is also referred to as the Key). This setting is optional. If no client secret is configured, the OpenID Connect implicit auth flow is used to authenticate end users. Otherwise, the OpenID Connect Authorization Code Flow is used to authenticate end users. More information on OpenID Connect: http://openid.net/specs/openid-connect-core-1_0.html.
      Parameters:
      clientSecret - the clientSecret value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • clientSecretSettingName

      public String clientSecretSettingName()
      Get the clientSecretSettingName property: The app setting name that contains the client secret of the relying party application.
      Returns:
      the clientSecretSettingName value.
    • withClientSecretSettingName

      public SiteAuthSettingsInner withClientSecretSettingName(String clientSecretSettingName)
      Set the clientSecretSettingName property: The app setting name that contains the client secret of the relying party application.
      Parameters:
      clientSecretSettingName - the clientSecretSettingName value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • clientSecretCertificateThumbprint

      public String clientSecretCertificateThumbprint()
      Get the clientSecretCertificateThumbprint property: An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as a replacement for the Client Secret. It is also optional.
      Returns:
      the clientSecretCertificateThumbprint value.
    • withClientSecretCertificateThumbprint

      public SiteAuthSettingsInner withClientSecretCertificateThumbprint(String clientSecretCertificateThumbprint)
      Set the clientSecretCertificateThumbprint property: An alternative to the client secret, that is the thumbprint of a certificate used for signing purposes. This property acts as a replacement for the Client Secret. It is also optional.
      Parameters:
      clientSecretCertificateThumbprint - the clientSecretCertificateThumbprint value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • issuer

      public String issuer()
      Get the issuer property: The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application. When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://sts.windows.net/{tenant-guid}/. This URI is a case-sensitive identifier for the token issuer. More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html.
      Returns:
      the issuer value.
    • withIssuer

      public SiteAuthSettingsInner withIssuer(String issuer)
      Set the issuer property: The OpenID Connect Issuer URI that represents the entity which issues access tokens for this application. When using Azure Active Directory, this value is the URI of the directory tenant, e.g. https://sts.windows.net/{tenant-guid}/. This URI is a case-sensitive identifier for the token issuer. More information on OpenID Connect Discovery: http://openid.net/specs/openid-connect-discovery-1_0.html.
      Parameters:
      issuer - the issuer value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • validateIssuer

      public Boolean validateIssuer()
      Get the validateIssuer property: Gets a value indicating whether the issuer should be a valid HTTPS url and be validated as such.
      Returns:
      the validateIssuer value.
    • withValidateIssuer

      public SiteAuthSettingsInner withValidateIssuer(Boolean validateIssuer)
      Set the validateIssuer property: Gets a value indicating whether the issuer should be a valid HTTPS url and be validated as such.
      Parameters:
      validateIssuer - the validateIssuer value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • allowedAudiences

      public List<String> allowedAudiences()
      Get the allowedAudiences property: Allowed audience values to consider when validating JWTs issued by Azure Active Directory. Note that the <code>ClientID</code> value is always considered an allowed audience, regardless of this setting.
      Returns:
      the allowedAudiences value.
    • withAllowedAudiences

      public SiteAuthSettingsInner withAllowedAudiences(List<String> allowedAudiences)
      Set the allowedAudiences property: Allowed audience values to consider when validating JWTs issued by Azure Active Directory. Note that the <code>ClientID</code> value is always considered an allowed audience, regardless of this setting.
      Parameters:
      allowedAudiences - the allowedAudiences value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • additionalLoginParams

      public List<String> additionalLoginParams()
      Get the additionalLoginParams property: Login parameters to send to the OpenID Connect authorization endpoint when a user logs in. Each parameter must be in the form "key=value".
      Returns:
      the additionalLoginParams value.
    • withAdditionalLoginParams

      public SiteAuthSettingsInner withAdditionalLoginParams(List<String> additionalLoginParams)
      Set the additionalLoginParams property: Login parameters to send to the OpenID Connect authorization endpoint when a user logs in. Each parameter must be in the form "key=value".
      Parameters:
      additionalLoginParams - the additionalLoginParams value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • aadClaimsAuthorization

      public String aadClaimsAuthorization()
      Get the aadClaimsAuthorization property: Gets a JSON string containing the Azure AD Acl settings.
      Returns:
      the aadClaimsAuthorization value.
    • withAadClaimsAuthorization

      public SiteAuthSettingsInner withAadClaimsAuthorization(String aadClaimsAuthorization)
      Set the aadClaimsAuthorization property: Gets a JSON string containing the Azure AD Acl settings.
      Parameters:
      aadClaimsAuthorization - the aadClaimsAuthorization value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • googleClientId

      public String googleClientId()
      Get the googleClientId property: The OpenID Connect Client ID for the Google web application. This setting is required for enabling Google Sign-In. Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/.
      Returns:
      the googleClientId value.
    • withGoogleClientId

      public SiteAuthSettingsInner withGoogleClientId(String googleClientId)
      Set the googleClientId property: The OpenID Connect Client ID for the Google web application. This setting is required for enabling Google Sign-In. Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/.
      Parameters:
      googleClientId - the googleClientId value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • googleClientSecret

      public String googleClientSecret()
      Get the googleClientSecret property: The client secret associated with the Google web application. This setting is required for enabling Google Sign-In. Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/.
      Returns:
      the googleClientSecret value.
    • withGoogleClientSecret

      public SiteAuthSettingsInner withGoogleClientSecret(String googleClientSecret)
      Set the googleClientSecret property: The client secret associated with the Google web application. This setting is required for enabling Google Sign-In. Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/.
      Parameters:
      googleClientSecret - the googleClientSecret value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • googleClientSecretSettingName

      public String googleClientSecretSettingName()
      Get the googleClientSecretSettingName property: The app setting name that contains the client secret associated with the Google web application.
      Returns:
      the googleClientSecretSettingName value.
    • withGoogleClientSecretSettingName

      public SiteAuthSettingsInner withGoogleClientSecretSettingName(String googleClientSecretSettingName)
      Set the googleClientSecretSettingName property: The app setting name that contains the client secret associated with the Google web application.
      Parameters:
      googleClientSecretSettingName - the googleClientSecretSettingName value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • googleOAuthScopes

      public List<String> googleOAuthScopes()
      Get the googleOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of Google Sign-In authentication. This setting is optional. If not specified, "openid", "profile", and "email" are used as default scopes. Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/.
      Returns:
      the googleOAuthScopes value.
    • withGoogleOAuthScopes

      public SiteAuthSettingsInner withGoogleOAuthScopes(List<String> googleOAuthScopes)
      Set the googleOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of Google Sign-In authentication. This setting is optional. If not specified, "openid", "profile", and "email" are used as default scopes. Google Sign-In documentation: https://developers.google.com/identity/sign-in/web/.
      Parameters:
      googleOAuthScopes - the googleOAuthScopes value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • facebookAppId

      public String facebookAppId()
      Get the facebookAppId property: The App ID of the Facebook app used for login. This setting is required for enabling Facebook Login. Facebook Login documentation: https://developers.facebook.com/docs/facebook-login.
      Returns:
      the facebookAppId value.
    • withFacebookAppId

      public SiteAuthSettingsInner withFacebookAppId(String facebookAppId)
      Set the facebookAppId property: The App ID of the Facebook app used for login. This setting is required for enabling Facebook Login. Facebook Login documentation: https://developers.facebook.com/docs/facebook-login.
      Parameters:
      facebookAppId - the facebookAppId value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • facebookAppSecret

      public String facebookAppSecret()
      Get the facebookAppSecret property: The App Secret of the Facebook app used for Facebook Login. This setting is required for enabling Facebook Login. Facebook Login documentation: https://developers.facebook.com/docs/facebook-login.
      Returns:
      the facebookAppSecret value.
    • withFacebookAppSecret

      public SiteAuthSettingsInner withFacebookAppSecret(String facebookAppSecret)
      Set the facebookAppSecret property: The App Secret of the Facebook app used for Facebook Login. This setting is required for enabling Facebook Login. Facebook Login documentation: https://developers.facebook.com/docs/facebook-login.
      Parameters:
      facebookAppSecret - the facebookAppSecret value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • facebookAppSecretSettingName

      public String facebookAppSecretSettingName()
      Get the facebookAppSecretSettingName property: The app setting name that contains the app secret used for Facebook Login.
      Returns:
      the facebookAppSecretSettingName value.
    • withFacebookAppSecretSettingName

      public SiteAuthSettingsInner withFacebookAppSecretSettingName(String facebookAppSecretSettingName)
      Set the facebookAppSecretSettingName property: The app setting name that contains the app secret used for Facebook Login.
      Parameters:
      facebookAppSecretSettingName - the facebookAppSecretSettingName value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • facebookOAuthScopes

      public List<String> facebookOAuthScopes()
      Get the facebookOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of Facebook Login authentication. This setting is optional. Facebook Login documentation: https://developers.facebook.com/docs/facebook-login.
      Returns:
      the facebookOAuthScopes value.
    • withFacebookOAuthScopes

      public SiteAuthSettingsInner withFacebookOAuthScopes(List<String> facebookOAuthScopes)
      Set the facebookOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of Facebook Login authentication. This setting is optional. Facebook Login documentation: https://developers.facebook.com/docs/facebook-login.
      Parameters:
      facebookOAuthScopes - the facebookOAuthScopes value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • gitHubClientId

      public String gitHubClientId()
      Get the gitHubClientId property: The Client Id of the GitHub app used for login. This setting is required for enabling Github login.
      Returns:
      the gitHubClientId value.
    • withGitHubClientId

      public SiteAuthSettingsInner withGitHubClientId(String gitHubClientId)
      Set the gitHubClientId property: The Client Id of the GitHub app used for login. This setting is required for enabling Github login.
      Parameters:
      gitHubClientId - the gitHubClientId value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • gitHubClientSecret

      public String gitHubClientSecret()
      Get the gitHubClientSecret property: The Client Secret of the GitHub app used for Github Login. This setting is required for enabling Github login.
      Returns:
      the gitHubClientSecret value.
    • withGitHubClientSecret

      public SiteAuthSettingsInner withGitHubClientSecret(String gitHubClientSecret)
      Set the gitHubClientSecret property: The Client Secret of the GitHub app used for Github Login. This setting is required for enabling Github login.
      Parameters:
      gitHubClientSecret - the gitHubClientSecret value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • gitHubClientSecretSettingName

      public String gitHubClientSecretSettingName()
      Get the gitHubClientSecretSettingName property: The app setting name that contains the client secret of the Github app used for GitHub Login.
      Returns:
      the gitHubClientSecretSettingName value.
    • withGitHubClientSecretSettingName

      public SiteAuthSettingsInner withGitHubClientSecretSettingName(String gitHubClientSecretSettingName)
      Set the gitHubClientSecretSettingName property: The app setting name that contains the client secret of the Github app used for GitHub Login.
      Parameters:
      gitHubClientSecretSettingName - the gitHubClientSecretSettingName value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • gitHubOAuthScopes

      public List<String> gitHubOAuthScopes()
      Get the gitHubOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of GitHub Login authentication. This setting is optional.
      Returns:
      the gitHubOAuthScopes value.
    • withGitHubOAuthScopes

      public SiteAuthSettingsInner withGitHubOAuthScopes(List<String> gitHubOAuthScopes)
      Set the gitHubOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of GitHub Login authentication. This setting is optional.
      Parameters:
      gitHubOAuthScopes - the gitHubOAuthScopes value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • twitterConsumerKey

      public String twitterConsumerKey()
      Get the twitterConsumerKey property: The OAuth 1.0a consumer key of the Twitter application used for sign-in. This setting is required for enabling Twitter Sign-In. Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in.
      Returns:
      the twitterConsumerKey value.
    • withTwitterConsumerKey

      public SiteAuthSettingsInner withTwitterConsumerKey(String twitterConsumerKey)
      Set the twitterConsumerKey property: The OAuth 1.0a consumer key of the Twitter application used for sign-in. This setting is required for enabling Twitter Sign-In. Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in.
      Parameters:
      twitterConsumerKey - the twitterConsumerKey value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • twitterConsumerSecret

      public String twitterConsumerSecret()
      Get the twitterConsumerSecret property: The OAuth 1.0a consumer secret of the Twitter application used for sign-in. This setting is required for enabling Twitter Sign-In. Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in.
      Returns:
      the twitterConsumerSecret value.
    • withTwitterConsumerSecret

      public SiteAuthSettingsInner withTwitterConsumerSecret(String twitterConsumerSecret)
      Set the twitterConsumerSecret property: The OAuth 1.0a consumer secret of the Twitter application used for sign-in. This setting is required for enabling Twitter Sign-In. Twitter Sign-In documentation: https://dev.twitter.com/web/sign-in.
      Parameters:
      twitterConsumerSecret - the twitterConsumerSecret value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • twitterConsumerSecretSettingName

      public String twitterConsumerSecretSettingName()
      Get the twitterConsumerSecretSettingName property: The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
      Returns:
      the twitterConsumerSecretSettingName value.
    • withTwitterConsumerSecretSettingName

      public SiteAuthSettingsInner withTwitterConsumerSecretSettingName(String twitterConsumerSecretSettingName)
      Set the twitterConsumerSecretSettingName property: The app setting name that contains the OAuth 1.0a consumer secret of the Twitter application used for sign-in.
      Parameters:
      twitterConsumerSecretSettingName - the twitterConsumerSecretSettingName value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • microsoftAccountClientId

      public String microsoftAccountClientId()
      Get the microsoftAccountClientId property: The OAuth 2.0 client ID that was created for the app used for authentication. This setting is required for enabling Microsoft Account authentication. Microsoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm.
      Returns:
      the microsoftAccountClientId value.
    • withMicrosoftAccountClientId

      public SiteAuthSettingsInner withMicrosoftAccountClientId(String microsoftAccountClientId)
      Set the microsoftAccountClientId property: The OAuth 2.0 client ID that was created for the app used for authentication. This setting is required for enabling Microsoft Account authentication. Microsoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm.
      Parameters:
      microsoftAccountClientId - the microsoftAccountClientId value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • microsoftAccountClientSecret

      public String microsoftAccountClientSecret()
      Get the microsoftAccountClientSecret property: The OAuth 2.0 client secret that was created for the app used for authentication. This setting is required for enabling Microsoft Account authentication. Microsoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm.
      Returns:
      the microsoftAccountClientSecret value.
    • withMicrosoftAccountClientSecret

      public SiteAuthSettingsInner withMicrosoftAccountClientSecret(String microsoftAccountClientSecret)
      Set the microsoftAccountClientSecret property: The OAuth 2.0 client secret that was created for the app used for authentication. This setting is required for enabling Microsoft Account authentication. Microsoft Account OAuth documentation: https://dev.onedrive.com/auth/msa_oauth.htm.
      Parameters:
      microsoftAccountClientSecret - the microsoftAccountClientSecret value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • microsoftAccountClientSecretSettingName

      public String microsoftAccountClientSecretSettingName()
      Get the microsoftAccountClientSecretSettingName property: The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
      Returns:
      the microsoftAccountClientSecretSettingName value.
    • withMicrosoftAccountClientSecretSettingName

      public SiteAuthSettingsInner withMicrosoftAccountClientSecretSettingName(String microsoftAccountClientSecretSettingName)
      Set the microsoftAccountClientSecretSettingName property: The app setting name containing the OAuth 2.0 client secret that was created for the app used for authentication.
      Parameters:
      microsoftAccountClientSecretSettingName - the microsoftAccountClientSecretSettingName value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • microsoftAccountOAuthScopes

      public List<String> microsoftAccountOAuthScopes()
      Get the microsoftAccountOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication. This setting is optional. If not specified, "wl.basic" is used as the default scope. Microsoft Account Scopes and permissions documentation: https://msdn.microsoft.com/en-us/library/dn631845.aspx.
      Returns:
      the microsoftAccountOAuthScopes value.
    • withMicrosoftAccountOAuthScopes

      public SiteAuthSettingsInner withMicrosoftAccountOAuthScopes(List<String> microsoftAccountOAuthScopes)
      Set the microsoftAccountOAuthScopes property: The OAuth 2.0 scopes that will be requested as part of Microsoft Account authentication. This setting is optional. If not specified, "wl.basic" is used as the default scope. Microsoft Account Scopes and permissions documentation: https://msdn.microsoft.com/en-us/library/dn631845.aspx.
      Parameters:
      microsoftAccountOAuthScopes - the microsoftAccountOAuthScopes value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • isAuthFromFile

      public String isAuthFromFile()
      Get the isAuthFromFile property: "true" if the auth config settings should be read from a file, "false" otherwise.
      Returns:
      the isAuthFromFile value.
    • withIsAuthFromFile

      public SiteAuthSettingsInner withIsAuthFromFile(String isAuthFromFile)
      Set the isAuthFromFile property: "true" if the auth config settings should be read from a file, "false" otherwise.
      Parameters:
      isAuthFromFile - the isAuthFromFile value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • authFilePath

      public String authFilePath()
      Get the authFilePath property: The path of the config file containing auth settings. If the path is relative, base will the site's root directory.
      Returns:
      the authFilePath value.
    • withAuthFilePath

      public SiteAuthSettingsInner withAuthFilePath(String authFilePath)
      Set the authFilePath property: The path of the config file containing auth settings. If the path is relative, base will the site's root directory.
      Parameters:
      authFilePath - the authFilePath value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • configVersion

      public String configVersion()
      Get the configVersion property: The ConfigVersion of the Authentication / Authorization feature in use for the current app. The setting in this value can control the behavior of the control plane for Authentication / Authorization.
      Returns:
      the configVersion value.
    • withConfigVersion

      public SiteAuthSettingsInner withConfigVersion(String configVersion)
      Set the configVersion property: The ConfigVersion of the Authentication / Authorization feature in use for the current app. The setting in this value can control the behavior of the control plane for Authentication / Authorization.
      Parameters:
      configVersion - the configVersion value to set.
      Returns:
      the SiteAuthSettingsInner object itself.
    • validate

      public void validate()
      Validates the instance.
      Overrides:
      validate in class ProxyOnlyResource
      Throws:
      IllegalArgumentException - thrown if the instance is not valid.