BlobContainerItem.java
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.storage.blob.models;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.dataformat.xml.annotation.JacksonXmlRootElement;
import java.util.Map;
/**
* An Azure Storage container.
*/
@JacksonXmlRootElement(localName = "Container")
@Fluent
public final class BlobContainerItem {
/*
* The name property.
*/
@JsonProperty(value = "Name", required = true)
private String name;
/*
* The deleted property.
*/
@JsonProperty(value = "Deleted")
private Boolean deleted;
/*
* The version property.
*/
@JsonProperty(value = "Version")
private String version;
/*
* The properties property.
*/
@JsonProperty(value = "Properties", required = true)
private BlobContainerItemProperties properties;
/*
* The metadata property.
*/
@JsonProperty(value = "Metadata")
private Map<String, String> metadata;
/**
* Get the name property: The name property.
*
* @return the name value.
*/
public String getName() {
return this.name;
}
/**
* Set the name property: The name property.
*
* @param name the name value to set.
* @return the BlobContainerItem object itself.
*/
public BlobContainerItem setName(String name) {
this.name = name;
return this;
}
/**
* Get the deleted property: The deleted property.
*
* @return the deleted value.
*/
public Boolean isDeleted() {
return this.deleted;
}
/**
* Set the deleted property: The deleted property.
*
* @param deleted the deleted value to set.
* @return the BlobContainerItem object itself.
*/
public BlobContainerItem setDeleted(Boolean deleted) {
this.deleted = deleted;
return this;
}
/**
* Get the version property: The version property.
*
* @return the version value.
*/
public String getVersion() {
return this.version;
}
/**
* Set the version property: The version property.
*
* @param version the version value to set.
* @return the BlobContainerItem object itself.
*/
public BlobContainerItem setVersion(String version) {
this.version = version;
return this;
}
/**
* Get the properties property: The properties property.
*
* @return the properties value.
*/
public BlobContainerItemProperties getProperties() {
return this.properties;
}
/**
* Set the properties property: The properties property.
*
* @param properties the properties value to set.
* @return the BlobContainerItem object itself.
*/
public BlobContainerItem setProperties(BlobContainerItemProperties properties) {
this.properties = properties;
return this;
}
/**
* Get the metadata property: The metadata property.
*
* @return the metadata value.
*/
public Map<String, String> getMetadata() {
return this.metadata;
}
/**
* Set the metadata property: The metadata property.
*
* @param metadata the metadata value to set.
* @return the BlobContainerItem object itself.
*/
public BlobContainerItem setMetadata(Map<String, String> metadata) {
this.metadata = metadata;
return this;
}
}