/** * 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 java.util.List; import com.fasterxml.jackson.annotation.JsonProperty; /** * SSH configuration for Linux-based VMs running on Azure. */ public class ContainerServiceSshConfiguration { /** * the list of SSH public keys used to authenticate with Linux-based VMs. */ @JsonProperty(value = "publicKeys", required = true) private List<ContainerServiceSshPublicKey> publicKeys; /** * Get the publicKeys value. * * @return the publicKeys value */ public List<ContainerServiceSshPublicKey> publicKeys() { return this.publicKeys; } /** * Set the publicKeys value. * * @param publicKeys the publicKeys value to set * @return the ContainerServiceSshConfiguration object itself. */ public ContainerServiceSshConfiguration withPublicKeys(List<ContainerServiceSshPublicKey> publicKeys) { this.publicKeys = publicKeys; return this; } }