com.pulumi.kubernetes.resource.v1alpha2.inputs.ResourceHandleArgs 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.resource.v1alpha2.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.kubernetes.resource.v1alpha2.inputs.StructuredResourceHandleArgs;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
/**
* ResourceHandle holds opaque resource data for processing by a specific kubelet plugin.
*
*/
public final class ResourceHandleArgs extends com.pulumi.resources.ResourceArgs {
public static final ResourceHandleArgs Empty = new ResourceHandleArgs();
/**
* Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle.
*
* The maximum size of this field is 16KiB. This may get increased in the future, but not reduced.
*
*/
@Import(name="data")
private @Nullable Output data;
/**
* @return Data contains the opaque data associated with this ResourceHandle. It is set by the controller component of the resource driver whose name matches the DriverName set in the ResourceClaimStatus this ResourceHandle is embedded in. It is set at allocation time and is intended for processing by the kubelet plugin whose name matches the DriverName set in this ResourceHandle.
*
* The maximum size of this field is 16KiB. This may get increased in the future, but not reduced.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy