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

com.pulumi.azurenative.security.inputs.GovernanceEmailNotificationArgs 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.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The governance email weekly notification configuration.
 * 
 */
public final class GovernanceEmailNotificationArgs extends com.pulumi.resources.ResourceArgs {

    public static final GovernanceEmailNotificationArgs Empty = new GovernanceEmailNotificationArgs();

    /**
     * Exclude manager from weekly email notification.
     * 
     */
    @Import(name="disableManagerEmailNotification")
    private @Nullable Output disableManagerEmailNotification;

    /**
     * @return Exclude manager from weekly email notification.
     * 
     */
    public Optional> disableManagerEmailNotification() {
        return Optional.ofNullable(this.disableManagerEmailNotification);
    }

    /**
     * Exclude  owner from weekly email notification.
     * 
     */
    @Import(name="disableOwnerEmailNotification")
    private @Nullable Output disableOwnerEmailNotification;

    /**
     * @return Exclude  owner from weekly email notification.
     * 
     */
    public Optional> disableOwnerEmailNotification() {
        return Optional.ofNullable(this.disableOwnerEmailNotification);
    }

    private GovernanceEmailNotificationArgs() {}

    private GovernanceEmailNotificationArgs(GovernanceEmailNotificationArgs $) {
        this.disableManagerEmailNotification = $.disableManagerEmailNotification;
        this.disableOwnerEmailNotification = $.disableOwnerEmailNotification;
    }

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

    public static final class Builder {
        private GovernanceEmailNotificationArgs $;

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

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

        /**
         * @param disableManagerEmailNotification Exclude manager from weekly email notification.
         * 
         * @return builder
         * 
         */
        public Builder disableManagerEmailNotification(@Nullable Output disableManagerEmailNotification) {
            $.disableManagerEmailNotification = disableManagerEmailNotification;
            return this;
        }

        /**
         * @param disableManagerEmailNotification Exclude manager from weekly email notification.
         * 
         * @return builder
         * 
         */
        public Builder disableManagerEmailNotification(Boolean disableManagerEmailNotification) {
            return disableManagerEmailNotification(Output.of(disableManagerEmailNotification));
        }

        /**
         * @param disableOwnerEmailNotification Exclude  owner from weekly email notification.
         * 
         * @return builder
         * 
         */
        public Builder disableOwnerEmailNotification(@Nullable Output disableOwnerEmailNotification) {
            $.disableOwnerEmailNotification = disableOwnerEmailNotification;
            return this;
        }

        /**
         * @param disableOwnerEmailNotification Exclude  owner from weekly email notification.
         * 
         * @return builder
         * 
         */
        public Builder disableOwnerEmailNotification(Boolean disableOwnerEmailNotification) {
            return disableOwnerEmailNotification(Output.of(disableOwnerEmailNotification));
        }

        public GovernanceEmailNotificationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy