
com.azure.resourcemanager.hybridcompute.fluent.models.LicenseProfileUpdatePropertiesSoftwareAssurance Maven / Gradle / Ivy
// 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.fluent.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* The LicenseProfileUpdatePropertiesSoftwareAssurance model.
*/
@Fluent
public final class LicenseProfileUpdatePropertiesSoftwareAssurance {
/*
* Specifies if this machine is licensed as part of a Software Assurance agreement.
*/
@JsonProperty(value = "softwareAssuranceCustomer")
private Boolean softwareAssuranceCustomer;
/**
* Creates an instance of LicenseProfileUpdatePropertiesSoftwareAssurance class.
*/
public LicenseProfileUpdatePropertiesSoftwareAssurance() {
}
/**
* Get the softwareAssuranceCustomer property: Specifies if this machine is licensed as part of a Software Assurance
* agreement.
*
* @return the softwareAssuranceCustomer value.
*/
public Boolean softwareAssuranceCustomer() {
return this.softwareAssuranceCustomer;
}
/**
* Set the softwareAssuranceCustomer property: Specifies if this machine is licensed as part of a Software Assurance
* agreement.
*
* @param softwareAssuranceCustomer the softwareAssuranceCustomer value to set.
* @return the LicenseProfileUpdatePropertiesSoftwareAssurance object itself.
*/
public LicenseProfileUpdatePropertiesSoftwareAssurance
withSoftwareAssuranceCustomer(Boolean softwareAssuranceCustomer) {
this.softwareAssuranceCustomer = softwareAssuranceCustomer;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy