meraki.networks.SwitchAccessControlLists
Explore with Pulumi AI
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.meraki.networks.SwitchAccessControlLists;
import com.pulumi.meraki.networks.SwitchAccessControlListsArgs;
import com.pulumi.meraki.networks.inputs.SwitchAccessControlListsRuleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new SwitchAccessControlLists("example", SwitchAccessControlListsArgs.builder()
.networkId("string")
.rules(SwitchAccessControlListsRuleArgs.builder()
.comment("Deny SSH")
.dst_cidr("172.16.30/24")
.dst_port("22")
.ip_version("ipv4")
.policy("deny")
.protocol("tcp")
.src_cidr("10.1.10.0/24")
.src_port("any")
.vlan("10")
.build())
.build());
ctx.export("merakiNetworksSwitchAccessControlListsExample", example);
}
}
resources:
example:
type: meraki:networks:SwitchAccessControlLists
properties:
networkId: string
rules:
- comment: Deny SSH
dst_cidr: 172.16.30/24
dst_port: '22'
ip_version: ipv4
policy: deny
protocol: tcp
src_cidr: 10.1.10.0/24
src_port: any
vlan: '10'
outputs:
merakiNetworksSwitchAccessControlListsExample: ${example}
Create SwitchAccessControlLists Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SwitchAccessControlLists(name: string, args: SwitchAccessControlListsArgs, opts?: CustomResourceOptions);
@overload
def SwitchAccessControlLists(resource_name: str,
args: SwitchAccessControlListsArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SwitchAccessControlLists(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
rules: Optional[Sequence[SwitchAccessControlListsRuleArgs]] = None,
rules_responses: Optional[Sequence[SwitchAccessControlListsRulesResponseArgs]] = None)
func NewSwitchAccessControlLists(ctx *Context, name string, args SwitchAccessControlListsArgs, opts ...ResourceOption) (*SwitchAccessControlLists, error)
public SwitchAccessControlLists(string name, SwitchAccessControlListsArgs args, CustomResourceOptions? opts = null)
public SwitchAccessControlLists(String name, SwitchAccessControlListsArgs args)
public SwitchAccessControlLists(String name, SwitchAccessControlListsArgs args, CustomResourceOptions options)
type: meraki:networks:SwitchAccessControlLists
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SwitchAccessControlListsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SwitchAccessControlListsArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SwitchAccessControlListsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SwitchAccessControlListsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SwitchAccessControlListsArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var switchAccessControlListsResource = new Meraki.Networks.SwitchAccessControlLists("switchAccessControlListsResource", new()
{
NetworkId = "string",
Rules = new[]
{
new Meraki.Networks.Inputs.SwitchAccessControlListsRuleArgs
{
Comment = "string",
DstCidr = "string",
DstPort = "string",
IpVersion = "string",
Policy = "string",
Protocol = "string",
SrcCidr = "string",
SrcPort = "string",
Vlan = "string",
},
},
RulesResponses = new[]
{
new Meraki.Networks.Inputs.SwitchAccessControlListsRulesResponseArgs
{
Comment = "string",
DstCidr = "string",
DstPort = "string",
IpVersion = "string",
Policy = "string",
Protocol = "string",
SrcCidr = "string",
SrcPort = "string",
Vlan = "string",
},
},
});
example, err := networks.NewSwitchAccessControlLists(ctx, "switchAccessControlListsResource", &networks.SwitchAccessControlListsArgs{
NetworkId: pulumi.String("string"),
Rules: networks.SwitchAccessControlListsRuleArray{
&networks.SwitchAccessControlListsRuleArgs{
Comment: pulumi.String("string"),
DstCidr: pulumi.String("string"),
DstPort: pulumi.String("string"),
IpVersion: pulumi.String("string"),
Policy: pulumi.String("string"),
Protocol: pulumi.String("string"),
SrcCidr: pulumi.String("string"),
SrcPort: pulumi.String("string"),
Vlan: pulumi.String("string"),
},
},
RulesResponses: networks.SwitchAccessControlListsRulesResponseArray{
&networks.SwitchAccessControlListsRulesResponseArgs{
Comment: pulumi.String("string"),
DstCidr: pulumi.String("string"),
DstPort: pulumi.String("string"),
IpVersion: pulumi.String("string"),
Policy: pulumi.String("string"),
Protocol: pulumi.String("string"),
SrcCidr: pulumi.String("string"),
SrcPort: pulumi.String("string"),
Vlan: pulumi.String("string"),
},
},
})
var switchAccessControlListsResource = new SwitchAccessControlLists("switchAccessControlListsResource", SwitchAccessControlListsArgs.builder()
.networkId("string")
.rules(SwitchAccessControlListsRuleArgs.builder()
.comment("string")
.dstCidr("string")
.dstPort("string")
.ipVersion("string")
.policy("string")
.protocol("string")
.srcCidr("string")
.srcPort("string")
.vlan("string")
.build())
.rulesResponses(SwitchAccessControlListsRulesResponseArgs.builder()
.comment("string")
.dstCidr("string")
.dstPort("string")
.ipVersion("string")
.policy("string")
.protocol("string")
.srcCidr("string")
.srcPort("string")
.vlan("string")
.build())
.build());
switch_access_control_lists_resource = meraki.networks.SwitchAccessControlLists("switchAccessControlListsResource",
network_id="string",
rules=[meraki.networks.SwitchAccessControlListsRuleArgs(
comment="string",
dst_cidr="string",
dst_port="string",
ip_version="string",
policy="string",
protocol="string",
src_cidr="string",
src_port="string",
vlan="string",
)],
rules_responses=[meraki.networks.SwitchAccessControlListsRulesResponseArgs(
comment="string",
dst_cidr="string",
dst_port="string",
ip_version="string",
policy="string",
protocol="string",
src_cidr="string",
src_port="string",
vlan="string",
)])
const switchAccessControlListsResource = new meraki.networks.SwitchAccessControlLists("switchAccessControlListsResource", {
networkId: "string",
rules: [{
comment: "string",
dstCidr: "string",
dstPort: "string",
ipVersion: "string",
policy: "string",
protocol: "string",
srcCidr: "string",
srcPort: "string",
vlan: "string",
}],
rulesResponses: [{
comment: "string",
dstCidr: "string",
dstPort: "string",
ipVersion: "string",
policy: "string",
protocol: "string",
srcCidr: "string",
srcPort: "string",
vlan: "string",
}],
});
type: meraki:networks:SwitchAccessControlLists
properties:
networkId: string
rules:
- comment: string
dstCidr: string
dstPort: string
ipVersion: string
policy: string
protocol: string
srcCidr: string
srcPort: string
vlan: string
rulesResponses:
- comment: string
dstCidr: string
dstPort: string
ipVersion: string
policy: string
protocol: string
srcCidr: string
srcPort: string
vlan: string
SwitchAccessControlLists Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The SwitchAccessControlLists resource accepts the following input properties:
- Network
Id string - networkId path parameter. Network ID
- Rules
List<Switch
Access Control Lists Rule> - An ordered array of the access control list rules
- Rules
Responses List<SwitchAccess Control Lists Rules Response> - An ordered array of the access control list rules
- Network
Id string - networkId path parameter. Network ID
- Rules
[]Switch
Access Control Lists Rule Args - An ordered array of the access control list rules
- Rules
Responses []SwitchAccess Control Lists Rules Response Args - An ordered array of the access control list rules
- network
Id String - networkId path parameter. Network ID
- rules
List<Switch
Access Control Lists Rule> - An ordered array of the access control list rules
- rules
Responses List<SwitchAccess Control Lists Rules Response> - An ordered array of the access control list rules
- network
Id string - networkId path parameter. Network ID
- rules
Switch
Access Control Lists Rule[] - An ordered array of the access control list rules
- rules
Responses SwitchAccess Control Lists Rules Response[] - An ordered array of the access control list rules
- network_
id str - networkId path parameter. Network ID
- rules
Sequence[Switch
Access Control Lists Rule Args] - An ordered array of the access control list rules
- rules_
responses Sequence[SwitchAccess Control Lists Rules Response Args] - An ordered array of the access control list rules
- network
Id String - networkId path parameter. Network ID
- rules List<Property Map>
- An ordered array of the access control list rules
- rules
Responses List<Property Map> - An ordered array of the access control list rules
Outputs
All input properties are implicitly available as output properties. Additionally, the SwitchAccessControlLists resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing SwitchAccessControlLists Resource
Get an existing SwitchAccessControlLists resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: SwitchAccessControlListsState, opts?: CustomResourceOptions): SwitchAccessControlLists
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
network_id: Optional[str] = None,
rules: Optional[Sequence[SwitchAccessControlListsRuleArgs]] = None,
rules_responses: Optional[Sequence[SwitchAccessControlListsRulesResponseArgs]] = None) -> SwitchAccessControlLists
func GetSwitchAccessControlLists(ctx *Context, name string, id IDInput, state *SwitchAccessControlListsState, opts ...ResourceOption) (*SwitchAccessControlLists, error)
public static SwitchAccessControlLists Get(string name, Input<string> id, SwitchAccessControlListsState? state, CustomResourceOptions? opts = null)
public static SwitchAccessControlLists get(String name, Output<String> id, SwitchAccessControlListsState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Network
Id string - networkId path parameter. Network ID
- Rules
List<Switch
Access Control Lists Rule> - An ordered array of the access control list rules
- Rules
Responses List<SwitchAccess Control Lists Rules Response> - An ordered array of the access control list rules
- Network
Id string - networkId path parameter. Network ID
- Rules
[]Switch
Access Control Lists Rule Args - An ordered array of the access control list rules
- Rules
Responses []SwitchAccess Control Lists Rules Response Args - An ordered array of the access control list rules
- network
Id String - networkId path parameter. Network ID
- rules
List<Switch
Access Control Lists Rule> - An ordered array of the access control list rules
- rules
Responses List<SwitchAccess Control Lists Rules Response> - An ordered array of the access control list rules
- network
Id string - networkId path parameter. Network ID
- rules
Switch
Access Control Lists Rule[] - An ordered array of the access control list rules
- rules
Responses SwitchAccess Control Lists Rules Response[] - An ordered array of the access control list rules
- network_
id str - networkId path parameter. Network ID
- rules
Sequence[Switch
Access Control Lists Rule Args] - An ordered array of the access control list rules
- rules_
responses Sequence[SwitchAccess Control Lists Rules Response Args] - An ordered array of the access control list rules
- network
Id String - networkId path parameter. Network ID
- rules List<Property Map>
- An ordered array of the access control list rules
- rules
Responses List<Property Map> - An ordered array of the access control list rules
Supporting Types
SwitchAccessControlListsRule, SwitchAccessControlListsRuleArgs
- Comment string
- Description of the rule (optional)
- Dst
Cidr string - Destination IP address (in IP or CIDR notation)
- Dst
Port string - Destination port
- Ip
Version string - IP address version
- Policy string
- 'allow' or 'deny' traffic specified by this rule
- Protocol string
- The type of protocol
- Src
Cidr string - Source IP address (in IP or CIDR notation)
- Src
Port string - Source port
- Vlan string
- ncoming traffic VLAN
- Comment string
- Description of the rule (optional)
- Dst
Cidr string - Destination IP address (in IP or CIDR notation)
- Dst
Port string - Destination port
- Ip
Version string - IP address version
- Policy string
- 'allow' or 'deny' traffic specified by this rule
- Protocol string
- The type of protocol
- Src
Cidr string - Source IP address (in IP or CIDR notation)
- Src
Port string - Source port
- Vlan string
- ncoming traffic VLAN
- comment String
- Description of the rule (optional)
- dst
Cidr String - Destination IP address (in IP or CIDR notation)
- dst
Port String - Destination port
- ip
Version String - IP address version
- policy String
- 'allow' or 'deny' traffic specified by this rule
- protocol String
- The type of protocol
- src
Cidr String - Source IP address (in IP or CIDR notation)
- src
Port String - Source port
- vlan String
- ncoming traffic VLAN
- comment string
- Description of the rule (optional)
- dst
Cidr string - Destination IP address (in IP or CIDR notation)
- dst
Port string - Destination port
- ip
Version string - IP address version
- policy string
- 'allow' or 'deny' traffic specified by this rule
- protocol string
- The type of protocol
- src
Cidr string - Source IP address (in IP or CIDR notation)
- src
Port string - Source port
- vlan string
- ncoming traffic VLAN
- comment str
- Description of the rule (optional)
- dst_
cidr str - Destination IP address (in IP or CIDR notation)
- dst_
port str - Destination port
- ip_
version str - IP address version
- policy str
- 'allow' or 'deny' traffic specified by this rule
- protocol str
- The type of protocol
- src_
cidr str - Source IP address (in IP or CIDR notation)
- src_
port str - Source port
- vlan str
- ncoming traffic VLAN
- comment String
- Description of the rule (optional)
- dst
Cidr String - Destination IP address (in IP or CIDR notation)
- dst
Port String - Destination port
- ip
Version String - IP address version
- policy String
- 'allow' or 'deny' traffic specified by this rule
- protocol String
- The type of protocol
- src
Cidr String - Source IP address (in IP or CIDR notation)
- src
Port String - Source port
- vlan String
- ncoming traffic VLAN
SwitchAccessControlListsRulesResponse, SwitchAccessControlListsRulesResponseArgs
- Comment string
- Description of the rule (optional)
- Dst
Cidr string - Destination IP address (in IP or CIDR notation)
- Dst
Port string - Destination port
- Ip
Version string - IP address version
- Policy string
- 'allow' or 'deny' traffic specified by this rule
- Protocol string
- The type of protocol
- Src
Cidr string - Source IP address (in IP or CIDR notation)
- Src
Port string - Source port
- Vlan string
- ncoming traffic VLAN
- Comment string
- Description of the rule (optional)
- Dst
Cidr string - Destination IP address (in IP or CIDR notation)
- Dst
Port string - Destination port
- Ip
Version string - IP address version
- Policy string
- 'allow' or 'deny' traffic specified by this rule
- Protocol string
- The type of protocol
- Src
Cidr string - Source IP address (in IP or CIDR notation)
- Src
Port string - Source port
- Vlan string
- ncoming traffic VLAN
- comment String
- Description of the rule (optional)
- dst
Cidr String - Destination IP address (in IP or CIDR notation)
- dst
Port String - Destination port
- ip
Version String - IP address version
- policy String
- 'allow' or 'deny' traffic specified by this rule
- protocol String
- The type of protocol
- src
Cidr String - Source IP address (in IP or CIDR notation)
- src
Port String - Source port
- vlan String
- ncoming traffic VLAN
- comment string
- Description of the rule (optional)
- dst
Cidr string - Destination IP address (in IP or CIDR notation)
- dst
Port string - Destination port
- ip
Version string - IP address version
- policy string
- 'allow' or 'deny' traffic specified by this rule
- protocol string
- The type of protocol
- src
Cidr string - Source IP address (in IP or CIDR notation)
- src
Port string - Source port
- vlan string
- ncoming traffic VLAN
- comment str
- Description of the rule (optional)
- dst_
cidr str - Destination IP address (in IP or CIDR notation)
- dst_
port str - Destination port
- ip_
version str - IP address version
- policy str
- 'allow' or 'deny' traffic specified by this rule
- protocol str
- The type of protocol
- src_
cidr str - Source IP address (in IP or CIDR notation)
- src_
port str - Source port
- vlan str
- ncoming traffic VLAN
- comment String
- Description of the rule (optional)
- dst
Cidr String - Destination IP address (in IP or CIDR notation)
- dst
Port String - Destination port
- ip
Version String - IP address version
- policy String
- 'allow' or 'deny' traffic specified by this rule
- protocol String
- The type of protocol
- src
Cidr String - Source IP address (in IP or CIDR notation)
- src
Port String - Source port
- vlan String
- ncoming traffic VLAN
Import
$ pulumi import meraki:networks/switchAccessControlLists:SwitchAccessControlLists example "network_id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- meraki pulumi/pulumi-meraki
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
meraki
Terraform Provider.