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

com.pulumi.azurenative.app.inputs.JavaComponentServiceBindArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.azurenative.app.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;


/**
 * Configuration to bind a Java Component to another Java Component
 * 
 */
public final class JavaComponentServiceBindArgs extends com.pulumi.resources.ResourceArgs {

    public static final JavaComponentServiceBindArgs Empty = new JavaComponentServiceBindArgs();

    /**
     * Name of the service bind
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return Name of the service bind
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * Resource id of the target service
     * 
     */
    @Import(name="serviceId")
    private @Nullable Output serviceId;

    /**
     * @return Resource id of the target service
     * 
     */
    public Optional> serviceId() {
        return Optional.ofNullable(this.serviceId);
    }

    private JavaComponentServiceBindArgs() {}

    private JavaComponentServiceBindArgs(JavaComponentServiceBindArgs $) {
        this.name = $.name;
        this.serviceId = $.serviceId;
    }

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

    public static final class Builder {
        private JavaComponentServiceBindArgs $;

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

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

        /**
         * @param name Name of the service bind
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the service bind
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param serviceId Resource id of the target service
         * 
         * @return builder
         * 
         */
        public Builder serviceId(@Nullable Output serviceId) {
            $.serviceId = serviceId;
            return this;
        }

        /**
         * @param serviceId Resource id of the target service
         * 
         * @return builder
         * 
         */
        public Builder serviceId(String serviceId) {
            return serviceId(Output.of(serviceId));
        }

        public JavaComponentServiceBindArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy