Class AuthPlatform
java.lang.Object
com.azure.resourcemanager.appservice.models.AuthPlatform
- All Implemented Interfaces:
com.azure.json.JsonSerializable<AuthPlatform>
public final class AuthPlatform
extends Object
implements com.azure.json.JsonSerializable<AuthPlatform>
The configuration settings of the platform of App Service Authentication/Authorization.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGet the configFilePath property: The path of the config file containing auth settings if they come from a file.enabled()
Get the enabled property: <code>true</code> if the Authentication / Authorization feature is enabled for the current app; otherwise, <code>false</code>.static AuthPlatform
fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of AuthPlatform from the JsonReader.Get the runtimeVersion property: The RuntimeVersion of the Authentication / Authorization feature in use for the current app.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) void
validate()
Validates the instance.withConfigFilePath
(String configFilePath) Set the configFilePath property: The path of the config file containing auth settings if they come from a file.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>.withRuntimeVersion
(String runtimeVersion) Set the runtimeVersion property: The RuntimeVersion of the Authentication / Authorization feature in use for the current app.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.azure.json.JsonSerializable
toJson, toJson, toJsonBytes, toJsonString
-
Constructor Details
-
AuthPlatform
public AuthPlatform()Creates an instance of AuthPlatform class.
-
-
Method Details
-
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
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 AuthPlatform object itself.
-
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
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 AuthPlatform object itself.
-
configFilePath
Get the configFilePath property: The path of the config file containing auth settings if they come from a file. If the path is relative, base will the site's root directory.- Returns:
- the configFilePath value.
-
withConfigFilePath
Set the configFilePath property: The path of the config file containing auth settings if they come from a file. If the path is relative, base will the site's root directory.- Parameters:
configFilePath
- the configFilePath value to set.- Returns:
- the AuthPlatform object itself.
-
validate
public void validate()Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
toJson
- Specified by:
toJson
in interfacecom.azure.json.JsonSerializable<AuthPlatform>
- Throws:
IOException
-
fromJson
Reads an instance of AuthPlatform from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of AuthPlatform if the JsonReader was pointing to an instance of it, or null if it was pointing to JSON null.
- Throws:
IOException
- If an error occurs while reading the AuthPlatform.
-