All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.compute.implementation.ManagedUnmanagedDiskErrors Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure Compute Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.46.0
Show newest version
// 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