
com.azure.resourcemanager.hybridcompute.models.ExtensionTargetProperties 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.hybridcompute.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Describes the Machine Extension Target Version Properties.
*/
@Fluent
public final class ExtensionTargetProperties {
/*
* Properties for the specified Extension to Upgrade.
*/
@JsonProperty(value = "targetVersion")
private String targetVersion;
/**
* Creates an instance of ExtensionTargetProperties class.
*/
public ExtensionTargetProperties() {
}
/**
* Get the targetVersion property: Properties for the specified Extension to Upgrade.
*
* @return the targetVersion value.
*/
public String targetVersion() {
return this.targetVersion;
}
/**
* Set the targetVersion property: Properties for the specified Extension to Upgrade.
*
* @param targetVersion the targetVersion value to set.
* @return the ExtensionTargetProperties object itself.
*/
public ExtensionTargetProperties withTargetVersion(String targetVersion) {
this.targetVersion = targetVersion;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy