All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.servicelinker.models.UserAssignedIdentityAuthInfo 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;

/**
 * The authentication info when authType is userAssignedIdentity.
 */
@Fluent
public final class UserAssignedIdentityAuthInfo extends AuthInfoBase {
    /*
     * The authentication type.
     */
    private AuthType authType = AuthType.USER_ASSIGNED_IDENTITY;

    /*
     * Client Id for userAssignedIdentity.
     */
    private String clientId;

    /*
     * Subscription id for userAssignedIdentity.
     */
    private String subscriptionId;

    /**
     * Creates an instance of UserAssignedIdentityAuthInfo class.
     */
    public UserAssignedIdentityAuthInfo() {
    }

    /**
     * Get the authType property: The authentication type.
     * 
     * @return the authType value.
     */
    @Override
    public AuthType authType() {
        return this.authType;
    }

    /**
     * Get the clientId property: Client Id for userAssignedIdentity.
     * 
     * @return the clientId value.
     */
    public String clientId() {
        return this.clientId;
    }

    /**
     * Set the clientId property: Client Id for userAssignedIdentity.
     * 
     * @param clientId the clientId value to set.
     * @return the UserAssignedIdentityAuthInfo object itself.
     */
    public UserAssignedIdentityAuthInfo withClientId(String clientId) {
        this.clientId = clientId;
        return this;
    }

    /**
     * Get the subscriptionId property: Subscription id for userAssignedIdentity.
     * 
     * @return the subscriptionId value.
     */
    public String subscriptionId() {
        return this.subscriptionId;
    }

    /**
     * Set the subscriptionId property: Subscription id for userAssignedIdentity.
     * 
     * @param subscriptionId the subscriptionId value to set.
     * @return the UserAssignedIdentityAuthInfo object itself.
     */
    public UserAssignedIdentityAuthInfo withSubscriptionId(String subscriptionId) {
        this.subscriptionId = subscriptionId;
        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("authType", this.authType == null ? null : this.authType.toString());
        jsonWriter.writeStringField("clientId", this.clientId);
        jsonWriter.writeStringField("subscriptionId", this.subscriptionId);
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of UserAssignedIdentityAuthInfo from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of UserAssignedIdentityAuthInfo 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 UserAssignedIdentityAuthInfo.
     */
    public static UserAssignedIdentityAuthInfo fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            UserAssignedIdentityAuthInfo deserializedUserAssignedIdentityAuthInfo = new UserAssignedIdentityAuthInfo();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("authType".equals(fieldName)) {
                    deserializedUserAssignedIdentityAuthInfo.authType = AuthType.fromString(reader.getString());
                } else if ("clientId".equals(fieldName)) {
                    deserializedUserAssignedIdentityAuthInfo.clientId = reader.getString();
                } else if ("subscriptionId".equals(fieldName)) {
                    deserializedUserAssignedIdentityAuthInfo.subscriptionId = reader.getString();
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedUserAssignedIdentityAuthInfo;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy