forked from Azure/azure-sdk-for-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
models.go
66 lines (56 loc) · 1.96 KB
/
models.go
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
package storagedatalake
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
//
// Code generated by Microsoft (R) AutoRest Code Generator.
// Changes may cause incorrect behavior and will be lost if the code is regenerated.
import (
"github.com/Azure/go-autorest/autorest"
"io"
)
// The package's fully qualified name.
const fqdn = "github.com/Azure/azure-sdk-for-go/services/storage/datalake/2018-11-09/storagedatalake"
// DataLakeStorageError ...
type DataLakeStorageError struct {
// Error - The service error response object.
Error *DataLakeStorageErrorError `json:"error,omitempty"`
}
// DataLakeStorageErrorError the service error response object.
type DataLakeStorageErrorError struct {
// Code - The service error code.
Code *string `json:"code,omitempty"`
// Message - The service error message.
Message *string `json:"message,omitempty"`
}
// Filesystem ...
type Filesystem struct {
Name *string `json:"name,omitempty"`
LastModified *string `json:"lastModified,omitempty"`
ETag *string `json:"eTag,omitempty"`
}
// FilesystemList ...
type FilesystemList struct {
autorest.Response `json:"-"`
Filesystems *[]Filesystem `json:"filesystems,omitempty"`
}
// Path ...
type Path struct {
Name *string `json:"name,omitempty"`
IsDirectory *bool `json:"isDirectory,omitempty"`
LastModified *string `json:"lastModified,omitempty"`
ETag *string `json:"eTag,omitempty"`
ContentLength *int64 `json:"contentLength,omitempty"`
Owner *string `json:"owner,omitempty"`
Group *string `json:"group,omitempty"`
Permissions *string `json:"permissions,omitempty"`
}
// PathList ...
type PathList struct {
autorest.Response `json:"-"`
Paths *[]Path `json:"paths,omitempty"`
}
// ReadCloser ...
type ReadCloser struct {
autorest.Response `json:"-"`
Value *io.ReadCloser `json:"value,omitempty"`
}