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.
/** * 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.containerservice.implementation; import java.util.List; import com.fasterxml.jackson.annotation.JsonProperty;
A list of private link resources.
/** * A list of private link resources. */
public class PrivateLinkResourcesListResultInner {
The collection value.
/** * The collection value. */
@JsonProperty(value = "value") private List<PrivateLinkResourceInner> value;
Get the collection value.
Returns:the value value
/** * Get the collection value. * * @return the value value */
public List<PrivateLinkResourceInner> value() { return this.value; }
Set the collection value.
Params:
  • value – the value value to set
Returns:the PrivateLinkResourcesListResultInner object itself.
/** * Set the collection value. * * @param value the value value to set * @return the PrivateLinkResourcesListResultInner object itself. */
public PrivateLinkResourcesListResultInner withValue(List<PrivateLinkResourceInner> value) { this.value = value; return this; } }