com.azure.resourcemanager.network.fluent.models.PrivateLinkServiceConnectionProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network 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.network.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.network.models.PrivateLinkServiceConnectionState;
import com.azure.resourcemanager.network.models.ProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Properties of the PrivateLinkServiceConnection.
*/
@Fluent
public final class PrivateLinkServiceConnectionProperties {
/*
* The provisioning state of the private link service connection resource.
*/
@JsonProperty(value = "provisioningState", access = JsonProperty.Access.WRITE_ONLY)
private ProvisioningState provisioningState;
/*
* The resource id of private link service.
*/
@JsonProperty(value = "privateLinkServiceId")
private String privateLinkServiceId;
/*
* The ID(s) of the group(s) obtained from the remote resource that this private endpoint should connect to.
*/
@JsonProperty(value = "groupIds")
private List groupIds;
/*
* A message passed to the owner of the remote resource with this connection request. Restricted to 140 chars.
*/
@JsonProperty(value = "requestMessage")
private String requestMessage;
/*
* A collection of read-only information about the state of the connection to the remote resource.
*/
@JsonProperty(value = "privateLinkServiceConnectionState")
private PrivateLinkServiceConnectionState privateLinkServiceConnectionState;
/**
* Creates an instance of PrivateLinkServiceConnectionProperties class.
*/
public PrivateLinkServiceConnectionProperties() {
}
/**
* Get the provisioningState property: The provisioning state of the private link service connection resource.
*
* @return the provisioningState value.
*/
public ProvisioningState provisioningState() {
return this.provisioningState;
}
/**
* Get the privateLinkServiceId property: The resource id of private link service.
*
* @return the privateLinkServiceId value.
*/
public String privateLinkServiceId() {
return this.privateLinkServiceId;
}
/**
* Set the privateLinkServiceId property: The resource id of private link service.
*
* @param privateLinkServiceId the privateLinkServiceId value to set.
* @return the PrivateLinkServiceConnectionProperties object itself.
*/
public PrivateLinkServiceConnectionProperties withPrivateLinkServiceId(String privateLinkServiceId) {
this.privateLinkServiceId = privateLinkServiceId;
return this;
}
/**
* Get the groupIds property: The ID(s) of the group(s) obtained from the remote resource that this private endpoint
* should connect to.
*
* @return the groupIds value.
*/
public List groupIds() {
return this.groupIds;
}
/**
* Set the groupIds property: The ID(s) of the group(s) obtained from the remote resource that this private endpoint
* should connect to.
*
* @param groupIds the groupIds value to set.
* @return the PrivateLinkServiceConnectionProperties object itself.
*/
public PrivateLinkServiceConnectionProperties withGroupIds(List groupIds) {
this.groupIds = groupIds;
return this;
}
/**
* Get the requestMessage property: A message passed to the owner of the remote resource with this connection
* request. Restricted to 140 chars.
*
* @return the requestMessage value.
*/
public String requestMessage() {
return this.requestMessage;
}
/**
* Set the requestMessage property: A message passed to the owner of the remote resource with this connection
* request. Restricted to 140 chars.
*
* @param requestMessage the requestMessage value to set.
* @return the PrivateLinkServiceConnectionProperties object itself.
*/
public PrivateLinkServiceConnectionProperties withRequestMessage(String requestMessage) {
this.requestMessage = requestMessage;
return this;
}
/**
* Get the privateLinkServiceConnectionState property: A collection of read-only information about the state of the
* connection to the remote resource.
*
* @return the privateLinkServiceConnectionState value.
*/
public PrivateLinkServiceConnectionState privateLinkServiceConnectionState() {
return this.privateLinkServiceConnectionState;
}
/**
* Set the privateLinkServiceConnectionState property: A collection of read-only information about the state of the
* connection to the remote resource.
*
* @param privateLinkServiceConnectionState the privateLinkServiceConnectionState value to set.
* @return the PrivateLinkServiceConnectionProperties object itself.
*/
public PrivateLinkServiceConnectionProperties
withPrivateLinkServiceConnectionState(PrivateLinkServiceConnectionState privateLinkServiceConnectionState) {
this.privateLinkServiceConnectionState = privateLinkServiceConnectionState;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (privateLinkServiceConnectionState() != null) {
privateLinkServiceConnectionState().validate();
}
}
}