> + private final Date lastInventoryDate;
> + @SerializedName("NumberOfArchives")
> + private final Long numberOfArchives;
> + @SerializedName("SizeInBytes")
> + private final Long sizeInBytes;
> +
> + @ConstructorProperties({ "VaultName", "VaultARN", "CreationDate",
> "LastInventoryDate", "NumberOfArchives",
> + "SizeInBytes" })
> + public VaultMetadata(String vaultName, String vaultARN, Date
> creationDate, @Nullable Date lastInventoryDate,
> + long numberOfArchives, long sizeInBytes) {
> + this.vaultName = checkNotNull(vaultName);
> + this.vaultARN = checkNotNull(vaultARN);
> + this.creationDate = checkNotNull(creationDate);
> + this.lastInventoryDate = lastInventoryDate;
> + this.numberOfArchives = checkNotNull(numberOfArchives);
> + this.sizeInBytes = checkNotNull(sizeInBytes);
See previous comment
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs-aws/pull/4/files#r13034668