Skip to content

Commit 1a73274

Browse files
author
SDKAuto
committed
CodeGen from PR 21195 in Azure/azure-rest-api-specs
Merge a9c86076164bb13fe54750aa9aacde1a0716ad37 into fdd4e5c
1 parent 7b34e2b commit 1a73274

28 files changed

+209
-104
lines changed

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

Lines changed: 13 additions & 5 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 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
{
@@ -729,7 +731,7 @@ public BatchEnvironmentSetting(string name) { }
729731
}
730732
public partial class BatchFileShareConfiguration
731733
{
732-
public BatchFileShareConfiguration(string accountName, System.Uri fileUri, string accountKey, string relativeMountPath) { }
734+
public BatchFileShareConfiguration(string accountName, System.Uri fileUri, string relativeMountPath) { }
733735
public string AccountKey { get { throw null; } set { } }
734736
public string AccountName { get { throw null; } set { } }
735737
public System.Uri FileUri { get { throw null; } set { } }
@@ -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)