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

com.pulumi.googlenative.dataflow.v1b3.outputs.JobExecutionInfoResponse 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.googlenative.dataflow.v1b3.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Map;
import java.util.Objects;

@CustomType
public final class JobExecutionInfoResponse {
    /**
     * @return A mapping from each stage to the information about that stage.
     * 
     */
    private Map stages;

    private JobExecutionInfoResponse() {}
    /**
     * @return A mapping from each stage to the information about that stage.
     * 
     */
    public Map stages() {
        return this.stages;
    }

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

    public static Builder builder(JobExecutionInfoResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private Map stages;
        public Builder() {}
        public Builder(JobExecutionInfoResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.stages = defaults.stages;
        }

        @CustomType.Setter
        public Builder stages(Map stages) {
            this.stages = Objects.requireNonNull(stages);
            return this;
        }
        public JobExecutionInfoResponse build() {
            final var o = new JobExecutionInfoResponse();
            o.stages = stages;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy