com.azure.resourcemanager.servicelinker.models.UserAccountAuthInfo Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicelinker.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.List;
/**
* The authentication info when authType is user account.
*/
@Fluent
public final class UserAccountAuthInfo extends AuthInfoBase {
/*
* The authentication type.
*/
private AuthType authType = AuthType.USER_ACCOUNT;
/*
* Principal Id for user account.
*/
private String principalId;
/*
* Indicates whether to clean up previous operation when Linker is updating or deleting
*/
private DeleteOrUpdateBehavior deleteOrUpdateBehavior;
/*
* Optional, this value specifies the Azure roles to be assigned. Automatically
*/
private List roles;
/*
* Username created in the database which is mapped to a user in AAD.
*/
private String username;
/**
* Creates an instance of UserAccountAuthInfo class.
*/
public UserAccountAuthInfo() {
}
/**
* Get the authType property: The authentication type.
*
* @return the authType value.
*/
@Override
public AuthType authType() {
return this.authType;
}
/**
* Get the principalId property: Principal Id for user account.
*
* @return the principalId value.
*/
public String principalId() {
return this.principalId;
}
/**
* Set the principalId property: Principal Id for user account.
*
* @param principalId the principalId value to set.
* @return the UserAccountAuthInfo object itself.
*/
public UserAccountAuthInfo withPrincipalId(String principalId) {
this.principalId = principalId;
return this;
}
/**
* Get the deleteOrUpdateBehavior property: Indicates whether to clean up previous operation when Linker is updating
* or deleting.
*
* @return the deleteOrUpdateBehavior value.
*/
public DeleteOrUpdateBehavior deleteOrUpdateBehavior() {
return this.deleteOrUpdateBehavior;
}
/**
* Set the deleteOrUpdateBehavior property: Indicates whether to clean up previous operation when Linker is updating
* or deleting.
*
* @param deleteOrUpdateBehavior the deleteOrUpdateBehavior value to set.
* @return the UserAccountAuthInfo object itself.
*/
public UserAccountAuthInfo withDeleteOrUpdateBehavior(DeleteOrUpdateBehavior deleteOrUpdateBehavior) {
this.deleteOrUpdateBehavior = deleteOrUpdateBehavior;
return this;
}
/**
* Get the roles property: Optional, this value specifies the Azure roles to be assigned. Automatically.
*
* @return the roles value.
*/
public List roles() {
return this.roles;
}
/**
* Set the roles property: Optional, this value specifies the Azure roles to be assigned. Automatically.
*
* @param roles the roles value to set.
* @return the UserAccountAuthInfo object itself.
*/
public UserAccountAuthInfo withRoles(List roles) {
this.roles = roles;
return this;
}
/**
* Get the username property: Username created in the database which is mapped to a user in AAD.
*
* @return the username value.
*/
public String username() {
return this.username;
}
/**
* Set the username property: Username created in the database which is mapped to a user in AAD.
*
* @param username the username value to set.
* @return the UserAccountAuthInfo object itself.
*/
public UserAccountAuthInfo withUsername(String username) {
this.username = username;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public UserAccountAuthInfo withAuthMode(AuthMode authMode) {
super.withAuthMode(authMode);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("authMode", authMode() == null ? null : authMode().toString());
jsonWriter.writeStringField("authType", this.authType == null ? null : this.authType.toString());
jsonWriter.writeStringField("principalId", this.principalId);
jsonWriter.writeStringField("deleteOrUpdateBehavior",
this.deleteOrUpdateBehavior == null ? null : this.deleteOrUpdateBehavior.toString());
jsonWriter.writeArrayField("roles", this.roles, (writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("userName", this.username);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of UserAccountAuthInfo from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of UserAccountAuthInfo 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 UserAccountAuthInfo.
*/
public static UserAccountAuthInfo fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
UserAccountAuthInfo deserializedUserAccountAuthInfo = new UserAccountAuthInfo();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("authMode".equals(fieldName)) {
deserializedUserAccountAuthInfo.withAuthMode(AuthMode.fromString(reader.getString()));
} else if ("authType".equals(fieldName)) {
deserializedUserAccountAuthInfo.authType = AuthType.fromString(reader.getString());
} else if ("principalId".equals(fieldName)) {
deserializedUserAccountAuthInfo.principalId = reader.getString();
} else if ("deleteOrUpdateBehavior".equals(fieldName)) {
deserializedUserAccountAuthInfo.deleteOrUpdateBehavior
= DeleteOrUpdateBehavior.fromString(reader.getString());
} else if ("roles".equals(fieldName)) {
List roles = reader.readArray(reader1 -> reader1.getString());
deserializedUserAccountAuthInfo.roles = roles;
} else if ("userName".equals(fieldName)) {
deserializedUserAccountAuthInfo.username = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedUserAccountAuthInfo;
});
}
}