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

com.pulumi.meraki.networks.inputs.WirelessSsidsBonjourForwardingRuleArgs 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 java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


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

    public static final WirelessSsidsBonjourForwardingRuleArgs Empty = new WirelessSsidsBonjourForwardingRuleArgs();

    /**
     * Desctiption of the bonjour forwarding rule
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Desctiption of the bonjour forwarding rule
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
     * 
     */
    @Import(name="services")
    private @Nullable Output> services;

    /**
     * @return A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
     * 
     */
    public Optional>> services() {
        return Optional.ofNullable(this.services);
    }

    /**
     * The ID of the service VLAN. Required
     * 
     */
    @Import(name="vlanId")
    private @Nullable Output vlanId;

    /**
     * @return The ID of the service VLAN. Required
     * 
     */
    public Optional> vlanId() {
        return Optional.ofNullable(this.vlanId);
    }

    private WirelessSsidsBonjourForwardingRuleArgs() {}

    private WirelessSsidsBonjourForwardingRuleArgs(WirelessSsidsBonjourForwardingRuleArgs $) {
        this.description = $.description;
        this.services = $.services;
        this.vlanId = $.vlanId;
    }

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

    public static final class Builder {
        private WirelessSsidsBonjourForwardingRuleArgs $;

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

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

        /**
         * @param description Desctiption of the bonjour forwarding rule
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Desctiption of the bonjour forwarding rule
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param services A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
         * 
         * @return builder
         * 
         */
        public Builder services(@Nullable Output> services) {
            $.services = services;
            return this;
        }

        /**
         * @param services A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
         * 
         * @return builder
         * 
         */
        public Builder services(List services) {
            return services(Output.of(services));
        }

        /**
         * @param services A list of Bonjour services. At least one service must be specified. Available services are 'All Services', 'AirPlay', 'AFP', 'BitTorrent', 'FTP', 'iChat', 'iTunes', 'Printers', 'Samba', 'Scanners' and 'SSH'
         * 
         * @return builder
         * 
         */
        public Builder services(String... services) {
            return services(List.of(services));
        }

        /**
         * @param vlanId The ID of the service VLAN. Required
         * 
         * @return builder
         * 
         */
        public Builder vlanId(@Nullable Output vlanId) {
            $.vlanId = vlanId;
            return this;
        }

        /**
         * @param vlanId The ID of the service VLAN. Required
         * 
         * @return builder
         * 
         */
        public Builder vlanId(String vlanId) {
            return vlanId(Output.of(vlanId));
        }

        public WirelessSsidsBonjourForwardingRuleArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy