com.pulumi.kubernetes.kustomize.v2.DirectoryArgs 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.kustomize.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 DirectoryArgs extends com.pulumi.resources.ResourceArgs {
public static final DirectoryArgs Empty = new DirectoryArgs();
/**
* The directory containing the kustomization to apply. The value can be a local directory or a folder in a
* git repository.
* Example: ./helloWorld
* Example: https://github.com/kubernetes-sigs/kustomize/tree/master/examples/helloWorld
*
*/
@Import(name="directory", required=true)
private Output directory;
/**
* @return The directory containing the kustomization to apply. The value can be a local directory or a folder in a
* git repository.
* Example: ./helloWorld
* Example: https://github.com/kubernetes-sigs/kustomize/tree/master/examples/helloWorld
*
*/
public Output directory() {
return this.directory;
}
/**
* The default namespace to apply to the resources. Defaults to the provider's namespace.
*
*/
@Import(name="namespace")
private @Nullable Output namespace;
/**
* @return The default namespace to apply to the resources. Defaults to the provider's namespace.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy