
com.azure.resourcemanager.hybridcompute.models.ExtensionTargetProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-hybridcompute Show documentation
Show all versions of azure-resourcemanager-hybridcompute Show documentation
This package contains Microsoft Azure SDK for HybridCompute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. The Hybrid Compute Management Client. Package tag package-preview-2024-07.
// 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 - 2024 Weber Informatics LLC | Privacy Policy