Skip to content

Commit 4f195f6

Browse files
author
SDKAuto
committed
CodeGen from PR 21316 in Azure/azure-rest-api-specs
Merge 0482b8f3e825d40140db6c50e87594ffd750f7e7 into 195cd610db0accd0422c3e00a72df739ab4de677
1 parent 06c6d60 commit 4f195f6

26 files changed

+199
-88
lines changed

sdk/batch/Azure.ResourceManager.Batch/api/Azure.ResourceManager.Batch.netstandard2.0.cs

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,7 @@ public BatchAccountPoolData() { }
140140
public System.DateTimeOffset? CreatedOn { get { throw null; } }
141141
public int? CurrentDedicatedNodes { get { throw null; } }
142142
public int? CurrentLowPriorityNodes { get { throw null; } }
143+
public Azure.ResourceManager.Batch.Models.NodeCommunicationMode? CurrentNodeCommunicationMode { get { throw null; } }
143144
public Azure.ResourceManager.Batch.Models.BatchDeploymentConfiguration DeploymentConfiguration { get { throw null; } set { } }
144145
public string DisplayName { get { throw null; } set { } }
145146
public Azure.ETag? ETag { get { throw null; } }
@@ -154,6 +155,7 @@ public BatchAccountPoolData() { }
154155
public Azure.ResourceManager.Batch.Models.BatchResizeOperationStatus ResizeOperationStatus { get { throw null; } }
155156
public Azure.ResourceManager.Batch.Models.BatchAccountPoolScaleSettings ScaleSettings { get { throw null; } set { } }
156157
public Azure.ResourceManager.Batch.Models.BatchAccountPoolStartTask StartTask { get { throw null; } set { } }
158+
public Azure.ResourceManager.Batch.Models.NodeCommunicationMode? TargetNodeCommunicationMode { get { throw null; } set { } }
157159
public Azure.ResourceManager.Batch.Models.BatchNodeFillType? TaskSchedulingNodeFillType { get { throw null; } set { } }
158160
public int? TaskSlotsPerNode { get { throw null; } set { } }
159161
public System.Collections.Generic.IList<Azure.ResourceManager.Batch.Models.BatchUserAccount> UserAccounts { get { throw null; } }
@@ -653,12 +655,12 @@ public enum BatchCertificateVisibility
653655
}
654656
public partial class BatchCifsMountConfiguration
655657
{
656-
public BatchCifsMountConfiguration(string username, string source, string relativeMountPath, string password) { }
658+
public BatchCifsMountConfiguration(string userName, string source, string relativeMountPath, string password) { }
657659
public string MountOptions { get { throw null; } set { } }
658660
public string Password { get { throw null; } set { } }
659661
public string RelativeMountPath { get { throw null; } set { } }
660662
public string Source { get { throw null; } set { } }
661-
public string Username { get { throw null; } set { } }
663+
public string UserName { get { throw null; } set { } }
662664
}
663665
public partial class BatchCloudServiceConfiguration
664666
{
@@ -836,7 +838,7 @@ public enum BatchNameUnavailableReason
836838
public partial class BatchNetworkConfiguration
837839
{
838840
public BatchNetworkConfiguration() { }
839-
public Azure.ResourceManager.Batch.Models.DynamicVNetAssignmentScope? DynamicVNetAssignmentScope { get { throw null; } set { } }
841+
public Azure.ResourceManager.Batch.Models.DynamicVNetAssignmentScope? DynamicVnetAssignmentScope { get { throw null; } set { } }
840842
public System.Collections.Generic.IList<Azure.ResourceManager.Batch.Models.BatchInboundNatPool> EndpointInboundNatPools { get { throw null; } set { } }
841843
public Azure.ResourceManager.Batch.Models.BatchPublicIPAddressConfiguration PublicIPAddressConfiguration { get { throw null; } set { } }
842844
public Azure.Core.ResourceIdentifier SubnetId { get { throw null; } set { } }
@@ -909,7 +911,7 @@ public enum BatchNodePlacementPolicyType
909911
public partial class BatchPrivateLinkServiceConnectionState
910912
{
911913
public BatchPrivateLinkServiceConnectionState(Azure.ResourceManager.Batch.Models.BatchPrivateLinkServiceConnectionStatus status) { }
912-
public string ActionRequired { get { throw null; } }
914+
public string ActionsRequired { get { throw null; } }
913915
public string Description { get { throw null; } set { } }
914916
public Azure.ResourceManager.Batch.Models.BatchPrivateLinkServiceConnectionStatus Status { get { throw null; } set { } }
915917
}
@@ -1107,4 +1109,10 @@ public enum InterNodeCommunicationState
11071109
Enabled = 0,
11081110
Disabled = 1,
11091111
}
1112+
public enum NodeCommunicationMode
1113+
{
1114+
Default = 0,
1115+
Classic = 1,
1116+
Simplified = 2,
1117+
}
11101118
}

sdk/batch/Azure.ResourceManager.Batch/src/Generated/BatchAccountCertificateCollection.cs

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/batch/Azure.ResourceManager.Batch/src/Generated/BatchAccountCertificateResource.cs

Lines changed: 10 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)