com.azure.resourcemanager.hybridcompute.models.PrivateLinkScopeValidationDetails Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.hybridcompute.models;
import com.azure.resourcemanager.hybridcompute.fluent.models.PrivateLinkScopeValidationDetailsInner;
import java.util.List;
/**
* An immutable client-side representation of PrivateLinkScopeValidationDetails.
*/
public interface PrivateLinkScopeValidationDetails {
/**
* Gets the id property: Azure resource Id.
*
* @return the id value.
*/
String id();
/**
* Gets the publicNetworkAccess property: Indicates whether machines associated with the private link scope can also
* use public Azure Arc service endpoints.
*
* @return the publicNetworkAccess value.
*/
PublicNetworkAccessType publicNetworkAccess();
/**
* Gets the connectionDetails property: List of Private Endpoint Connection details.
*
* @return the connectionDetails value.
*/
List connectionDetails();
/**
* Gets the inner com.azure.resourcemanager.hybridcompute.fluent.models.PrivateLinkScopeValidationDetailsInner
* object.
*
* @return the inner object.
*/
PrivateLinkScopeValidationDetailsInner innerModel();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy