com.hazelcast.cloud.maven.model.Cluster Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hazelcast-cloud-maven-plugin Show documentation
Show all versions of hazelcast-cloud-maven-plugin Show documentation
Maven plugin for the operations with Hazelcast Cloud
package com.hazelcast.cloud.maven.model;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class Cluster {
public String desiredState;
public String state;
}