com.azure.resourcemanager.storage.models.LegalHoldProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-storage Show documentation
Show all versions of azure-resourcemanager-storage Show documentation
This package contains Microsoft Azure Storage Management SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.storage.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* The LegalHold property of a blob container.
*/
@Fluent
public final class LegalHoldProperties {
/*
* The hasLegalHold public property is set to true by SRP if there are at least one existing tag. The hasLegalHold
* public property is set to false by SRP if all existing legal hold tags are cleared out. There can be a maximum of
* 1000 blob containers with hasLegalHold=true for a given account.
*/
@JsonProperty(value = "hasLegalHold", access = JsonProperty.Access.WRITE_ONLY)
private Boolean hasLegalHold;
/*
* The list of LegalHold tags of a blob container.
*/
@JsonProperty(value = "tags")
private List tags;
/*
* Protected append blob writes history.
*/
@JsonProperty(value = "protectedAppendWritesHistory")
private ProtectedAppendWritesHistory protectedAppendWritesHistory;
/**
* Creates an instance of LegalHoldProperties class.
*/
public LegalHoldProperties() {
}
/**
* Get the hasLegalHold property: The hasLegalHold public property is set to true by SRP if there are at least one
* existing tag. The hasLegalHold public property is set to false by SRP if all existing legal hold tags are cleared
* out. There can be a maximum of 1000 blob containers with hasLegalHold=true for a given account.
*
* @return the hasLegalHold value.
*/
public Boolean hasLegalHold() {
return this.hasLegalHold;
}
/**
* Get the tags property: The list of LegalHold tags of a blob container.
*
* @return the tags value.
*/
public List tags() {
return this.tags;
}
/**
* Set the tags property: The list of LegalHold tags of a blob container.
*
* @param tags the tags value to set.
* @return the LegalHoldProperties object itself.
*/
public LegalHoldProperties withTags(List tags) {
this.tags = tags;
return this;
}
/**
* Get the protectedAppendWritesHistory property: Protected append blob writes history.
*
* @return the protectedAppendWritesHistory value.
*/
public ProtectedAppendWritesHistory protectedAppendWritesHistory() {
return this.protectedAppendWritesHistory;
}
/**
* Set the protectedAppendWritesHistory property: Protected append blob writes history.
*
* @param protectedAppendWritesHistory the protectedAppendWritesHistory value to set.
* @return the LegalHoldProperties object itself.
*/
public LegalHoldProperties
withProtectedAppendWritesHistory(ProtectedAppendWritesHistory protectedAppendWritesHistory) {
this.protectedAppendWritesHistory = protectedAppendWritesHistory;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (tags() != null) {
tags().forEach(e -> e.validate());
}
if (protectedAppendWritesHistory() != null) {
protectedAppendWritesHistory().validate();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy