com.azure.resourcemanager.hybridcompute.models.LicenseProfileUpdate 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.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.hybridcompute.fluent.models.LicenseProfileUpdateProperties;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/**
* Describes a License Profile Update.
*/
@Fluent
public final class LicenseProfileUpdate extends ResourceUpdate {
/*
* Describe the Update properties of a license profile.
*/
private LicenseProfileUpdateProperties innerProperties;
/**
* Creates an instance of LicenseProfileUpdate class.
*/
public LicenseProfileUpdate() {
}
/**
* Get the innerProperties property: Describe the Update properties of a license profile.
*
* @return the innerProperties value.
*/
private LicenseProfileUpdateProperties innerProperties() {
return this.innerProperties;
}
/**
* {@inheritDoc}
*/
@Override
public LicenseProfileUpdate withTags(Map tags) {
super.withTags(tags);
return this;
}
/**
* 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.innerProperties() == null ? null : this.innerProperties().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 LicenseProfileUpdate object itself.
*/
public LicenseProfileUpdate withSoftwareAssuranceCustomer(Boolean softwareAssuranceCustomer) {
if (this.innerProperties() == null) {
this.innerProperties = new LicenseProfileUpdateProperties();
}
this.innerProperties().withSoftwareAssuranceCustomer(softwareAssuranceCustomer);
return this;
}
/**
* Get the assignedLicense property: The resource id of the license.
*
* @return the assignedLicense value.
*/
public String assignedLicense() {
return this.innerProperties() == null ? null : this.innerProperties().assignedLicense();
}
/**
* Set the assignedLicense property: The resource id of the license.
*
* @param assignedLicense the assignedLicense value to set.
* @return the LicenseProfileUpdate object itself.
*/
public LicenseProfileUpdate withAssignedLicense(String assignedLicense) {
if (this.innerProperties() == null) {
this.innerProperties = new LicenseProfileUpdateProperties();
}
this.innerProperties().withAssignedLicense(assignedLicense);
return this;
}
/**
* Get the subscriptionStatus property: Indicates the subscription status of the product.
*
* @return the subscriptionStatus value.
*/
public LicenseProfileSubscriptionStatusUpdate subscriptionStatus() {
return this.innerProperties() == null ? null : this.innerProperties().subscriptionStatus();
}
/**
* Set the subscriptionStatus property: Indicates the subscription status of the product.
*
* @param subscriptionStatus the subscriptionStatus value to set.
* @return the LicenseProfileUpdate object itself.
*/
public LicenseProfileUpdate withSubscriptionStatus(LicenseProfileSubscriptionStatusUpdate subscriptionStatus) {
if (this.innerProperties() == null) {
this.innerProperties = new LicenseProfileUpdateProperties();
}
this.innerProperties().withSubscriptionStatus(subscriptionStatus);
return this;
}
/**
* Get the productType property: Indicates the product type of the license.
*
* @return the productType value.
*/
public LicenseProfileProductType productType() {
return this.innerProperties() == null ? null : this.innerProperties().productType();
}
/**
* Set the productType property: Indicates the product type of the license.
*
* @param productType the productType value to set.
* @return the LicenseProfileUpdate object itself.
*/
public LicenseProfileUpdate withProductType(LicenseProfileProductType productType) {
if (this.innerProperties() == null) {
this.innerProperties = new LicenseProfileUpdateProperties();
}
this.innerProperties().withProductType(productType);
return this;
}
/**
* Get the productFeatures property: The list of product feature updates.
*
* @return the productFeatures value.
*/
public List productFeatures() {
return this.innerProperties() == null ? null : this.innerProperties().productFeatures();
}
/**
* Set the productFeatures property: The list of product feature updates.
*
* @param productFeatures the productFeatures value to set.
* @return the LicenseProfileUpdate object itself.
*/
public LicenseProfileUpdate withProductFeatures(List productFeatures) {
if (this.innerProperties() == null) {
this.innerProperties = new LicenseProfileUpdateProperties();
}
this.innerProperties().withProductFeatures(productFeatures);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeMapField("tags", tags(), (writer, element) -> writer.writeString(element));
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of LicenseProfileUpdate from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of LicenseProfileUpdate 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 LicenseProfileUpdate.
*/
public static LicenseProfileUpdate fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
LicenseProfileUpdate deserializedLicenseProfileUpdate = new LicenseProfileUpdate();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("tags".equals(fieldName)) {
Map tags = reader.readMap(reader1 -> reader1.getString());
deserializedLicenseProfileUpdate.withTags(tags);
} else if ("properties".equals(fieldName)) {
deserializedLicenseProfileUpdate.innerProperties = LicenseProfileUpdateProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedLicenseProfileUpdate;
});
}
}