/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */ package com.microsoft.azure.management.compute; import com.fasterxml.jackson.annotation.JsonProperty; /** * The ContainerServiceDiagnosticsProfile model. */ public class ContainerServiceDiagnosticsProfile { /** * Profile for the container service VM diagnostic agent. */ @JsonProperty(value = "vmDiagnostics", required = true) private ContainerServiceVMDiagnostics vmDiagnostics; /** * Get the vmDiagnostics value. * * @return the vmDiagnostics value */ public ContainerServiceVMDiagnostics vmDiagnostics() { return this.vmDiagnostics; } /** * Set the vmDiagnostics value. * * @param vmDiagnostics the vmDiagnostics value to set * @return the ContainerServiceDiagnosticsProfile object itself. */ public ContainerServiceDiagnosticsProfile withVmDiagnostics(ContainerServiceVMDiagnostics vmDiagnostics) { this.vmDiagnostics = vmDiagnostics; return this; } }