co.com.bancolombia.secretsmanager.vault.secret.SecretResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vault-commons Show documentation
Show all versions of vault-commons Show documentation
Vault Secrets Manager base abstractions
package co.com.bancolombia.secretsmanager.vault.secret;
import com.google.gson.annotations.SerializedName;
import lombok.AllArgsConstructor;
import lombok.Getter;
import lombok.NoArgsConstructor;
@Getter
@AllArgsConstructor
@NoArgsConstructor
public class SecretResponse {
@SerializedName("request_id")
private String requestId;
@SerializedName("lease_id")
private String leaseId;
private boolean renewable;
@SerializedName("lease_duration")
private int leaseDuration;
private SecretPayload data;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy