com.azure.resourcemanager.compute.fluent.models.VirtualMachineScaleSetVMExtensionInner 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.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import com.azure.resourcemanager.compute.models.KeyVaultSecretReference;
import com.azure.resourcemanager.compute.models.SubResourceReadOnly;
import com.azure.resourcemanager.compute.models.VirtualMachineExtensionInstanceView;
import java.io.IOException;
import java.util.List;
/**
* Describes a VMSS VM Extension.
*/
@Fluent
public final class VirtualMachineScaleSetVMExtensionInner extends SubResourceReadOnly {
/*
* The name of the extension.
*/
private String name;
/*
* Resource type
*/
private String type;
/*
* The location of the extension.
*/
private String location;
/*
* Describes the properties of a Virtual Machine Extension.
*/
private VirtualMachineExtensionProperties innerProperties;
/*
* Resource Id
*/
private String id;
/**
* Creates an instance of VirtualMachineScaleSetVMExtensionInner class.
*/
public VirtualMachineScaleSetVMExtensionInner() {
}
/**
* Get the name property: The name of the extension.
*
* @return the name value.
*/
public String name() {
return this.name;
}
/**
* Get the type property: Resource type.
*
* @return the type value.
*/
public String type() {
return this.type;
}
/**
* Get the location property: The location of the extension.
*
* @return the location value.
*/
public String location() {
return this.location;
}
/**
* Set the location property: The location of the extension.
*
* @param location the location value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withLocation(String location) {
this.location = location;
return this;
}
/**
* Get the innerProperties property: Describes the properties of a Virtual Machine Extension.
*
* @return the innerProperties value.
*/
private VirtualMachineExtensionProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the id property: Resource Id.
*
* @return the id value.
*/
@Override
public String id() {
return this.id;
}
/**
* Get the forceUpdateTag property: How the extension handler should be forced to update even if the extension
* configuration has not changed.
*
* @return the forceUpdateTag value.
*/
public String forceUpdateTag() {
return this.innerProperties() == null ? null : this.innerProperties().forceUpdateTag();
}
/**
* Set the forceUpdateTag property: How the extension handler should be forced to update even if the extension
* configuration has not changed.
*
* @param forceUpdateTag the forceUpdateTag value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withForceUpdateTag(String forceUpdateTag) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withForceUpdateTag(forceUpdateTag);
return this;
}
/**
* Get the publisher property: The name of the extension handler publisher.
*
* @return the publisher value.
*/
public String publisher() {
return this.innerProperties() == null ? null : this.innerProperties().publisher();
}
/**
* Set the publisher property: The name of the extension handler publisher.
*
* @param publisher the publisher value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withPublisher(String publisher) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withPublisher(publisher);
return this;
}
/**
* Get the type property: Specifies the type of the extension; an example is "CustomScriptExtension".
*
* @return the type value.
*/
public String typePropertiesType() {
return this.innerProperties() == null ? null : this.innerProperties().type();
}
/**
* Set the type property: Specifies the type of the extension; an example is "CustomScriptExtension".
*
* @param type the type value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withTypePropertiesType(String type) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withType(type);
return this;
}
/**
* Get the typeHandlerVersion property: Specifies the version of the script handler.
*
* @return the typeHandlerVersion value.
*/
public String typeHandlerVersion() {
return this.innerProperties() == null ? null : this.innerProperties().typeHandlerVersion();
}
/**
* Set the typeHandlerVersion property: Specifies the version of the script handler.
*
* @param typeHandlerVersion the typeHandlerVersion value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withTypeHandlerVersion(String typeHandlerVersion) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withTypeHandlerVersion(typeHandlerVersion);
return this;
}
/**
* Get the autoUpgradeMinorVersion property: Indicates whether the extension should use a newer minor version if one
* is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless
* redeployed, even with this property set to true.
*
* @return the autoUpgradeMinorVersion value.
*/
public Boolean autoUpgradeMinorVersion() {
return this.innerProperties() == null ? null : this.innerProperties().autoUpgradeMinorVersion();
}
/**
* Set the autoUpgradeMinorVersion property: Indicates whether the extension should use a newer minor version if one
* is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless
* redeployed, even with this property set to true.
*
* @param autoUpgradeMinorVersion the autoUpgradeMinorVersion value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withAutoUpgradeMinorVersion(Boolean autoUpgradeMinorVersion) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withAutoUpgradeMinorVersion(autoUpgradeMinorVersion);
return this;
}
/**
* Get the enableAutomaticUpgrade property: Indicates whether the extension should be automatically upgraded by the
* platform if there is a newer version of the extension available.
*
* @return the enableAutomaticUpgrade value.
*/
public Boolean enableAutomaticUpgrade() {
return this.innerProperties() == null ? null : this.innerProperties().enableAutomaticUpgrade();
}
/**
* Set the enableAutomaticUpgrade property: Indicates whether the extension should be automatically upgraded by the
* platform if there is a newer version of the extension available.
*
* @param enableAutomaticUpgrade the enableAutomaticUpgrade value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withEnableAutomaticUpgrade(Boolean enableAutomaticUpgrade) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withEnableAutomaticUpgrade(enableAutomaticUpgrade);
return this;
}
/**
* Get the settings property: Json formatted public settings for the extension.
*
* @return the settings value.
*/
public Object settings() {
return this.innerProperties() == null ? null : this.innerProperties().settings();
}
/**
* Set the settings property: Json formatted public settings for the extension.
*
* @param settings the settings value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withSettings(Object settings) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withSettings(settings);
return this;
}
/**
* Get the protectedSettings property: The extension can contain either protectedSettings or
* protectedSettingsFromKeyVault or no protected settings at all.
*
* @return the protectedSettings value.
*/
public Object protectedSettings() {
return this.innerProperties() == null ? null : this.innerProperties().protectedSettings();
}
/**
* Set the protectedSettings property: The extension can contain either protectedSettings or
* protectedSettingsFromKeyVault or no protected settings at all.
*
* @param protectedSettings the protectedSettings value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withProtectedSettings(Object protectedSettings) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withProtectedSettings(protectedSettings);
return this;
}
/**
* Get the provisioningState property: The provisioning state, which only appears in the response.
*
* @return the provisioningState value.
*/
public String provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Get the instanceView property: The virtual machine extension instance view.
*
* @return the instanceView value.
*/
public VirtualMachineExtensionInstanceView instanceView() {
return this.innerProperties() == null ? null : this.innerProperties().instanceView();
}
/**
* Set the instanceView property: The virtual machine extension instance view.
*
* @param instanceView the instanceView value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withInstanceView(VirtualMachineExtensionInstanceView instanceView) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withInstanceView(instanceView);
return this;
}
/**
* Get the suppressFailures property: Indicates whether failures stemming from the extension will be suppressed
* (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The
* default is false.
*
* @return the suppressFailures value.
*/
public Boolean suppressFailures() {
return this.innerProperties() == null ? null : this.innerProperties().suppressFailures();
}
/**
* Set the suppressFailures property: Indicates whether failures stemming from the extension will be suppressed
* (Operational failures such as not connecting to the VM will not be suppressed regardless of this value). The
* default is false.
*
* @param suppressFailures the suppressFailures value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withSuppressFailures(Boolean suppressFailures) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withSuppressFailures(suppressFailures);
return this;
}
/**
* Get the protectedSettingsFromKeyVault property: The extensions protected settings that are passed by reference,
* and consumed from key vault.
*
* @return the protectedSettingsFromKeyVault value.
*/
public KeyVaultSecretReference protectedSettingsFromKeyVault() {
return this.innerProperties() == null ? null : this.innerProperties().protectedSettingsFromKeyVault();
}
/**
* Set the protectedSettingsFromKeyVault property: The extensions protected settings that are passed by reference,
* and consumed from key vault.
*
* @param protectedSettingsFromKeyVault the protectedSettingsFromKeyVault value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner
withProtectedSettingsFromKeyVault(KeyVaultSecretReference protectedSettingsFromKeyVault) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withProtectedSettingsFromKeyVault(protectedSettingsFromKeyVault);
return this;
}
/**
* Get the provisionAfterExtensions property: Collection of extension names after which this extension needs to be
* provisioned.
*
* @return the provisionAfterExtensions value.
*/
public List provisionAfterExtensions() {
return this.innerProperties() == null ? null : this.innerProperties().provisionAfterExtensions();
}
/**
* Set the provisionAfterExtensions property: Collection of extension names after which this extension needs to be
* provisioned.
*
* @param provisionAfterExtensions the provisionAfterExtensions value to set.
* @return the VirtualMachineScaleSetVMExtensionInner object itself.
*/
public VirtualMachineScaleSetVMExtensionInner withProvisionAfterExtensions(List provisionAfterExtensions) {
if (this.innerProperties() == null) {
this.innerProperties = new VirtualMachineExtensionProperties();
}
this.innerProperties().withProvisionAfterExtensions(provisionAfterExtensions);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
if (innerProperties() != null) {
innerProperties().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("location", this.location);
jsonWriter.writeJsonField("properties", this.innerProperties);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of VirtualMachineScaleSetVMExtensionInner from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of VirtualMachineScaleSetVMExtensionInner 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 VirtualMachineScaleSetVMExtensionInner.
*/
public static VirtualMachineScaleSetVMExtensionInner fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
VirtualMachineScaleSetVMExtensionInner deserializedVirtualMachineScaleSetVMExtensionInner
= new VirtualMachineScaleSetVMExtensionInner();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("id".equals(fieldName)) {
deserializedVirtualMachineScaleSetVMExtensionInner.id = reader.getString();
} else if ("name".equals(fieldName)) {
deserializedVirtualMachineScaleSetVMExtensionInner.name = reader.getString();
} else if ("type".equals(fieldName)) {
deserializedVirtualMachineScaleSetVMExtensionInner.type = reader.getString();
} else if ("location".equals(fieldName)) {
deserializedVirtualMachineScaleSetVMExtensionInner.location = reader.getString();
} else if ("properties".equals(fieldName)) {
deserializedVirtualMachineScaleSetVMExtensionInner.innerProperties
= VirtualMachineExtensionProperties.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedVirtualMachineScaleSetVMExtensionInner;
});
}
}