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

com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingArgs Maven / Gradle / Ivy

There is a newer version: 2.78.0
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.azurenative.security.inputs;

import com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingArcAutoProvisioningArgs;
import com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingDefenderForServersArgs;
import com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingMdeAutoProvisioningArgs;
import com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingSubPlanArgs;
import com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingVaAutoProvisioningArgs;
import com.pulumi.azurenative.security.inputs.DefenderForServersGcpOfferingVmScannersArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The Defender for Servers GCP offering configurations
 * 
 */
public final class DefenderForServersGcpOfferingArgs extends com.pulumi.resources.ResourceArgs {

    public static final DefenderForServersGcpOfferingArgs Empty = new DefenderForServersGcpOfferingArgs();

    /**
     * The ARC autoprovisioning configuration
     * 
     */
    @Import(name="arcAutoProvisioning")
    private @Nullable Output arcAutoProvisioning;

    /**
     * @return The ARC autoprovisioning configuration
     * 
     */
    public Optional> arcAutoProvisioning() {
        return Optional.ofNullable(this.arcAutoProvisioning);
    }

    /**
     * The Defender for servers connection configuration
     * 
     */
    @Import(name="defenderForServers")
    private @Nullable Output defenderForServers;

    /**
     * @return The Defender for servers connection configuration
     * 
     */
    public Optional> defenderForServers() {
        return Optional.ofNullable(this.defenderForServers);
    }

    /**
     * The Microsoft Defender for Endpoint autoprovisioning configuration
     * 
     */
    @Import(name="mdeAutoProvisioning")
    private @Nullable Output mdeAutoProvisioning;

    /**
     * @return The Microsoft Defender for Endpoint autoprovisioning configuration
     * 
     */
    public Optional> mdeAutoProvisioning() {
        return Optional.ofNullable(this.mdeAutoProvisioning);
    }

    /**
     * The type of the security offering.
     * Expected value is 'DefenderForServersGcp'.
     * 
     */
    @Import(name="offeringType", required=true)
    private Output offeringType;

    /**
     * @return The type of the security offering.
     * Expected value is 'DefenderForServersGcp'.
     * 
     */
    public Output offeringType() {
        return this.offeringType;
    }

    /**
     * configuration for the servers offering subPlan
     * 
     */
    @Import(name="subPlan")
    private @Nullable Output subPlan;

    /**
     * @return configuration for the servers offering subPlan
     * 
     */
    public Optional> subPlan() {
        return Optional.ofNullable(this.subPlan);
    }

    /**
     * The Vulnerability Assessment autoprovisioning configuration
     * 
     */
    @Import(name="vaAutoProvisioning")
    private @Nullable Output vaAutoProvisioning;

    /**
     * @return The Vulnerability Assessment autoprovisioning configuration
     * 
     */
    public Optional> vaAutoProvisioning() {
        return Optional.ofNullable(this.vaAutoProvisioning);
    }

    /**
     * The Microsoft Defender for Server VM scanning configuration
     * 
     */
    @Import(name="vmScanners")
    private @Nullable Output vmScanners;

    /**
     * @return The Microsoft Defender for Server VM scanning configuration
     * 
     */
    public Optional> vmScanners() {
        return Optional.ofNullable(this.vmScanners);
    }

    private DefenderForServersGcpOfferingArgs() {}

    private DefenderForServersGcpOfferingArgs(DefenderForServersGcpOfferingArgs $) {
        this.arcAutoProvisioning = $.arcAutoProvisioning;
        this.defenderForServers = $.defenderForServers;
        this.mdeAutoProvisioning = $.mdeAutoProvisioning;
        this.offeringType = $.offeringType;
        this.subPlan = $.subPlan;
        this.vaAutoProvisioning = $.vaAutoProvisioning;
        this.vmScanners = $.vmScanners;
    }

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

    public static final class Builder {
        private DefenderForServersGcpOfferingArgs $;

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

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

        /**
         * @param arcAutoProvisioning The ARC autoprovisioning configuration
         * 
         * @return builder
         * 
         */
        public Builder arcAutoProvisioning(@Nullable Output arcAutoProvisioning) {
            $.arcAutoProvisioning = arcAutoProvisioning;
            return this;
        }

        /**
         * @param arcAutoProvisioning The ARC autoprovisioning configuration
         * 
         * @return builder
         * 
         */
        public Builder arcAutoProvisioning(DefenderForServersGcpOfferingArcAutoProvisioningArgs arcAutoProvisioning) {
            return arcAutoProvisioning(Output.of(arcAutoProvisioning));
        }

        /**
         * @param defenderForServers The Defender for servers connection configuration
         * 
         * @return builder
         * 
         */
        public Builder defenderForServers(@Nullable Output defenderForServers) {
            $.defenderForServers = defenderForServers;
            return this;
        }

        /**
         * @param defenderForServers The Defender for servers connection configuration
         * 
         * @return builder
         * 
         */
        public Builder defenderForServers(DefenderForServersGcpOfferingDefenderForServersArgs defenderForServers) {
            return defenderForServers(Output.of(defenderForServers));
        }

        /**
         * @param mdeAutoProvisioning The Microsoft Defender for Endpoint autoprovisioning configuration
         * 
         * @return builder
         * 
         */
        public Builder mdeAutoProvisioning(@Nullable Output mdeAutoProvisioning) {
            $.mdeAutoProvisioning = mdeAutoProvisioning;
            return this;
        }

        /**
         * @param mdeAutoProvisioning The Microsoft Defender for Endpoint autoprovisioning configuration
         * 
         * @return builder
         * 
         */
        public Builder mdeAutoProvisioning(DefenderForServersGcpOfferingMdeAutoProvisioningArgs mdeAutoProvisioning) {
            return mdeAutoProvisioning(Output.of(mdeAutoProvisioning));
        }

        /**
         * @param offeringType The type of the security offering.
         * Expected value is 'DefenderForServersGcp'.
         * 
         * @return builder
         * 
         */
        public Builder offeringType(Output offeringType) {
            $.offeringType = offeringType;
            return this;
        }

        /**
         * @param offeringType The type of the security offering.
         * Expected value is 'DefenderForServersGcp'.
         * 
         * @return builder
         * 
         */
        public Builder offeringType(String offeringType) {
            return offeringType(Output.of(offeringType));
        }

        /**
         * @param subPlan configuration for the servers offering subPlan
         * 
         * @return builder
         * 
         */
        public Builder subPlan(@Nullable Output subPlan) {
            $.subPlan = subPlan;
            return this;
        }

        /**
         * @param subPlan configuration for the servers offering subPlan
         * 
         * @return builder
         * 
         */
        public Builder subPlan(DefenderForServersGcpOfferingSubPlanArgs subPlan) {
            return subPlan(Output.of(subPlan));
        }

        /**
         * @param vaAutoProvisioning The Vulnerability Assessment autoprovisioning configuration
         * 
         * @return builder
         * 
         */
        public Builder vaAutoProvisioning(@Nullable Output vaAutoProvisioning) {
            $.vaAutoProvisioning = vaAutoProvisioning;
            return this;
        }

        /**
         * @param vaAutoProvisioning The Vulnerability Assessment autoprovisioning configuration
         * 
         * @return builder
         * 
         */
        public Builder vaAutoProvisioning(DefenderForServersGcpOfferingVaAutoProvisioningArgs vaAutoProvisioning) {
            return vaAutoProvisioning(Output.of(vaAutoProvisioning));
        }

        /**
         * @param vmScanners The Microsoft Defender for Server VM scanning configuration
         * 
         * @return builder
         * 
         */
        public Builder vmScanners(@Nullable Output vmScanners) {
            $.vmScanners = vmScanners;
            return this;
        }

        /**
         * @param vmScanners The Microsoft Defender for Server VM scanning configuration
         * 
         * @return builder
         * 
         */
        public Builder vmScanners(DefenderForServersGcpOfferingVmScannersArgs vmScanners) {
            return vmScanners(Output.of(vmScanners));
        }

        public DefenderForServersGcpOfferingArgs build() {
            $.offeringType = Codegen.stringProp("offeringType").output().arg($.offeringType).require();
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy