
com.azure.resourcemanager.eventgrid.fluent.models.PrivateEndpointConnectionInner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-eventgrid Show documentation
Show all versions of azure-resourcemanager-eventgrid Show documentation
This package contains Microsoft Azure SDK for EventGrid Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure EventGrid Management Client. Package tag package-2021-10-preview.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.eventgrid.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.resourcemanager.eventgrid.models.ConnectionState;
import com.azure.resourcemanager.eventgrid.models.PrivateEndpoint;
import com.azure.resourcemanager.eventgrid.models.ResourceProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* The PrivateEndpointConnection model.
*/
@Fluent
public final class PrivateEndpointConnectionInner extends ProxyResource {
/*
* Properties of the PrivateEndpointConnection.
*/
@JsonProperty(value = "properties")
private PrivateEndpointConnectionProperties innerProperties;
/**
* Creates an instance of PrivateEndpointConnectionInner class.
*/
public PrivateEndpointConnectionInner() {
}
/**
* Get the innerProperties property: Properties of the PrivateEndpointConnection.
*
* @return the innerProperties value.
*/
private PrivateEndpointConnectionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the privateEndpoint property: The Private Endpoint resource for this Connection.
*
* @return the privateEndpoint value.
*/
public PrivateEndpoint privateEndpoint() {
return this.innerProperties() == null ? null : this.innerProperties().privateEndpoint();
}
/**
* Set the privateEndpoint property: The Private Endpoint resource for this Connection.
*
* @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 groupIds property: GroupIds from the private link service resource.
*
* @return the groupIds value.
*/
public List groupIds() {
return this.innerProperties() == null ? null : this.innerProperties().groupIds();
}
/**
* Set the groupIds property: GroupIds from the private link service resource.
*
* @param groupIds the groupIds value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withGroupIds(List groupIds) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withGroupIds(groupIds);
return this;
}
/**
* Get the privateLinkServiceConnectionState property: Details about the state of the connection.
*
* @return the privateLinkServiceConnectionState value.
*/
public ConnectionState privateLinkServiceConnectionState() {
return this.innerProperties() == null ? null : this.innerProperties().privateLinkServiceConnectionState();
}
/**
* Set the privateLinkServiceConnectionState property: Details about the state of the connection.
*
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner
withPrivateLinkServiceConnectionState(ConnectionState privateLinkServiceConnectionState) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withPrivateLinkServiceConnectionState(privateLinkServiceConnectionState);
return this;
}
/**
* Get the provisioningState property: Provisioning state of the Private Endpoint Connection.
*
* @return the provisioningState value.
*/
public ResourceProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Set the provisioningState property: Provisioning state of the Private Endpoint Connection.
*
* @param provisioningState the provisioningState value to set.
* @return the PrivateEndpointConnectionInner object itself.
*/
public PrivateEndpointConnectionInner withProvisioningState(ResourceProvisioningState provisioningState) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withProvisioningState(provisioningState);
return this;
}
/**
* 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