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

com.pulumi.googlenative.apigee.v1.inputs.GetEndpointAttachmentArgs 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.apigee.v1.inputs;

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


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

    public static final GetEndpointAttachmentArgs Empty = new GetEndpointAttachmentArgs();

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

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

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

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

    private GetEndpointAttachmentArgs() {}

    private GetEndpointAttachmentArgs(GetEndpointAttachmentArgs $) {
        this.endpointAttachmentId = $.endpointAttachmentId;
        this.organizationId = $.organizationId;
    }

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

    public static final class Builder {
        private GetEndpointAttachmentArgs $;

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

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

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

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

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

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

        public GetEndpointAttachmentArgs build() {
            $.endpointAttachmentId = Objects.requireNonNull($.endpointAttachmentId, "expected parameter 'endpointAttachmentId' to be non-null");
            $.organizationId = Objects.requireNonNull($.organizationId, "expected parameter 'organizationId' to be non-null");
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy