Cisco ISE v0.1.4 published on Friday, May 31, 2024 by Pulumi
ise.networkaccess.getDownloadableAcl
Explore with Pulumi AI
This data source can read the Downloadable ACL.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = ise.networkaccess.getDownloadableAcl({
    id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
});
import pulumi
import pulumi_ise as ise
example = ise.networkaccess.get_downloadable_acl(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
package main
import (
	"github.com/pulumi/pulumi-ise/sdk/go/ise/networkaccess"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkaccess.LookupDownloadableAcl(ctx, &networkaccess.LookupDownloadableAclArgs{
			Id: pulumi.StringRef("76d24097-41c4-4558-a4d0-a8c07ac08470"),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ise = Pulumi.Ise;
return await Deployment.RunAsync(() => 
{
    var example = Ise.NetworkAccess.GetDownloadableAcl.Invoke(new()
    {
        Id = "76d24097-41c4-4558-a4d0-a8c07ac08470",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.networkaccess.NetworkaccessFunctions;
import com.pulumi.ise.networkaccess.inputs.GetDownloadableAclArgs;
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 = NetworkaccessFunctions.getDownloadableAcl(GetDownloadableAclArgs.builder()
            .id("76d24097-41c4-4558-a4d0-a8c07ac08470")
            .build());
    }
}
variables:
  example:
    fn::invoke:
      Function: ise:networkaccess:getDownloadableAcl
      Arguments:
        id: 76d24097-41c4-4558-a4d0-a8c07ac08470
Using getDownloadableAcl
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 getDownloadableAcl(args: GetDownloadableAclArgs, opts?: InvokeOptions): Promise<GetDownloadableAclResult>
function getDownloadableAclOutput(args: GetDownloadableAclOutputArgs, opts?: InvokeOptions): Output<GetDownloadableAclResult>def get_downloadable_acl(id: Optional[str] = None,
                         name: Optional[str] = None,
                         opts: Optional[InvokeOptions] = None) -> GetDownloadableAclResult
def get_downloadable_acl_output(id: Optional[pulumi.Input[str]] = None,
                         name: Optional[pulumi.Input[str]] = None,
                         opts: Optional[InvokeOptions] = None) -> Output[GetDownloadableAclResult]func LookupDownloadableAcl(ctx *Context, args *LookupDownloadableAclArgs, opts ...InvokeOption) (*LookupDownloadableAclResult, error)
func LookupDownloadableAclOutput(ctx *Context, args *LookupDownloadableAclOutputArgs, opts ...InvokeOption) LookupDownloadableAclResultOutput> Note: This function is named LookupDownloadableAcl in the Go SDK.
public static class GetDownloadableAcl 
{
    public static Task<GetDownloadableAclResult> InvokeAsync(GetDownloadableAclArgs args, InvokeOptions? opts = null)
    public static Output<GetDownloadableAclResult> Invoke(GetDownloadableAclInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDownloadableAclResult> getDownloadableAcl(GetDownloadableAclArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
  function: ise:networkaccess/getDownloadableAcl:getDownloadableAcl
  arguments:
    # arguments dictionaryThe following arguments are supported:
getDownloadableAcl Result
The following output properties are available:
- Dacl string
 - The DACL content
 - Dacl
Type string - The type of ACL
 - Description string
 - Description
 - Id string
 - The id of the object
 - Name string
 - The name of the downloadable ACL
 
- Dacl string
 - The DACL content
 - Dacl
Type string - The type of ACL
 - Description string
 - Description
 - Id string
 - The id of the object
 - Name string
 - The name of the downloadable ACL
 
- dacl String
 - The DACL content
 - dacl
Type String - The type of ACL
 - description String
 - Description
 - id String
 - The id of the object
 - name String
 - The name of the downloadable ACL
 
- dacl string
 - The DACL content
 - dacl
Type string - The type of ACL
 - description string
 - Description
 - id string
 - The id of the object
 - name string
 - The name of the downloadable ACL
 
- dacl str
 - The DACL content
 - dacl_
type str - The type of ACL
 - description str
 - Description
 - id str
 - The id of the object
 - name str
 - The name of the downloadable ACL
 
- dacl String
 - The DACL content
 - dacl
Type String - The type of ACL
 - description String
 - Description
 - id String
 - The id of the object
 - name String
 - The name of the downloadable ACL
 
Package Details
- Repository
 - ise pulumi/pulumi-ise
 - License
 - Apache-2.0
 - Notes
 - This Pulumi package is based on the 
iseTerraform Provider.