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

com.azure.resourcemanager.sql.fluent.models.ServerTrustGroupProperties Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.sql.fluent.models;

import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.sql.models.ServerInfo;
import com.azure.resourcemanager.sql.models.ServerTrustGroupPropertiesTrustScopesItem;
import java.io.IOException;
import java.util.List;

/**
 * Properties of a server trust group.
 */
@Fluent
public final class ServerTrustGroupProperties implements JsonSerializable {
    /*
     * Group members information for the server trust group.
     */
    private List groupMembers;

    /*
     * Trust scope of the server trust group.
     */
    private List trustScopes;

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

    /**
     * Get the groupMembers property: Group members information for the server trust group.
     * 
     * @return the groupMembers value.
     */
    public List groupMembers() {
        return this.groupMembers;
    }

    /**
     * Set the groupMembers property: Group members information for the server trust group.
     * 
     * @param groupMembers the groupMembers value to set.
     * @return the ServerTrustGroupProperties object itself.
     */
    public ServerTrustGroupProperties withGroupMembers(List groupMembers) {
        this.groupMembers = groupMembers;
        return this;
    }

    /**
     * Get the trustScopes property: Trust scope of the server trust group.
     * 
     * @return the trustScopes value.
     */
    public List trustScopes() {
        return this.trustScopes;
    }

    /**
     * Set the trustScopes property: Trust scope of the server trust group.
     * 
     * @param trustScopes the trustScopes value to set.
     * @return the ServerTrustGroupProperties object itself.
     */
    public ServerTrustGroupProperties withTrustScopes(List trustScopes) {
        this.trustScopes = trustScopes;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (groupMembers() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property groupMembers in model ServerTrustGroupProperties"));
        } else {
            groupMembers().forEach(e -> e.validate());
        }
        if (trustScopes() == null) {
            throw LOGGER.atError()
                .log(new IllegalArgumentException(
                    "Missing required property trustScopes in model ServerTrustGroupProperties"));
        }
    }

    private static final ClientLogger LOGGER = new ClientLogger(ServerTrustGroupProperties.class);

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeArrayField("groupMembers", this.groupMembers, (writer, element) -> writer.writeJson(element));
        jsonWriter.writeArrayField("trustScopes", this.trustScopes,
            (writer, element) -> writer.writeString(element == null ? null : element.toString()));
        return jsonWriter.writeEndObject();
    }

    /**
     * Reads an instance of ServerTrustGroupProperties from the JsonReader.
     * 
     * @param jsonReader The JsonReader being read.
     * @return An instance of ServerTrustGroupProperties if the JsonReader was pointing to an instance of it, or null if
     * it was pointing to JSON null.
     * @throws IllegalStateException If the deserialized JSON object was missing any required properties.
     * @throws IOException If an error occurs while reading the ServerTrustGroupProperties.
     */
    public static ServerTrustGroupProperties fromJson(JsonReader jsonReader) throws IOException {
        return jsonReader.readObject(reader -> {
            ServerTrustGroupProperties deserializedServerTrustGroupProperties = new ServerTrustGroupProperties();
            while (reader.nextToken() != JsonToken.END_OBJECT) {
                String fieldName = reader.getFieldName();
                reader.nextToken();

                if ("groupMembers".equals(fieldName)) {
                    List groupMembers = reader.readArray(reader1 -> ServerInfo.fromJson(reader1));
                    deserializedServerTrustGroupProperties.groupMembers = groupMembers;
                } else if ("trustScopes".equals(fieldName)) {
                    List trustScopes = reader.readArray(
                        reader1 -> ServerTrustGroupPropertiesTrustScopesItem.fromString(reader1.getString()));
                    deserializedServerTrustGroupProperties.trustScopes = trustScopes;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedServerTrustGroupProperties;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy