All Downloads are FREE. Search and download functionalities are using the official Maven repository.
Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.pulumi.meraki.networks.inputs.WirelessSsidsBonjourForwardingRuleArgs Maven / Gradle / Ivy
Go to download
A Pulumi package for creating and managing Cisco Meraki resources
// *** 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 $;
}
}
}