Skip to content

Commit

Permalink
Update storage-file-datalake.api.md (#6455)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeharder authored Dec 10, 2019
1 parent aad3495 commit 8a25cef
Showing 1 changed file with 25 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ export class DataLakeFileSystemClient extends StorageClient {
getDirectoryClient(directoryName: string): DataLakeDirectoryClient;
getFileClient(fileName: string): DataLakeFileClient;
getProperties(options?: FileSystemGetPropertiesOptions): Promise<FileSystemGetPropertiesResponse>;
listPaths(options?: ListPathsOptions): PagedAsyncIterableIterator<Path, ListPathsSegmentResponse>;
listPaths(options?: ListPathsOptions): PagedAsyncIterableIterator<Path, FileSystemListPathsResponse>;
readonly name: string;
setAccessPolicy(access?: PublicAccessType, fileSystemAcl?: SignedIdentifier<AccessPolicy>[], options?: FileSystemSetAccessPolicyOptions): Promise<FileSystemSetAccessPolicyResponse>;
setMetadata(metadata?: Metadata, options?: FileSystemSetMetadataOptions): Promise<FileSystemSetMetadataResponse>;
Expand Down Expand Up @@ -545,6 +545,15 @@ export interface FileSystemListPathsHeaders {
version?: string;
}

// @public (undocumented)
export type FileSystemListPathsResponse = PathList & FileSystemListPathsHeaders & {
_response: HttpResponse & {
parsedHeaders: FileSystemListPathsHeaders;
bodyAsText: string;
parsedBody: PathListModel;
};
};

// @public (undocumented)
export interface FileSystemProperties {
// (undocumented)
Expand Down Expand Up @@ -708,11 +717,11 @@ export interface ListPathsSegmentOptions extends ListPathsOptions {
}

// @public
export type ListPathsSegmentResponse = PathList & FileSystemListPathsHeaders & {
export type ListPathsSegmentResponse = PathListModel & FileSystemListPathsHeaders & {
_response: coreHttp.HttpResponse & {
parsedHeaders: FileSystemListPathsHeaders;
bodyAsText: string;
parsedBody: PathList;
parsedBody: PathListModel;
};
};

Expand All @@ -728,14 +737,15 @@ export interface Metadata {
// @public
export function newPipeline(credential: StorageSharedKeyCredential | AnonymousCredential | TokenCredential, pipelineOptions?: StoragePipelineOptions): Pipeline;

// @public
// @public (undocumented)
export interface Path {
// (undocumented)
contentLength?: number;
// (undocumented)
eTag?: string;
// (undocumented)
group?: string;
// (undocumented)
isDirectory?: boolean;
// (undocumented)
lastModified?: Date;
Expand All @@ -744,7 +754,7 @@ export interface Path {
// (undocumented)
owner?: string;
// (undocumented)
permissions?: string;
permissions?: PathPermissions;
}

// @public (undocumented)
Expand Down Expand Up @@ -990,12 +1000,20 @@ export interface PathHttpHeaders {
contentType?: string;
}

// @public
// @public (undocumented)
export interface PathList {
// (undocumented)
pathItems?: Path[];
}

// @public
export interface PathListModel {
// Warning: (ae-forgotten-export) The symbol "Path" needs to be exported by the entry point index.d.ts
//
// (undocumented)
paths?: Path_2[];
}

// @public (undocumented)
export interface PathMoveOptions extends CommonOptions {
// (undocumented)
Expand Down Expand Up @@ -1417,7 +1435,7 @@ export { WebResource }

// Warnings were encountered during analysis:
//
// src/models.ts:372:7 - (ae-forgotten-export) The symbol "PathGetPropertiesHeaders" needs to be exported by the entry point index.d.ts
// src/models.ts:403:7 - (ae-forgotten-export) The symbol "PathGetPropertiesHeaders" needs to be exported by the entry point index.d.ts

// (No @packageDocumentation comment for this package)

Expand Down

0 comments on commit 8a25cef

Please sign in to comment.