< Back

Add-AzureRmDataLakeStoreItemContent

Tue Jan 29, 2019 9:44 pm

NAME Add-AzureRmDataLakeStoreItemContent



SYNOPSIS

Adds content to an item in a Data Lake Store.





SYNTAX

Add-AzureRmDataLakeStoreItemContent [-Account] <String> [-Path] <DataLakeStorePathInstance> [-Value] <Object> [[-Encoding] {Unknown | String |

Unicode | Byte | BigEndianUnicode | UTF8 | UTF7 | UTF32 | Ascii | Default | Oem | BigEndianUTF32}] [-DefaultProfile <IAzureContextContainer>]

[<CommonParameters>]





DESCRIPTION

The Add-AzureRmDataLakeStoreItemContent cmdlet adds content to an item in an Azure Data Lake Store.





PARAMETERS

-Account <String>

Specifies the name of the Data Lake Store account.



Required? true

Position? 0

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Encoding <FileSystemCmdletProviderEncoding>

Specifies the encoding for the item to create. The acceptable values for this parameter are:



- Unknown



- String



- Unicode



- Byte



- BigEndianUnicode



- UTF8



- UTF7



- Ascii



- Default



- Oem



- BigEndianUTF32



Required? false

Position? 3

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Path <DataLakeStorePathInstance>

Specifies the Data Lake Store path of the item to modify, starting with the root directory (/).



Required? true

Position? 1

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Value <Object>

Specifies the content to add to the item.



Required? true

Position? 2

Default value None

Accept pipeline input? True (ByPropertyName, ByValue)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

Object

Parameter 'Value' accepts value of type 'Object' from the pipeline





OUTPUTS

bool

Returns true on success.





NOTES









Example 1: Add content to a file



PS C:\\>Add-AzureRmDataLakeStoreItemContent -AccountName "ContosoADLS" -Path /abc/myFile.txt -Value "My content here"



This command adds content to the file myFile.txt.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... temcontent

Get-AzureRmDataLakeStoreItemContent