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

com.azure.resourcemanager.storagecache.models.CacheSecuritySettings Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for StorageCache Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure Managed Lustre provides a fully managed Lustre® file system, integrated with Blob storage, for use on demand. These operations create and manage Azure Managed Lustre file systems. Package tag package-2024-03.

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.storagecache.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 java.io.IOException;
import java.util.List;

/**
 * Cache security settings.
 */
@Fluent
public final class CacheSecuritySettings implements JsonSerializable {
    /*
     * NFS access policies defined for this cache.
     */
    private List accessPolicies;

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

    /**
     * Get the accessPolicies property: NFS access policies defined for this cache.
     * 
     * @return the accessPolicies value.
     */
    public List accessPolicies() {
        return this.accessPolicies;
    }

    /**
     * Set the accessPolicies property: NFS access policies defined for this cache.
     * 
     * @param accessPolicies the accessPolicies value to set.
     * @return the CacheSecuritySettings object itself.
     */
    public CacheSecuritySettings withAccessPolicies(List accessPolicies) {
        this.accessPolicies = accessPolicies;
        return this;
    }

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

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

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

                if ("accessPolicies".equals(fieldName)) {
                    List accessPolicies
                        = reader.readArray(reader1 -> NfsAccessPolicy.fromJson(reader1));
                    deserializedCacheSecuritySettings.accessPolicies = accessPolicies;
                } else {
                    reader.skipChildren();
                }
            }

            return deserializedCacheSecuritySettings;
        });
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy