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

com.pulumi.azurenative.awsconnector.inputs.NodeArgs 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.awsconnector.inputs;

import com.pulumi.azurenative.awsconnector.inputs.DaxClusterEndpointArgs;
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;


/**
 * Definition of Node
 * 
 */
public final class NodeArgs extends com.pulumi.resources.ResourceArgs {

    public static final NodeArgs Empty = new NodeArgs();

    /**
     * <p>The Availability Zone (AZ) in which the node has been deployed.</p>
     * 
     */
    @Import(name="availabilityZone")
    private @Nullable Output availabilityZone;

    /**
     * @return <p>The Availability Zone (AZ) in which the node has been deployed.</p>
     * 
     */
    public Optional> availabilityZone() {
        return Optional.ofNullable(this.availabilityZone);
    }

    /**
     * <p>The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.</p>
     * 
     */
    @Import(name="endpoint")
    private @Nullable Output endpoint;

    /**
     * @return <p>The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.</p>
     * 
     */
    public Optional> endpoint() {
        return Optional.ofNullable(this.endpoint);
    }

    /**
     * <p>The date and time (in UNIX epoch format) when the node was launched.</p>
     * 
     */
    @Import(name="nodeCreateTime")
    private @Nullable Output nodeCreateTime;

    /**
     * @return <p>The date and time (in UNIX epoch format) when the node was launched.</p>
     * 
     */
    public Optional> nodeCreateTime() {
        return Optional.ofNullable(this.nodeCreateTime);
    }

    /**
     * <p>A system-generated identifier for the node.</p>
     * 
     */
    @Import(name="nodeId")
    private @Nullable Output nodeId;

    /**
     * @return <p>A system-generated identifier for the node.</p>
     * 
     */
    public Optional> nodeId() {
        return Optional.ofNullable(this.nodeId);
    }

    /**
     * <p>The current status of the node. For example: <code>available</code>.</p>
     * 
     */
    @Import(name="nodeStatus")
    private @Nullable Output nodeStatus;

    /**
     * @return <p>The current status of the node. For example: <code>available</code>.</p>
     * 
     */
    public Optional> nodeStatus() {
        return Optional.ofNullable(this.nodeStatus);
    }

    /**
     * <p>The status of the parameter group associated with this node. For example, <code>in-sync</code>.</p>
     * 
     */
    @Import(name="parameterGroupStatus")
    private @Nullable Output parameterGroupStatus;

    /**
     * @return <p>The status of the parameter group associated with this node. For example, <code>in-sync</code>.</p>
     * 
     */
    public Optional> parameterGroupStatus() {
        return Optional.ofNullable(this.parameterGroupStatus);
    }

    private NodeArgs() {}

    private NodeArgs(NodeArgs $) {
        this.availabilityZone = $.availabilityZone;
        this.endpoint = $.endpoint;
        this.nodeCreateTime = $.nodeCreateTime;
        this.nodeId = $.nodeId;
        this.nodeStatus = $.nodeStatus;
        this.parameterGroupStatus = $.parameterGroupStatus;
    }

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

    public static final class Builder {
        private NodeArgs $;

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

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

        /**
         * @param availabilityZone <p>The Availability Zone (AZ) in which the node has been deployed.</p>
         * 
         * @return builder
         * 
         */
        public Builder availabilityZone(@Nullable Output availabilityZone) {
            $.availabilityZone = availabilityZone;
            return this;
        }

        /**
         * @param availabilityZone <p>The Availability Zone (AZ) in which the node has been deployed.</p>
         * 
         * @return builder
         * 
         */
        public Builder availabilityZone(String availabilityZone) {
            return availabilityZone(Output.of(availabilityZone));
        }

        /**
         * @param endpoint <p>The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.</p>
         * 
         * @return builder
         * 
         */
        public Builder endpoint(@Nullable Output endpoint) {
            $.endpoint = endpoint;
            return this;
        }

        /**
         * @param endpoint <p>The endpoint for the node, consisting of a DNS name and a port number. Client applications can connect directly to a node endpoint, if desired (as an alternative to allowing DAX client software to intelligently route requests and responses to nodes in the DAX cluster.</p>
         * 
         * @return builder
         * 
         */
        public Builder endpoint(DaxClusterEndpointArgs endpoint) {
            return endpoint(Output.of(endpoint));
        }

        /**
         * @param nodeCreateTime <p>The date and time (in UNIX epoch format) when the node was launched.</p>
         * 
         * @return builder
         * 
         */
        public Builder nodeCreateTime(@Nullable Output nodeCreateTime) {
            $.nodeCreateTime = nodeCreateTime;
            return this;
        }

        /**
         * @param nodeCreateTime <p>The date and time (in UNIX epoch format) when the node was launched.</p>
         * 
         * @return builder
         * 
         */
        public Builder nodeCreateTime(String nodeCreateTime) {
            return nodeCreateTime(Output.of(nodeCreateTime));
        }

        /**
         * @param nodeId <p>A system-generated identifier for the node.</p>
         * 
         * @return builder
         * 
         */
        public Builder nodeId(@Nullable Output nodeId) {
            $.nodeId = nodeId;
            return this;
        }

        /**
         * @param nodeId <p>A system-generated identifier for the node.</p>
         * 
         * @return builder
         * 
         */
        public Builder nodeId(String nodeId) {
            return nodeId(Output.of(nodeId));
        }

        /**
         * @param nodeStatus <p>The current status of the node. For example: <code>available</code>.</p>
         * 
         * @return builder
         * 
         */
        public Builder nodeStatus(@Nullable Output nodeStatus) {
            $.nodeStatus = nodeStatus;
            return this;
        }

        /**
         * @param nodeStatus <p>The current status of the node. For example: <code>available</code>.</p>
         * 
         * @return builder
         * 
         */
        public Builder nodeStatus(String nodeStatus) {
            return nodeStatus(Output.of(nodeStatus));
        }

        /**
         * @param parameterGroupStatus <p>The status of the parameter group associated with this node. For example, <code>in-sync</code>.</p>
         * 
         * @return builder
         * 
         */
        public Builder parameterGroupStatus(@Nullable Output parameterGroupStatus) {
            $.parameterGroupStatus = parameterGroupStatus;
            return this;
        }

        /**
         * @param parameterGroupStatus <p>The status of the parameter group associated with this node. For example, <code>in-sync</code>.</p>
         * 
         * @return builder
         * 
         */
        public Builder parameterGroupStatus(String parameterGroupStatus) {
            return parameterGroupStatus(Output.of(parameterGroupStatus));
        }

        public NodeArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy