com.pulumi.kubernetes.yaml.v2.ConfigFileArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes 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.kubernetes.yaml.v2;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ConfigFileArgs extends com.pulumi.resources.ResourceArgs {
public static final ConfigFileArgs Empty = new ConfigFileArgs();
/**
* Path or URL to a Kubernetes manifest file. File must exist.
*
*/
@Import(name="file", required=true)
private Output file;
/**
* @return Path or URL to a Kubernetes manifest file. File must exist.
*
*/
public Output file() {
return this.file;
}
/**
* A prefix for the auto-generated resource names. Defaults to the name of the ConfigFile. Example: A resource created with resourcePrefix="foo" would produce a resource named "foo-resourceName".
*
*/
@Import(name="resourcePrefix")
private @Nullable Output resourcePrefix;
/**
* @return A prefix for the auto-generated resource names. Defaults to the name of the ConfigFile. Example: A resource created with resourcePrefix="foo" would produce a resource named "foo-resourceName".
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy