Class AzureCredentials
- java.lang.Object
-
- com.azure.resourcemanager.appcontainers.models.AzureCredentials
-
public final class AzureCredentials extends Object
Container App credentials.
-
-
Constructor Summary
Constructors Constructor Description AzureCredentials()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
clientId()
Get the clientId property: Client Id.String
clientSecret()
Get the clientSecret property: Client Secret.String
subscriptionId()
Get the subscriptionId property: Subscription Id.String
tenantId()
Get the tenantId property: Tenant Id.void
validate()
Validates the instance.AzureCredentials
withClientId(String clientId)
Set the clientId property: Client Id.AzureCredentials
withClientSecret(String clientSecret)
Set the clientSecret property: Client Secret.AzureCredentials
withSubscriptionId(String subscriptionId)
Set the subscriptionId property: Subscription Id.AzureCredentials
withTenantId(String tenantId)
Set the tenantId property: Tenant Id.
-
-
-
Method Detail
-
clientId
public String clientId()
Get the clientId property: Client Id.- Returns:
- the clientId value.
-
withClientId
public AzureCredentials withClientId(String clientId)
Set the clientId property: Client Id.- Parameters:
clientId
- the clientId value to set.- Returns:
- the AzureCredentials object itself.
-
clientSecret
public String clientSecret()
Get the clientSecret property: Client Secret.- Returns:
- the clientSecret value.
-
withClientSecret
public AzureCredentials withClientSecret(String clientSecret)
Set the clientSecret property: Client Secret.- Parameters:
clientSecret
- the clientSecret value to set.- Returns:
- the AzureCredentials object itself.
-
tenantId
public String tenantId()
Get the tenantId property: Tenant Id.- Returns:
- the tenantId value.
-
withTenantId
public AzureCredentials withTenantId(String tenantId)
Set the tenantId property: Tenant Id.- Parameters:
tenantId
- the tenantId value to set.- Returns:
- the AzureCredentials object itself.
-
subscriptionId
public String subscriptionId()
Get the subscriptionId property: Subscription Id.- Returns:
- the subscriptionId value.
-
withSubscriptionId
public AzureCredentials withSubscriptionId(String subscriptionId)
Set the subscriptionId property: Subscription Id.- Parameters:
subscriptionId
- the subscriptionId value to set.- Returns:
- the AzureCredentials object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException
- thrown if the instance is not valid.
-
-