Cisco ISE v0.2.1 published on Saturday, Mar 15, 2025 by Pulumi
ise.trustsec.getEgressMatrixCellDefault
Explore with Pulumi AI
This data source can read the TrustSec Egress Matrix Cell Default.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = ise.trustsec.getEgressMatrixCellDefault({
id: "92c1a900-8c01-11e6-996c-525400b48521",
});
import pulumi
import pulumi_ise as ise
example = ise.trustsec.get_egress_matrix_cell_default(id="92c1a900-8c01-11e6-996c-525400b48521")
package main
import (
"github.com/pulumi/pulumi-ise/sdk/go/ise/trustsec"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := trustsec.LookupEgressMatrixCellDefault(ctx, &trustsec.LookupEgressMatrixCellDefaultArgs{
Id: "92c1a900-8c01-11e6-996c-525400b48521",
}, 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.TrustSec.GetEgressMatrixCellDefault.Invoke(new()
{
Id = "92c1a900-8c01-11e6-996c-525400b48521",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.trustsec.TrustsecFunctions;
import com.pulumi.ise.trustsec.inputs.GetEgressMatrixCellDefaultArgs;
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 = TrustsecFunctions.getEgressMatrixCellDefault(GetEgressMatrixCellDefaultArgs.builder()
.id("92c1a900-8c01-11e6-996c-525400b48521")
.build());
}
}
variables:
example:
fn::invoke:
function: ise:trustsec:getEgressMatrixCellDefault
arguments:
id: 92c1a900-8c01-11e6-996c-525400b48521
Using getEgressMatrixCellDefault
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 getEgressMatrixCellDefault(args: GetEgressMatrixCellDefaultArgs, opts?: InvokeOptions): Promise<GetEgressMatrixCellDefaultResult>
function getEgressMatrixCellDefaultOutput(args: GetEgressMatrixCellDefaultOutputArgs, opts?: InvokeOptions): Output<GetEgressMatrixCellDefaultResult>
def get_egress_matrix_cell_default(id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetEgressMatrixCellDefaultResult
def get_egress_matrix_cell_default_output(id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetEgressMatrixCellDefaultResult]
func LookupEgressMatrixCellDefault(ctx *Context, args *LookupEgressMatrixCellDefaultArgs, opts ...InvokeOption) (*LookupEgressMatrixCellDefaultResult, error)
func LookupEgressMatrixCellDefaultOutput(ctx *Context, args *LookupEgressMatrixCellDefaultOutputArgs, opts ...InvokeOption) LookupEgressMatrixCellDefaultResultOutput
> Note: This function is named LookupEgressMatrixCellDefault
in the Go SDK.
public static class GetEgressMatrixCellDefault
{
public static Task<GetEgressMatrixCellDefaultResult> InvokeAsync(GetEgressMatrixCellDefaultArgs args, InvokeOptions? opts = null)
public static Output<GetEgressMatrixCellDefaultResult> Invoke(GetEgressMatrixCellDefaultInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetEgressMatrixCellDefaultResult> getEgressMatrixCellDefault(GetEgressMatrixCellDefaultArgs args, InvokeOptions options)
public static Output<GetEgressMatrixCellDefaultResult> getEgressMatrixCellDefault(GetEgressMatrixCellDefaultArgs args, InvokeOptions options)
fn::invoke:
function: ise:trustsec/getEgressMatrixCellDefault:getEgressMatrixCellDefault
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- The id of the object
- Id string
- The id of the object
- id String
- The id of the object
- id string
- The id of the object
- id str
- The id of the object
- id String
- The id of the object
getEgressMatrixCellDefault Result
The following output properties are available:
- Default
Rule string - Can be used only if sgacls not specified. Final Catch All Rule
- Description string
- Description
- Id string
- The id of the object
- Matrix
Cell stringStatus - Matrix Cell Status
- Sgacls List<string>
- List of TrustSec Security Groups ACLs
- Default
Rule string - Can be used only if sgacls not specified. Final Catch All Rule
- Description string
- Description
- Id string
- The id of the object
- Matrix
Cell stringStatus - Matrix Cell Status
- Sgacls []string
- List of TrustSec Security Groups ACLs
- default
Rule String - Can be used only if sgacls not specified. Final Catch All Rule
- description String
- Description
- id String
- The id of the object
- matrix
Cell StringStatus - Matrix Cell Status
- sgacls List<String>
- List of TrustSec Security Groups ACLs
- default
Rule string - Can be used only if sgacls not specified. Final Catch All Rule
- description string
- Description
- id string
- The id of the object
- matrix
Cell stringStatus - Matrix Cell Status
- sgacls string[]
- List of TrustSec Security Groups ACLs
- default_
rule str - Can be used only if sgacls not specified. Final Catch All Rule
- description str
- Description
- id str
- The id of the object
- matrix_
cell_ strstatus - Matrix Cell Status
- sgacls Sequence[str]
- List of TrustSec Security Groups ACLs
- default
Rule String - Can be used only if sgacls not specified. Final Catch All Rule
- description String
- Description
- id String
- The id of the object
- matrix
Cell StringStatus - Matrix Cell Status
- sgacls List<String>
- List of TrustSec Security Groups ACLs
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ise
Terraform Provider.