Class AzureActiveDirectory
- java.lang.Object
-
- com.azure.resourcemanager.appcontainers.models.AzureActiveDirectory
-
public final class AzureActiveDirectory extends Object
The configuration settings of the Azure Active directory provider.
-
-
Constructor Summary
Constructors Constructor Description AzureActiveDirectory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
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>.Boolean
isAutoProvisioned()
Get the isAutoProvisioned property: Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling.AzureActiveDirectoryLogin
login()
Get the login property: The configuration settings of the Azure Active Directory login flow.AzureActiveDirectoryRegistration
registration()
Get the registration property: The configuration settings of the Azure Active Directory app registration.void
validate()
Validates the instance.AzureActiveDirectoryValidation
validation()
Get the validation property: The configuration settings of the Azure Active Directory token validation flow.AzureActiveDirectory
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>.AzureActiveDirectory
withIsAutoProvisioned(Boolean isAutoProvisioned)
Set the isAutoProvisioned property: Gets a value indicating whether the Azure AD configuration was auto-provisioned using 1st party tooling.AzureActiveDirectory
withLogin(AzureActiveDirectoryLogin login)
Set the login property: The configuration settings of the Azure Active Directory login flow.AzureActiveDirectory
withRegistration(AzureActiveDirectoryRegistration registration)
Set the registration property: The configuration settings of the Azure Active Directory app registration.AzureActiveDirectory
withValidation(AzureActiveDirectoryValidation validation)
Set the validation property: The configuration settings of the Azure Active Directory token validation flow.
-
-
-
Method Detail
-
enabled
public Boolean 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
public AzureActiveDirectory 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>.- Parameters:
enabled
- the enabled value to set.- Returns:
- the AzureActiveDirectory object itself.
-
registration
public AzureActiveDirectoryRegistration registration()
Get the registration property: The configuration settings of the Azure Active Directory app registration.- Returns:
- the registration value.
-
withRegistration
public AzureActiveDirectory withRegistration(AzureActiveDirectoryRegistration registration)
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
public AzureActiveDirectoryLogin login()
Get the login property: The configuration settings of the Azure Active Directory login flow.- Returns:
- the login value.
-
withLogin
public AzureActiveDirectory withLogin(AzureActiveDirectoryLogin login)
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
public AzureActiveDirectoryValidation validation()
Get the validation property: The configuration settings of the Azure Active Directory token validation flow.- Returns:
- the validation value.
-
withValidation
public AzureActiveDirectory withValidation(AzureActiveDirectoryValidation validation)
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
public Boolean 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
public AzureActiveDirectory withIsAutoProvisioned(Boolean isAutoProvisioned)
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.
-
-