Skip to content

Commit 1818d21

Browse files
author
SDKAuto
committed
CodeGen from PR 24163 in Azure/azure-rest-api-specs
Merge 4a2e07c9ee2560197b24c83f770ac63b917b85a1 into 6c6b16dc98d720304633b76c8e82c282ffa9cc08
1 parent 9ff86b6 commit 1818d21

19 files changed

+65
-34
lines changed

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

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,6 @@ public static partial class ArmBatchModelFactory
426426
public static Azure.ResourceManager.Batch.Models.BatchResizeOperationStatus BatchResizeOperationStatus(int? targetDedicatedNodes = default(int?), int? targetLowPriorityNodes = default(int?), System.TimeSpan? resizeTimeout = default(System.TimeSpan?), Azure.ResourceManager.Batch.Models.BatchNodeDeallocationOption? nodeDeallocationOption = default(Azure.ResourceManager.Batch.Models.BatchNodeDeallocationOption?), System.DateTimeOffset? startOn = default(System.DateTimeOffset?), System.Collections.Generic.IEnumerable<Azure.ResponseError> errors = null) { throw null; }
427427
public static Azure.ResourceManager.Batch.Models.BatchSkuCapability BatchSkuCapability(string name = null, string value = null) { throw null; }
428428
public static Azure.ResourceManager.Batch.Models.BatchSupportedSku BatchSupportedSku(string name = null, string familyName = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Batch.Models.BatchSkuCapability> capabilities = null) { throw null; }
429-
public static Azure.ResourceManager.Batch.Models.BatchVmContainerConfiguration BatchVmContainerConfiguration(Azure.ResourceManager.Batch.Models.BatchVmContainerType containerType = default(Azure.ResourceManager.Batch.Models.BatchVmContainerType), System.Collections.Generic.IEnumerable<string> containerImageNames = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Batch.Models.BatchVmContainerRegistry> containerRegistries = null) { throw null; }
430429
public static Azure.ResourceManager.Batch.Models.BatchVmFamilyCoreQuota BatchVmFamilyCoreQuota(string name = null, int? coreQuota = default(int?)) { throw null; }
431430
}
432431
public partial class BatchAccountAutoScaleSettings
@@ -871,6 +870,7 @@ public partial class BatchNetworkConfiguration
871870
{
872871
public BatchNetworkConfiguration() { }
873872
public Azure.ResourceManager.Batch.Models.DynamicVNetAssignmentScope? DynamicVNetAssignmentScope { get { throw null; } set { } }
873+
public bool? EnableAcceleratedNetworking { get { throw null; } set { } }
874874
public System.Collections.Generic.IList<Azure.ResourceManager.Batch.Models.BatchInboundNatPool> EndpointInboundNatPools { get { throw null; } set { } }
875875
public Azure.ResourceManager.Batch.Models.BatchPublicIPAddressConfiguration PublicIPAddressConfiguration { get { throw null; } set { } }
876876
public Azure.Core.ResourceIdentifier SubnetId { get { throw null; } set { } }
@@ -1070,7 +1070,7 @@ public BatchVmConfiguration(Azure.ResourceManager.Batch.Models.BatchImageReferen
10701070
}
10711071
public partial class BatchVmContainerConfiguration
10721072
{
1073-
public BatchVmContainerConfiguration() { }
1073+
public BatchVmContainerConfiguration(Azure.ResourceManager.Batch.Models.BatchVmContainerType containerType) { }
10741074
public System.Collections.Generic.IList<string> ContainerImageNames { get { throw null; } }
10751075
public System.Collections.Generic.IList<Azure.ResourceManager.Batch.Models.BatchVmContainerRegistry> ContainerRegistries { get { throw null; } }
10761076
public Azure.ResourceManager.Batch.Models.BatchVmContainerType ContainerType { get { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] set { } }
@@ -1089,6 +1089,7 @@ public BatchVmContainerRegistry() { }
10891089
private readonly object _dummy;
10901090
private readonly int _dummyPrimitive;
10911091
public BatchVmContainerType(string value) { throw null; }
1092+
public static Azure.ResourceManager.Batch.Models.BatchVmContainerType CriCompatible { get { throw null; } }
10921093
public static Azure.ResourceManager.Batch.Models.BatchVmContainerType DockerCompatible { get { throw null; } }
10931094
public bool Equals(Azure.ResourceManager.Batch.Models.BatchVmContainerType other) { throw null; }
10941095
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
@@ -1112,6 +1113,7 @@ public partial class BatchVmExtension
11121113
{
11131114
public BatchVmExtension(string name, string publisher, string extensionType) { }
11141115
public bool? AutoUpgradeMinorVersion { get { throw null; } set { } }
1116+
public bool? EnableAutomaticUpgrade { get { throw null; } set { } }
11151117
public string ExtensionType { get { throw null; } set { } }
11161118
public string Name { get { throw null; } set { } }
11171119
public System.BinaryData ProtectedSettings { get { throw null; } set { } }

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

Lines changed: 0 additions & 13 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/Models/BatchAccountEncryptionConfiguration.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/batch/Azure.ResourceManager.Batch/src/Generated/Models/BatchNetworkConfiguration.Serialization.cs

Lines changed: 16 additions & 1 deletion
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/Models/BatchNetworkConfiguration.cs

Lines changed: 5 additions & 1 deletion
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/Models/BatchVmContainerConfiguration.cs

Lines changed: 3 additions & 2 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/Models/BatchVmContainerType.cs

Lines changed: 4 additions & 1 deletion
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/Models/BatchVmExtension.Serialization.cs

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

0 commit comments

Comments
 (0)