![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.models.VirtualMachineScaleSetExtensionProfile 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 com.azure.resourcemanager.compute.fluent.models.VirtualMachineScaleSetExtensionInner;
import java.io.IOException;
import java.util.List;
/**
* Describes a virtual machine scale set extension profile.
*/
@Fluent
public final class VirtualMachineScaleSetExtensionProfile
implements JsonSerializable {
/*
* The virtual machine scale set child extension resources.
*/
private List extensions;
/*
* Specifies the time alloted for all extensions to start. The time duration should be between 15 minutes and 120
* minutes (inclusive) and should be specified in ISO 8601 format. The default value is 90 minutes (PT1H30M).
* Minimum api-version: 2020-06-01.
*/
private String extensionsTimeBudget;
/**
* Creates an instance of VirtualMachineScaleSetExtensionProfile class.
*/
public VirtualMachineScaleSetExtensionProfile() {
}
/**
* Get the extensions property: The virtual machine scale set child extension resources.
*
* @return the extensions value.
*/
public List extensions() {
return this.extensions;
}
/**
* Set the extensions property: The virtual machine scale set child extension resources.
*
* @param extensions the extensions value to set.
* @return the VirtualMachineScaleSetExtensionProfile object itself.
*/
public VirtualMachineScaleSetExtensionProfile
withExtensions(List extensions) {
this.extensions = extensions;
return this;
}
/**
* Get the extensionsTimeBudget property: Specifies the time alloted for all extensions to start. The time duration
* should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default
* value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
*
* @return the extensionsTimeBudget value.
*/
public String extensionsTimeBudget() {
return this.extensionsTimeBudget;
}
/**
* Set the extensionsTimeBudget property: Specifies the time alloted for all extensions to start. The time duration
* should be between 15 minutes and 120 minutes (inclusive) and should be specified in ISO 8601 format. The default
* value is 90 minutes (PT1H30M). Minimum api-version: 2020-06-01.
*
* @param extensionsTimeBudget the extensionsTimeBudget value to set.
* @return the VirtualMachineScaleSetExtensionProfile object itself.
*/
public VirtualMachineScaleSetExtensionProfile withExtensionsTimeBudget(String extensionsTimeBudget) {
this.extensionsTimeBudget = extensionsTimeBudget;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (extensions() != null) {
extensions().forEach(e -> e.validate());
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeArrayField("extensions", this.extensions, (writer, element) -> writer.writeJson(element));
jsonWriter.writeStringField("extensionsTimeBudget", this.extensionsTimeBudget);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualMachineScaleSetExtensionProfile from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineScaleSetExtensionProfile 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 VirtualMachineScaleSetExtensionProfile.
*/
public static VirtualMachineScaleSetExtensionProfile fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineScaleSetExtensionProfile deserializedVirtualMachineScaleSetExtensionProfile
= new VirtualMachineScaleSetExtensionProfile();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("extensions".equals(fieldName)) {
List extensions
= reader.readArray(reader1 -> VirtualMachineScaleSetExtensionInner.fromJson(reader1));
deserializedVirtualMachineScaleSetExtensionProfile.extensions = extensions;
} else if ("extensionsTimeBudget".equals(fieldName)) {
deserializedVirtualMachineScaleSetExtensionProfile.extensionsTimeBudget = reader.getString();
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineScaleSetExtensionProfile;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy