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

com.pulumi.azurenative.maintenance.enums.MaintenanceScope Maven / Gradle / Ivy

The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.maintenance.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * Gets or sets maintenanceScope of the configuration
     * 
     */
    @EnumType
    public enum MaintenanceScope {
        /**
         * This maintenance scope controls installation of azure platform updates i.e. services on physical nodes hosting customer VMs.
         * 
         */
        Host("Host"),
        /**
         * This maintenance scope controls the default update maintenance of the Azure Resource
         * 
         */
        Resource("Resource"),
        /**
         * This maintenance scope controls os image installation on VM/VMSS
         * 
         */
        OSImage("OSImage"),
        /**
         * This maintenance scope controls extension installation on VM/VMSS
         * 
         */
        Extension("Extension"),
        /**
         * This maintenance scope controls installation of windows and linux packages on VM/VMSS
         * 
         */
        InGuestPatch("InGuestPatch"),
        /**
         * This maintenance scope controls installation of SQL server platform updates.
         * 
         */
        SQLDB("SQLDB"),
        /**
         * This maintenance scope controls installation of SQL managed instance platform update.
         * 
         */
        SQLManagedInstance("SQLManagedInstance");

        private final String value;

        MaintenanceScope(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public java.lang.String toString() {
            return new StringJoiner(", ", "MaintenanceScope[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy