![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.compute.implementation.ManagedUnmanagedDiskErrors Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-compute Show documentation
Show all versions of azure-resourcemanager-compute Show documentation
This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.compute.implementation;
/** Shared managed vs unmanaged disks errors between virtual machine and virtual machine scale set. */
class ManagedUnmanagedDiskErrors {
static final String VM_BOTH_MANAGED_AND_UNMANAGED_DISK_NOT_ALLOWED =
"This virtual machine is based on managed disk(s), both un-managed and managed disk cannot exists together in"
+ " a virtual machine";
static final String VMSS_BOTH_MANAGED_AND_UNMANAGED_DISK_NOT_ALLOWED =
"This virtual machine scale set is based on managed disk(s), both un-managed and managed cannot exists"
+ " together in a virtual machine scale set";
static final String VM_NO_UNMANAGED_DISK_TO_UPDATE =
"This virtual machine is based on managed disk(s) and there is no un-managed disk to update";
static final String VM_NO_MANAGED_DISK_TO_UPDATE =
"This virtual machine is based on un-managed disk(s) and there is no managed disk to update";
static final String VMSS_NO_UNMANAGED_DISK_TO_UPDATE =
"This virtual machine scale set is based on managed disk(s) and there is no un-managed disk to update";
static final String VMSS_NO_MANAGED_DISK_TO_UPDATE =
"This virtual machine scale set is based on un-managed disk(s) and there is no managed disk to update";
static final String VM_BOTH_UNMANAGED_AND_MANAGED_DISK_NOT_ALLOWED =
"This virtual machine is based on un-managed disks (s), both un-managed and managed disk cannot exists"
+ " together in a virtual machine";
static final String VMSS_BOTH_UNMANAGED_AND_MANAGED_DISK_NOT_ALLOWED =
"This virtual machine scale set is based on un-managed disk(s), both un-managed and managed cannot exists"
+ " together in a virtual machine scale set";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy