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 endpoint connections.
/** * A list of private endpoint connections. */
public class PrivateEndpointConnectionListResultInner {
The collection value.
/** * The collection value. */
@JsonProperty(value = "value") private List<PrivateEndpointConnectionInner> value;
Get the collection value.
Returns:the value value
/** * Get the collection value. * * @return the value value */
public List<PrivateEndpointConnectionInner> value() { return this.value; }
Set the collection value.
Params:
  • value – the value value to set
Returns:the PrivateEndpointConnectionListResultInner object itself.
/** * Set the collection value. * * @param value the value value to set * @return the PrivateEndpointConnectionListResultInner object itself. */
public PrivateEndpointConnectionListResultInner withValue(List<PrivateEndpointConnectionInner> value) { this.value = value; return this; } }