Skip to content

[AutoPR Azure.ResourceManager.Batch] batch: the storageAccountId field is no longer required #1295

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ public BatchAccountPoolData() { }
public System.DateTimeOffset? CreatedOn { get { throw null; } }
public int? CurrentDedicatedNodes { get { throw null; } }
public int? CurrentLowPriorityNodes { get { throw null; } }
public Azure.ResourceManager.Batch.Models.NodeCommunicationMode? CurrentNodeCommunicationMode { get { throw null; } }
public Azure.ResourceManager.Batch.Models.BatchDeploymentConfiguration DeploymentConfiguration { get { throw null; } set { } }
public string DisplayName { get { throw null; } set { } }
public Azure.ETag? ETag { get { throw null; } }
Expand All @@ -154,6 +155,7 @@ public BatchAccountPoolData() { }
public Azure.ResourceManager.Batch.Models.BatchResizeOperationStatus ResizeOperationStatus { get { throw null; } }
public Azure.ResourceManager.Batch.Models.BatchAccountPoolScaleSettings ScaleSettings { get { throw null; } set { } }
public Azure.ResourceManager.Batch.Models.BatchAccountPoolStartTask StartTask { get { throw null; } set { } }
public Azure.ResourceManager.Batch.Models.NodeCommunicationMode? TargetNodeCommunicationMode { get { throw null; } set { } }
public Azure.ResourceManager.Batch.Models.BatchNodeFillType? TaskSchedulingNodeFillType { get { throw null; } set { } }
public int? TaskSlotsPerNode { get { throw null; } set { } }
public System.Collections.Generic.IList<Azure.ResourceManager.Batch.Models.BatchUserAccount> UserAccounts { get { throw null; } }
Expand Down Expand Up @@ -653,12 +655,12 @@ public enum BatchCertificateVisibility
}
public partial class BatchCifsMountConfiguration
{
public BatchCifsMountConfiguration(string username, string source, string relativeMountPath, string password) { }
public BatchCifsMountConfiguration(string source, string relativeMountPath, string password) { }
public string MountOptions { get { throw null; } set { } }
public string Password { get { throw null; } set { } }
public string RelativeMountPath { get { throw null; } set { } }
public string Source { get { throw null; } set { } }
public string Username { get { throw null; } set { } }
public string UserName { get { throw null; } set { } }
}
public partial class BatchCloudServiceConfiguration
{
Expand Down Expand Up @@ -729,7 +731,7 @@ public BatchEnvironmentSetting(string name) { }
}
public partial class BatchFileShareConfiguration
{
public BatchFileShareConfiguration(string accountName, System.Uri fileUri, string accountKey, string relativeMountPath) { }
public BatchFileShareConfiguration(string accountName, System.Uri fileUri, string relativeMountPath) { }
public string AccountKey { get { throw null; } set { } }
public string AccountName { get { throw null; } set { } }
public System.Uri FileUri { get { throw null; } set { } }
Expand Down Expand Up @@ -836,7 +838,7 @@ public enum BatchNameUnavailableReason
public partial class BatchNetworkConfiguration
{
public BatchNetworkConfiguration() { }
public Azure.ResourceManager.Batch.Models.DynamicVNetAssignmentScope? DynamicVNetAssignmentScope { get { throw null; } set { } }
public Azure.ResourceManager.Batch.Models.DynamicVNetAssignmentScope? DynamicVnetAssignmentScope { get { throw null; } set { } }
public System.Collections.Generic.IList<Azure.ResourceManager.Batch.Models.BatchInboundNatPool> EndpointInboundNatPools { get { throw null; } set { } }
public Azure.ResourceManager.Batch.Models.BatchPublicIPAddressConfiguration PublicIPAddressConfiguration { get { throw null; } set { } }
public Azure.Core.ResourceIdentifier SubnetId { get { throw null; } set { } }
Expand Down Expand Up @@ -909,7 +911,7 @@ public enum BatchNodePlacementPolicyType
public partial class BatchPrivateLinkServiceConnectionState
{
public BatchPrivateLinkServiceConnectionState(Azure.ResourceManager.Batch.Models.BatchPrivateLinkServiceConnectionStatus status) { }
public string ActionRequired { get { throw null; } }
public string ActionsRequired { get { throw null; } }
public string Description { get { throw null; } set { } }
public Azure.ResourceManager.Batch.Models.BatchPrivateLinkServiceConnectionStatus Status { get { throw null; } set { } }
}
Expand Down Expand Up @@ -1107,4 +1109,10 @@ public enum InterNodeCommunicationState
Enabled = 0,
Disabled = 1,
}
public enum NodeCommunicationMode
{
Default = 0,
Classic = 1,
Simplified = 2,
}
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading