Class GitHub
- java.lang.Object
-
- com.azure.resourcemanager.appcontainers.models.GitHub
-
public final class GitHub extends Object
The configuration settings of the GitHub provider.
-
-
Constructor Summary
Constructors Constructor Description GitHub()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
enabled()
Get the enabled property: <code>false</code> if the GitHub provider should not be enabled despite the set registration; otherwise, <code>true</code>.LoginScopes
login()
Get the login property: The configuration settings of the login flow.ClientRegistration
registration()
Get the registration property: The configuration settings of the app registration for the GitHub provider.void
validate()
Validates the instance.GitHub
withEnabled(Boolean enabled)
Set the enabled property: <code>false</code> if the GitHub provider should not be enabled despite the set registration; otherwise, <code>true</code>.GitHub
withLogin(LoginScopes login)
Set the login property: The configuration settings of the login flow.GitHub
withRegistration(ClientRegistration registration)
Set the registration property: The configuration settings of the app registration for the GitHub provider.
-
-
-
Method Detail
-
enabled
public Boolean enabled()
Get the enabled property: <code>false</code> if the GitHub provider should not be enabled despite the set registration; otherwise, <code>true</code>.- Returns:
- the enabled value.
-
withEnabled
public GitHub withEnabled(Boolean enabled)
Set the enabled property: <code>false</code> if the GitHub provider should not be enabled despite the set registration; otherwise, <code>true</code>.- Parameters:
enabled
- the enabled value to set.- Returns:
- the GitHub object itself.
-
registration
public ClientRegistration registration()
Get the registration property: The configuration settings of the app registration for the GitHub provider.- Returns:
- the registration value.
-
withRegistration
public GitHub withRegistration(ClientRegistration registration)
Set the registration property: The configuration settings of the app registration for the GitHub provider.- Parameters:
registration
- the registration value to set.- Returns:
- the GitHub object itself.
-
login
public LoginScopes login()
Get the login property: The configuration settings of the login flow.- Returns:
- the login value.
-
withLogin
public GitHub withLogin(LoginScopes login)
Set the login property: The configuration settings of the login flow.- Parameters:
login
- the login value to set.- Returns:
- the GitHub object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-