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

com.pulumi.meraki.networks.inputs.GetWebhooksHttpServersPlainArgs Maven / Gradle / Ivy

There is a newer version: 0.4.0-alpha.1731736975
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.meraki.networks.inputs;

import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final GetWebhooksHttpServersPlainArgs Empty = new GetWebhooksHttpServersPlainArgs();

    /**
     * httpServerId path parameter. Http server ID
     * 
     */
    @Import(name="httpServerId")
    private @Nullable String httpServerId;

    /**
     * @return httpServerId path parameter. Http server ID
     * 
     */
    public Optional httpServerId() {
        return Optional.ofNullable(this.httpServerId);
    }

    /**
     * networkId path parameter. Network ID
     * 
     */
    @Import(name="networkId")
    private @Nullable String networkId;

    /**
     * @return networkId path parameter. Network ID
     * 
     */
    public Optional networkId() {
        return Optional.ofNullable(this.networkId);
    }

    private GetWebhooksHttpServersPlainArgs() {}

    private GetWebhooksHttpServersPlainArgs(GetWebhooksHttpServersPlainArgs $) {
        this.httpServerId = $.httpServerId;
        this.networkId = $.networkId;
    }

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

    public static final class Builder {
        private GetWebhooksHttpServersPlainArgs $;

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

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

        /**
         * @param httpServerId httpServerId path parameter. Http server ID
         * 
         * @return builder
         * 
         */
        public Builder httpServerId(@Nullable String httpServerId) {
            $.httpServerId = httpServerId;
            return this;
        }

        /**
         * @param networkId networkId path parameter. Network ID
         * 
         * @return builder
         * 
         */
        public Builder networkId(@Nullable String networkId) {
            $.networkId = networkId;
            return this;
        }

        public GetWebhooksHttpServersPlainArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy