Class SecretProjectionPatchArgs
- java.lang.Object
-
- com.pulumi.resources.InputArgs
-
- com.pulumi.resources.ResourceArgs
-
- com.pulumi.kubernetes.core.v1.inputs.SecretProjectionPatchArgs
-
public final class SecretProjectionPatchArgs extends com.pulumi.resources.ResourceArgs
Adapts a secret into a projected volume. The contents of the target Secret's Data field will be presented in a projected volume as files using the keys in the Data field as the file names. Note that this is identical to a secret volume source without the default mode.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SecretProjectionPatchArgs.Builder
-
Field Summary
Fields Modifier and Type Field Description static SecretProjectionPatchArgs
Empty
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SecretProjectionPatchArgs.Builder
builder()
static SecretProjectionPatchArgs.Builder
builder(SecretProjectionPatchArgs defaults)
java.util.Optional<com.pulumi.core.Output<java.util.List<KeyToPathPatchArgs>>>
items()
java.util.Optional<com.pulumi.core.Output<java.lang.String>>
name()
java.util.Optional<com.pulumi.core.Output<java.lang.Boolean>>
optional()
-
-
-
Field Detail
-
Empty
public static final SecretProjectionPatchArgs Empty
-
-
Method Detail
-
items
public java.util.Optional<com.pulumi.core.Output<java.util.List<KeyToPathPatchArgs>>> items()
- Returns:
- items if unspecified, each key-value pair in the Data field of the referenced Secret will be projected into the volume as a file whose name is the key and content is the value. If specified, the listed keys will be projected into the specified paths, and unlisted keys will not be present. If a key is specified which is not present in the Secret, the volume setup will error unless it is marked optional. Paths must be relative and may not contain the '..' path or start with '..'.
-
name
public java.util.Optional<com.pulumi.core.Output<java.lang.String>> name()
- Returns:
- Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names
-
optional
public java.util.Optional<com.pulumi.core.Output<java.lang.Boolean>> optional()
- Returns:
- optional field specify whether the Secret or its key must be defined
-
builder
public static SecretProjectionPatchArgs.Builder builder()
-
builder
public static SecretProjectionPatchArgs.Builder builder(SecretProjectionPatchArgs defaults)
-
-