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

com.ververica.common.model.draft.DeploymentDraft Maven / Gradle / Ivy

package com.ververica.common.model.draft;

import com.ververica.common.model.deployment.Deployment;
import java.util.Date;
import java.util.Map;
import lombok.Data;

@Data
public class DeploymentDraft {

  DeploymentDraftMetadata metadata;
  Deployment.DeploymentSpec spec;

  @Data
  public static class DeploymentDraftMetadata {
    String id;
    String name;
    String namespace;
    String parentId;
    Date createdAt;
    Date modifiedAt;
    Map labels;
    Map annotations;
    Integer resourceVersion;
    String description;
    Lock lock;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy