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

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


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

    public static final SwitchRoutingMulticastOverrideArgs Empty = new SwitchRoutingMulticastOverrideArgs();

    /**
     * Flood unknown multicast traffic enabled for switches, switch stacks or switch templates
     * 
     */
    @Import(name="floodUnknownMulticastTrafficEnabled")
    private @Nullable Output floodUnknownMulticastTrafficEnabled;

    /**
     * @return Flood unknown multicast traffic enabled for switches, switch stacks or switch templates
     * 
     */
    public Optional> floodUnknownMulticastTrafficEnabled() {
        return Optional.ofNullable(this.floodUnknownMulticastTrafficEnabled);
    }

    /**
     * IGMP snooping enabled for switches, switch stacks or switch templates
     * 
     */
    @Import(name="igmpSnoopingEnabled")
    private @Nullable Output igmpSnoopingEnabled;

    /**
     * @return IGMP snooping enabled for switches, switch stacks or switch templates
     * 
     */
    public Optional> igmpSnoopingEnabled() {
        return Optional.ofNullable(this.igmpSnoopingEnabled);
    }

    /**
     * (optional) List of switch stack ids for non-template network
     * 
     */
    @Import(name="stacks")
    private @Nullable Output> stacks;

    /**
     * @return (optional) List of switch stack ids for non-template network
     * 
     */
    public Optional>> stacks() {
        return Optional.ofNullable(this.stacks);
    }

    /**
     * (optional) List of switch templates ids for template network
     * 
     */
    @Import(name="switchProfiles")
    private @Nullable Output> switchProfiles;

    /**
     * @return (optional) List of switch templates ids for template network
     * 
     */
    public Optional>> switchProfiles() {
        return Optional.ofNullable(this.switchProfiles);
    }

    /**
     * (optional) List of switch serials for non-template network
     * 
     */
    @Import(name="switches")
    private @Nullable Output> switches;

    /**
     * @return (optional) List of switch serials for non-template network
     * 
     */
    public Optional>> switches() {
        return Optional.ofNullable(this.switches);
    }

    private SwitchRoutingMulticastOverrideArgs() {}

    private SwitchRoutingMulticastOverrideArgs(SwitchRoutingMulticastOverrideArgs $) {
        this.floodUnknownMulticastTrafficEnabled = $.floodUnknownMulticastTrafficEnabled;
        this.igmpSnoopingEnabled = $.igmpSnoopingEnabled;
        this.stacks = $.stacks;
        this.switchProfiles = $.switchProfiles;
        this.switches = $.switches;
    }

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

    public static final class Builder {
        private SwitchRoutingMulticastOverrideArgs $;

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

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

        /**
         * @param floodUnknownMulticastTrafficEnabled Flood unknown multicast traffic enabled for switches, switch stacks or switch templates
         * 
         * @return builder
         * 
         */
        public Builder floodUnknownMulticastTrafficEnabled(@Nullable Output floodUnknownMulticastTrafficEnabled) {
            $.floodUnknownMulticastTrafficEnabled = floodUnknownMulticastTrafficEnabled;
            return this;
        }

        /**
         * @param floodUnknownMulticastTrafficEnabled Flood unknown multicast traffic enabled for switches, switch stacks or switch templates
         * 
         * @return builder
         * 
         */
        public Builder floodUnknownMulticastTrafficEnabled(Boolean floodUnknownMulticastTrafficEnabled) {
            return floodUnknownMulticastTrafficEnabled(Output.of(floodUnknownMulticastTrafficEnabled));
        }

        /**
         * @param igmpSnoopingEnabled IGMP snooping enabled for switches, switch stacks or switch templates
         * 
         * @return builder
         * 
         */
        public Builder igmpSnoopingEnabled(@Nullable Output igmpSnoopingEnabled) {
            $.igmpSnoopingEnabled = igmpSnoopingEnabled;
            return this;
        }

        /**
         * @param igmpSnoopingEnabled IGMP snooping enabled for switches, switch stacks or switch templates
         * 
         * @return builder
         * 
         */
        public Builder igmpSnoopingEnabled(Boolean igmpSnoopingEnabled) {
            return igmpSnoopingEnabled(Output.of(igmpSnoopingEnabled));
        }

        /**
         * @param stacks (optional) List of switch stack ids for non-template network
         * 
         * @return builder
         * 
         */
        public Builder stacks(@Nullable Output> stacks) {
            $.stacks = stacks;
            return this;
        }

        /**
         * @param stacks (optional) List of switch stack ids for non-template network
         * 
         * @return builder
         * 
         */
        public Builder stacks(List stacks) {
            return stacks(Output.of(stacks));
        }

        /**
         * @param stacks (optional) List of switch stack ids for non-template network
         * 
         * @return builder
         * 
         */
        public Builder stacks(String... stacks) {
            return stacks(List.of(stacks));
        }

        /**
         * @param switchProfiles (optional) List of switch templates ids for template network
         * 
         * @return builder
         * 
         */
        public Builder switchProfiles(@Nullable Output> switchProfiles) {
            $.switchProfiles = switchProfiles;
            return this;
        }

        /**
         * @param switchProfiles (optional) List of switch templates ids for template network
         * 
         * @return builder
         * 
         */
        public Builder switchProfiles(List switchProfiles) {
            return switchProfiles(Output.of(switchProfiles));
        }

        /**
         * @param switchProfiles (optional) List of switch templates ids for template network
         * 
         * @return builder
         * 
         */
        public Builder switchProfiles(String... switchProfiles) {
            return switchProfiles(List.of(switchProfiles));
        }

        /**
         * @param switches (optional) List of switch serials for non-template network
         * 
         * @return builder
         * 
         */
        public Builder switches(@Nullable Output> switches) {
            $.switches = switches;
            return this;
        }

        /**
         * @param switches (optional) List of switch serials for non-template network
         * 
         * @return builder
         * 
         */
        public Builder switches(List switches) {
            return switches(Output.of(switches));
        }

        /**
         * @param switches (optional) List of switch serials for non-template network
         * 
         * @return builder
         * 
         */
        public Builder switches(String... switches) {
            return switches(List.of(switches));
        }

        public SwitchRoutingMulticastOverrideArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy