
com.azure.resourcemanager.monitor.fluent.models.PrivateEndpointConnectionInner Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.monitor.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.resourcemanager.monitor.models.PrivateEndpoint;
import com.azure.resourcemanager.monitor.models.PrivateEndpointConnectionProvisioningState;
import com.azure.resourcemanager.monitor.models.PrivateLinkServiceConnectionState;
import com.fasterxml.jackson.annotation.JsonProperty;
/** The Private Endpoint Connection resource. */
@Fluent
public final class PrivateEndpointConnectionInner extends ProxyResource {
/*
* Resource properties.
*/
@JsonProperty(value = "properties")
private PrivateEndpointConnectionProperties innerProperties;
/** Creates an instance of PrivateEndpointConnectionInner class. */
public PrivateEndpointConnectionInner() {
}
/**
* Get the innerProperties property: Resource properties.
*
* @return the innerProperties value.
*/
private PrivateEndpointConnectionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the privateEndpoint property: The resource of private end point.
*
* @return the privateEndpoint value.
*/
public PrivateEndpoint privateEndpoint() {
return this.innerProperties() == null ? null : this.innerProperties().privateEndpoint();
}
/**
* Set the privateEndpoint property: The resource of private end point.
*
* @param privateEndpoint the privateEndpoint value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withPrivateEndpoint(PrivateEndpoint privateEndpoint) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withPrivateEndpoint(privateEndpoint);
return this;
}
/**
* Get the privateLinkServiceConnectionState property: A collection of information about the state of the connection
* between service consumer and provider.
*
* @return the privateLinkServiceConnectionState value.
*/
public PrivateLinkServiceConnectionState privateLinkServiceConnectionState() {
return this.innerProperties() == null ? null : this.innerProperties().privateLinkServiceConnectionState();
}
/**
* Set the privateLinkServiceConnectionState property: A collection of information about the state of the connection
* between service consumer and provider.
*
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withPrivateLinkServiceConnectionState(
PrivateLinkServiceConnectionState privateLinkServiceConnectionState) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withPrivateLinkServiceConnectionState(privateLinkServiceConnectionState);
return this;
}
/**
* Get the provisioningState property: The provisioning state of the private endpoint connection resource.
*
* @return the provisioningState value.
*/
public PrivateEndpointConnectionProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy