Class V1Secret
java.lang.Object
io.kubernetes.client.openapi.models.V1Secret
- All Implemented Interfaces:
KubernetesObject
,KubernetesType
@Generated(value="org.openapitools.codegen.languages.JavaClientCodegen",
date="2024-02-02T17:56:12.287571Z[Etc/UTC]")
public class V1Secret
extends Object
implements KubernetesObject
Secret holds secret data of a certain type. The total bytes of the values in the Data field must be less than MaxSecretSize bytes.
-
Nested Class Summary
Nested Classes -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapiVersion
(String apiVersion) boolean
static V1Secret
Create an instance of V1Secret given an JSON stringAPIVersion defines the versioned schema of this representation of an object.getData()
Data contains the secret data.Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified).getKind()
Kind is a string value representing the REST resource this object represents.Get metadatastringData allows specifying non-binary secret data in string form.getType()
Used to facilitate programmatic handling of secret data.int
hashCode()
metadata
(V1ObjectMeta metadata) putDataItem
(String key, byte[] dataItem) putStringDataItem
(String key, String stringDataItem) void
setApiVersion
(String apiVersion) void
void
setImmutable
(Boolean immutable) void
void
setMetadata
(V1ObjectMeta metadata) void
setStringData
(Map<String, String> stringData) void
stringData
(Map<String, String> stringData) toJson()
Convert an instance of V1Secret to an JSON stringtoString()
static void
validateJsonObject
(com.google.gson.JsonObject jsonObj) Validates the JSON Object and throws an exception if issues found
-
Field Details
-
SERIALIZED_NAME_API_VERSION
- See Also:
-
SERIALIZED_NAME_DATA
- See Also:
-
SERIALIZED_NAME_IMMUTABLE
- See Also:
-
SERIALIZED_NAME_KIND
- See Also:
-
SERIALIZED_NAME_METADATA
- See Also:
-
SERIALIZED_NAME_STRING_DATA
- See Also:
-
SERIALIZED_NAME_TYPE
- See Also:
-
openapiFields
-
openapiRequiredFields
-
-
Constructor Details
-
V1Secret
public V1Secret()
-
-
Method Details
-
apiVersion
-
getApiVersion
APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources- Specified by:
getApiVersion
in interfaceKubernetesType
- Returns:
- apiVersion
-
setApiVersion
-
data
-
putDataItem
-
getData
Data contains the secret data. Each key must consist of alphanumeric characters, '-', '_' or '.'. The serialized form of the secret data is a base64 encoded string, representing the arbitrary (possibly non-string) data value here. Described in https://tools.ietf.org/html/rfc4648#section-4- Returns:
- data
-
setData
-
immutable
-
getImmutable
Immutable, if set to true, ensures that data stored in the Secret cannot be updated (only object metadata can be modified). If not set to true, the field can be modified at any time. Defaulted to nil.- Returns:
- immutable
-
setImmutable
-
kind
-
getKind
Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds- Specified by:
getKind
in interfaceKubernetesType
- Returns:
- kind
-
setKind
-
metadata
-
getMetadata
Get metadata- Specified by:
getMetadata
in interfaceKubernetesObject
- Returns:
- metadata
-
setMetadata
-
stringData
-
putStringDataItem
-
getStringData
stringData allows specifying non-binary secret data in string form. It is provided as a write-only input field for convenience. All keys and values are merged into the data field on write, overwriting any existing values. The stringData field is never output when reading from the API.- Returns:
- stringData
-
setStringData
-
type
-
getType
Used to facilitate programmatic handling of secret data. More info: https://kubernetes.io/docs/concepts/configuration/secret/#secret-types- Returns:
- type
-
setType
-
equals
-
hashCode
public int hashCode() -
toString
-
validateJsonObject
Validates the JSON Object and throws an exception if issues found- Parameters:
jsonObj
- JSON Object- Throws:
IOException
- if the JSON Object is invalid with respect to V1Secret
-
fromJson
Create an instance of V1Secret given an JSON string- Parameters:
jsonString
- JSON string- Returns:
- An instance of V1Secret
- Throws:
IOException
- if the JSON string is invalid with respect to V1Secret
-
toJson
Convert an instance of V1Secret to an JSON string- Returns:
- JSON string
-