Interface BlobContainer.UpdateStages.WithMetadata
-
- All Known Subinterfaces:
BlobContainer.Update
- Enclosing interface:
- BlobContainer.UpdateStages
public static interface BlobContainer.UpdateStages.WithMetadataThe stage of the blobcontainer update allowing to specify Metadata.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BlobContainer.UpdatewithMetadata(String name, String value)Specifies a singluar instance of metadata.BlobContainer.UpdatewithMetadata(Map<String,String> metadata)Specifies metadata.
-
-
-
Method Detail
-
withMetadata
BlobContainer.Update withMetadata(Map<String,String> metadata)
Specifies metadata.- Parameters:
metadata- A name-value pair to associate with the container as metadata- Returns:
- the next update stage
-
withMetadata
BlobContainer.Update withMetadata(String name, String value)
Specifies a singluar instance of metadata.- Parameters:
name- A name to associate with the container as metadatavalue- A value to associate with the container as metadata- Returns:
- the next definition stage
-
-