Skip to content

Commit 13e0ff5

Browse files
authored
STG 88 GA API View Comments (Azure#37096)
1 parent e570c8a commit 13e0ff5

File tree

7 files changed

+19
-35
lines changed

7 files changed

+19
-35
lines changed

sdk/storage/Azure.Storage.Files.DataLake/api/Azure.Storage.Files.DataLake.net6.0.cs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -933,23 +933,6 @@ public enum FileSystemTraits
933933
None = 0,
934934
Metadata = 1,
935935
}
936-
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
937-
public readonly partial struct ListBlobsShowOnly : System.IEquatable<Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly>
938-
{
939-
private readonly object _dummy;
940-
private readonly int _dummyPrimitive;
941-
public ListBlobsShowOnly(string value) { throw null; }
942-
public static Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly Deleted { get { throw null; } }
943-
public bool Equals(Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly other) { throw null; }
944-
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
945-
public override bool Equals(object obj) { throw null; }
946-
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
947-
public override int GetHashCode() { throw null; }
948-
public static bool operator ==(Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly left, Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly right) { throw null; }
949-
public static implicit operator Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly (string value) { throw null; }
950-
public static bool operator !=(Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly left, Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly right) { throw null; }
951-
public override string ToString() { throw null; }
952-
}
953936
public partial class PathAccessControl
954937
{
955938
internal PathAccessControl() { }

sdk/storage/Azure.Storage.Files.DataLake/api/Azure.Storage.Files.DataLake.netstandard2.0.cs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -933,23 +933,6 @@ public enum FileSystemTraits
933933
None = 0,
934934
Metadata = 1,
935935
}
936-
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
937-
public readonly partial struct ListBlobsShowOnly : System.IEquatable<Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly>
938-
{
939-
private readonly object _dummy;
940-
private readonly int _dummyPrimitive;
941-
public ListBlobsShowOnly(string value) { throw null; }
942-
public static Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly Deleted { get { throw null; } }
943-
public bool Equals(Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly other) { throw null; }
944-
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
945-
public override bool Equals(object obj) { throw null; }
946-
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
947-
public override int GetHashCode() { throw null; }
948-
public static bool operator ==(Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly left, Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly right) { throw null; }
949-
public static implicit operator Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly (string value) { throw null; }
950-
public static bool operator !=(Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly left, Azure.Storage.Files.DataLake.Models.ListBlobsShowOnly right) { throw null; }
951-
public override string ToString() { throw null; }
952-
}
953936
public partial class PathAccessControl
954937
{
955938
internal PathAccessControl() { }

sdk/storage/Azure.Storage.Files.DataLake/src/Generated/Models/ListBlobsShowOnly.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System;
5+
6+
namespace Azure.Storage.Files.DataLake.Models
7+
{
8+
internal readonly partial struct ListBlobsShowOnly : IEquatable<ListBlobsShowOnly>
9+
{
10+
}
11+
}

sdk/storage/Azure.Storage.Files.Shares/api/Azure.Storage.Files.Shares.net6.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,7 @@ internal ShareFileHandle() { }
731731
[System.FlagsAttribute]
732732
public enum ShareFileHandleAccessRights
733733
{
734+
None = 0,
734735
Read = 1,
735736
Write = 2,
736737
Delete = 4,

sdk/storage/Azure.Storage.Files.Shares/api/Azure.Storage.Files.Shares.netstandard2.0.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -731,6 +731,7 @@ internal ShareFileHandle() { }
731731
[System.FlagsAttribute]
732732
public enum ShareFileHandleAccessRights
733733
{
734+
None = 0,
734735
Read = 1,
735736
Write = 2,
736737
Delete = 4,

sdk/storage/Azure.Storage.Files.Shares/src/Models/ShareFileHandleAccessRights.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ namespace Azure.Storage.Files.Shares.Models
1111
[Flags]
1212
public enum ShareFileHandleAccessRights
1313
{
14+
/// <summary>
15+
/// Indicates no operations are permitted.
16+
/// </summary>
17+
None = 0,
18+
1419
/// <summary>
1520
/// Indicates that Read is permitted.
1621
/// </summary>

0 commit comments

Comments
 (0)