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

com.pulumi.googlenative.dataflow.v1b3.outputs.StepResponse 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 StepResponse {
    /**
     * @return The kind of step in the Cloud Dataflow job.
     * 
     */
    private String kind;
    /**
     * @return The name that identifies the step. This must be unique for each step with respect to all other steps in the Cloud Dataflow job.
     * 
     */
    private String name;
    /**
     * @return Named properties associated with the step. Each kind of predefined step has its own required set of properties. Must be provided on Create. Only retrieved with JOB_VIEW_ALL.
     * 
     */
    private Map properties;

    private StepResponse() {}
    /**
     * @return The kind of step in the Cloud Dataflow job.
     * 
     */
    public String kind() {
        return this.kind;
    }
    /**
     * @return The name that identifies the step. This must be unique for each step with respect to all other steps in the Cloud Dataflow job.
     * 
     */
    public String name() {
        return this.name;
    }
    /**
     * @return Named properties associated with the step. Each kind of predefined step has its own required set of properties. Must be provided on Create. Only retrieved with JOB_VIEW_ALL.
     * 
     */
    public Map properties() {
        return this.properties;
    }

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

    public static Builder builder(StepResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String kind;
        private String name;
        private Map properties;
        public Builder() {}
        public Builder(StepResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.kind = defaults.kind;
    	      this.name = defaults.name;
    	      this.properties = defaults.properties;
        }

        @CustomType.Setter
        public Builder kind(String kind) {
            this.kind = Objects.requireNonNull(kind);
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            this.name = Objects.requireNonNull(name);
            return this;
        }
        @CustomType.Setter
        public Builder properties(Map properties) {
            this.properties = Objects.requireNonNull(properties);
            return this;
        }
        public StepResponse build() {
            final var o = new StepResponse();
            o.kind = kind;
            o.name = name;
            o.properties = properties;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy