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

com.pulumi.azurenative.azurestackhci.inputs.GetHciEdgeDeviceJobPlainArgs 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.azurestackhci.inputs;

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


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

    public static final GetHciEdgeDeviceJobPlainArgs Empty = new GetHciEdgeDeviceJobPlainArgs();

    /**
     * The name of the EdgeDevice
     * 
     */
    @Import(name="edgeDeviceName", required=true)
    private String edgeDeviceName;

    /**
     * @return The name of the EdgeDevice
     * 
     */
    public String edgeDeviceName() {
        return this.edgeDeviceName;
    }

    /**
     * Name of EdgeDevice Job
     * 
     */
    @Import(name="jobsName", required=true)
    private String jobsName;

    /**
     * @return Name of EdgeDevice Job
     * 
     */
    public String jobsName() {
        return this.jobsName;
    }

    /**
     * The fully qualified Azure Resource manager identifier of the resource.
     * 
     */
    @Import(name="resourceUri", required=true)
    private String resourceUri;

    /**
     * @return The fully qualified Azure Resource manager identifier of the resource.
     * 
     */
    public String resourceUri() {
        return this.resourceUri;
    }

    private GetHciEdgeDeviceJobPlainArgs() {}

    private GetHciEdgeDeviceJobPlainArgs(GetHciEdgeDeviceJobPlainArgs $) {
        this.edgeDeviceName = $.edgeDeviceName;
        this.jobsName = $.jobsName;
        this.resourceUri = $.resourceUri;
    }

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

    public static final class Builder {
        private GetHciEdgeDeviceJobPlainArgs $;

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

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

        /**
         * @param edgeDeviceName The name of the EdgeDevice
         * 
         * @return builder
         * 
         */
        public Builder edgeDeviceName(String edgeDeviceName) {
            $.edgeDeviceName = edgeDeviceName;
            return this;
        }

        /**
         * @param jobsName Name of EdgeDevice Job
         * 
         * @return builder
         * 
         */
        public Builder jobsName(String jobsName) {
            $.jobsName = jobsName;
            return this;
        }

        /**
         * @param resourceUri The fully qualified Azure Resource manager identifier of the resource.
         * 
         * @return builder
         * 
         */
        public Builder resourceUri(String resourceUri) {
            $.resourceUri = resourceUri;
            return this;
        }

        public GetHciEdgeDeviceJobPlainArgs build() {
            if ($.edgeDeviceName == null) {
                throw new MissingRequiredPropertyException("GetHciEdgeDeviceJobPlainArgs", "edgeDeviceName");
            }
            if ($.jobsName == null) {
                throw new MissingRequiredPropertyException("GetHciEdgeDeviceJobPlainArgs", "jobsName");
            }
            if ($.resourceUri == null) {
                throw new MissingRequiredPropertyException("GetHciEdgeDeviceJobPlainArgs", "resourceUri");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy