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

meraki.networks.getApplianceFirewallFirewalledServices

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.networks.getApplianceFirewallFirewalledServices({
        networkId: "string",
        service: "string",
    });
    export const merakiNetworksApplianceFirewallFirewalledServicesExample = example.then(example => example.item);
    
    import pulumi
    import pulumi_meraki as meraki
    
    example = meraki.networks.get_appliance_firewall_firewalled_services(network_id="string",
        service="string")
    pulumi.export("merakiNetworksApplianceFirewallFirewalledServicesExample", example.item)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-meraki/sdk/go/meraki/networks"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := networks.LookupApplianceFirewallFirewalledServices(ctx, &networks.LookupApplianceFirewallFirewalledServicesArgs{
    			NetworkId: "string",
    			Service:   "string",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("merakiNetworksApplianceFirewallFirewalledServicesExample", example.Item)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Meraki = Pulumi.Meraki;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Meraki.Networks.GetApplianceFirewallFirewalledServices.Invoke(new()
        {
            NetworkId = "string",
            Service = "string",
        });
    
        return new Dictionary<string, object?>
        {
            ["merakiNetworksApplianceFirewallFirewalledServicesExample"] = example.Apply(getApplianceFirewallFirewalledServicesResult => getApplianceFirewallFirewalledServicesResult.Item),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.meraki.networks.NetworksFunctions;
    import com.pulumi.meraki.networks.inputs.GetApplianceFirewallFirewalledServicesArgs;
    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 = NetworksFunctions.getApplianceFirewallFirewalledServices(GetApplianceFirewallFirewalledServicesArgs.builder()
                .networkId("string")
                .service("string")
                .build());
    
            ctx.export("merakiNetworksApplianceFirewallFirewalledServicesExample", example.applyValue(getApplianceFirewallFirewalledServicesResult -> getApplianceFirewallFirewalledServicesResult.item()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: meraki:networks:getApplianceFirewallFirewalledServices
          Arguments:
            networkId: string
            service: string
    outputs:
      merakiNetworksApplianceFirewallFirewalledServicesExample: ${example.item}
    

    Using getApplianceFirewallFirewalledServices

    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 getApplianceFirewallFirewalledServices(args: GetApplianceFirewallFirewalledServicesArgs, opts?: InvokeOptions): Promise<GetApplianceFirewallFirewalledServicesResult>
    function getApplianceFirewallFirewalledServicesOutput(args: GetApplianceFirewallFirewalledServicesOutputArgs, opts?: InvokeOptions): Output<GetApplianceFirewallFirewalledServicesResult>
    def get_appliance_firewall_firewalled_services(network_id: Optional[str] = None,
                                                   service: Optional[str] = None,
                                                   opts: Optional[InvokeOptions] = None) -> GetApplianceFirewallFirewalledServicesResult
    def get_appliance_firewall_firewalled_services_output(network_id: Optional[pulumi.Input[str]] = None,
                                                   service: Optional[pulumi.Input[str]] = None,
                                                   opts: Optional[InvokeOptions] = None) -> Output[GetApplianceFirewallFirewalledServicesResult]
    func LookupApplianceFirewallFirewalledServices(ctx *Context, args *LookupApplianceFirewallFirewalledServicesArgs, opts ...InvokeOption) (*LookupApplianceFirewallFirewalledServicesResult, error)
    func LookupApplianceFirewallFirewalledServicesOutput(ctx *Context, args *LookupApplianceFirewallFirewalledServicesOutputArgs, opts ...InvokeOption) LookupApplianceFirewallFirewalledServicesResultOutput

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

    public static class GetApplianceFirewallFirewalledServices 
    {
        public static Task<GetApplianceFirewallFirewalledServicesResult> InvokeAsync(GetApplianceFirewallFirewalledServicesArgs args, InvokeOptions? opts = null)
        public static Output<GetApplianceFirewallFirewalledServicesResult> Invoke(GetApplianceFirewallFirewalledServicesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetApplianceFirewallFirewalledServicesResult> getApplianceFirewallFirewalledServices(GetApplianceFirewallFirewalledServicesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: meraki:networks/getApplianceFirewallFirewalledServices:getApplianceFirewallFirewalledServices
      arguments:
        # arguments dictionary

    The following arguments are supported:

    NetworkId string
    networkId path parameter. Network ID
    Service string
    service path parameter.
    NetworkId string
    networkId path parameter. Network ID
    Service string
    service path parameter.
    networkId String
    networkId path parameter. Network ID
    service String
    service path parameter.
    networkId string
    networkId path parameter. Network ID
    service string
    service path parameter.
    network_id str
    networkId path parameter. Network ID
    service str
    service path parameter.
    networkId String
    networkId path parameter. Network ID
    service String
    service path parameter.

    getApplianceFirewallFirewalledServices Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Item GetApplianceFirewallFirewalledServicesItem
    NetworkId string
    networkId path parameter. Network ID
    Service string
    service path parameter.
    Id string
    The provider-assigned unique ID for this managed resource.
    Item GetApplianceFirewallFirewalledServicesItem
    NetworkId string
    networkId path parameter. Network ID
    Service string
    service path parameter.
    id String
    The provider-assigned unique ID for this managed resource.
    item GetApplianceFirewallFirewalledServicesItem
    networkId String
    networkId path parameter. Network ID
    service String
    service path parameter.
    id string
    The provider-assigned unique ID for this managed resource.
    item GetApplianceFirewallFirewalledServicesItem
    networkId string
    networkId path parameter. Network ID
    service string
    service path parameter.
    id str
    The provider-assigned unique ID for this managed resource.
    item GetApplianceFirewallFirewalledServicesItem
    network_id str
    networkId path parameter. Network ID
    service str
    service path parameter.
    id String
    The provider-assigned unique ID for this managed resource.
    item Property Map
    networkId String
    networkId path parameter. Network ID
    service String
    service path parameter.

    Supporting Types

    GetApplianceFirewallFirewalledServicesItem

    Access string
    A string indicating the rule for which IPs are allowed to use the specified service
    AllowedIps List<string>
    An array of allowed IPs that can access the service
    Service string
    Appliance service name
    Access string
    A string indicating the rule for which IPs are allowed to use the specified service
    AllowedIps []string
    An array of allowed IPs that can access the service
    Service string
    Appliance service name
    access String
    A string indicating the rule for which IPs are allowed to use the specified service
    allowedIps List<String>
    An array of allowed IPs that can access the service
    service String
    Appliance service name
    access string
    A string indicating the rule for which IPs are allowed to use the specified service
    allowedIps string[]
    An array of allowed IPs that can access the service
    service string
    Appliance service name
    access str
    A string indicating the rule for which IPs are allowed to use the specified service
    allowed_ips Sequence[str]
    An array of allowed IPs that can access the service
    service str
    Appliance service name
    access String
    A string indicating the rule for which IPs are allowed to use the specified service
    allowedIps List<String>
    An array of allowed IPs that can access the service
    service String
    Appliance service 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