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

com.pulumi.azurenative.logic.inputs.FlowAccessControlConfigurationArgs Maven / Gradle / Ivy

There is a newer version: 2.72.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.logic.inputs;

import com.pulumi.azurenative.logic.inputs.FlowAccessControlConfigurationPolicyArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * The access control configuration.
 * 
 */
public final class FlowAccessControlConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final FlowAccessControlConfigurationArgs Empty = new FlowAccessControlConfigurationArgs();

    /**
     * The access control configuration for workflow actions.
     * 
     */
    @Import(name="actions")
    private @Nullable Output actions;

    /**
     * @return The access control configuration for workflow actions.
     * 
     */
    public Optional> actions() {
        return Optional.ofNullable(this.actions);
    }

    /**
     * The access control configuration for accessing workflow run contents.
     * 
     */
    @Import(name="contents")
    private @Nullable Output contents;

    /**
     * @return The access control configuration for accessing workflow run contents.
     * 
     */
    public Optional> contents() {
        return Optional.ofNullable(this.contents);
    }

    /**
     * The access control configuration for invoking workflow triggers.
     * 
     */
    @Import(name="triggers")
    private @Nullable Output triggers;

    /**
     * @return The access control configuration for invoking workflow triggers.
     * 
     */
    public Optional> triggers() {
        return Optional.ofNullable(this.triggers);
    }

    /**
     * The access control configuration for workflow management.
     * 
     */
    @Import(name="workflowManagement")
    private @Nullable Output workflowManagement;

    /**
     * @return The access control configuration for workflow management.
     * 
     */
    public Optional> workflowManagement() {
        return Optional.ofNullable(this.workflowManagement);
    }

    private FlowAccessControlConfigurationArgs() {}

    private FlowAccessControlConfigurationArgs(FlowAccessControlConfigurationArgs $) {
        this.actions = $.actions;
        this.contents = $.contents;
        this.triggers = $.triggers;
        this.workflowManagement = $.workflowManagement;
    }

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

    public static final class Builder {
        private FlowAccessControlConfigurationArgs $;

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

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

        /**
         * @param actions The access control configuration for workflow actions.
         * 
         * @return builder
         * 
         */
        public Builder actions(@Nullable Output actions) {
            $.actions = actions;
            return this;
        }

        /**
         * @param actions The access control configuration for workflow actions.
         * 
         * @return builder
         * 
         */
        public Builder actions(FlowAccessControlConfigurationPolicyArgs actions) {
            return actions(Output.of(actions));
        }

        /**
         * @param contents The access control configuration for accessing workflow run contents.
         * 
         * @return builder
         * 
         */
        public Builder contents(@Nullable Output contents) {
            $.contents = contents;
            return this;
        }

        /**
         * @param contents The access control configuration for accessing workflow run contents.
         * 
         * @return builder
         * 
         */
        public Builder contents(FlowAccessControlConfigurationPolicyArgs contents) {
            return contents(Output.of(contents));
        }

        /**
         * @param triggers The access control configuration for invoking workflow triggers.
         * 
         * @return builder
         * 
         */
        public Builder triggers(@Nullable Output triggers) {
            $.triggers = triggers;
            return this;
        }

        /**
         * @param triggers The access control configuration for invoking workflow triggers.
         * 
         * @return builder
         * 
         */
        public Builder triggers(FlowAccessControlConfigurationPolicyArgs triggers) {
            return triggers(Output.of(triggers));
        }

        /**
         * @param workflowManagement The access control configuration for workflow management.
         * 
         * @return builder
         * 
         */
        public Builder workflowManagement(@Nullable Output workflowManagement) {
            $.workflowManagement = workflowManagement;
            return this;
        }

        /**
         * @param workflowManagement The access control configuration for workflow management.
         * 
         * @return builder
         * 
         */
        public Builder workflowManagement(FlowAccessControlConfigurationPolicyArgs workflowManagement) {
            return workflowManagement(Output.of(workflowManagement));
        }

        public FlowAccessControlConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy