Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
published on Saturday, Mar 7, 2026 by Pulumi
Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
published on Saturday, Mar 7, 2026 by Pulumi
This data source can read the TACACS Command Set.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = ise.deviceadmin.getTacacsCommandSet({
id: "76d24097-41c4-4558-a4d0-a8c07ac08470",
});
import pulumi
import pulumi_ise as ise
example = ise.deviceadmin.get_tacacs_command_set(id="76d24097-41c4-4558-a4d0-a8c07ac08470")
package main
import (
"github.com/pulumi/pulumi-ise/sdk/go/ise/deviceadmin"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := deviceadmin.LookupTacacsCommandSet(ctx, &deviceadmin.LookupTacacsCommandSetArgs{
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.DeviceAdmin.GetTacacsCommandSet.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.deviceadmin.DeviceadminFunctions;
import com.pulumi.ise.deviceadmin.inputs.GetTacacsCommandSetArgs;
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 = DeviceadminFunctions.getTacacsCommandSet(GetTacacsCommandSetArgs.builder()
.id("76d24097-41c4-4558-a4d0-a8c07ac08470")
.build());
}
}
variables:
example:
fn::invoke:
function: ise:deviceadmin:getTacacsCommandSet
arguments:
id: 76d24097-41c4-4558-a4d0-a8c07ac08470
Using getTacacsCommandSet
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 getTacacsCommandSet(args: GetTacacsCommandSetArgs, opts?: InvokeOptions): Promise<GetTacacsCommandSetResult>
function getTacacsCommandSetOutput(args: GetTacacsCommandSetOutputArgs, opts?: InvokeOptions): Output<GetTacacsCommandSetResult>def get_tacacs_command_set(id: Optional[str] = None,
name: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetTacacsCommandSetResult
def get_tacacs_command_set_output(id: Optional[pulumi.Input[str]] = None,
name: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetTacacsCommandSetResult]func LookupTacacsCommandSet(ctx *Context, args *LookupTacacsCommandSetArgs, opts ...InvokeOption) (*LookupTacacsCommandSetResult, error)
func LookupTacacsCommandSetOutput(ctx *Context, args *LookupTacacsCommandSetOutputArgs, opts ...InvokeOption) LookupTacacsCommandSetResultOutput> Note: This function is named LookupTacacsCommandSet in the Go SDK.
public static class GetTacacsCommandSet
{
public static Task<GetTacacsCommandSetResult> InvokeAsync(GetTacacsCommandSetArgs args, InvokeOptions? opts = null)
public static Output<GetTacacsCommandSetResult> Invoke(GetTacacsCommandSetInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTacacsCommandSetResult> getTacacsCommandSet(GetTacacsCommandSetArgs args, InvokeOptions options)
public static Output<GetTacacsCommandSetResult> getTacacsCommandSet(GetTacacsCommandSetArgs args, InvokeOptions options)
fn::invoke:
function: ise:deviceadmin/getTacacsCommandSet:getTacacsCommandSet
arguments:
# arguments dictionaryThe following arguments are supported:
getTacacsCommandSet Result
The following output properties are available:
- Commands
List<Get
Tacacs Command Set Command> - Description string
- Description
- Id string
- The id of the object
- Name string
- The name of the TACACS command set
- Permit
Unmatched bool - Permit unmatched commands
- Commands
[]Get
Tacacs Command Set Command - Description string
- Description
- Id string
- The id of the object
- Name string
- The name of the TACACS command set
- Permit
Unmatched bool - Permit unmatched commands
- commands
List<Get
Tacacs Command Set Command> - description String
- Description
- id String
- The id of the object
- name String
- The name of the TACACS command set
- permit
Unmatched Boolean - Permit unmatched commands
- commands
Get
Tacacs Command Set Command[] - description string
- Description
- id string
- The id of the object
- name string
- The name of the TACACS command set
- permit
Unmatched boolean - Permit unmatched commands
- commands
Sequence[Get
Tacacs Command Set Command] - description str
- Description
- id str
- The id of the object
- name str
- The name of the TACACS command set
- permit_
unmatched bool - Permit unmatched commands
- commands List<Property Map>
- description String
- Description
- id String
- The id of the object
- name String
- The name of the TACACS command set
- permit
Unmatched Boolean - Permit unmatched commands
Supporting Types
GetTacacsCommandSetCommand
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
iseTerraform Provider.
Viewing docs for Cisco ISE v0.3.0
published on Saturday, Mar 7, 2026 by Pulumi
published on Saturday, Mar 7, 2026 by Pulumi
