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

com.pulumi.azurenative.web.outputs.ListWorkflowRunActionRepetitionExpressionTracesResult 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.web.outputs;

import com.pulumi.azurenative.web.outputs.ExpressionRootResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class ListWorkflowRunActionRepetitionExpressionTracesResult {
    private @Nullable List inputs;
    /**
     * @return The link used to get the next page of recommendations.
     * 
     */
    private @Nullable String nextLink;
    private @Nullable Object value;

    private ListWorkflowRunActionRepetitionExpressionTracesResult() {}
    public List inputs() {
        return this.inputs == null ? List.of() : this.inputs;
    }
    /**
     * @return The link used to get the next page of recommendations.
     * 
     */
    public Optional nextLink() {
        return Optional.ofNullable(this.nextLink);
    }
    public Optional value() {
        return Optional.ofNullable(this.value);
    }

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

    public static Builder builder(ListWorkflowRunActionRepetitionExpressionTracesResult defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List inputs;
        private @Nullable String nextLink;
        private @Nullable Object value;
        public Builder() {}
        public Builder(ListWorkflowRunActionRepetitionExpressionTracesResult defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.inputs = defaults.inputs;
    	      this.nextLink = defaults.nextLink;
    	      this.value = defaults.value;
        }

        @CustomType.Setter
        public Builder inputs(@Nullable List inputs) {

            this.inputs = inputs;
            return this;
        }
        public Builder inputs(ExpressionRootResponse... inputs) {
            return inputs(List.of(inputs));
        }
        @CustomType.Setter
        public Builder nextLink(@Nullable String nextLink) {

            this.nextLink = nextLink;
            return this;
        }
        @CustomType.Setter
        public Builder value(@Nullable Object value) {

            this.value = value;
            return this;
        }
        public ListWorkflowRunActionRepetitionExpressionTracesResult build() {
            final var _resultValue = new ListWorkflowRunActionRepetitionExpressionTracesResult();
            _resultValue.inputs = inputs;
            _resultValue.nextLink = nextLink;
            _resultValue.value = value;
            return _resultValue;
        }
    }
}