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

com.pulumi.googlenative.containeranalysis.v1alpha1.inputs.GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.Boolean;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Indicates that the builder claims certain fields in this message to be complete.
 * 
 */
public final class GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs extends com.pulumi.resources.ResourceArgs {

    public static final GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs Empty = new GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs();

    /**
     * If true, the builder claims that invocation.environment is complete.
     * 
     */
    @Import(name="environment")
    private @Nullable Output environment;

    /**
     * @return If true, the builder claims that invocation.environment is complete.
     * 
     */
    public Optional> environment() {
        return Optional.ofNullable(this.environment);
    }

    /**
     * If true, the builder claims that materials is complete.
     * 
     */
    @Import(name="materials")
    private @Nullable Output materials;

    /**
     * @return If true, the builder claims that materials is complete.
     * 
     */
    public Optional> materials() {
        return Optional.ofNullable(this.materials);
    }

    /**
     * If true, the builder claims that invocation.parameters is complete.
     * 
     */
    @Import(name="parameters")
    private @Nullable Output parameters;

    /**
     * @return If true, the builder claims that invocation.parameters is complete.
     * 
     */
    public Optional> parameters() {
        return Optional.ofNullable(this.parameters);
    }

    private GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs() {}

    private GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs(GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs $) {
        this.environment = $.environment;
        this.materials = $.materials;
        this.parameters = $.parameters;
    }

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

    public static final class Builder {
        private GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs $;

        public Builder() {
            $ = new GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs();
        }

        public Builder(GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs defaults) {
            $ = new GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param environment If true, the builder claims that invocation.environment is complete.
         * 
         * @return builder
         * 
         */
        public Builder environment(@Nullable Output environment) {
            $.environment = environment;
            return this;
        }

        /**
         * @param environment If true, the builder claims that invocation.environment is complete.
         * 
         * @return builder
         * 
         */
        public Builder environment(Boolean environment) {
            return environment(Output.of(environment));
        }

        /**
         * @param materials If true, the builder claims that materials is complete.
         * 
         * @return builder
         * 
         */
        public Builder materials(@Nullable Output materials) {
            $.materials = materials;
            return this;
        }

        /**
         * @param materials If true, the builder claims that materials is complete.
         * 
         * @return builder
         * 
         */
        public Builder materials(Boolean materials) {
            return materials(Output.of(materials));
        }

        /**
         * @param parameters If true, the builder claims that invocation.parameters is complete.
         * 
         * @return builder
         * 
         */
        public Builder parameters(@Nullable Output parameters) {
            $.parameters = parameters;
            return this;
        }

        /**
         * @param parameters If true, the builder claims that invocation.parameters is complete.
         * 
         * @return builder
         * 
         */
        public Builder parameters(Boolean parameters) {
            return parameters(Output.of(parameters));
        }

        public GoogleDevtoolsContaineranalysisV1alpha1SlsaProvenanceZeroTwoSlsaCompletenessArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy