Class ObjectReference
- java.lang.Object
-
- com.pulumi.kubernetes.core.v1.outputs.ObjectReference
-
public final class ObjectReference extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ObjectReference.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Optional<java.lang.String>
apiVersion()
static ObjectReference.Builder
builder()
static ObjectReference.Builder
builder(ObjectReference defaults)
java.util.Optional<java.lang.String>
fieldPath()
java.util.Optional<java.lang.String>
kind()
java.util.Optional<java.lang.String>
name()
java.util.Optional<java.lang.String>
namespace()
java.util.Optional<java.lang.String>
resourceVersion()
java.util.Optional<java.lang.String>
uid()
-
-
-
Method Detail
-
apiVersion
public java.util.Optional<java.lang.String> apiVersion()
- Returns:
- API version of the referent.
-
fieldPath
public java.util.Optional<java.lang.String> fieldPath()
- Returns:
- If referring to a piece of an object instead of an entire object, this string should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. For example, if the object reference is to a container within a pod, this would take on a value like: "spec.containers{name}" (where "name" refers to the name of the container that triggered the event) or if no container name is specified "spec.containers[2]" (container with index 2 in this pod). This syntax is chosen only to have some well-defined way of referencing a part of an object.
-
kind
public java.util.Optional<java.lang.String> kind()
- Returns:
- Kind of the referent. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
-
name
public java.util.Optional<java.lang.String> name()
- Returns:
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
-
namespace
public java.util.Optional<java.lang.String> namespace()
- Returns:
- Namespace of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/
-
resourceVersion
public java.util.Optional<java.lang.String> resourceVersion()
- Returns:
- Specific resourceVersion to which this reference is made, if any. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency
-
uid
public java.util.Optional<java.lang.String> uid()
- Returns:
- UID of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids
-
builder
public static ObjectReference.Builder builder()
-
builder
public static ObjectReference.Builder builder(ObjectReference defaults)
-
-