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

com.ververica.common.params.CreateSavepointParams Maven / Gradle / Ivy

package com.ververica.common.params;

import javax.validation.constraints.NotNull;
import lombok.Data;

/**
 * Copy a savepoint from the given location ONLY when flinkSavepointId and flinkSavepointId are BOTH
 * present
 */
@Data
public class CreateSavepointParams {

  @NotNull String deploymentId;

  String flinkSavepointId;
  String savepointLocation;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy