PrivateEndpointConnectionAutoGenerated.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.cosmos.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.annotation.JsonFlatten;
import com.azure.core.management.ProxyResource;
import com.azure.core.util.logging.ClientLogger;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** A private endpoint connection. */
@JsonFlatten
@Fluent
public class PrivateEndpointConnectionAutoGenerated extends ProxyResource {
@JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionAutoGenerated.class);
/*
* Private endpoint which the connection belongs to.
*/
@JsonProperty(value = "properties.privateEndpoint")
private PrivateEndpointProperty privateEndpoint;
/*
* Connection State of the Private Endpoint Connection.
*/
@JsonProperty(value = "properties.privateLinkServiceConnectionState")
private PrivateLinkServiceConnectionStatePropertyAutoGenerated privateLinkServiceConnectionState;
/**
* Get the privateEndpoint property: Private endpoint which the connection belongs to.
*
* @return the privateEndpoint value.
*/
public PrivateEndpointProperty privateEndpoint() {
return this.privateEndpoint;
}
/**
* Set the privateEndpoint property: Private endpoint which the connection belongs to.
*
* @param privateEndpoint the privateEndpoint value to set.
* @return the PrivateEndpointConnectionAutoGenerated object itself.
*/
public PrivateEndpointConnectionAutoGenerated withPrivateEndpoint(PrivateEndpointProperty privateEndpoint) {
this.privateEndpoint = privateEndpoint;
return this;
}
/**
* Get the privateLinkServiceConnectionState property: Connection State of the Private Endpoint Connection.
*
* @return the privateLinkServiceConnectionState value.
*/
public PrivateLinkServiceConnectionStatePropertyAutoGenerated privateLinkServiceConnectionState() {
return this.privateLinkServiceConnectionState;
}
/**
* Set the privateLinkServiceConnectionState property: Connection State of the Private Endpoint Connection.
*
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
* @return the PrivateEndpointConnectionAutoGenerated object itself.
*/
public PrivateEndpointConnectionAutoGenerated withPrivateLinkServiceConnectionState(
PrivateLinkServiceConnectionStatePropertyAutoGenerated privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (privateEndpoint() != null) {
privateEndpoint().validate();
}
if (privateLinkServiceConnectionState() != null) {
privateLinkServiceConnectionState().validate();
}
}
}