...
1
2
3
4
5
6
7
8
9
10 package storagedatalake
11
12 import original "github.com/Azure/azure-sdk-for-go/services/storage/datalake/2019-10-31/storagedatalake"
13
14 const (
15 DefaultDNSSuffix = original.DefaultDNSSuffix
16 )
17
18 type PathGetPropertiesAction = original.PathGetPropertiesAction
19
20 const (
21 CheckAccess PathGetPropertiesAction = original.CheckAccess
22 GetAccessControl PathGetPropertiesAction = original.GetAccessControl
23 GetStatus PathGetPropertiesAction = original.GetStatus
24 )
25
26 type PathLeaseAction = original.PathLeaseAction
27
28 const (
29 Acquire PathLeaseAction = original.Acquire
30 Break PathLeaseAction = original.Break
31 Change PathLeaseAction = original.Change
32 Release PathLeaseAction = original.Release
33 Renew PathLeaseAction = original.Renew
34 )
35
36 type PathRenameMode = original.PathRenameMode
37
38 const (
39 Legacy PathRenameMode = original.Legacy
40 Posix PathRenameMode = original.Posix
41 )
42
43 type PathResourceType = original.PathResourceType
44
45 const (
46 Directory PathResourceType = original.Directory
47 File PathResourceType = original.File
48 )
49
50 type PathUpdateAction = original.PathUpdateAction
51
52 const (
53 Append PathUpdateAction = original.Append
54 Flush PathUpdateAction = original.Flush
55 SetAccessControl PathUpdateAction = original.SetAccessControl
56 SetProperties PathUpdateAction = original.SetProperties
57 )
58
59 type BaseClient = original.BaseClient
60 type DataLakeStorageError = original.DataLakeStorageError
61 type DataLakeStorageErrorError = original.DataLakeStorageErrorError
62 type Filesystem = original.Filesystem
63 type FilesystemClient = original.FilesystemClient
64 type FilesystemList = original.FilesystemList
65 type Path = original.Path
66 type PathClient = original.PathClient
67 type PathList = original.PathList
68 type ReadCloser = original.ReadCloser
69
70 func New(xMsVersion string, accountName string) BaseClient {
71 return original.New(xMsVersion, accountName)
72 }
73 func NewFilesystemClient(xMsVersion string, accountName string) FilesystemClient {
74 return original.NewFilesystemClient(xMsVersion, accountName)
75 }
76 func NewPathClient(xMsVersion string, accountName string) PathClient {
77 return original.NewPathClient(xMsVersion, accountName)
78 }
79 func NewWithoutDefaults(xMsVersion string, accountName string, dNSSuffix string) BaseClient {
80 return original.NewWithoutDefaults(xMsVersion, accountName, dNSSuffix)
81 }
82 func PossiblePathGetPropertiesActionValues() []PathGetPropertiesAction {
83 return original.PossiblePathGetPropertiesActionValues()
84 }
85 func PossiblePathLeaseActionValues() []PathLeaseAction {
86 return original.PossiblePathLeaseActionValues()
87 }
88 func PossiblePathRenameModeValues() []PathRenameMode {
89 return original.PossiblePathRenameModeValues()
90 }
91 func PossiblePathResourceTypeValues() []PathResourceType {
92 return original.PossiblePathResourceTypeValues()
93 }
94 func PossiblePathUpdateActionValues() []PathUpdateAction {
95 return original.PossiblePathUpdateActionValues()
96 }
97 func UserAgent() string {
98 return original.UserAgent() + " profiles/preview"
99 }
100 func Version() string {
101 return original.Version()
102 }
103
View as plain text