com.pulumi.azurenative.batch.inputs.ScaleSettingsArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.batch.inputs;
import com.pulumi.azurenative.batch.inputs.AutoScaleSettingsArgs;
import com.pulumi.azurenative.batch.inputs.FixedScaleSettingsArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* Defines the desired size of the pool. This can either be 'fixedScale' where the requested targetDedicatedNodes is specified, or 'autoScale' which defines a formula which is periodically reevaluated. If this property is not specified, the pool will have a fixed scale with 0 targetDedicatedNodes.
*
*/
public final class ScaleSettingsArgs extends com.pulumi.resources.ResourceArgs {
public static final ScaleSettingsArgs Empty = new ScaleSettingsArgs();
/**
* This property and fixedScale are mutually exclusive and one of the properties must be specified.
*
*/
@Import(name="autoScale")
private @Nullable Output autoScale;
/**
* @return This property and fixedScale are mutually exclusive and one of the properties must be specified.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy