com.azure.resourcemanager.hybridcompute.models.PrivateEndpointConnectionProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.hybridcompute.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Properties of a private endpoint connection.
*/
@Fluent
public final class PrivateEndpointConnectionProperties {
/*
* Private endpoint which the connection belongs to.
*/
@JsonProperty(value = "privateEndpoint")
private PrivateEndpointProperty privateEndpoint;
/*
* Connection state of the private endpoint connection.
*/
@JsonProperty(value = "privateLinkServiceConnectionState")
private PrivateLinkServiceConnectionStateProperty privateLinkServiceConnectionState;
/*
* State of the private endpoint connection.
*/
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private String provisioningState;
/*
* List of group IDs.
*/
@JsonProperty(value = "groupIds", access = JsonProperty.Access.WRITE_ONLY)
private List groupIds;
/**
* Creates an instance of PrivateEndpointConnectionProperties class.
*/
public PrivateEndpointConnectionProperties() {
}
/**
* 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 PrivateEndpointConnectionProperties object itself.
*/
public PrivateEndpointConnectionProperties 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 PrivateEndpointConnectionProperties object itself.
*/
public PrivateEndpointConnectionProperties withPrivateLinkServiceConnectionState(
PrivateLinkServiceConnectionStateProperty privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
/**
* Get the provisioningState property: State of the private endpoint connection.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.provisioningState;
}
/**
* Get the groupIds property: List of group IDs.
*
* @return the groupIds value.
*/
public List groupIds() {
return this.groupIds;
}
/**
* 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();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy