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

com.pulumi.azurenative.logic.outputs.FlowAccessControlConfigurationResponse Maven / Gradle / Ivy

// *** 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.outputs;

import com.pulumi.azurenative.logic.outputs.FlowAccessControlConfigurationPolicyResponse;
import com.pulumi.core.annotations.CustomType;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class FlowAccessControlConfigurationResponse {
    /**
     * @return The access control configuration for workflow actions.
     * 
     */
    private @Nullable FlowAccessControlConfigurationPolicyResponse actions;
    /**
     * @return The access control configuration for accessing workflow run contents.
     * 
     */
    private @Nullable FlowAccessControlConfigurationPolicyResponse contents;
    /**
     * @return The access control configuration for invoking workflow triggers.
     * 
     */
    private @Nullable FlowAccessControlConfigurationPolicyResponse triggers;
    /**
     * @return The access control configuration for workflow management.
     * 
     */
    private @Nullable FlowAccessControlConfigurationPolicyResponse workflowManagement;

    private FlowAccessControlConfigurationResponse() {}
    /**
     * @return The access control configuration for workflow actions.
     * 
     */
    public Optional actions() {
        return Optional.ofNullable(this.actions);
    }
    /**
     * @return The access control configuration for accessing workflow run contents.
     * 
     */
    public Optional contents() {
        return Optional.ofNullable(this.contents);
    }
    /**
     * @return The access control configuration for invoking workflow triggers.
     * 
     */
    public Optional triggers() {
        return Optional.ofNullable(this.triggers);
    }
    /**
     * @return The access control configuration for workflow management.
     * 
     */
    public Optional workflowManagement() {
        return Optional.ofNullable(this.workflowManagement);
    }

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

    public static Builder builder(FlowAccessControlConfigurationResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable FlowAccessControlConfigurationPolicyResponse actions;
        private @Nullable FlowAccessControlConfigurationPolicyResponse contents;
        private @Nullable FlowAccessControlConfigurationPolicyResponse triggers;
        private @Nullable FlowAccessControlConfigurationPolicyResponse workflowManagement;
        public Builder() {}
        public Builder(FlowAccessControlConfigurationResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.actions = defaults.actions;
    	      this.contents = defaults.contents;
    	      this.triggers = defaults.triggers;
    	      this.workflowManagement = defaults.workflowManagement;
        }

        @CustomType.Setter
        public Builder actions(@Nullable FlowAccessControlConfigurationPolicyResponse actions) {

            this.actions = actions;
            return this;
        }
        @CustomType.Setter
        public Builder contents(@Nullable FlowAccessControlConfigurationPolicyResponse contents) {

            this.contents = contents;
            return this;
        }
        @CustomType.Setter
        public Builder triggers(@Nullable FlowAccessControlConfigurationPolicyResponse triggers) {

            this.triggers = triggers;
            return this;
        }
        @CustomType.Setter
        public Builder workflowManagement(@Nullable FlowAccessControlConfigurationPolicyResponse workflowManagement) {

            this.workflowManagement = workflowManagement;
            return this;
        }
        public FlowAccessControlConfigurationResponse build() {
            final var _resultValue = new FlowAccessControlConfigurationResponse();
            _resultValue.actions = actions;
            _resultValue.contents = contents;
            _resultValue.triggers = triggers;
            _resultValue.workflowManagement = workflowManagement;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy