Class SourceControlProperties
- java.lang.Object
-
- com.azure.resourcemanager.appservice.fluent.models.SourceControlProperties
-
public final class SourceControlProperties extends Object
SourceControl resource specific properties.
-
-
Constructor Summary
Constructors Constructor Description SourceControlProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OffsetDateTimeexpirationTime()Get the expirationTime property: OAuth token expiration.StringrefreshToken()Get the refreshToken property: OAuth refresh token.Stringtoken()Get the token property: OAuth access token.StringtokenSecret()Get the tokenSecret property: OAuth access token secret.voidvalidate()Validates the instance.SourceControlPropertieswithExpirationTime(OffsetDateTime expirationTime)Set the expirationTime property: OAuth token expiration.SourceControlPropertieswithRefreshToken(String refreshToken)Set the refreshToken property: OAuth refresh token.SourceControlPropertieswithToken(String token)Set the token property: OAuth access token.SourceControlPropertieswithTokenSecret(String tokenSecret)Set the tokenSecret property: OAuth access token secret.
-
-
-
Method Detail
-
token
public String token()
Get the token property: OAuth access token.- Returns:
- the token value.
-
withToken
public SourceControlProperties withToken(String token)
Set the token property: OAuth access token.- Parameters:
token- the token value to set.- Returns:
- the SourceControlProperties object itself.
-
tokenSecret
public String tokenSecret()
Get the tokenSecret property: OAuth access token secret.- Returns:
- the tokenSecret value.
-
withTokenSecret
public SourceControlProperties withTokenSecret(String tokenSecret)
Set the tokenSecret property: OAuth access token secret.- Parameters:
tokenSecret- the tokenSecret value to set.- Returns:
- the SourceControlProperties object itself.
-
refreshToken
public String refreshToken()
Get the refreshToken property: OAuth refresh token.- Returns:
- the refreshToken value.
-
withRefreshToken
public SourceControlProperties withRefreshToken(String refreshToken)
Set the refreshToken property: OAuth refresh token.- Parameters:
refreshToken- the refreshToken value to set.- Returns:
- the SourceControlProperties object itself.
-
expirationTime
public OffsetDateTime expirationTime()
Get the expirationTime property: OAuth token expiration.- Returns:
- the expirationTime value.
-
withExpirationTime
public SourceControlProperties withExpirationTime(OffsetDateTime expirationTime)
Set the expirationTime property: OAuth token expiration.- Parameters:
expirationTime- the expirationTime value to set.- Returns:
- the SourceControlProperties object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-