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

com.pulumi.azure.securitycenter.inputs.AutoProvisioningState Maven / Gradle / Ivy

Go to download

A Pulumi package for creating and managing Microsoft Azure cloud resources, based on the Terraform azurerm provider. We recommend using the [Azure Native provider](https://github.com/pulumi/pulumi-azure-native) to provision Azure infrastructure. Azure Native provides complete coverage of Azure resources and same-day access to new resources and resource updates.

There is a newer version: 6.10.0-alpha.1731737215
Show 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.azure.securitycenter.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class AutoProvisioningState extends com.pulumi.resources.ResourceArgs {

    public static final AutoProvisioningState Empty = new AutoProvisioningState();

    /**
     * Should the security agent be automatically provisioned on Virtual Machines in this subscription? Possible values are `On` (to install the security agent automatically, if it's missing) or `Off` (to not install the security agent automatically).
     * 
     */
    @Import(name="autoProvision")
    private @Nullable Output autoProvision;

    /**
     * @return Should the security agent be automatically provisioned on Virtual Machines in this subscription? Possible values are `On` (to install the security agent automatically, if it's missing) or `Off` (to not install the security agent automatically).
     * 
     */
    public Optional> autoProvision() {
        return Optional.ofNullable(this.autoProvision);
    }

    private AutoProvisioningState() {}

    private AutoProvisioningState(AutoProvisioningState $) {
        this.autoProvision = $.autoProvision;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(AutoProvisioningState defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private AutoProvisioningState $;

        public Builder() {
            $ = new AutoProvisioningState();
        }

        public Builder(AutoProvisioningState defaults) {
            $ = new AutoProvisioningState(Objects.requireNonNull(defaults));
        }

        /**
         * @param autoProvision Should the security agent be automatically provisioned on Virtual Machines in this subscription? Possible values are `On` (to install the security agent automatically, if it's missing) or `Off` (to not install the security agent automatically).
         * 
         * @return builder
         * 
         */
        public Builder autoProvision(@Nullable Output autoProvision) {
            $.autoProvision = autoProvision;
            return this;
        }

        /**
         * @param autoProvision Should the security agent be automatically provisioned on Virtual Machines in this subscription? Possible values are `On` (to install the security agent automatically, if it's missing) or `Off` (to not install the security agent automatically).
         * 
         * @return builder
         * 
         */
        public Builder autoProvision(String autoProvision) {
            return autoProvision(Output.of(autoProvision));
        }

        public AutoProvisioningState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy