1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
package filesystem
// Copyright (c) Microsoft and contributors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//
// See the License for the specific language governing permissions and
// limitations under the License.
//
// Code generated by Microsoft (R) AutoRest Code Generator 1.0.1.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
import (
"github.com/Azure/go-autorest/autorest"
"io"
)
// AppendModeType enumerates the values for append mode type.
type AppendModeType string
const (
// Autocreate specifies the autocreate state for append mode type.
Autocreate AppendModeType = "autocreate"
)
// ExpiryOptionType enumerates the values for expiry option type.
type ExpiryOptionType string
const (
// Absolute specifies the absolute state for expiry option type.
Absolute ExpiryOptionType = "Absolute"
// NeverExpire specifies the never expire state for expiry option type.
NeverExpire ExpiryOptionType = "NeverExpire"
// RelativeToCreationDate specifies the relative to creation date state for
// expiry option type.
RelativeToCreationDate ExpiryOptionType = "RelativeToCreationDate"
// RelativeToNow specifies the relative to now state for expiry option
// type.
RelativeToNow ExpiryOptionType = "RelativeToNow"
)
// FileType enumerates the values for file type.
type FileType string
const (
// DIRECTORY specifies the directory state for file type.
DIRECTORY FileType = "DIRECTORY"
// FILE specifies the file state for file type.
FILE FileType = "FILE"
)
// SyncFlag enumerates the values for sync flag.
type SyncFlag string
const (
// CLOSE specifies the close state for sync flag.
CLOSE SyncFlag = "CLOSE"
// DATA specifies the data state for sync flag.
DATA SyncFlag = "DATA"
// METADATA specifies the metadata state for sync flag.
METADATA SyncFlag = "METADATA"
)
// ACLStatus is data Lake Store file or directory Access Control List
// information.
type ACLStatus struct {
Entries *[]string `json:"entries,omitempty"`
Group *string `json:"group,omitempty"`
Owner *string `json:"owner,omitempty"`
Permission *int32 `json:"permission,omitempty"`
StickyBit *bool `json:"stickyBit,omitempty"`
}
// ACLStatusResult is data Lake Store file or directory Access Control List
// information.
type ACLStatusResult struct {
autorest.Response `json:"-"`
ACLStatus *ACLStatus `json:"AclStatus,omitempty"`
}
// AdlsAccessControlException is a WebHDFS exception thrown indicating that
// access is denied due to insufficient permissions. Thrown when a 403 error
// response code is returned (forbidden).
type AdlsAccessControlException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsBadOffsetException is a WebHDFS exception thrown indicating the append
// or read is from a bad offset. Thrown when a 400 error response code is
// returned for append and open operations (Bad request).
type AdlsBadOffsetException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsError is data Lake Store filesystem error containing a specific WebHDFS
// exception.
type AdlsError struct {
RemoteException *AdlsRemoteException `json:"RemoteException,omitempty"`
}
// AdlsFileAlreadyExistsException is a WebHDFS exception thrown indicating the
// file or folder already exists. Thrown when a 403 error response code is
// returned (forbidden).
type AdlsFileAlreadyExistsException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsFileNotFoundException is a WebHDFS exception thrown indicating the file
// or folder could not be found. Thrown when a 404 error response code is
// returned (not found).
type AdlsFileNotFoundException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsIllegalArgumentException is a WebHDFS exception thrown indicating that
// one more arguments is incorrect. Thrown when a 400 error response code is
// returned (bad request).
type AdlsIllegalArgumentException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsIOException is a WebHDFS exception thrown indicating there was an IO
// (read or write) error. Thrown when a 403 error response code is returned
// (forbidden).
type AdlsIOException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsRemoteException is data Lake Store filesystem exception based on the
// WebHDFS definition for RemoteExceptions. This is a WebHDFS 'catch all'
// exception
type AdlsRemoteException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsRuntimeException is a WebHDFS exception thrown when an unexpected error
// occurs during an operation. Thrown when a 500 error response code is
// returned (Internal server error).
type AdlsRuntimeException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsSecurityException is a WebHDFS exception thrown indicating that access
// is denied. Thrown when a 401 error response code is returned (Unauthorized).
type AdlsSecurityException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsThrottledException is a WebHDFS exception thrown indicating that the
// request is being throttled. Reducing the number of requests or request size
// helps to mitigate this error.
type AdlsThrottledException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// AdlsUnsupportedOperationException is a WebHDFS exception thrown indicating
// that the requested operation is not supported. Thrown when a 400 error
// response code is returned (bad request).
type AdlsUnsupportedOperationException struct {
JavaClassName *string `json:"javaClassName,omitempty"`
Message *string `json:"message,omitempty"`
}
// ContentSummary is data Lake Store content summary information
type ContentSummary struct {
DirectoryCount *int64 `json:"directoryCount,omitempty"`
FileCount *int64 `json:"fileCount,omitempty"`
Length *int64 `json:"length,omitempty"`
SpaceConsumed *int64 `json:"spaceConsumed,omitempty"`
}
// ContentSummaryResult is data Lake Store filesystem content summary
// information response.
type ContentSummaryResult struct {
autorest.Response `json:"-"`
ContentSummary *ContentSummary `json:"ContentSummary,omitempty"`
}
// FileOperationResult is the result of the request or operation.
type FileOperationResult struct {
autorest.Response `json:"-"`
OperationResult *bool `json:"boolean,omitempty"`
}
// FileStatuses is data Lake Store file status list information.
type FileStatuses struct {
FileStatus *[]FileStatusProperties `json:"FileStatus,omitempty"`
}
// FileStatusesResult is data Lake Store filesystem file status list
// information response.
type FileStatusesResult struct {
autorest.Response `json:"-"`
FileStatuses *FileStatuses `json:"FileStatuses,omitempty"`
}
// FileStatusProperties is data Lake Store file or directory information.
type FileStatusProperties struct {
AccessTime *int64 `json:"accessTime,omitempty"`
BlockSize *int64 `json:"blockSize,omitempty"`
ChildrenNum *int64 `json:"childrenNum,omitempty"`
ExpirationTime *int64 `json:"msExpirationTime,omitempty"`
Group *string `json:"group,omitempty"`
Length *int64 `json:"length,omitempty"`
ModificationTime *int64 `json:"modificationTime,omitempty"`
Owner *string `json:"owner,omitempty"`
PathSuffix *string `json:"pathSuffix,omitempty"`
Permission *string `json:"permission,omitempty"`
Type FileType `json:"type,omitempty"`
ACLBit *bool `json:"aclBit,omitempty"`
}
// FileStatusResult is data Lake Store filesystem file status information
// response.
type FileStatusResult struct {
autorest.Response `json:"-"`
FileStatus *FileStatusProperties `json:"FileStatus,omitempty"`
}
// ReadCloser is
type ReadCloser struct {
autorest.Response `json:"-"`
Value *io.ReadCloser `json:"value,omitempty"`
}
|