com.azure.resourcemanager.healthdataaiservices.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-healthdataaiservices Show documentation
Show all versions of azure-resourcemanager-healthdataaiservices Show documentation
This package contains Microsoft Azure SDK for Health Data AI Services Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) TypeSpec Code Generator.
package com.azure.resourcemanager.healthdataaiservices.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* A collection of information about the state of the connection between service consumer and provider.
*/
@Fluent
public final class PrivateLinkServiceConnectionState implements JsonSerializable {
/*
* Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
*/
private PrivateEndpointServiceConnectionStatus status;
/*
* The reason for approval/rejection of the connection.
*/
private String description;
/*
* A message indicating if changes on the service provider require any updates on the consumer.
*/
private String actionsRequired;
/**
* Creates an instance of PrivateLinkServiceConnectionState class.
*/
public PrivateLinkServiceConnectionState() {
}
/**
* Get the status property: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the
* service.
*
* @return the status value.
*/
public PrivateEndpointServiceConnectionStatus status() {
return this.status;
}
/**
* Set the status property: Indicates whether the connection has been Approved/Rejected/Removed by the owner of the
* service.
*
* @param status the status value to set.
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withStatus(PrivateEndpointServiceConnectionStatus status) {
this.status = status;
return this;
}
/**
* Get the description property: The reason for approval/rejection of the connection.
*
* @return the description value.
*/
public String description() {
return this.description;
}
/**
* Set the description property: The reason for approval/rejection of the connection.
*
* @param description the description value to set.
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withDescription(String description) {
this.description = description;
return this;
}
/**
* Get the actionsRequired property: A message indicating if changes on the service provider require any updates on
* the consumer.
*
* @return the actionsRequired value.
*/
public String actionsRequired() {
return this.actionsRequired;
}
/**
* Set the actionsRequired property: A message indicating if changes on the service provider require any updates on
* the consumer.
*
* @param actionsRequired the actionsRequired value to set.
* @return the PrivateLinkServiceConnectionState object itself.
*/
public PrivateLinkServiceConnectionState withActionsRequired(String actionsRequired) {
this.actionsRequired = actionsRequired;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("status", this.status == null ? null : this.status.toString());
jsonWriter.writeStringField("description", this.description);
jsonWriter.writeStringField("actionsRequired", this.actionsRequired);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of PrivateLinkServiceConnectionState from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of PrivateLinkServiceConnectionState if the JsonReader was pointing to an instance of it, or
* null if it was pointing to JSON null.
* @throws IOException If an error occurs while reading the PrivateLinkServiceConnectionState.
*/
public static PrivateLinkServiceConnectionState fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
PrivateLinkServiceConnectionState deserializedPrivateLinkServiceConnectionState
= new PrivateLinkServiceConnectionState();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("status".equals(fieldName)) {
deserializedPrivateLinkServiceConnectionState.status
= PrivateEndpointServiceConnectionStatus.fromString(reader.getString());
} else if ("description".equals(fieldName)) {
deserializedPrivateLinkServiceConnectionState.description = reader.getString();
} else if ("actionsRequired".equals(fieldName)) {
deserializedPrivateLinkServiceConnectionState.actionsRequired = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedPrivateLinkServiceConnectionState;
});
}
}