com.azure.resourcemanager.webpubsub.fluent.models.PrivateLinkResourceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-webpubsub Show documentation
Show all versions of azure-resourcemanager-webpubsub Show documentation
This package contains Microsoft Azure SDK for WebPubSub Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. REST API for Azure WebPubSub Service. Package tag package-2024-03-01.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.webpubsub.fluent.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 com.azure.resourcemanager.webpubsub.models.ShareablePrivateLinkResourceType;
import java.io.IOException;
import java.util.List;
/**
* Private link resource properties.
*/
@Fluent
public final class PrivateLinkResourceProperties implements JsonSerializable {
/*
* Group Id of the private link resource
*/
private String groupId;
/*
* Required members of the private link resource
*/
private List requiredMembers;
/*
* Required private DNS zone names
*/
private List requiredZoneNames;
/*
* The list of resources that are onboarded to private link service
*/
private List shareablePrivateLinkResourceTypes;
/**
* Creates an instance of PrivateLinkResourceProperties class.
*/
public PrivateLinkResourceProperties() {
}
/**
* Get the groupId property: Group Id of the private link resource.
*
* @return the groupId value.
*/
public String groupId() {
return this.groupId;
}
/**
* Set the groupId property: Group Id of the private link resource.
*
* @param groupId the groupId value to set.
* @return the PrivateLinkResourceProperties object itself.
*/
public PrivateLinkResourceProperties withGroupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* Get the requiredMembers property: Required members of the private link resource.
*
* @return the requiredMembers value.
*/
public List requiredMembers() {
return this.requiredMembers;
}
/**
* Set the requiredMembers property: Required members of the private link resource.
*
* @param requiredMembers the requiredMembers value to set.
* @return the PrivateLinkResourceProperties object itself.
*/
public PrivateLinkResourceProperties withRequiredMembers(List requiredMembers) {
this.requiredMembers = requiredMembers;
return this;
}
/**
* Get the requiredZoneNames property: Required private DNS zone names.
*
* @return the requiredZoneNames value.
*/
public List requiredZoneNames() {
return this.requiredZoneNames;
}
/**
* Set the requiredZoneNames property: Required private DNS zone names.
*
* @param requiredZoneNames the requiredZoneNames value to set.
* @return the PrivateLinkResourceProperties object itself.
*/
public PrivateLinkResourceProperties withRequiredZoneNames(List requiredZoneNames) {
this.requiredZoneNames = requiredZoneNames;
return this;
}
/**
* Get the shareablePrivateLinkResourceTypes property: The list of resources that are onboarded to private link
* service.
*
* @return the shareablePrivateLinkResourceTypes value.
*/
public List shareablePrivateLinkResourceTypes() {
return this.shareablePrivateLinkResourceTypes;
}
/**
* Set the shareablePrivateLinkResourceTypes property: The list of resources that are onboarded to private link
* service.
*
* @param shareablePrivateLinkResourceTypes the shareablePrivateLinkResourceTypes value to set.
* @return the PrivateLinkResourceProperties object itself.
*/
public PrivateLinkResourceProperties withShareablePrivateLinkResourceTypes(
List shareablePrivateLinkResourceTypes) {
this.shareablePrivateLinkResourceTypes = shareablePrivateLinkResourceTypes;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (shareablePrivateLinkResourceTypes() != null) {
shareablePrivateLinkResourceTypes().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("groupId", this.groupId);
jsonWriter.writeArrayField("requiredMembers", this.requiredMembers,
(writer, element) -> writer.writeString(element));
jsonWriter.writeArrayField("requiredZoneNames", this.requiredZoneNames,
(writer, element) -> writer.writeString(element));
jsonWriter.writeArrayField("shareablePrivateLinkResourceTypes", this.shareablePrivateLinkResourceTypes,
(writer, element) -> writer.writeJson(element));
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of PrivateLinkResourceProperties from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of PrivateLinkResourceProperties 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 PrivateLinkResourceProperties.
*/
public static PrivateLinkResourceProperties fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
PrivateLinkResourceProperties deserializedPrivateLinkResourceProperties
= new PrivateLinkResourceProperties();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("groupId".equals(fieldName)) {
deserializedPrivateLinkResourceProperties.groupId = reader.getString();
} else if ("requiredMembers".equals(fieldName)) {
List requiredMembers = reader.readArray(reader1 -> reader1.getString());
deserializedPrivateLinkResourceProperties.requiredMembers = requiredMembers;
} else if ("requiredZoneNames".equals(fieldName)) {
List requiredZoneNames = reader.readArray(reader1 -> reader1.getString());
deserializedPrivateLinkResourceProperties.requiredZoneNames = requiredZoneNames;
} else if ("shareablePrivateLinkResourceTypes".equals(fieldName)) {
List shareablePrivateLinkResourceTypes
= reader.readArray(reader1 -> ShareablePrivateLinkResourceType.fromJson(reader1));
deserializedPrivateLinkResourceProperties.shareablePrivateLinkResourceTypes
= shareablePrivateLinkResourceTypes;
} else {
reader.skipChildren();
}
}
return deserializedPrivateLinkResourceProperties;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy