diff --git a/services/datalake/store/2016-11-01/filesystem/filesystem.go b/services/datalake/store/2016-11-01/filesystem/filesystem.go index a70017566bf5..8dfbeaba2a2a 100644 --- a/services/datalake/store/2016-11-01/filesystem/filesystem.go +++ b/services/datalake/store/2016-11-01/filesystem/filesystem.go @@ -636,7 +636,7 @@ func (client Client) DeleteResponder(resp *http.Response) (result FileOperationR // accountName - the Azure Data Lake Store account to execute filesystem operations on. // pathParameter - the Data Lake Store path (starting with '/') of the file or directory for which to get the // ACL. -// tooID - an optional switch to return friendly names in place of object ID for ACL entries. tooid=false +// tooID - an optional switch to return friendly names in place of object ID for ACL entries. tooId=false // returns friendly names instead of the AAD Object ID. Default value is true, returning AAD object IDs. func (client Client) GetACLStatus(ctx context.Context, accountName string, pathParameter string, tooID *bool) (result ACLStatusResult, err error) { if tracing.IsEnabled() { @@ -804,7 +804,7 @@ func (client Client) GetContentSummaryResponder(resp *http.Response) (result Con // accountName - the Azure Data Lake Store account to execute filesystem operations on. // pathParameter - the Data Lake Store path (starting with '/') of the file or directory for which to retrieve // the status. -// tooID - an optional switch to return friendly names in place of owner and group. tooid=false returns +// tooID - an optional switch to return friendly names in place of owner and group. tooId=false returns // friendly names instead of the AAD Object ID. Default value is true, returning AAD object IDs. func (client Client) GetFileStatus(ctx context.Context, accountName string, pathParameter string, tooID *bool) (result FileStatusResult, err error) { if tracing.IsEnabled() { @@ -891,13 +891,13 @@ func (client Client) GetFileStatusResponder(resp *http.Response) (result FileSta // accountName - the Azure Data Lake Store account to execute filesystem operations on. // pathParameter - the Data Lake Store path (starting with '/') of the directory to list. // listSize - gets or sets the number of items to return. Optional. -// listAfter - gets or sets the item or lexographical index after which to begin returning results. For +// listAfter - gets or sets the item or lexicographical index after which to begin returning results. For // example, a file list of 'a','b','d' and listAfter='b' will return 'd', and a listAfter='c' will also return // 'd'. Optional. -// listBefore - gets or sets the item or lexographical index before which to begin returning results. For +// listBefore - gets or sets the item or lexicographical index before which to begin returning results. For // example, a file list of 'a','b','d' and listBefore='d' will return 'a','b', and a listBefore='c' will also // return 'a','b'. Optional. -// tooID - an optional switch to return friendly names in place of owner and group. tooid=false returns +// tooID - an optional switch to return friendly names in place of owner and group. tooId=false returns // friendly names instead of the AAD Object ID. Default value is true, returning AAD object IDs. func (client Client) ListFileStatus(ctx context.Context, accountName string, pathParameter string, listSize *int32, listAfter string, listBefore string, tooID *bool) (result FileStatusesResult, err error) { if tracing.IsEnabled() {