All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.stackify.api.Kubernetes Maven / Gradle / Ivy

There is a newer version: 4.0.3
Show newest version
package com.stackify.api;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

@AllArgsConstructor
@NoArgsConstructor
@Builder(builderClassName = "Builder", builderMethodName = "newBuilder", toBuilder = true)
@Data
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonIgnoreProperties(ignoreUnknown = true)
public class Kubernetes {

    @JsonProperty("PodName")
    private String podName;

    @JsonProperty("PodNamespace")
    private String podNamespace;

    @JsonProperty("ClusterName")
    private String clusterName;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy