1. Packages
  2. Cisco Meraki
  3. API Docs
  4. organizations
  5. getApplianceTrafficShapingVpnExclusionsByNetwork
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

meraki.organizations.getApplianceTrafficShapingVpnExclusionsByNetwork

Explore with Pulumi AI

meraki logo
Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as meraki from "@pulumi/meraki";
    
    const example = meraki.organizations.getApplianceTrafficShapingVpnExclusionsByNetwork({
        endingBefore: "string",
        networkIds: ["string"],
        organizationId: "string",
        perPage: 1,
        startingAfter: "string",
    });
    export const merakiOrganizationsApplianceTrafficShapingVpnExclusionsByNetworkExample = example.then(example => example.item);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.organizations.get_appliance_traffic_shaping_vpn_exclusions_by_network(ending_before="string",
        network_ids=["string"],
        organization_id="string",
        per_page=1,
        starting_after="string")
    pulumi.export("merakiOrganizationsApplianceTrafficShapingVpnExclusionsByNetworkExample", example.item)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/organizations"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := organizations.GetApplianceTrafficShapingVpnExclusionsByNetwork(ctx, &organizations.GetApplianceTrafficShapingVpnExclusionsByNetworkArgs{
    			EndingBefore: pulumi.StringRef("string"),
    			NetworkIds: []string{
    				"string",
    			},
    			OrganizationId: "string",
    			PerPage:        pulumi.IntRef(1),
    			StartingAfter:  pulumi.StringRef("string"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiOrganizationsApplianceTrafficShapingVpnExclusionsByNetworkExample", example.Item)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Meraki.Organizations.GetApplianceTrafficShapingVpnExclusionsByNetwork.Invoke(new()
        {
            EndingBefore = "string",
            NetworkIds = new[]
            {
                "string",
            },
            OrganizationId = "string",
            PerPage = 1,
            StartingAfter = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiOrganizationsApplianceTrafficShapingVpnExclusionsByNetworkExample"] = example.Apply(getApplianceTrafficShapingVpnExclusionsByNetworkResult => getApplianceTrafficShapingVpnExclusionsByNetworkResult.Item),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.organizations.OrganizationsFunctions;
    import com.pulumi.meraki.organizations.inputs.GetApplianceTrafficShapingVpnExclusionsByNetworkArgs;
    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) {
            final var example = OrganizationsFunctions.getApplianceTrafficShapingVpnExclusionsByNetwork(GetApplianceTrafficShapingVpnExclusionsByNetworkArgs.builder()
                .endingBefore("string")
                .networkIds("string")
                .organizationId("string")
                .perPage(1)
                .startingAfter("string")
                .build());
    
            ctx.export("merakiOrganizationsApplianceTrafficShapingVpnExclusionsByNetworkExample", example.applyValue(getApplianceTrafficShapingVpnExclusionsByNetworkResult -> getApplianceTrafficShapingVpnExclusionsByNetworkResult.item()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:organizations:getApplianceTrafficShapingVpnExclusionsByNetwork
          Arguments:
            endingBefore: string
            networkIds:
              - string
            organizationId: string
            perPage: 1
            startingAfter: string
    outputs:
      merakiOrganizationsApplianceTrafficShapingVpnExclusionsByNetworkExample: ${example.item}
    

    Using getApplianceTrafficShapingVpnExclusionsByNetwork

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getApplianceTrafficShapingVpnExclusionsByNetwork(args: GetApplianceTrafficShapingVpnExclusionsByNetworkArgs, opts?: InvokeOptions): Promise<GetApplianceTrafficShapingVpnExclusionsByNetworkResult>
    function getApplianceTrafficShapingVpnExclusionsByNetworkOutput(args: GetApplianceTrafficShapingVpnExclusionsByNetworkOutputArgs, opts?: InvokeOptions): Output<GetApplianceTrafficShapingVpnExclusionsByNetworkResult>
    def get_appliance_traffic_shaping_vpn_exclusions_by_network(ending_before: Optional[str] = None,
                                                                network_ids: Optional[Sequence[str]] = None,
                                                                organization_id: Optional[str] = None,
                                                                per_page: Optional[int] = None,
                                                                starting_after: Optional[str] = None,
                                                                opts: Optional[InvokeOptions] = None) -> GetApplianceTrafficShapingVpnExclusionsByNetworkResult
    def get_appliance_traffic_shaping_vpn_exclusions_by_network_output(ending_before: Optional[pulumi.Input[str]] = None,
                                                                network_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                                                organization_id: Optional[pulumi.Input[str]] = None,
                                                                per_page: Optional[pulumi.Input[int]] = None,
                                                                starting_after: Optional[pulumi.Input[str]] = None,
                                                                opts: Optional[InvokeOptions] = None) -> Output[GetApplianceTrafficShapingVpnExclusionsByNetworkResult]
    func GetApplianceTrafficShapingVpnExclusionsByNetwork(ctx *Context, args *GetApplianceTrafficShapingVpnExclusionsByNetworkArgs, opts ...InvokeOption) (*GetApplianceTrafficShapingVpnExclusionsByNetworkResult, error)
    func GetApplianceTrafficShapingVpnExclusionsByNetworkOutput(ctx *Context, args *GetApplianceTrafficShapingVpnExclusionsByNetworkOutputArgs, opts ...InvokeOption) GetApplianceTrafficShapingVpnExclusionsByNetworkResultOutput

    > Note: This function is named GetApplianceTrafficShapingVpnExclusionsByNetwork in the Go SDK.

    public static class GetApplianceTrafficShapingVpnExclusionsByNetwork 
    {
        public static Task<GetApplianceTrafficShapingVpnExclusionsByNetworkResult> InvokeAsync(GetApplianceTrafficShapingVpnExclusionsByNetworkArgs args, InvokeOptions? opts = null)
        public static Output<GetApplianceTrafficShapingVpnExclusionsByNetworkResult> Invoke(GetApplianceTrafficShapingVpnExclusionsByNetworkInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetApplianceTrafficShapingVpnExclusionsByNetworkResult> getApplianceTrafficShapingVpnExclusionsByNetwork(GetApplianceTrafficShapingVpnExclusionsByNetworkArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:organizations/getApplianceTrafficShapingVpnExclusionsByNetwork:getApplianceTrafficShapingVpnExclusionsByNetwork
      arguments:
        # arguments dictionary

    The following arguments are supported:

    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds List<string>
    networkIds query parameter. Optional parameter to filter the results by network IDs
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds []string
    networkIds query parameter. Optional parameter to filter the results by network IDs
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter the results by network IDs
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organizationId string
    organizationId path parameter. Organization ID
    endingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds string[]
    networkIds query parameter. Optional parameter to filter the results by network IDs
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organization_id str
    organizationId path parameter. Organization ID
    ending_before str
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    network_ids Sequence[str]
    networkIds query parameter. Optional parameter to filter the results by network IDs
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    starting_after str
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter the results by network IDs
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

    getApplianceTrafficShapingVpnExclusionsByNetwork Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Item GetApplianceTrafficShapingVpnExclusionsByNetworkItem
    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds List<string>
    networkIds query parameter. Optional parameter to filter the results by network IDs
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    Id string
    The provider-assigned unique ID for this managed resource.
    Item GetApplianceTrafficShapingVpnExclusionsByNetworkItem
    OrganizationId string
    organizationId path parameter. Organization ID
    EndingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    NetworkIds []string
    networkIds query parameter. Optional parameter to filter the results by network IDs
    PerPage int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    StartingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id String
    The provider-assigned unique ID for this managed resource.
    item GetApplianceTrafficShapingVpnExclusionsByNetworkItem
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter the results by network IDs
    perPage Integer
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id string
    The provider-assigned unique ID for this managed resource.
    item GetApplianceTrafficShapingVpnExclusionsByNetworkItem
    organizationId string
    organizationId path parameter. Organization ID
    endingBefore string
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds string[]
    networkIds query parameter. Optional parameter to filter the results by network IDs
    perPage number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter string
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id str
    The provider-assigned unique ID for this managed resource.
    item GetApplianceTrafficShapingVpnExclusionsByNetworkItem
    organization_id str
    organizationId path parameter. Organization ID
    ending_before str
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    network_ids Sequence[str]
    networkIds query parameter. Optional parameter to filter the results by network IDs
    per_page int
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    starting_after str
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    id String
    The provider-assigned unique ID for this managed resource.
    item Property Map
    organizationId String
    organizationId path parameter. Organization ID
    endingBefore String
    endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
    networkIds List<String>
    networkIds query parameter. Optional parameter to filter the results by network IDs
    perPage Number
    perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 50.
    startingAfter String
    startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.

    Supporting Types

    GetApplianceTrafficShapingVpnExclusionsByNetworkItem

    items List<Property Map>
    VPN exclusion rules by network

    GetApplianceTrafficShapingVpnExclusionsByNetworkItemItem

    Customs List<GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemCustom>
    Custom VPN exclusion rules.
    MajorApplications List<GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemMajorApplication>
    Major Application based VPN exclusion rules.
    NetworkId string
    ID of the network whose VPN exclusion rules are returned.
    NetworkName string
    Name of the network whose VPN exclusion rules are returned.
    Customs []GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemCustom
    Custom VPN exclusion rules.
    MajorApplications []GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemMajorApplication
    Major Application based VPN exclusion rules.
    NetworkId string
    ID of the network whose VPN exclusion rules are returned.
    NetworkName string
    Name of the network whose VPN exclusion rules are returned.
    customs List<GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemCustom>
    Custom VPN exclusion rules.
    majorApplications List<GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemMajorApplication>
    Major Application based VPN exclusion rules.
    networkId String
    ID of the network whose VPN exclusion rules are returned.
    networkName String
    Name of the network whose VPN exclusion rules are returned.
    customs GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemCustom[]
    Custom VPN exclusion rules.
    majorApplications GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemMajorApplication[]
    Major Application based VPN exclusion rules.
    networkId string
    ID of the network whose VPN exclusion rules are returned.
    networkName string
    Name of the network whose VPN exclusion rules are returned.
    customs Sequence[GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemCustom]
    Custom VPN exclusion rules.
    major_applications Sequence[GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemMajorApplication]
    Major Application based VPN exclusion rules.
    network_id str
    ID of the network whose VPN exclusion rules are returned.
    network_name str
    Name of the network whose VPN exclusion rules are returned.
    customs List<Property Map>
    Custom VPN exclusion rules.
    majorApplications List<Property Map>
    Major Application based VPN exclusion rules.
    networkId String
    ID of the network whose VPN exclusion rules are returned.
    networkName String
    Name of the network whose VPN exclusion rules are returned.

    GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemCustom

    Destination string
    Destination address; hostname required for DNS, IPv4 otherwise.
    Port string
    Destination port.
    Protocol string
    Protocol.
    Destination string
    Destination address; hostname required for DNS, IPv4 otherwise.
    Port string
    Destination port.
    Protocol string
    Protocol.
    destination String
    Destination address; hostname required for DNS, IPv4 otherwise.
    port String
    Destination port.
    protocol String
    Protocol.
    destination string
    Destination address; hostname required for DNS, IPv4 otherwise.
    port string
    Destination port.
    protocol string
    Protocol.
    destination str
    Destination address; hostname required for DNS, IPv4 otherwise.
    port str
    Destination port.
    protocol str
    Protocol.
    destination String
    Destination address; hostname required for DNS, IPv4 otherwise.
    port String
    Destination port.
    protocol String
    Protocol.

    GetApplianceTrafficShapingVpnExclusionsByNetworkItemItemMajorApplication

    Id string
    Application's Meraki ID.
    Name string
    Application's name.
    Id string
    Application's Meraki ID.
    Name string
    Application's name.
    id String
    Application's Meraki ID.
    name String
    Application's name.
    id string
    Application's Meraki ID.
    name string
    Application's name.
    id str
    Application's Meraki ID.
    name str
    Application's name.
    id String
    Application's Meraki ID.
    name String
    Application's name.

    Package Details

    Repository
    meraki pulumi/pulumi-meraki
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the meraki Terraform Provider.
    meraki logo
    Cisco Meraki v0.2.10 published on Wednesday, Jul 24, 2024 by Pulumi