PrivateEndpointConnectionInner.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.fluent.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.azure.resourcemanager.cosmos.models.PrivateEndpointProperty;
import com.azure.resourcemanager.cosmos.models.PrivateLinkServiceConnectionStateProperty;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
/** A private endpoint connection. */
@JsonFlatten
@Fluent
public class PrivateEndpointConnectionInner extends ProxyResource {
@JsonIgnore private final ClientLogger logger = new ClientLogger(PrivateEndpointConnectionInner.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 PrivateLinkServiceConnectionStateProperty privateLinkServiceConnectionState;
/*
* Group id of the private endpoint.
*/
@JsonProperty(value = "properties.groupId")
private String groupId;
/*
* Provisioning state of the private endpoint.
*/
@JsonProperty(value = "properties.provisioningState")
private String provisioningState;
/**
* 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 PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withPrivateEndpoint(PrivateEndpointProperty privateEndpoint) {
this.privateEndpoint = privateEndpoint;
return this;
}
/**
* Get the privateLinkServiceConnectionState property: Connection State of the Private Endpoint Connection.
*
* @return the privateLinkServiceConnectionState value.
*/
public PrivateLinkServiceConnectionStateProperty privateLinkServiceConnectionState() {
return this.privateLinkServiceConnectionState;
}
/**
* Set the privateLinkServiceConnectionState property: Connection State of the Private Endpoint Connection.
*
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withPrivateLinkServiceConnectionState(
PrivateLinkServiceConnectionStateProperty privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
/**
* Get the groupId property: Group id of the private endpoint.
*
* @return the groupId value.
*/
public String groupId() {
return this.groupId;
}
/**
* Set the groupId property: Group id of the private endpoint.
*
* @param groupId the groupId value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withGroupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* Get the provisioningState property: Provisioning state of the private endpoint.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Set the provisioningState property: Provisioning state of the private endpoint.
*
* @param provisioningState the provisioningState value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withProvisioningState(String provisioningState) {
this.provisioningState = provisioningState;
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();
}
}
}