com.azure.resourcemanager.recoveryservicesbackup.models.PrivateLinkServiceConnectionState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Private Link Service Connection State.
*/
@Fluent
public final class PrivateLinkServiceConnectionState {
/*
* Gets or sets the status
*/
@JsonProperty(value = "status")
private PrivateEndpointConnectionStatus status;
/*
* Gets or sets description
*/
@JsonProperty(value = "description")
private String description;
/*
* Gets or sets actions required
*/
@JsonProperty(value = "actionsRequired")
private String actionRequired;
/**
* Creates an instance of PrivateLinkServiceConnectionState class.
*/
public PrivateLinkServiceConnectionState() {
}
/**
* Get the status property: Gets or sets the status.
*
* @return the status value.
*/
public PrivateEndpointConnectionStatus status() {
return this.status;
}
/**
* Set the status property: Gets or sets the status.
*
* @param status the status value to set.
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withStatus(PrivateEndpointConnectionStatus status) {
this.status = status;
return this;
}
/**
* Get the description property: Gets or sets description.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: Gets or sets description.
*
* @param description the description value to set.
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withDescription(String description) {
this.description = description;
return this;
}
/**
* Get the actionRequired property: Gets or sets actions required.
*
* @return the actionRequired value.
*/
public String actionRequired() {
return this.actionRequired;
}
/**
* Set the actionRequired property: Gets or sets actions required.
*
* @param actionRequired the actionRequired value to set.
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withActionRequired(String actionRequired) {
this.actionRequired = actionRequired;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy