com.azure.resourcemanager.servicebus.fluent.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-servicebus Show documentation
Show all versions of azure-resourcemanager-servicebus Show documentation
This package contains Microsoft Azure ServiceBus Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.servicebus.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.servicebus.models.ConnectionState;
import com.azure.resourcemanager.servicebus.models.EndPointProvisioningState;
import com.azure.resourcemanager.servicebus.models.PrivateEndpoint;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Properties of the private endpoint connection resource. */
@Fluent
public final class PrivateEndpointConnectionProperties {
/*
* The Private Endpoint resource for this Connection.
*/
@JsonProperty(value = "privateEndpoint")
private PrivateEndpoint privateEndpoint;
/*
* Details about the state of the connection.
*/
@JsonProperty(value = "privateLinkServiceConnectionState")
private ConnectionState privateLinkServiceConnectionState;
/*
* Provisioning state of the Private Endpoint Connection.
*/
@JsonProperty(value = "provisioningState")
private EndPointProvisioningState provisioningState;
/**
* Get the privateEndpoint property: The Private Endpoint resource for this Connection.
*
* @return the privateEndpoint value.
*/
public PrivateEndpoint privateEndpoint() {
return this.privateEndpoint;
}
/**
* Set the privateEndpoint property: The Private Endpoint resource for this Connection.
*
* @param privateEndpoint the privateEndpoint value to set.
* @return the PrivateEndpointConnectionProperties object itself.
*/
public PrivateEndpointConnectionProperties withPrivateEndpoint(PrivateEndpoint privateEndpoint) {
this.privateEndpoint = privateEndpoint;
return this;
}
/**
* Get the privateLinkServiceConnectionState property: Details about the state of the connection.
*
* @return the privateLinkServiceConnectionState value.
*/
public ConnectionState privateLinkServiceConnectionState() {
return this.privateLinkServiceConnectionState;
}
/**
* Set the privateLinkServiceConnectionState property: Details about the state of the connection.
*
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
* @return the PrivateEndpointConnectionProperties object itself.
*/
public PrivateEndpointConnectionProperties withPrivateLinkServiceConnectionState(
ConnectionState privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
/**
* Get the provisioningState property: Provisioning state of the Private Endpoint Connection.
*
* @return the provisioningState value.
*/
public EndPointProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Set the provisioningState property: Provisioning state of the Private Endpoint Connection.
*
* @param provisioningState the provisioningState value to set.
* @return the PrivateEndpointConnectionProperties object itself.
*/
public PrivateEndpointConnectionProperties withProvisioningState(EndPointProvisioningState 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();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy