Class AzureActiveDirectory
java.lang.Object
com.azure.resourcemanager.appservice.models.AzureActiveDirectory
- All Implemented Interfaces:
com.azure.json.JsonSerializable<AzureActiveDirectory>
public final class AzureActiveDirectory
extends Object
implements com.azure.json.JsonSerializable<AzureActiveDirectory>
The configuration settings of the Azure Active directory provider.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionenabled()
Get the enabled property: <code>false</code> if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, <code>true</code>.static AzureActiveDirectory
fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of AzureActiveDirectory from the JsonReader.Get the isAutoProvisioned property: Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling.login()
Get the login property: The configuration settings of the Azure Active Directory login flow.Get the registration property: The configuration settings of the Azure Active Directory app registration.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) void
validate()
Validates the instance.Get the validation property: The configuration settings of the Azure Active Directory token validation flow.withEnabled
(Boolean enabled) Set the enabled property: <code>false</code> if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, <code>true</code>.withIsAutoProvisioned
(Boolean isAutoProvisioned) Set the isAutoProvisioned property: Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling.Set the login property: The configuration settings of the Azure Active Directory login flow.withRegistration
(AzureActiveDirectoryRegistration registration) Set the registration property: The configuration settings of the Azure Active Directory app registration.withValidation
(AzureActiveDirectoryValidation validation) Set the validation property: The configuration settings of the Azure Active Directory token validation flow.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
-
AzureActiveDirectory
public AzureActiveDirectory()Creates an instance of AzureActiveDirectory class.
-
-
Method Details
-
enabled
Get the enabled property: <code>false</code> if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, <code>true</code>.- Returns:
- the enabled value.
-
withEnabled
Set the enabled property: <code>false</code> if the Azure Active Directory provider should not be enabled despite the set registration; otherwise, <code>true</code>.- Parameters:
enabled
- the enabled value to set.- Returns:
- the AzureActiveDirectory object itself.
-
registration
Get the registration property: The configuration settings of the Azure Active Directory app registration.- Returns:
- the registration value.
-
withRegistration
Set the registration property: The configuration settings of the Azure Active Directory app registration.- Parameters:
registration
- the registration value to set.- Returns:
- the AzureActiveDirectory object itself.
-
login
Get the login property: The configuration settings of the Azure Active Directory login flow.- Returns:
- the login value.
-
withLogin
Set the login property: The configuration settings of the Azure Active Directory login flow.- Parameters:
login
- the login value to set.- Returns:
- the AzureActiveDirectory object itself.
-
validation
Get the validation property: The configuration settings of the Azure Active Directory token validation flow.- Returns:
- the validation value.
-
withValidation
Set the validation property: The configuration settings of the Azure Active Directory token validation flow.- Parameters:
validation
- the validation value to set.- Returns:
- the AzureActiveDirectory object itself.
-
isAutoProvisioned
Get the isAutoProvisioned property: Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling. This is an internal flag primarily intended to support the Azure Management Portal. Users should not read or write to this property.- Returns:
- the isAutoProvisioned value.
-
withIsAutoProvisioned
Set the isAutoProvisioned property: Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling. This is an internal flag primarily intended to support the Azure Management Portal. Users should not read or write to this property.- Parameters:
isAutoProvisioned
- the isAutoProvisioned value to set.- Returns:
- the AzureActiveDirectory 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<AzureActiveDirectory>
- Throws:
IOException
-
fromJson
public static AzureActiveDirectory fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of AzureActiveDirectory from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of AzureActiveDirectory 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 AzureActiveDirectory.
-