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

com.pulumi.azurenative.appplatform.inputs.ApmReferenceArgs Maven / Gradle / Ivy

There is a newer version: 2.78.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.appplatform.inputs;

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


/**
 * A reference to the APM
 * 
 */
public final class ApmReferenceArgs extends com.pulumi.resources.ResourceArgs {

    public static final ApmReferenceArgs Empty = new ApmReferenceArgs();

    /**
     * Resource Id of the APM
     * 
     */
    @Import(name="resourceId", required=true)
    private Output resourceId;

    /**
     * @return Resource Id of the APM
     * 
     */
    public Output resourceId() {
        return this.resourceId;
    }

    private ApmReferenceArgs() {}

    private ApmReferenceArgs(ApmReferenceArgs $) {
        this.resourceId = $.resourceId;
    }

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

    public static final class Builder {
        private ApmReferenceArgs $;

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

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

        /**
         * @param resourceId Resource Id of the APM
         * 
         * @return builder
         * 
         */
        public Builder resourceId(Output resourceId) {
            $.resourceId = resourceId;
            return this;
        }

        /**
         * @param resourceId Resource Id of the APM
         * 
         * @return builder
         * 
         */
        public Builder resourceId(String resourceId) {
            return resourceId(Output.of(resourceId));
        }

        public ApmReferenceArgs build() {
            if ($.resourceId == null) {
                throw new MissingRequiredPropertyException("ApmReferenceArgs", "resourceId");
            }
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy