-
Notifications
You must be signed in to change notification settings - Fork 265
/
DataDisk.xml
207 lines (207 loc) · 11.5 KB
/
DataDisk.xml
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
<Type Name="DataDisk" FullName="Microsoft.Azure.Batch.Protocol.Models.DataDisk">
<TypeSignature Language="C#" Value="public class DataDisk" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit DataDisk extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.Azure.Batch.Protocol.Models.DataDisk" />
<TypeSignature Language="VB.NET" Value="Public Class DataDisk" />
<TypeSignature Language="F#" Value="type DataDisk = class" />
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>14.0.0.0</AssemblyVersion>
<AssemblyVersion>15.0.0.0</AssemblyVersion>
<AssemblyVersion>15.1.0.0</AssemblyVersion>
<AssemblyVersion>15.3.0.0</AssemblyVersion>
<AssemblyVersion>15.4.0.0</AssemblyVersion>
<AssemblyVersion>16.0.0.0</AssemblyVersion>
<AssemblyVersion>16.1.0.0</AssemblyVersion>
<AssemblyVersion>16.2.0.0</AssemblyVersion>
<AssemblyVersion>16.3.0.0</AssemblyVersion>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
Settings which will be used by the data disks associated to Compute
Nodes in the Pool. When using attached data disks, you need to mount
and format the disks from within a VM to use them.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public DataDisk ();" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.Protocol.Models.DataDisk.#ctor" />
<MemberSignature Language="VB.NET" Value="Public Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>
Initializes a new instance of the DataDisk class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="public DataDisk (int lun, int diskSizeGB, Microsoft.Azure.Batch.Protocol.Models.CachingType? caching = default, Microsoft.Azure.Batch.Protocol.Models.StorageAccountType? storageAccountType = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig specialname rtspecialname instance void .ctor(int32 lun, int32 diskSizeGB, valuetype System.Nullable`1<valuetype Microsoft.Azure.Batch.Protocol.Models.CachingType> caching, valuetype System.Nullable`1<valuetype Microsoft.Azure.Batch.Protocol.Models.StorageAccountType> storageAccountType) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.Protocol.Models.DataDisk.#ctor(System.Int32,System.Int32,System.Nullable{Microsoft.Azure.Batch.Protocol.Models.CachingType},System.Nullable{Microsoft.Azure.Batch.Protocol.Models.StorageAccountType})" />
<MemberSignature Language="VB.NET" Value="Public Sub New (lun As Integer, diskSizeGB As Integer, Optional caching As Nullable(Of CachingType) = Nothing, Optional storageAccountType As Nullable(Of StorageAccountType) = Nothing)" />
<MemberSignature Language="F#" Value="new Microsoft.Azure.Batch.Protocol.Models.DataDisk : int * int * Nullable<Microsoft.Azure.Batch.Protocol.Models.CachingType> * Nullable<Microsoft.Azure.Batch.Protocol.Models.StorageAccountType> -> Microsoft.Azure.Batch.Protocol.Models.DataDisk" Usage="new Microsoft.Azure.Batch.Protocol.Models.DataDisk (lun, diskSizeGB, caching, storageAccountType)" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Parameters>
<Parameter Name="lun" Type="System.Int32" />
<Parameter Name="diskSizeGB" Type="System.Int32" />
<Parameter Name="caching" Type="System.Nullable<Microsoft.Azure.Batch.Protocol.Models.CachingType>" />
<Parameter Name="storageAccountType" Type="System.Nullable<Microsoft.Azure.Batch.Protocol.Models.StorageAccountType>" />
</Parameters>
<Docs>
<param name="lun">The logical unit number.</param>
<param name="diskSizeGB">The initial disk size in
gigabytes.</param>
<param name="caching">The type of caching to be enabled for the
data disks.</param>
<param name="storageAccountType">The storage Account type to be
used for the data disk.</param>
<summary>
Initializes a new instance of the DataDisk class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Caching">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.Protocol.Models.CachingType? Caching { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype Microsoft.Azure.Batch.Protocol.Models.CachingType> Caching" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.Protocol.Models.DataDisk.Caching" />
<MemberSignature Language="VB.NET" Value="Public Property Caching As Nullable(Of CachingType)" />
<MemberSignature Language="F#" Value="member this.Caching : Nullable<Microsoft.Azure.Batch.Protocol.Models.CachingType> with get, set" Usage="Microsoft.Azure.Batch.Protocol.Models.DataDisk.Caching" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Newtonsoft.Json.JsonProperty(PropertyName="caching")]</AttributeName>
<AttributeName Language="F#">[<Newtonsoft.Json.JsonProperty(PropertyName="caching")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Nullable<Microsoft.Azure.Batch.Protocol.Models.CachingType></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the type of caching to be enabled for the data disks.
</summary>
<value>To be added.</value>
<remarks>
The default value for caching is readwrite. For information about
the caching options see:
https://blogs.msdn.microsoft.com/windowsazurestorage/2012/06/27/exploring-windows-azure-drives-disks-and-images/.
Possible values include: 'none', 'readOnly', 'readWrite'
</remarks>
</Docs>
</Member>
<Member MemberName="DiskSizeGB">
<MemberSignature Language="C#" Value="public int DiskSizeGB { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 DiskSizeGB" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.Protocol.Models.DataDisk.DiskSizeGB" />
<MemberSignature Language="VB.NET" Value="Public Property DiskSizeGB As Integer" />
<MemberSignature Language="F#" Value="member this.DiskSizeGB : int with get, set" Usage="Microsoft.Azure.Batch.Protocol.Models.DataDisk.DiskSizeGB" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Newtonsoft.Json.JsonProperty(PropertyName="diskSizeGB")]</AttributeName>
<AttributeName Language="F#">[<Newtonsoft.Json.JsonProperty(PropertyName="diskSizeGB")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the initial disk size in gigabytes.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Lun">
<MemberSignature Language="C#" Value="public int Lun { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance int32 Lun" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.Protocol.Models.DataDisk.Lun" />
<MemberSignature Language="VB.NET" Value="Public Property Lun As Integer" />
<MemberSignature Language="F#" Value="member this.Lun : int with get, set" Usage="Microsoft.Azure.Batch.Protocol.Models.DataDisk.Lun" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Newtonsoft.Json.JsonProperty(PropertyName="lun")]</AttributeName>
<AttributeName Language="F#">[<Newtonsoft.Json.JsonProperty(PropertyName="lun")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Int32</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the logical unit number.
</summary>
<value>To be added.</value>
<remarks>
The lun is used to uniquely identify each data disk. If attaching
multiple disks, each should have a distinct lun. The value must be
between 0 and 63, inclusive.
</remarks>
</Docs>
</Member>
<Member MemberName="StorageAccountType">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.Protocol.Models.StorageAccountType? StorageAccountType { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype Microsoft.Azure.Batch.Protocol.Models.StorageAccountType> StorageAccountType" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.Protocol.Models.DataDisk.StorageAccountType" />
<MemberSignature Language="VB.NET" Value="Public Property StorageAccountType As Nullable(Of StorageAccountType)" />
<MemberSignature Language="F#" Value="member this.StorageAccountType : Nullable<Microsoft.Azure.Batch.Protocol.Models.StorageAccountType> with get, set" Usage="Microsoft.Azure.Batch.Protocol.Models.DataDisk.StorageAccountType" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[Newtonsoft.Json.JsonProperty(PropertyName="storageAccountType")]</AttributeName>
<AttributeName Language="F#">[<Newtonsoft.Json.JsonProperty(PropertyName="storageAccountType")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Nullable<Microsoft.Azure.Batch.Protocol.Models.StorageAccountType></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the storage Account type to be used for the data disk.
</summary>
<value>To be added.</value>
<remarks>
If omitted, the default is "standard_lrs". Possible values include:
'StandardLRS', 'PremiumLRS', 'StandardSSDLRS'
</remarks>
</Docs>
</Member>
</Members>
</Type>