com.azure.resourcemanager.compute.models.OSImageNotificationProfile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.compute.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;
/**
* The OSImageNotificationProfile model.
*/
@Fluent
public final class OSImageNotificationProfile implements JsonSerializable {
/*
* Length of time a Virtual Machine being reimaged or having its OS upgraded will have to potentially approve the OS
* Image Scheduled Event before the event is auto approved (timed out). The configuration is specified in ISO 8601
* format, and the value must be 15 minutes (PT15M)
*/
private String notBeforeTimeout;
/*
* Specifies whether the OS Image Scheduled event is enabled or disabled.
*/
private Boolean enable;
/**
* Creates an instance of OSImageNotificationProfile class.
*/
public OSImageNotificationProfile() {
}
/**
* Get the notBeforeTimeout property: Length of time a Virtual Machine being reimaged or having its OS upgraded will
* have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The
* configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M).
*
* @return the notBeforeTimeout value.
*/
public String notBeforeTimeout() {
return this.notBeforeTimeout;
}
/**
* Set the notBeforeTimeout property: Length of time a Virtual Machine being reimaged or having its OS upgraded will
* have to potentially approve the OS Image Scheduled Event before the event is auto approved (timed out). The
* configuration is specified in ISO 8601 format, and the value must be 15 minutes (PT15M).
*
* @param notBeforeTimeout the notBeforeTimeout value to set.
* @return the OSImageNotificationProfile object itself.
*/
public OSImageNotificationProfile withNotBeforeTimeout(String notBeforeTimeout) {
this.notBeforeTimeout = notBeforeTimeout;
return this;
}
/**
* Get the enable property: Specifies whether the OS Image Scheduled event is enabled or disabled.
*
* @return the enable value.
*/
public Boolean enable() {
return this.enable;
}
/**
* Set the enable property: Specifies whether the OS Image Scheduled event is enabled or disabled.
*
* @param enable the enable value to set.
* @return the OSImageNotificationProfile object itself.
*/
public OSImageNotificationProfile withEnable(Boolean enable) {
this.enable = enable;
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("notBeforeTimeout", this.notBeforeTimeout);
jsonWriter.writeBooleanField("enable", this.enable);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of OSImageNotificationProfile from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of OSImageNotificationProfile 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 OSImageNotificationProfile.
*/
public static OSImageNotificationProfile fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
OSImageNotificationProfile deserializedOSImageNotificationProfile = new OSImageNotificationProfile();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("notBeforeTimeout".equals(fieldName)) {
deserializedOSImageNotificationProfile.notBeforeTimeout = reader.getString();
} else if ("enable".equals(fieldName)) {
deserializedOSImageNotificationProfile.enable = reader.getNullable(JsonReader::getBoolean);
} else {
reader.skipChildren();
}
}
return deserializedOSImageNotificationProfile;
});
}
}