io.yupiik.kubernetes.bindings.v1_25_0.v1.Secret Maven / Gradle / Ivy
The newest version!
/*
* Copyright (c) 2022 - Yupiik SAS - https://www.yupiik.com
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package io.yupiik.kubernetes.bindings.v1_25_0.v1;
import io.yupiik.kubernetes.bindings.v1_25_0.Exportable;
import io.yupiik.kubernetes.bindings.v1_25_0.JsonStrings;
import io.yupiik.kubernetes.bindings.v1_25_0.Validable;
import java.util.Map;
import java.util.Objects;
import java.util.stream.Stream;
import static java.util.stream.Collectors.joining;
public class Secret implements Validable, Exportable {
private String apiVersion;
private Map data;
private Boolean immutable;
private String kind;
private ObjectMeta metadata;
private Map stringData;
private String type;
public Secret() {
// no-op
}
public Secret(final String apiVersion,
final Map data,
final Boolean immutable,
final String kind,
final ObjectMeta metadata,
final Map stringData,
final String type) {
this.apiVersion = apiVersion;
this.data = data;
this.immutable = immutable;
this.kind = kind;
this.metadata = metadata;
this.stringData = stringData;
this.type = type;
}
public String getApiVersion() {
return apiVersion;
}
public void setApiVersion(final String apiVersion) {
this.apiVersion = apiVersion;
}
public Map getData() {
return data;
}
public void setData(final Map data) {
this.data = data;
}
public Boolean getImmutable() {
return immutable;
}
public void setImmutable(final Boolean immutable) {
this.immutable = immutable;
}
public String getKind() {
return kind;
}
public void setKind(final String kind) {
this.kind = kind;
}
public ObjectMeta getMetadata() {
return metadata;
}
public void setMetadata(final ObjectMeta metadata) {
this.metadata = metadata;
}
public Map getStringData() {
return stringData;
}
public void setStringData(final Map stringData) {
this.stringData = stringData;
}
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
@Override
public int hashCode() {
return Objects.hash(
apiVersion,
data,
immutable,
kind,
metadata,
stringData,
type);
}
@Override
public boolean equals(final Object __other) {
if (!(__other instanceof Secret)) {
return false;
}
final Secret __otherCasted = (Secret) __other;
return Objects.equals(apiVersion, __otherCasted.apiVersion) &&
Objects.equals(data, __otherCasted.data) &&
Objects.equals(immutable, __otherCasted.immutable) &&
Objects.equals(kind, __otherCasted.kind) &&
Objects.equals(metadata, __otherCasted.metadata) &&
Objects.equals(stringData, __otherCasted.stringData) &&
Objects.equals(type, __otherCasted.type);
}
public Secret apiVersion(final String apiVersion) {
this.apiVersion = apiVersion;
return this;
}
public Secret data(final Map data) {
this.data = data;
return this;
}
public Secret immutable(final Boolean immutable) {
this.immutable = immutable;
return this;
}
public Secret kind(final String kind) {
this.kind = kind;
return this;
}
public Secret metadata(final ObjectMeta metadata) {
this.metadata = metadata;
return this;
}
public Secret stringData(final Map stringData) {
this.stringData = stringData;
return this;
}
public Secret type(final String type) {
this.type = type;
return this;
}
@Override
public Secret validate() {
if (kind == null) {
kind = "Secret";
}
if (apiVersion == null) {
apiVersion = "v1";
}
return this;
}
@Override
public String asJson() {
return Stream.of(
(apiVersion != null ? "\"apiVersion\":\"" + JsonStrings.escapeJson(apiVersion) + "\"" : ""),
(data != null ? "\"data\":" + data.entrySet().stream()
.map(__it -> "\"" + JsonStrings.escapeJson(__it.getKey()) + "\":" + (__it.getValue() == null ? "null" : ("\"" + JsonStrings.escapeJson(__it.getValue()) + "\"")))
.collect(joining(",", "{", "}")) : ""),
(immutable != null ? "\"immutable\":" + immutable : ""),
(kind != null ? "\"kind\":\"" + JsonStrings.escapeJson(kind) + "\"" : ""),
(metadata != null ? "\"metadata\":" + metadata.asJson() : ""),
(stringData != null ? "\"stringData\":" + stringData.entrySet().stream()
.map(__it -> "\"" + JsonStrings.escapeJson(__it.getKey()) + "\":" + (__it.getValue() == null ? "null" : ("\"" + JsonStrings.escapeJson(__it.getValue()) + "\"")))
.collect(joining(",", "{", "}")) : ""),
(type != null ? "\"type\":\"" + JsonStrings.escapeJson(type) + "\"" : ""))
.filter(__it -> !__it.isBlank())
.collect(joining(",", "{", "}"));
}
}