com.pulumi.linode.PlacementGroupArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linode Show documentation
Show all versions of linode Show documentation
A Pulumi package for creating and managing linode cloud 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.linode;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class PlacementGroupArgs extends com.pulumi.resources.ResourceArgs {
public static final PlacementGroupArgs Empty = new PlacementGroupArgs();
/**
* The label of the Placement Group. This field can only contain ASCII letters, digits and dashes.
*
*/
@Import(name="label", required=true)
private Output label;
/**
* @return The label of the Placement Group. This field can only contain ASCII letters, digits and dashes.
*
*/
public Output label() {
return this.label;
}
/**
* Whether Linodes must be able to become compliant during assignment. (Default `strict`)
*
*/
@Import(name="placementGroupPolicy")
private @Nullable Output placementGroupPolicy;
/**
* @return Whether Linodes must be able to become compliant during assignment. (Default `strict`)
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy