com.azure.resourcemanager.servicebus.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-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.core.management.ProxyResource;
import com.azure.core.management.SystemData;
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 PrivateEndpointConnection. */
@Fluent
public final class PrivateEndpointConnectionInner extends ProxyResource {
/*
* Properties of the PrivateEndpointConnection.
*/
@JsonProperty(value = "properties")
private PrivateEndpointConnectionProperties innerProperties;
/*
* The system meta data relating to this resource.
*/
@JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
private SystemData systemData;
/*
* The geo-location where the resource lives
*/
@JsonProperty(value = "location", access = JsonProperty.Access.WRITE_ONLY)
private String location;
/**
* Get the innerProperties property: Properties of the PrivateEndpointConnection.
*
* @return the innerProperties value.
*/
private PrivateEndpointConnectionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the systemData property: The system meta data relating to this resource.
*
* @return the systemData value.
*/
public SystemData systemData() {
return this.systemData;
}
/**
* Get the location property: The geo-location where the resource lives.
*
* @return the location value.
*/
public String location() {
return this.location;
}
/**
* 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 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 EndPointProvisioningState 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(EndPointProvisioningState 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