com.azure.resourcemanager.hybridcompute.models.LicenseProfileMachineInstanceViewEsuProperties 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-05.
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.hybridcompute.models;
import com.azure.resourcemanager.hybridcompute.fluent.models.LicenseProfileMachineInstanceViewEsuPropertiesInner;
import java.util.List;
/**
* An immutable client-side representation of LicenseProfileMachineInstanceViewEsuProperties.
*/
public interface LicenseProfileMachineInstanceViewEsuProperties {
/**
* Gets the assignedLicenseImmutableId property: The guid id of the license.
*
* @return the assignedLicenseImmutableId value.
*/
String assignedLicenseImmutableId();
/**
* Gets the esuKeys property: The list of ESU keys.
*
* @return the esuKeys value.
*/
List esuKeys();
/**
* Gets the serverType property: The type of the Esu servers.
*
* @return the serverType value.
*/
EsuServerType serverType();
/**
* Gets the esuEligibility property: Indicates the eligibility state of Esu.
*
* @return the esuEligibility value.
*/
EsuEligibility esuEligibility();
/**
* Gets the esuKeyState property: Indicates whether there is an ESU Key currently active for the machine.
*
* @return the esuKeyState value.
*/
EsuKeyState esuKeyState();
/**
* Gets the assignedLicense property: The assigned license resource.
*
* @return the assignedLicense value.
*/
License assignedLicense();
/**
* Gets the licenseAssignmentState property: Describes the license assignment state (Assigned or NotAssigned).
*
* @return the licenseAssignmentState value.
*/
LicenseAssignmentState licenseAssignmentState();
/**
* Gets the inner
* com.azure.resourcemanager.hybridcompute.fluent.models.LicenseProfileMachineInstanceViewEsuPropertiesInner object.
*
* @return the inner object.
*/
LicenseProfileMachineInstanceViewEsuPropertiesInner innerModel();
}