![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphAssignedPlan 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.core.util.CoreUtils;
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.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import java.util.UUID;
/**
* assignedPlan.
*/
@Fluent
public final class MicrosoftGraphAssignedPlan implements JsonSerializable {
/*
* The assignedDateTime property.
*/
private OffsetDateTime assignedDateTime;
/*
* Condition of the capability assignment. The possible values are Enabled, Warning, Suspended, Deleted, LockedOut.
*/
private String capabilityStatus;
/*
* The name of the service; for example, 'Exchange'.
*/
private String service;
/*
* A GUID that identifies the service plan.
*/
private UUID servicePlanId;
/*
* assignedPlan
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphAssignedPlan class.
*/
public MicrosoftGraphAssignedPlan() {
}
/**
* Get the assignedDateTime property: The assignedDateTime property.
*
* @return the assignedDateTime value.
*/
public OffsetDateTime assignedDateTime() {
return this.assignedDateTime;
}
/**
* Set the assignedDateTime property: The assignedDateTime property.
*
* @param assignedDateTime the assignedDateTime value to set.
* @return the MicrosoftGraphAssignedPlan object itself.
*/
public MicrosoftGraphAssignedPlan withAssignedDateTime(OffsetDateTime assignedDateTime) {
this.assignedDateTime = assignedDateTime;
return this;
}
/**
* Get the capabilityStatus property: Condition of the capability assignment. The possible values are Enabled,
* Warning, Suspended, Deleted, LockedOut.
*
* @return the capabilityStatus value.
*/
public String capabilityStatus() {
return this.capabilityStatus;
}
/**
* Set the capabilityStatus property: Condition of the capability assignment. The possible values are Enabled,
* Warning, Suspended, Deleted, LockedOut.
*
* @param capabilityStatus the capabilityStatus value to set.
* @return the MicrosoftGraphAssignedPlan object itself.
*/
public MicrosoftGraphAssignedPlan withCapabilityStatus(String capabilityStatus) {
this.capabilityStatus = capabilityStatus;
return this;
}
/**
* Get the service property: The name of the service; for example, 'Exchange'.
*
* @return the service value.
*/
public String service() {
return this.service;
}
/**
* Set the service property: The name of the service; for example, 'Exchange'.
*
* @param service the service value to set.
* @return the MicrosoftGraphAssignedPlan object itself.
*/
public MicrosoftGraphAssignedPlan withService(String service) {
this.service = service;
return this;
}
/**
* Get the servicePlanId property: A GUID that identifies the service plan.
*
* @return the servicePlanId value.
*/
public UUID servicePlanId() {
return this.servicePlanId;
}
/**
* Set the servicePlanId property: A GUID that identifies the service plan.
*
* @param servicePlanId the servicePlanId value to set.
* @return the MicrosoftGraphAssignedPlan object itself.
*/
public MicrosoftGraphAssignedPlan withServicePlanId(UUID servicePlanId) {
this.servicePlanId = servicePlanId;
return this;
}
/**
* Get the additionalProperties property: assignedPlan.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: assignedPlan.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphAssignedPlan object itself.
*/
public MicrosoftGraphAssignedPlan 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.writeStringField("assignedDateTime",
this.assignedDateTime == null
? null
: DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(this.assignedDateTime));
jsonWriter.writeStringField("capabilityStatus", this.capabilityStatus);
jsonWriter.writeStringField("service", this.service);
jsonWriter.writeStringField("servicePlanId", Objects.toString(this.servicePlanId, null));
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphAssignedPlan from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphAssignedPlan 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 MicrosoftGraphAssignedPlan.
*/
public static MicrosoftGraphAssignedPlan fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphAssignedPlan deserializedMicrosoftGraphAssignedPlan = new MicrosoftGraphAssignedPlan();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("assignedDateTime".equals(fieldName)) {
deserializedMicrosoftGraphAssignedPlan.assignedDateTime = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("capabilityStatus".equals(fieldName)) {
deserializedMicrosoftGraphAssignedPlan.capabilityStatus = reader.getString();
} else if ("service".equals(fieldName)) {
deserializedMicrosoftGraphAssignedPlan.service = reader.getString();
} else if ("servicePlanId".equals(fieldName)) {
deserializedMicrosoftGraphAssignedPlan.servicePlanId
= reader.getNullable(nonNullReader -> UUID.fromString(nonNullReader.getString()));
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphAssignedPlan.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphAssignedPlan;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy