-
Notifications
You must be signed in to change notification settings - Fork 268
/
CloudPool.xml
2058 lines (2058 loc) · 172 KB
/
CloudPool.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
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<Type Name="CloudPool" FullName="Microsoft.Azure.Batch.CloudPool">
<TypeSignature Language="C#" Value="public class CloudPool : Microsoft.Azure.Batch.IInheritedBehaviors, Microsoft.Azure.Batch.IRefreshable" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi beforefieldinit CloudPool extends System.Object implements class Microsoft.Azure.Batch.IInheritedBehaviors, class Microsoft.Azure.Batch.IRefreshable" />
<TypeSignature Language="DocId" Value="T:Microsoft.Azure.Batch.CloudPool" />
<TypeSignature Language="VB.NET" Value="Public Class CloudPool
Implements IInheritedBehaviors, IRefreshable" />
<TypeSignature Language="F#" Value="type CloudPool = class
 interface IRefreshable
 interface IInheritedBehaviors" />
<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>
<Interface>
<InterfaceName>Microsoft.Azure.Batch.IInheritedBehaviors</InterfaceName>
</Interface>
<Interface>
<InterfaceName>Microsoft.Azure.Batch.IRefreshable</InterfaceName>
</Interface>
</Interfaces>
<Docs>
<summary>
A pool in the Azure Batch service.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName=".ctor">
<MemberSignature Language="C#" Value="protected CloudPool ();" />
<MemberSignature Language="ILAsm" Value=".method familyhidebysig specialname rtspecialname instance void .ctor() cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.#ctor" />
<MemberSignature Language="VB.NET" Value="Protected Sub New ()" />
<MemberType>Constructor</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Parameters />
<Docs>
<summary>
Default constructor to support mocking the <see cref="T:Microsoft.Azure.Batch.CloudPool" /> class.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AllocationState">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.Common.AllocationState? AllocationState { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype Microsoft.Azure.Batch.Common.AllocationState> AllocationState" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.AllocationState" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property AllocationState As Nullable(Of AllocationState)" />
<MemberSignature Language="F#" Value="member this.AllocationState : Nullable<Microsoft.Azure.Batch.Common.AllocationState>" Usage="Microsoft.Azure.Batch.CloudPool.AllocationState" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<Microsoft.Azure.Batch.Common.AllocationState></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets an <see cref="T:Microsoft.Azure.Batch.Common.AllocationState" /> which indicates what node allocation activity is occurring on the
pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="AllocationStateTransitionTime">
<MemberSignature Language="C#" Value="public DateTime? AllocationStateTransitionTime { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.DateTime> AllocationStateTransitionTime" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.AllocationStateTransitionTime" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property AllocationStateTransitionTime As Nullable(Of DateTime)" />
<MemberSignature Language="F#" Value="member this.AllocationStateTransitionTime : Nullable<DateTime>" Usage="Microsoft.Azure.Batch.CloudPool.AllocationStateTransitionTime" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.DateTime></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the time at which the pool entered its current <see cref="P:Microsoft.Azure.Batch.CloudPool.AllocationState" />.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ApplicationPackageReferences">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IList<Microsoft.Azure.Batch.ApplicationPackageReference> ApplicationPackageReferences { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IList`1<class Microsoft.Azure.Batch.ApplicationPackageReference> ApplicationPackageReferences" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.ApplicationPackageReferences" />
<MemberSignature Language="VB.NET" Value="Public Property ApplicationPackageReferences As IList(Of ApplicationPackageReference)" />
<MemberSignature Language="F#" Value="member this.ApplicationPackageReferences : System.Collections.Generic.IList<Microsoft.Azure.Batch.ApplicationPackageReference> with get, set" Usage="Microsoft.Azure.Batch.CloudPool.ApplicationPackageReferences" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IList<Microsoft.Azure.Batch.ApplicationPackageReference></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets a list of application packages to be installed on each compute node in the pool.
</summary>
<value>To be added.</value>
<remarks>
Changes to application package references affect all new compute nodes joining the pool, but do not affect compute
nodes that are already in the pool until they are rebooted or reimaged. There is a maximum of 10 application
package references on any given pool.
</remarks>
</Docs>
</Member>
<Member MemberName="AutoScaleEnabled">
<MemberSignature Language="C#" Value="public bool? AutoScaleEnabled { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<bool> AutoScaleEnabled" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.AutoScaleEnabled" />
<MemberSignature Language="VB.NET" Value="Public Property AutoScaleEnabled As Nullable(Of Boolean)" />
<MemberSignature Language="F#" Value="member this.AutoScaleEnabled : Nullable<bool> with get, set" Usage="Microsoft.Azure.Batch.CloudPool.AutoScaleEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.Boolean></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets whether the pool size should automatically adjust according to the <see cref="P:Microsoft.Azure.Batch.CloudPool.AutoScaleFormula" />.
</summary>
<value>To be added.</value>
<remarks>
<para>If true, the <see cref="P:Microsoft.Azure.Batch.CloudPool.AutoScaleFormula" /> property is required, the pool automatically resizes according
to the formula, and <see cref="P:Microsoft.Azure.Batch.CloudPool.TargetDedicatedComputeNodes" /> and <see cref="P:Microsoft.Azure.Batch.CloudPool.TargetLowPriorityComputeNodes" />
must be null.</para>
<para>If false, one of the <see cref="P:Microsoft.Azure.Batch.CloudPool.TargetDedicatedComputeNodes" /> or <see cref="P:Microsoft.Azure.Batch.CloudPool.TargetLowPriorityComputeNodes" />
properties is required.</para>
<para>The default value is false.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="AutoScaleEvaluationInterval">
<MemberSignature Language="C#" Value="public TimeSpan? AutoScaleEvaluationInterval { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.TimeSpan> AutoScaleEvaluationInterval" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.AutoScaleEvaluationInterval" />
<MemberSignature Language="VB.NET" Value="Public Property AutoScaleEvaluationInterval As Nullable(Of TimeSpan)" />
<MemberSignature Language="F#" Value="member this.AutoScaleEvaluationInterval : Nullable<TimeSpan> with get, set" Usage="Microsoft.Azure.Batch.CloudPool.AutoScaleEvaluationInterval" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.TimeSpan></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets a time interval at which to automatically adjust the pool size according to the <see cref="P:Microsoft.Azure.Batch.CloudPool.AutoScaleFormula" />.
</summary>
<value>To be added.</value>
<remarks>
The default value is 15 minutes. The minimum allowed value is 5 minutes.
</remarks>
</Docs>
</Member>
<Member MemberName="AutoScaleFormula">
<MemberSignature Language="C#" Value="public string AutoScaleFormula { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string AutoScaleFormula" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.AutoScaleFormula" />
<MemberSignature Language="VB.NET" Value="Public Property AutoScaleFormula As String" />
<MemberSignature Language="F#" Value="member this.AutoScaleFormula : string with get, set" Usage="Microsoft.Azure.Batch.CloudPool.AutoScaleFormula" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets a formula for the desired number of compute nodes in the pool.
</summary>
<value>To be added.</value>
<remarks>
<para>For how to write autoscale formulas, see https://azure.microsoft.com/documentation/articles/batch-automatic-scaling/.
This property is required if <see cref="P:Microsoft.Azure.Batch.CloudPool.AutoScaleEnabled" /> is set to true. It must be null if AutoScaleEnabled
is false.</para>
<para>The formula is checked for validity before the pool is created. If the formula is not valid,
an exception is thrown when you try to commit the <see cref="T:Microsoft.Azure.Batch.CloudPool" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="AutoScaleRun">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.AutoScaleRun AutoScaleRun { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Batch.AutoScaleRun AutoScaleRun" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.AutoScaleRun" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property AutoScaleRun As AutoScaleRun" />
<MemberSignature Language="F#" Value="member this.AutoScaleRun : Microsoft.Azure.Batch.AutoScaleRun" Usage="Microsoft.Azure.Batch.CloudPool.AutoScaleRun" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Batch.AutoScaleRun</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the results and errors from the last execution of the <see cref="P:Microsoft.Azure.Batch.CloudPool.AutoScaleFormula" />.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CertificateReferences">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IList<Microsoft.Azure.Batch.CertificateReference> CertificateReferences { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IList`1<class Microsoft.Azure.Batch.CertificateReference> CertificateReferences" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CertificateReferences" />
<MemberSignature Language="VB.NET" Value="Public Property CertificateReferences As IList(Of CertificateReference)" />
<MemberSignature Language="F#" Value="member this.CertificateReferences : System.Collections.Generic.IList<Microsoft.Azure.Batch.CertificateReference> with get, set" Usage="Microsoft.Azure.Batch.CloudPool.CertificateReferences" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IList<Microsoft.Azure.Batch.CertificateReference></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets a list of certificates to be installed on each compute node in the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Commit">
<MemberSignature Language="C#" Value="public void Commit (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Commit(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.Commit(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Sub Commit (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)" />
<MemberSignature Language="F#" Value="member this.Commit : seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit" Usage="cloudPool.Commit additionalBehaviors" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Commits this <see cref="T:Microsoft.Azure.Batch.CloudPool" /> to the Azure Batch service.
</summary>
<remarks>
<para>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.CommitAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="CommitAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task CommitAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task CommitAsync(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.CommitAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function CommitAsync (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="member this.CommitAsync : seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudPool.CommitAsync (additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Commits this <see cref="T:Microsoft.Azure.Batch.CloudPool" /> to the Azure Batch service.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>
<para>The commit operation runs asynchronously.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="CommitChanges">
<MemberSignature Language="C#" Value="public void CommitChanges (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void CommitChanges(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.CommitChanges(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Sub CommitChanges (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)" />
<MemberSignature Language="F#" Value="member this.CommitChanges : seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit" Usage="cloudPool.CommitChanges additionalBehaviors" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Commits all pending changes to this <see cref="T:Microsoft.Azure.Batch.CloudPool" /> to the Azure Batch service.
</summary>
<remarks>
<para>
Updates an existing <see cref="T:Microsoft.Azure.Batch.CloudPool" /> on the Batch service by replacing its properties with the properties of this <see cref="T:Microsoft.Azure.Batch.CloudPool" /> which have been changed.
Unchanged properties are ignored.
All changes since the last time this entity was retrieved from the Batch service (either via <see cref="M:Microsoft.Azure.Batch.CloudPool.Refresh(Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />, <see cref="M:Microsoft.Azure.Batch.PoolOperations.GetPool(System.String,Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />,
or <see cref="M:Microsoft.Azure.Batch.PoolOperations.ListPools(Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />) are applied.
Properties which are explicitly set to null will cause an exception because the Batch service does not support partial updates which set a property to null.
If you need to set a property to null, use the <see cref="M:Microsoft.Azure.Batch.CloudPool.Commit(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" /> method.
</para>
<para>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.CommitChangesAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="CommitChangesAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task CommitChangesAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task CommitChangesAsync(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.CommitChangesAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function CommitChangesAsync (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="member this.CommitChangesAsync : seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudPool.CommitChangesAsync (additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Commits all pending changes to this <see cref="T:Microsoft.Azure.Batch.CloudPool" /> to the Azure Batch service.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>
<para>
Updates an existing <see cref="T:Microsoft.Azure.Batch.CloudPool" /> on the Batch service by replacing its properties with the properties of this <see cref="T:Microsoft.Azure.Batch.CloudPool" /> which have been changed.
Unchanged properties are ignored.
All changes since the last time this entity was retrieved from the Batch service (either via <see cref="M:Microsoft.Azure.Batch.CloudPool.Refresh(Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />, <see cref="M:Microsoft.Azure.Batch.PoolOperations.GetPool(System.String,Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />,
or <see cref="M:Microsoft.Azure.Batch.PoolOperations.ListPools(Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />) are applied.
Properties which are explicitly set to null will cause an exception because the Batch service does not support partial updates which set a property to null.
If you need to set a property to null, use <see cref="M:Microsoft.Azure.Batch.CloudPool.Commit(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />.
</para>
<para>This operation runs asynchronously.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="CreationTime">
<MemberSignature Language="C#" Value="public DateTime? CreationTime { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.DateTime> CreationTime" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CreationTime" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property CreationTime As Nullable(Of DateTime)" />
<MemberSignature Language="F#" Value="member this.CreationTime : Nullable<DateTime>" Usage="Microsoft.Azure.Batch.CloudPool.CreationTime" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.DateTime></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the creation time for the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CurrentDedicated">
<MemberSignature Language="C#" Value="public int? CurrentDedicated { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<int32> CurrentDedicated" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CurrentDedicated" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property CurrentDedicated As Nullable(Of Integer)" />
<MemberSignature Language="F#" Value="member this.CurrentDedicated : Nullable<int>" Usage="Microsoft.Azure.Batch.CloudPool.CurrentDedicated" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<Attributes>
<Attribute>
<AttributeName Language="C#">[System.Obsolete("Obsolete after 05/2017, use CurrentDedicatedComputeNodes instead.")]</AttributeName>
<AttributeName Language="F#">[<System.Obsolete("Obsolete after 05/2017, use CurrentDedicatedComputeNodes instead.")>]</AttributeName>
</Attribute>
</Attributes>
<ReturnValue>
<ReturnType>System.Nullable<System.Int32></ReturnType>
</ReturnValue>
<Docs>
<summary>
This property is an alias for <see cref="P:Microsoft.Azure.Batch.CloudPool.CurrentDedicatedComputeNodes" /> and is supported only for backward compatibility.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CurrentDedicatedComputeNodes">
<MemberSignature Language="C#" Value="public int? CurrentDedicatedComputeNodes { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<int32> CurrentDedicatedComputeNodes" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CurrentDedicatedComputeNodes" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property CurrentDedicatedComputeNodes As Nullable(Of Integer)" />
<MemberSignature Language="F#" Value="member this.CurrentDedicatedComputeNodes : Nullable<int>" Usage="Microsoft.Azure.Batch.CloudPool.CurrentDedicatedComputeNodes" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.Int32></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the number of dedicated compute nodes currently in the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CurrentLowPriorityComputeNodes">
<MemberSignature Language="C#" Value="public int? CurrentLowPriorityComputeNodes { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<int32> CurrentLowPriorityComputeNodes" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CurrentLowPriorityComputeNodes" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property CurrentLowPriorityComputeNodes As Nullable(Of Integer)" />
<MemberSignature Language="F#" Value="member this.CurrentLowPriorityComputeNodes : Nullable<int>" Usage="Microsoft.Azure.Batch.CloudPool.CurrentLowPriorityComputeNodes" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.Int32></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the number of low-priority compute nodes currently in the pool.
</summary>
<value>To be added.</value>
<remarks>
Low-priority compute nodes which have been preempted are included in this count.
</remarks>
</Docs>
</Member>
<Member MemberName="CurrentNodeCommunicationMode">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.Common.NodeCommunicationMode? CurrentNodeCommunicationMode { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype Microsoft.Azure.Batch.Common.NodeCommunicationMode> CurrentNodeCommunicationMode" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CurrentNodeCommunicationMode" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property CurrentNodeCommunicationMode As Nullable(Of NodeCommunicationMode)" />
<MemberSignature Language="F#" Value="member this.CurrentNodeCommunicationMode : Nullable<Microsoft.Azure.Batch.Common.NodeCommunicationMode>" Usage="Microsoft.Azure.Batch.CloudPool.CurrentNodeCommunicationMode" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<Microsoft.Azure.Batch.Common.NodeCommunicationMode></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the current state of the pool communication mode.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CustomBehaviors">
<MemberSignature Language="C#" Value="public System.Collections.Generic.IList<Microsoft.Azure.Batch.BatchClientBehavior> CustomBehaviors { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance class System.Collections.Generic.IList`1<class Microsoft.Azure.Batch.BatchClientBehavior> CustomBehaviors" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />
<MemberSignature Language="VB.NET" Value="Public Property CustomBehaviors As IList(Of BatchClientBehavior)" />
<MemberSignature Language="F#" Value="member this.CustomBehaviors : System.Collections.Generic.IList<Microsoft.Azure.Batch.BatchClientBehavior> with get, set" Usage="Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />
<MemberType>Property</MemberType>
<Implements>
<InterfaceMember>P:Microsoft.Azure.Batch.IInheritedBehaviors.CustomBehaviors</InterfaceMember>
</Implements>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IList<Microsoft.Azure.Batch.BatchClientBehavior></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets a list of behaviors that modify or customize requests to the Batch service
made via this <see cref="T:Microsoft.Azure.Batch.CloudPool" />.
</summary>
<value>To be added.</value>
<remarks>
<para>These behaviors are inherited by child objects.</para>
<para>Modifications are applied in the order of the collection. The last write wins.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="Delete">
<MemberSignature Language="C#" Value="public void Delete (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void Delete(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.Delete(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Sub Delete (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)" />
<MemberSignature Language="F#" Value="member this.Delete : seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit" Usage="cloudPool.Delete additionalBehaviors" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Deletes this pool.
</summary>
<remarks>
<para>The delete operation requests that the pool be deleted. The request puts the pool in the <see cref="F:Microsoft.Azure.Batch.Common.PoolState.Deleting" /> state.
The Batch service will requeue any running tasks and perform the actual pool deletion without any further client action.</para>
<remarks>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.DeleteAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</remarks>
</remarks>
</Docs>
</Member>
<Member MemberName="DeleteAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task DeleteAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task DeleteAsync(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.DeleteAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function DeleteAsync (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="member this.DeleteAsync : seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudPool.DeleteAsync (additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Deletes this pool.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> object that represents the asynchronous operation.</returns>
<remarks>
<para>The delete operation requests that the pool be deleted. The request puts the pool in the <see cref="F:Microsoft.Azure.Batch.Common.PoolState.Deleting" /> state.
The Batch service will requeue any running tasks and perform the actual pool deletion without any further client action.</para>
<para>The delete operation runs asynchronously.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="DisableAutoScale">
<MemberSignature Language="C#" Value="public void DisableAutoScale (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void DisableAutoScale(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.DisableAutoScale(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Sub DisableAutoScale (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)" />
<MemberSignature Language="F#" Value="member this.DisableAutoScale : seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit" Usage="cloudPool.DisableAutoScale additionalBehaviors" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Disables automatic scaling on this pool.
</summary>
<remarks>
<para>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.DisableAutoScaleAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="DisableAutoScaleAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task DisableAutoScaleAsync (System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task DisableAutoScaleAsync(class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.DisableAutoScaleAsync(System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function DisableAutoScaleAsync (Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="member this.DisableAutoScaleAsync : seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudPool.DisableAutoScaleAsync (additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Disables automatic scaling on this pool.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>
<para>The disable autoscale operation runs asynchronously.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="DisplayName">
<MemberSignature Language="C#" Value="public string DisplayName { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string DisplayName" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.DisplayName" />
<MemberSignature Language="VB.NET" Value="Public Property DisplayName As String" />
<MemberSignature Language="F#" Value="member this.DisplayName : string with get, set" Usage="Microsoft.Azure.Batch.CloudPool.DisplayName" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the display name of the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EnableAutoScale">
<MemberSignature Language="C#" Value="public void EnableAutoScale (string autoscaleFormula = default, TimeSpan? autoscaleEvaluationInterval = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance void EnableAutoScale(string autoscaleFormula, valuetype System.Nullable`1<valuetype System.TimeSpan> autoscaleEvaluationInterval, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.EnableAutoScale(System.String,System.Nullable{System.TimeSpan},System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Sub EnableAutoScale (Optional autoscaleFormula As String = Nothing, Optional autoscaleEvaluationInterval As Nullable(Of TimeSpan) = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing)" />
<MemberSignature Language="F#" Value="member this.EnableAutoScale : string * Nullable<TimeSpan> * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> unit" Usage="cloudPool.EnableAutoScale (autoscaleFormula, autoscaleEvaluationInterval, additionalBehaviors)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="autoscaleFormula" Type="System.String" />
<Parameter Name="autoscaleEvaluationInterval" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="autoscaleFormula">The formula for the desired number of compute nodes in the pool.</param>
<param name="autoscaleEvaluationInterval">The time interval at which to automatically adjust the pool size according to the AutoScale formula. The default value is 15 minutes. The minimum allowed value is 5 minutes.</param>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Enables automatic scaling on this pool.
</summary>
<remarks>
<para>The formula is checked for validity before it is applied to the pool. If the formula is not valid, an exception occurs.</para>
<para>You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool.</para>
<para>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.EnableAutoScaleAsync(System.String,System.Nullable{System.TimeSpan},System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="EnableAutoScaleAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task EnableAutoScaleAsync (string autoscaleFormula = default, TimeSpan? autoscaleEvaluationInterval = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task EnableAutoScaleAsync(string autoscaleFormula, valuetype System.Nullable`1<valuetype System.TimeSpan> autoscaleEvaluationInterval, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.EnableAutoScaleAsync(System.String,System.Nullable{System.TimeSpan},System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function EnableAutoScaleAsync (Optional autoscaleFormula As String = Nothing, Optional autoscaleEvaluationInterval As Nullable(Of TimeSpan) = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="member this.EnableAutoScaleAsync : string * Nullable<TimeSpan> * seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="cloudPool.EnableAutoScaleAsync (autoscaleFormula, autoscaleEvaluationInterval, additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="autoscaleFormula" Type="System.String" />
<Parameter Name="autoscaleEvaluationInterval" Type="System.Nullable<System.TimeSpan>" />
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="autoscaleFormula">The formula for the desired number of compute nodes in the pool.</param>
<param name="autoscaleEvaluationInterval">The time interval at which to automatically adjust the pool size according to the AutoScale formula. The default value is 15 minutes. The minimum allowed value is 5 minutes.</param>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Enables automatic scaling on this pool.
</summary>
<returns>A <see cref="T:System.Threading.Tasks.Task" /> that represents the asynchronous operation.</returns>
<remarks>
<para>The formula is checked for validity before it is applied to the pool. If the formula is not valid, an exception occurs.</para>
<para>You cannot enable automatic scaling on a pool if a resize operation is in progress on the pool.</para>
<para>The enable autoscale operation runs asynchronously.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="ETag">
<MemberSignature Language="C#" Value="public string ETag { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance string ETag" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.ETag" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property ETag As String" />
<MemberSignature Language="F#" Value="member this.ETag : string" Usage="Microsoft.Azure.Batch.CloudPool.ETag" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the ETag for the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="EvaluateAutoScale">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.AutoScaleRun EvaluateAutoScale (string autoscaleFormula, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class Microsoft.Azure.Batch.AutoScaleRun EvaluateAutoScale(string autoscaleFormula, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.EvaluateAutoScale(System.String,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Function EvaluateAutoScale (autoscaleFormula As String, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As AutoScaleRun" />
<MemberSignature Language="F#" Value="member this.EvaluateAutoScale : string * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.AutoScaleRun" Usage="cloudPool.EvaluateAutoScale (autoscaleFormula, additionalBehaviors)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Batch.AutoScaleRun</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="autoscaleFormula" Type="System.String" />
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="autoscaleFormula">The formula to be evaluated on the pool.</param>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Gets the result of evaluating an automatic scaling formula on this pool. This
is primarily for validating an autoscale formula, as it simply returns the result
without applying the formula to the pool.
</summary>
<returns>The result of evaluating the <paramref name="autoscaleFormula" /> on this pool.</returns>
<remarks>
<para>The formula is validated and its results calculated, but is not applied to the pool. To apply the formula to the pool, use <see cref="M:Microsoft.Azure.Batch.CloudPool.EnableAutoScale(System.String,System.Nullable{System.TimeSpan},System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />.</para>
<para>This method does not change any state of the pool, and does not affect the <see cref="P:Microsoft.Azure.Batch.CloudPool.LastModified" /> or <see cref="P:Microsoft.Azure.Batch.CloudPool.ETag" />.</para>
<para>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.EvaluateAutoScaleAsync(System.String,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="EvaluateAutoScaleAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task<Microsoft.Azure.Batch.AutoScaleRun> EvaluateAutoScaleAsync (string autoscaleFormula, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Batch.AutoScaleRun> EvaluateAutoScaleAsync(string autoscaleFormula, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.EvaluateAutoScaleAsync(System.String,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function EvaluateAutoScaleAsync (autoscaleFormula As String, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of AutoScaleRun)" />
<MemberSignature Language="F#" Value="member this.EvaluateAutoScaleAsync : string * seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Batch.AutoScaleRun>" Usage="cloudPool.EvaluateAutoScaleAsync (autoscaleFormula, additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Batch.AutoScaleRun></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="autoscaleFormula" Type="System.String" />
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="autoscaleFormula">The formula to be evaluated on the pool.</param>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Gets the result of evaluating an automatic scaling formula on this pool. This
is primarily for validating an autoscale formula, as it simply returns the result
without applying the formula to the pool.
</summary>
<returns>The result of evaluating the <paramref name="autoscaleFormula" /> on this pool.</returns>
<remarks>
<para>The formula is validated and its results calculated, but is not applied to the pool. To apply the formula to the pool, use <see cref="M:Microsoft.Azure.Batch.CloudPool.EnableAutoScaleAsync(System.String,System.Nullable{System.TimeSpan},System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</para>
<para>This method does not change any state of the pool, and does not affect the <see cref="P:Microsoft.Azure.Batch.CloudPool.LastModified" /> or <see cref="P:Microsoft.Azure.Batch.CloudPool.ETag" />.</para>
<para>The evaluate operation runs asynchronously.</para>
</remarks>
</Docs>
</Member>
<Member MemberName="GetComputeNode">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.ComputeNode GetComputeNode (string computeNodeId, Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class Microsoft.Azure.Batch.ComputeNode GetComputeNode(string computeNodeId, class Microsoft.Azure.Batch.DetailLevel detailLevel, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.GetComputeNode(System.String,Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Function GetComputeNode (computeNodeId As String, Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As ComputeNode" />
<MemberSignature Language="F#" Value="member this.GetComputeNode : string * Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.ComputeNode" Usage="cloudPool.GetComputeNode (computeNodeId, detailLevel, additionalBehaviors)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Batch.ComputeNode</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="computeNodeId" Type="System.String" />
<Parameter Name="detailLevel" Type="Microsoft.Azure.Batch.DetailLevel" />
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
</Parameters>
<Docs>
<param name="computeNodeId">The id of the compute node to get from the pool.</param>
<param name="detailLevel">A <see cref="T:Microsoft.Azure.Batch.DetailLevel" /> used for controlling which properties are retrieved from the service.</param>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" />.</param>
<summary>
Gets the specified compute node from this pool.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Batch.ComputeNode" /> containing information about the specified compute node.</returns>
<remarks>This is a blocking operation. For a non-blocking equivalent, see <see cref="M:Microsoft.Azure.Batch.CloudPool.GetComputeNodeAsync(System.String,Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />.</remarks>
</Docs>
</Member>
<Member MemberName="GetComputeNodeAsync">
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task<Microsoft.Azure.Batch.ComputeNode> GetComputeNodeAsync (string computeNodeId, Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class System.Threading.Tasks.Task`1<class Microsoft.Azure.Batch.ComputeNode> GetComputeNodeAsync(string computeNodeId, class Microsoft.Azure.Batch.DetailLevel detailLevel, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.GetComputeNodeAsync(System.String,Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="Public Function GetComputeNodeAsync (computeNodeId As String, Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of ComputeNode)" />
<MemberSignature Language="F#" Value="member this.GetComputeNodeAsync : string * Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Batch.ComputeNode>" Usage="cloudPool.GetComputeNodeAsync (computeNodeId, detailLevel, additionalBehaviors, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Batch.ComputeNode></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="computeNodeId" Type="System.String" />
<Parameter Name="detailLevel" Type="Microsoft.Azure.Batch.DetailLevel" />
<Parameter Name="additionalBehaviors" Type="System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="computeNodeId">The id of the compute node to get from the pool.</param>
<param name="detailLevel">A <see cref="T:Microsoft.Azure.Batch.DetailLevel" /> used for controlling which properties are retrieved from the service.</param>
<param name="additionalBehaviors">A collection of <see cref="T:Microsoft.Azure.Batch.BatchClientBehavior" /> instances that are applied to the Batch service request after the <see cref="P:Microsoft.Azure.Batch.CloudPool.CustomBehaviors" /> and <paramref name="detailLevel" />.</param>
<param name="cancellationToken">A <see cref="T:System.Threading.CancellationToken" /> for controlling the lifetime of the asynchronous operation.</param>
<summary>
Gets the specified compute node from this pool.
</summary>
<returns>A <see cref="T:Microsoft.Azure.Batch.ComputeNode" /> containing information about the specified compute node.</returns>
<remarks>The get node operation runs asynchronously.</remarks>
</Docs>
</Member>
<Member MemberName="Id">
<MemberSignature Language="C#" Value="public string Id { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance string Id" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.Id" />
<MemberSignature Language="VB.NET" Value="Public Property Id As String" />
<MemberSignature Language="F#" Value="member this.Id : string with get, set" Usage="Microsoft.Azure.Batch.CloudPool.Id" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets the id of the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Identity">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.BatchPoolIdentity Identity { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance class Microsoft.Azure.Batch.BatchPoolIdentity Identity" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.Identity" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property Identity As BatchPoolIdentity" />
<MemberSignature Language="F#" Value="member this.Identity : Microsoft.Azure.Batch.BatchPoolIdentity" Usage="Microsoft.Azure.Batch.CloudPool.Identity" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Batch.BatchPoolIdentity</ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the identity of the Batch pool, if configured.
</summary>
<value>To be added.</value>
<remarks>
The list of user identities associated with the Batch pool. The user identity dictionary key references will
be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}'.
</remarks>
</Docs>
</Member>
<Member MemberName="InterComputeNodeCommunicationEnabled">
<MemberSignature Language="C#" Value="public bool? InterComputeNodeCommunicationEnabled { get; set; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<bool> InterComputeNodeCommunicationEnabled" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.InterComputeNodeCommunicationEnabled" />
<MemberSignature Language="VB.NET" Value="Public Property InterComputeNodeCommunicationEnabled As Nullable(Of Boolean)" />
<MemberSignature Language="F#" Value="member this.InterComputeNodeCommunicationEnabled : Nullable<bool> with get, set" Usage="Microsoft.Azure.Batch.CloudPool.InterComputeNodeCommunicationEnabled" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.Boolean></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets or sets whether the pool permits direct communication between its compute nodes.
</summary>
<value>To be added.</value>
<remarks>
Enabling inter-node communication limits the maximum size of the pool due to deployment restrictions on the nodes
of the pool. This may result in the pool not reaching its desired size.
</remarks>
</Docs>
</Member>
<Member MemberName="LastModified">
<MemberSignature Language="C#" Value="public DateTime? LastModified { get; }" />
<MemberSignature Language="ILAsm" Value=".property instance valuetype System.Nullable`1<valuetype System.DateTime> LastModified" />
<MemberSignature Language="DocId" Value="P:Microsoft.Azure.Batch.CloudPool.LastModified" />
<MemberSignature Language="VB.NET" Value="Public ReadOnly Property LastModified As Nullable(Of DateTime)" />
<MemberSignature Language="F#" Value="member this.LastModified : Nullable<DateTime>" Usage="Microsoft.Azure.Batch.CloudPool.LastModified" />
<MemberType>Property</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Nullable<System.DateTime></ReturnType>
</ReturnValue>
<Docs>
<summary>
Gets the last modified time of the pool.
</summary>
<value>To be added.</value>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ListComputeNodes">
<MemberSignature Language="C#" Value="public Microsoft.Azure.Batch.IPagedEnumerable<Microsoft.Azure.Batch.ComputeNode> ListComputeNodes (Microsoft.Azure.Batch.DetailLevel detailLevel = default, System.Collections.Generic.IEnumerable<Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors = default);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig instance class Microsoft.Azure.Batch.IPagedEnumerable`1<class Microsoft.Azure.Batch.ComputeNode> ListComputeNodes(class Microsoft.Azure.Batch.DetailLevel detailLevel, class System.Collections.Generic.IEnumerable`1<class Microsoft.Azure.Batch.BatchClientBehavior> additionalBehaviors) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Batch.CloudPool.ListComputeNodes(Microsoft.Azure.Batch.DetailLevel,System.Collections.Generic.IEnumerable{Microsoft.Azure.Batch.BatchClientBehavior})" />
<MemberSignature Language="VB.NET" Value="Public Function ListComputeNodes (Optional detailLevel As DetailLevel = Nothing, Optional additionalBehaviors As IEnumerable(Of BatchClientBehavior) = Nothing) As IPagedEnumerable(Of ComputeNode)" />
<MemberSignature Language="F#" Value="member this.ListComputeNodes : Microsoft.Azure.Batch.DetailLevel * seq<Microsoft.Azure.Batch.BatchClientBehavior> -> Microsoft.Azure.Batch.IPagedEnumerable<Microsoft.Azure.Batch.ComputeNode>" Usage="cloudPool.ListComputeNodes (detailLevel, additionalBehaviors)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
<AssemblyVersion>16.3.1.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Batch.IPagedEnumerable<Microsoft.Azure.Batch.ComputeNode></ReturnType>
</ReturnValue>
<Parameters>