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

com.pulumi.googlenative.certificatemanager.v1.inputs.GetCertificateMapEntryArgs 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.certificatemanager.v1.inputs;

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


public final class GetCertificateMapEntryArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetCertificateMapEntryArgs Empty = new GetCertificateMapEntryArgs();

    @Import(name="certificateMapEntryId", required=true)
    private Output certificateMapEntryId;

    public Output certificateMapEntryId() {
        return this.certificateMapEntryId;
    }

    @Import(name="certificateMapId", required=true)
    private Output certificateMapId;

    public Output certificateMapId() {
        return this.certificateMapId;
    }

    @Import(name="location", required=true)
    private Output location;

    public Output location() {
        return this.location;
    }

    @Import(name="project")
    private @Nullable Output project;

    public Optional> project() {
        return Optional.ofNullable(this.project);
    }

    private GetCertificateMapEntryArgs() {}

    private GetCertificateMapEntryArgs(GetCertificateMapEntryArgs $) {
        this.certificateMapEntryId = $.certificateMapEntryId;
        this.certificateMapId = $.certificateMapId;
        this.location = $.location;
        this.project = $.project;
    }

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

    public static final class Builder {
        private GetCertificateMapEntryArgs $;

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

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

        public Builder certificateMapEntryId(Output certificateMapEntryId) {
            $.certificateMapEntryId = certificateMapEntryId;
            return this;
        }

        public Builder certificateMapEntryId(String certificateMapEntryId) {
            return certificateMapEntryId(Output.of(certificateMapEntryId));
        }

        public Builder certificateMapId(Output certificateMapId) {
            $.certificateMapId = certificateMapId;
            return this;
        }

        public Builder certificateMapId(String certificateMapId) {
            return certificateMapId(Output.of(certificateMapId));
        }

        public Builder location(Output location) {
            $.location = location;
            return this;
        }

        public Builder location(String location) {
            return location(Output.of(location));
        }

        public Builder project(@Nullable Output project) {
            $.project = project;
            return this;
        }

        public Builder project(String project) {
            return project(Output.of(project));
        }

        public GetCertificateMapEntryArgs build() {
            $.certificateMapEntryId = Objects.requireNonNull($.certificateMapEntryId, "expected parameter 'certificateMapEntryId' to be non-null");
            $.certificateMapId = Objects.requireNonNull($.certificateMapId, "expected parameter 'certificateMapId' to be non-null");
            $.location = Objects.requireNonNull($.location, "expected parameter 'location' to be non-null");
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy