| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | using System; |
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Text; |
| | 7 | |
|
| | 8 | | namespace Azure.Storage.Files.DataLake.Models |
| | 9 | | { |
| | 10 | | /// <summary> |
| | 11 | | /// Path CreateResult |
| | 12 | | /// </summary> |
| | 13 | | public class PathCreateInfo |
| | 14 | | { |
| | 15 | | /// <summary> |
| | 16 | | /// Path info for the file or directory. |
| | 17 | | /// </summary> |
| 0 | 18 | | public PathInfo PathInfo { get; internal set; } |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// When renaming a directory, the number of paths that are renamed with each invocation is limited. |
| | 22 | | /// If the number of paths to be renamed exceeds this limit, a continuation token is returned in this response h |
| | 23 | | /// When a continuation token is returned in the response, it must be specified in a subsequent invocation of th |
| | 24 | | /// operation to continue renaming the directory. |
| | 25 | | /// </summary> |
| 0 | 26 | | public string Continuation { get; internal set; } |
| | 27 | |
|
| | 28 | | /// <summary> |
| | 29 | | /// Prevent direct instantiation of PathCreateInfo instances. |
| | 30 | | /// You can use DataLakeModelFactory.PathCreateInfo instead. |
| | 31 | | /// </summary> |
| 0 | 32 | | internal PathCreateInfo() { } |
| | 33 | |
|
| | 34 | | } |
| | 35 | | } |