Skip to content

Commit

Permalink
nit
Browse files Browse the repository at this point in the history
  • Loading branch information
Lin Jian committed Jun 30, 2020
1 parent 2323aa9 commit 5a9e189
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1001,7 +1001,7 @@ export type PathGetAccessControlResponse = PathAccessControl & PathGetAccessCont
};
};

// @public (undocumented)
// @public
export enum PathGetPropertiesAction {
// (undocumented)
GetAccessControl = "getAccessControl",
Expand Down Expand Up @@ -1221,7 +1221,7 @@ export interface PathRemoveHeaders {
version?: string;
}

// @public (undocumented)
// @public
export enum PathRenameMode {
// (undocumented)
Legacy = "legacy",
Expand All @@ -1232,7 +1232,7 @@ export enum PathRenameMode {
// @public
export type PathRenameModeModel = 'legacy' | 'posix';

// @public (undocumented)
// @public
export enum PathResourceType {
// (undocumented)
Directory = "directory",
Expand Down
20 changes: 18 additions & 2 deletions sdk/storage/storage-file-datalake/src/models.ts
Original file line number Diff line number Diff line change
Expand Up @@ -598,16 +598,32 @@ export interface PathExistsOptions extends CommonOptions {
}

// Keeping these for backward compatibility when we changed to use string unions.
/**
* Defines values for PathGetPropertiesAction.
* Possible values include: 'getAccessControl', 'getStatus'
* @readonly
* @enum {string}
*/
export enum PathGetPropertiesAction {
GetAccessControl = "getAccessControl",
GetStatus = "getStatus"
}

/**
* Defines values for PathRenameMode.
* Possible values include: 'legacy', 'posix'
* @readonly
* @enum {string}
*/
export enum PathRenameMode {
Legacy = "legacy",
Posix = "posix"
}

/**
* Defines values for PathResourceType.
* Possible values include: 'directory', 'file'
* @readonly
* @enum {string}
*/
export enum PathResourceType {
Directory = "directory",
File = "file"
Expand Down

0 comments on commit 5a9e189

Please sign in to comment.