DiskInstanceView.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/** The instance view of the disk. */
@Fluent
public final class DiskInstanceView {
@JsonIgnore private final ClientLogger logger = new ClientLogger(DiskInstanceView.class);
/*
* The disk name.
*/
@JsonProperty(value = "name")
private String name;
/*
* Specifies the encryption settings for the OS Disk. <br><br> Minimum
* api-version: 2015-06-15
*/
@JsonProperty(value = "encryptionSettings")
private List<DiskEncryptionSettings> encryptionSettings;
/*
* The resource status information.
*/
@JsonProperty(value = "statuses")
private List<InstanceViewStatus> statuses;
/**
* Get the name property: The disk name.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Set the name property: The disk name.
*
* @param name the name value to set.
* @return the DiskInstanceView object itself.
*/
public DiskInstanceView withName(String name) {
this.name = name;
return this;
}
/**
* Get the encryptionSettings property: Specifies the encryption settings for the OS Disk. <br><br>
* Minimum api-version: 2015-06-15.
*
* @return the encryptionSettings value.
*/
public List<DiskEncryptionSettings> encryptionSettings() {
return this.encryptionSettings;
}
/**
* Set the encryptionSettings property: Specifies the encryption settings for the OS Disk. <br><br>
* Minimum api-version: 2015-06-15.
*
* @param encryptionSettings the encryptionSettings value to set.
* @return the DiskInstanceView object itself.
*/
public DiskInstanceView withEncryptionSettings(List<DiskEncryptionSettings> encryptionSettings) {
this.encryptionSettings = encryptionSettings;
return this;
}
/**
* Get the statuses property: The resource status information.
*
* @return the statuses value.
*/
public List<InstanceViewStatus> statuses() {
return this.statuses;
}
/**
* Set the statuses property: The resource status information.
*
* @param statuses the statuses value to set.
* @return the DiskInstanceView object itself.
*/
public DiskInstanceView withStatuses(List<InstanceViewStatus> statuses) {
this.statuses = statuses;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (encryptionSettings() != null) {
encryptionSettings().forEach(e -> e.validate());
}
if (statuses() != null) {
statuses().forEach(e -> e.validate());
}
}
}