
com.azure.resourcemanager.eventgrid.models.PrivateLinkResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-eventgrid Show documentation
Show all versions of azure-resourcemanager-eventgrid Show documentation
This package contains Microsoft Azure SDK for EventGrid Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure EventGrid Management Client. Package tag package-2021-10-preview.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.eventgrid.models;
import com.azure.resourcemanager.eventgrid.fluent.models.PrivateLinkResourceInner;
import java.util.List;
/**
* An immutable client-side representation of PrivateLinkResource.
*/
public interface PrivateLinkResource {
/**
* Gets the id property: Fully qualified identifier of the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: Name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: Type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the groupId property: The groupId property.
*
* @return the groupId value.
*/
String groupId();
/**
* Gets the displayName property: The displayName property.
*
* @return the displayName value.
*/
String displayName();
/**
* Gets the requiredMembers property: The requiredMembers property.
*
* @return the requiredMembers value.
*/
List requiredMembers();
/**
* Gets the requiredZoneNames property: The requiredZoneNames property.
*
* @return the requiredZoneNames value.
*/
List requiredZoneNames();
/**
* Gets the inner com.azure.resourcemanager.eventgrid.fluent.models.PrivateLinkResourceInner object.
*
* @return the inner object.
*/
PrivateLinkResourceInner innerModel();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy