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

com.pulumi.googlenative.datamigration.v1.outputs.ConversionWorkspaceInfoResponse 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.datamigration.v1.outputs;

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

@CustomType
public final class ConversionWorkspaceInfoResponse {
    /**
     * @return The commit ID of the conversion workspace.
     * 
     */
    private String commitId;
    /**
     * @return The resource name (URI) of the conversion workspace.
     * 
     */
    private String name;

    private ConversionWorkspaceInfoResponse() {}
    /**
     * @return The commit ID of the conversion workspace.
     * 
     */
    public String commitId() {
        return this.commitId;
    }
    /**
     * @return The resource name (URI) of the conversion workspace.
     * 
     */
    public String name() {
        return this.name;
    }

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

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

        @CustomType.Setter
        public Builder commitId(String commitId) {
            this.commitId = Objects.requireNonNull(commitId);
            return this;
        }
        @CustomType.Setter
        public Builder name(String name) {
            this.name = Objects.requireNonNull(name);
            return this;
        }
        public ConversionWorkspaceInfoResponse build() {
            final var o = new ConversionWorkspaceInfoResponse();
            o.commitId = commitId;
            o.name = name;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy