Class SourceControlProperties
java.lang.Object
com.azure.resourcemanager.appservice.fluent.models.SourceControlProperties
- All Implemented Interfaces:
com.azure.json.JsonSerializable<SourceControlProperties>
public final class SourceControlProperties
extends Object
implements com.azure.json.JsonSerializable<SourceControlProperties>
SourceControl resource specific properties.
-
Constructor Summary
ConstructorsConstructorDescriptionCreates an instance of SourceControlProperties class. -
Method Summary
Modifier and TypeMethodDescriptionGet the expirationTime property: OAuth token expiration.static SourceControlProperties
fromJson
(com.azure.json.JsonReader jsonReader) Reads an instance of SourceControlProperties from the JsonReader.Get the refreshToken property: OAuth refresh token.com.azure.json.JsonWriter
toJson
(com.azure.json.JsonWriter jsonWriter) token()
Get the token property: OAuth access token.Get the tokenSecret property: OAuth access token secret.void
validate()
Validates the instance.withExpirationTime
(OffsetDateTime expirationTime) Set the expirationTime property: OAuth token expiration.withRefreshToken
(String refreshToken) Set the refreshToken property: OAuth refresh token.Set the token property: OAuth access token.withTokenSecret
(String tokenSecret) Set the tokenSecret property: OAuth access token secret.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
-
SourceControlProperties
public SourceControlProperties()Creates an instance of SourceControlProperties class.
-
-
Method Details
-
token
Get the token property: OAuth access token.- Returns:
- the token value.
-
withToken
Set the token property: OAuth access token.- Parameters:
token
- the token value to set.- Returns:
- the SourceControlProperties object itself.
-
tokenSecret
Get the tokenSecret property: OAuth access token secret.- Returns:
- the tokenSecret value.
-
withTokenSecret
Set the tokenSecret property: OAuth access token secret.- Parameters:
tokenSecret
- the tokenSecret value to set.- Returns:
- the SourceControlProperties object itself.
-
refreshToken
Get the refreshToken property: OAuth refresh token.- Returns:
- the refreshToken value.
-
withRefreshToken
Set the refreshToken property: OAuth refresh token.- Parameters:
refreshToken
- the refreshToken value to set.- Returns:
- the SourceControlProperties object itself.
-
expirationTime
Get the expirationTime property: OAuth token expiration.- Returns:
- the expirationTime value.
-
withExpirationTime
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.
-
toJson
- Specified by:
toJson
in interfacecom.azure.json.JsonSerializable<SourceControlProperties>
- Throws:
IOException
-
fromJson
public static SourceControlProperties fromJson(com.azure.json.JsonReader jsonReader) throws IOException Reads an instance of SourceControlProperties from the JsonReader.- Parameters:
jsonReader
- The JsonReader being read.- Returns:
- An instance of SourceControlProperties 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 SourceControlProperties.
-