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

com.pulumi.googlenative.containeranalysis.v1alpha1.outputs.GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse 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.containeranalysis.v1alpha1.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.googlenative.containeranalysis.v1alpha1.outputs.GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessResponse;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse {
    /**
     * @return The timestamp of when the build completed.
     * 
     */
    private String buildFinishedOn;
    /**
     * @return Identifies this particular build invocation, which can be useful for finding associated logs or other ad-hoc analysis.
     * 
     */
    private String buildInvocationId;
    /**
     * @return The timestamp of when the build started.
     * 
     */
    private String buildStartedOn;
    /**
     * @return Indicates that the builder claims certain fields in this message to be complete.
     * 
     */
    private GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessResponse completeness;
    /**
     * @return If true, the builder claims that running invocation on materials will produce bit-for-bit identical output.
     * 
     */
    private Boolean reproducible;

    private GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse() {}
    /**
     * @return The timestamp of when the build completed.
     * 
     */
    public String buildFinishedOn() {
        return this.buildFinishedOn;
    }
    /**
     * @return Identifies this particular build invocation, which can be useful for finding associated logs or other ad-hoc analysis.
     * 
     */
    public String buildInvocationId() {
        return this.buildInvocationId;
    }
    /**
     * @return The timestamp of when the build started.
     * 
     */
    public String buildStartedOn() {
        return this.buildStartedOn;
    }
    /**
     * @return Indicates that the builder claims certain fields in this message to be complete.
     * 
     */
    public GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessResponse completeness() {
        return this.completeness;
    }
    /**
     * @return If true, the builder claims that running invocation on materials will produce bit-for-bit identical output.
     * 
     */
    public Boolean reproducible() {
        return this.reproducible;
    }

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

    public static Builder builder(GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String buildFinishedOn;
        private String buildInvocationId;
        private String buildStartedOn;
        private GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessResponse completeness;
        private Boolean reproducible;
        public Builder() {}
        public Builder(GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.buildFinishedOn = defaults.buildFinishedOn;
    	      this.buildInvocationId = defaults.buildInvocationId;
    	      this.buildStartedOn = defaults.buildStartedOn;
    	      this.completeness = defaults.completeness;
    	      this.reproducible = defaults.reproducible;
        }

        @CustomType.Setter
        public Builder buildFinishedOn(String buildFinishedOn) {
            this.buildFinishedOn = Objects.requireNonNull(buildFinishedOn);
            return this;
        }
        @CustomType.Setter
        public Builder buildInvocationId(String buildInvocationId) {
            this.buildInvocationId = Objects.requireNonNull(buildInvocationId);
            return this;
        }
        @CustomType.Setter
        public Builder buildStartedOn(String buildStartedOn) {
            this.buildStartedOn = Objects.requireNonNull(buildStartedOn);
            return this;
        }
        @CustomType.Setter
        public Builder completeness(GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessResponse completeness) {
            this.completeness = Objects.requireNonNull(completeness);
            return this;
        }
        @CustomType.Setter
        public Builder reproducible(Boolean reproducible) {
            this.reproducible = Objects.requireNonNull(reproducible);
            return this;
        }
        public GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse build() {
            final var o = new GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaMetadataResponse();
            o.buildFinishedOn = buildFinishedOn;
            o.buildInvocationId = buildInvocationId;
            o.buildStartedOn = buildStartedOn;
            o.completeness = completeness;
            o.reproducible = reproducible;
            return o;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy