com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphAssignedLicense 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.authorization.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.UUID;
/**
* assignedLicense.
*/
@Fluent
public final class MicrosoftGraphAssignedLicense implements JsonSerializable {
/*
* A collection of the unique identifiers for plans that have been disabled.
*/
private List disabledPlans;
/*
* The unique identifier for the SKU.
*/
private UUID skuId;
/*
* assignedLicense
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphAssignedLicense class.
*/
public MicrosoftGraphAssignedLicense() {
}
/**
* Get the disabledPlans property: A collection of the unique identifiers for plans that have been disabled.
*
* @return the disabledPlans value.
*/
public List disabledPlans() {
return this.disabledPlans;
}
/**
* Set the disabledPlans property: A collection of the unique identifiers for plans that have been disabled.
*
* @param disabledPlans the disabledPlans value to set.
* @return the MicrosoftGraphAssignedLicense object itself.
*/
public MicrosoftGraphAssignedLicense withDisabledPlans(List disabledPlans) {
this.disabledPlans = disabledPlans;
return this;
}
/**
* Get the skuId property: The unique identifier for the SKU.
*
* @return the skuId value.
*/
public UUID skuId() {
return this.skuId;
}
/**
* Set the skuId property: The unique identifier for the SKU.
*
* @param skuId the skuId value to set.
* @return the MicrosoftGraphAssignedLicense object itself.
*/
public MicrosoftGraphAssignedLicense withSkuId(UUID skuId) {
this.skuId = skuId;
return this;
}
/**
* Get the additionalProperties property: assignedLicense.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: assignedLicense.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphAssignedLicense object itself.
*/
public MicrosoftGraphAssignedLicense withAdditionalProperties(Map additionalProperties) {
this.additionalProperties = additionalProperties;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("disabledPlans", this.disabledPlans,
(writer, element) -> writer.writeString(Objects.toString(element, null)));
jsonWriter.writeStringField("skuId", Objects.toString(this.skuId, null));
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphAssignedLicense from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphAssignedLicense 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 MicrosoftGraphAssignedLicense.
*/
public static MicrosoftGraphAssignedLicense fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphAssignedLicense deserializedMicrosoftGraphAssignedLicense
= new MicrosoftGraphAssignedLicense();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("disabledPlans".equals(fieldName)) {
List disabledPlans = reader.readArray(
reader1 -> reader1.getNullable(nonNullReader -> UUID.fromString(nonNullReader.getString())));
deserializedMicrosoftGraphAssignedLicense.disabledPlans = disabledPlans;
} else if ("skuId".equals(fieldName)) {
deserializedMicrosoftGraphAssignedLicense.skuId
= reader.getNullable(nonNullReader -> UUID.fromString(nonNullReader.getString()));
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphAssignedLicense.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphAssignedLicense;
});
}
}