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

com.pulumi.meraki.networks.inputs.WebhooksHttpServersState 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.meraki.networks.inputs.WebhooksHttpServersPayloadTemplateArgs;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class WebhooksHttpServersState extends com.pulumi.resources.ResourceArgs {

    public static final WebhooksHttpServersState Empty = new WebhooksHttpServersState();

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

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

    /**
     * A name for easy reference to the HTTP server
     * 
     */
    @Import(name="name")
    private @Nullable Output name;

    /**
     * @return A name for easy reference to the HTTP server
     * 
     */
    public Optional> name() {
        return Optional.ofNullable(this.name);
    }

    /**
     * A Meraki network ID.
     * 
     */
    @Import(name="networkId")
    private @Nullable Output networkId;

    /**
     * @return A Meraki network ID.
     * 
     */
    public Optional> networkId() {
        return Optional.ofNullable(this.networkId);
    }

    /**
     * The payload template to use when posting data to the HTTP server.
     * 
     */
    @Import(name="payloadTemplate")
    private @Nullable Output payloadTemplate;

    /**
     * @return The payload template to use when posting data to the HTTP server.
     * 
     */
    public Optional> payloadTemplate() {
        return Optional.ofNullable(this.payloadTemplate);
    }

    /**
     * A shared secret that will be included in POSTs sent to the HTTP server. This secret can be used to verify that the request was sent by Meraki.
     * 
     */
    @Import(name="sharedSecret")
    private @Nullable Output sharedSecret;

    /**
     * @return A shared secret that will be included in POSTs sent to the HTTP server. This secret can be used to verify that the request was sent by Meraki.
     * 
     */
    public Optional> sharedSecret() {
        return Optional.ofNullable(this.sharedSecret);
    }

    /**
     * The URL of the HTTP server.
     * 
     */
    @Import(name="url")
    private @Nullable Output url;

    /**
     * @return The URL of the HTTP server.
     * 
     */
    public Optional> url() {
        return Optional.ofNullable(this.url);
    }

    private WebhooksHttpServersState() {}

    private WebhooksHttpServersState(WebhooksHttpServersState $) {
        this.httpServerId = $.httpServerId;
        this.name = $.name;
        this.networkId = $.networkId;
        this.payloadTemplate = $.payloadTemplate;
        this.sharedSecret = $.sharedSecret;
        this.url = $.url;
    }

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

    public static final class Builder {
        private WebhooksHttpServersState $;

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

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

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

        /**
         * @param httpServerId httpServerId path parameter. Http server ID
         * 
         * @return builder
         * 
         */
        public Builder httpServerId(String httpServerId) {
            return httpServerId(Output.of(httpServerId));
        }

        /**
         * @param name A name for easy reference to the HTTP server
         * 
         * @return builder
         * 
         */
        public Builder name(@Nullable Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name A name for easy reference to the HTTP server
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param networkId A Meraki network ID.
         * 
         * @return builder
         * 
         */
        public Builder networkId(@Nullable Output networkId) {
            $.networkId = networkId;
            return this;
        }

        /**
         * @param networkId A Meraki network ID.
         * 
         * @return builder
         * 
         */
        public Builder networkId(String networkId) {
            return networkId(Output.of(networkId));
        }

        /**
         * @param payloadTemplate The payload template to use when posting data to the HTTP server.
         * 
         * @return builder
         * 
         */
        public Builder payloadTemplate(@Nullable Output payloadTemplate) {
            $.payloadTemplate = payloadTemplate;
            return this;
        }

        /**
         * @param payloadTemplate The payload template to use when posting data to the HTTP server.
         * 
         * @return builder
         * 
         */
        public Builder payloadTemplate(WebhooksHttpServersPayloadTemplateArgs payloadTemplate) {
            return payloadTemplate(Output.of(payloadTemplate));
        }

        /**
         * @param sharedSecret A shared secret that will be included in POSTs sent to the HTTP server. This secret can be used to verify that the request was sent by Meraki.
         * 
         * @return builder
         * 
         */
        public Builder sharedSecret(@Nullable Output sharedSecret) {
            $.sharedSecret = sharedSecret;
            return this;
        }

        /**
         * @param sharedSecret A shared secret that will be included in POSTs sent to the HTTP server. This secret can be used to verify that the request was sent by Meraki.
         * 
         * @return builder
         * 
         */
        public Builder sharedSecret(String sharedSecret) {
            return sharedSecret(Output.of(sharedSecret));
        }

        /**
         * @param url The URL of the HTTP server.
         * 
         * @return builder
         * 
         */
        public Builder url(@Nullable Output url) {
            $.url = url;
            return this;
        }

        /**
         * @param url The URL of the HTTP server.
         * 
         * @return builder
         * 
         */
        public Builder url(String url) {
            return url(Output.of(url));
        }

        public WebhooksHttpServersState build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy