com.azure.resourcemanager.cosmos.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-cosmos Show documentation
Show all versions of azure-resourcemanager-cosmos Show documentation
This package contains Microsoft Azure CosmosDB 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.cosmos.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.ProxyResource;
import com.azure.resourcemanager.cosmos.models.PrivateEndpointProperty;
import com.azure.resourcemanager.cosmos.models.PrivateLinkServiceConnectionStateProperty;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* A private endpoint connection.
*/
@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: Private endpoint which the connection belongs to.
*
* @return the privateEndpoint value.
*/
public PrivateEndpointProperty privateEndpoint() {
return this.innerProperties() == null ? null : this.innerProperties().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) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withPrivateEndpoint(privateEndpoint);
return this;
}
/**
* Get the privateLinkServiceConnectionState property: Connection State of the Private Endpoint Connection.
*
* @return the privateLinkServiceConnectionState value.
*/
public PrivateLinkServiceConnectionStateProperty privateLinkServiceConnectionState() {
return this.innerProperties() == null ? null : this.innerProperties().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) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withPrivateLinkServiceConnectionState(privateLinkServiceConnectionState);
return this;
}
/**
* Get the groupId property: Group id of the private endpoint.
*
* @return the groupId value.
*/
public String groupId() {
return this.innerProperties() == null ? null : this.innerProperties().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) {
if (this.innerProperties() == null) {
this.innerProperties = new PrivateEndpointConnectionProperties();
}
this.innerProperties().withGroupId(groupId);
return this;
}
/**
* Get the provisioningState property: Provisioning state of the private endpoint.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().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) {
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 - 2024 Weber Informatics LLC | Privacy Policy