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

com.azure.resourcemanager.automation.fluent.models.KeyListResultInner Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for Automation Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Automation Client. Package tag package-2022-02-22.

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.automation.fluent.models;

import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.automation.models.Key;
import java.io.IOException;
import java.util.List;

/**
 * The KeyListResult model.
 */
@Fluent
public final class KeyListResultInner implements JsonSerializable {
    /*
     * Lists the automation keys.
     */
    private List keys;

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

    /**
     * Get the keys property: Lists the automation keys.
     * 
     * @return the keys value.
     */
    public List keys() {
        return this.keys;
    }

    /**
     * Set the keys property: Lists the automation keys.
     * 
     * @param keys the keys value to set.
     * @return the KeyListResultInner object itself.
     */
    public KeyListResultInner withKeys(List keys) {
        this.keys = keys;
        return this;
    }

    /**
     * Validates the instance.
     * 
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (keys() != null) {
            keys().forEach(e -> e.validate());
        }
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
        jsonWriter.writeStartObject();
        jsonWriter.writeArrayField("keys", this.keys, (writer, element) -> writer.writeJson(element));
        return jsonWriter.writeEndObject();
    }

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

                if ("keys".equals(fieldName)) {
                    List keys = reader.readArray(reader1 -> Key.fromJson(reader1));
                    deserializedKeyListResultInner.keys = keys;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedKeyListResultInner;
        });
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy