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

com.pulumi.googlenative.osconfig.v1beta.outputs.SoftwareRecipeStepInstallRpmResponse 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.osconfig.v1beta.outputs;

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

@CustomType
public final class SoftwareRecipeStepInstallRpmResponse {
    /**
     * @return The id of the relevant artifact in the recipe.
     * 
     */
    private String artifactId;

    private SoftwareRecipeStepInstallRpmResponse() {}
    /**
     * @return The id of the relevant artifact in the recipe.
     * 
     */
    public String artifactId() {
        return this.artifactId;
    }

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy