com.azure.resourcemanager.authorization.fluent.models.MicrosoftGraphUploadSession 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.List;
import java.util.Map;
/**
* uploadSession.
*/
@Fluent
public final class MicrosoftGraphUploadSession implements JsonSerializable {
/*
* The date and time in UTC that the upload session will expire. The complete file must be uploaded before this
* expiration time is reached.
*/
private OffsetDateTime expirationDateTime;
/*
* A collection of byte ranges that the server is missing for the file. These ranges are zero indexed and of the
* format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file). When uploading files as Outlook
* attachments, instead of a collection of ranges, this property always indicates a single value '{start}', the
* location in the file where the next upload should begin.
*/
private List nextExpectedRanges;
/*
* The URL endpoint that accepts PUT requests for byte ranges of the file.
*/
private String uploadUrl;
/*
* uploadSession
*/
private Map additionalProperties;
/**
* Creates an instance of MicrosoftGraphUploadSession class.
*/
public MicrosoftGraphUploadSession() {
}
/**
* Get the expirationDateTime property: The date and time in UTC that the upload session will expire. The complete
* file must be uploaded before this expiration time is reached.
*
* @return the expirationDateTime value.
*/
public OffsetDateTime expirationDateTime() {
return this.expirationDateTime;
}
/**
* Set the expirationDateTime property: The date and time in UTC that the upload session will expire. The complete
* file must be uploaded before this expiration time is reached.
*
* @param expirationDateTime the expirationDateTime value to set.
* @return the MicrosoftGraphUploadSession object itself.
*/
public MicrosoftGraphUploadSession withExpirationDateTime(OffsetDateTime expirationDateTime) {
this.expirationDateTime = expirationDateTime;
return this;
}
/**
* Get the nextExpectedRanges property: A collection of byte ranges that the server is missing for the file. These
* ranges are zero indexed and of the format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file).
* When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a
* single value '{start}', the location in the file where the next upload should begin.
*
* @return the nextExpectedRanges value.
*/
public List nextExpectedRanges() {
return this.nextExpectedRanges;
}
/**
* Set the nextExpectedRanges property: A collection of byte ranges that the server is missing for the file. These
* ranges are zero indexed and of the format 'start-end' (e.g. '0-26' to indicate the first 27 bytes of the file).
* When uploading files as Outlook attachments, instead of a collection of ranges, this property always indicates a
* single value '{start}', the location in the file where the next upload should begin.
*
* @param nextExpectedRanges the nextExpectedRanges value to set.
* @return the MicrosoftGraphUploadSession object itself.
*/
public MicrosoftGraphUploadSession withNextExpectedRanges(List nextExpectedRanges) {
this.nextExpectedRanges = nextExpectedRanges;
return this;
}
/**
* Get the uploadUrl property: The URL endpoint that accepts PUT requests for byte ranges of the file.
*
* @return the uploadUrl value.
*/
public String uploadUrl() {
return this.uploadUrl;
}
/**
* Set the uploadUrl property: The URL endpoint that accepts PUT requests for byte ranges of the file.
*
* @param uploadUrl the uploadUrl value to set.
* @return the MicrosoftGraphUploadSession object itself.
*/
public MicrosoftGraphUploadSession withUploadUrl(String uploadUrl) {
this.uploadUrl = uploadUrl;
return this;
}
/**
* Get the additionalProperties property: uploadSession.
*
* @return the additionalProperties value.
*/
public Map additionalProperties() {
return this.additionalProperties;
}
/**
* Set the additionalProperties property: uploadSession.
*
* @param additionalProperties the additionalProperties value to set.
* @return the MicrosoftGraphUploadSession object itself.
*/
public MicrosoftGraphUploadSession 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("expirationDateTime",
this.expirationDateTime == null
? null
: DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(this.expirationDateTime));
jsonWriter.writeArrayField("nextExpectedRanges", this.nextExpectedRanges,
(writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("uploadUrl", this.uploadUrl);
if (additionalProperties != null) {
for (Map.Entry additionalProperty : additionalProperties.entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MicrosoftGraphUploadSession from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MicrosoftGraphUploadSession 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 MicrosoftGraphUploadSession.
*/
public static MicrosoftGraphUploadSession fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MicrosoftGraphUploadSession deserializedMicrosoftGraphUploadSession = new MicrosoftGraphUploadSession();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("expirationDateTime".equals(fieldName)) {
deserializedMicrosoftGraphUploadSession.expirationDateTime = reader
.getNullable(nonNullReader -> CoreUtils.parseBestOffsetDateTime(nonNullReader.getString()));
} else if ("nextExpectedRanges".equals(fieldName)) {
List nextExpectedRanges = reader.readArray(reader1 -> reader1.getString());
deserializedMicrosoftGraphUploadSession.nextExpectedRanges = nextExpectedRanges;
} else if ("uploadUrl".equals(fieldName)) {
deserializedMicrosoftGraphUploadSession.uploadUrl = reader.getString();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedMicrosoftGraphUploadSession.additionalProperties = additionalProperties;
return deserializedMicrosoftGraphUploadSession;
});
}
}