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