com.azure.resourcemanager.storagecache.models.AmlFilesystemCheckSubnetError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storagecache Show documentation
Show all versions of azure-resourcemanager-storagecache Show documentation
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;
/**
* The error details provided when the checkAmlFSSubnets call fails.
*/
@Fluent
public final class AmlFilesystemCheckSubnetError implements JsonSerializable {
/*
* The error details for the AML file system's subnet.
*/
private AmlFilesystemCheckSubnetErrorFilesystemSubnet filesystemSubnet;
/**
* Creates an instance of AmlFilesystemCheckSubnetError class.
*/
public AmlFilesystemCheckSubnetError() {
}
/**
* Get the filesystemSubnet property: The error details for the AML file system's subnet.
*
* @return the filesystemSubnet value.
*/
public AmlFilesystemCheckSubnetErrorFilesystemSubnet filesystemSubnet() {
return this.filesystemSubnet;
}
/**
* Set the filesystemSubnet property: The error details for the AML file system's subnet.
*
* @param filesystemSubnet the filesystemSubnet value to set.
* @return the AmlFilesystemCheckSubnetError object itself.
*/
public AmlFilesystemCheckSubnetError
withFilesystemSubnet(AmlFilesystemCheckSubnetErrorFilesystemSubnet filesystemSubnet) {
this.filesystemSubnet = filesystemSubnet;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (filesystemSubnet() != null) {
filesystemSubnet().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeJsonField("filesystemSubnet", this.filesystemSubnet);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of AmlFilesystemCheckSubnetError from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AmlFilesystemCheckSubnetError 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 AmlFilesystemCheckSubnetError.
*/
public static AmlFilesystemCheckSubnetError fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AmlFilesystemCheckSubnetError deserializedAmlFilesystemCheckSubnetError
= new AmlFilesystemCheckSubnetError();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("filesystemSubnet".equals(fieldName)) {
deserializedAmlFilesystemCheckSubnetError.filesystemSubnet
= AmlFilesystemCheckSubnetErrorFilesystemSubnet.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedAmlFilesystemCheckSubnetError;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy