This resource triggers a CoA notification on TrustSec Policy, SGACL, or TrustSec Environment Data updates
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as ise from "@pulumi/ise";
const example = new ise.trustsec.EgressPushMatrix("example", {force: false});
import pulumi
import pulumi_ise as ise
example = ise.trustsec.EgressPushMatrix("example", force=False)
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.NewEgressPushMatrix(ctx, "example", &trustsec.EgressPushMatrixArgs{
Force: pulumi.Bool(false),
})
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 = new Ise.TrustSec.EgressPushMatrix("example", new()
{
Force = false,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ise.trustsec.EgressPushMatrix;
import com.pulumi.ise.trustsec.EgressPushMatrixArgs;
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) {
var example = new EgressPushMatrix("example", EgressPushMatrixArgs.builder()
.force(false)
.build());
}
}
resources:
example:
type: ise:trustsec:EgressPushMatrix
properties:
force: false
Create EgressPushMatrix Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new EgressPushMatrix(name: string, args?: EgressPushMatrixArgs, opts?: CustomResourceOptions);@overload
def EgressPushMatrix(resource_name: str,
args: Optional[EgressPushMatrixArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def EgressPushMatrix(resource_name: str,
opts: Optional[ResourceOptions] = None,
force: Optional[bool] = None)func NewEgressPushMatrix(ctx *Context, name string, args *EgressPushMatrixArgs, opts ...ResourceOption) (*EgressPushMatrix, error)public EgressPushMatrix(string name, EgressPushMatrixArgs? args = null, CustomResourceOptions? opts = null)
public EgressPushMatrix(String name, EgressPushMatrixArgs args)
public EgressPushMatrix(String name, EgressPushMatrixArgs args, CustomResourceOptions options)
type: ise:trustsec:EgressPushMatrix
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args EgressPushMatrixArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args EgressPushMatrixArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args EgressPushMatrixArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EgressPushMatrixArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EgressPushMatrixArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var egressPushMatrixResource = new Ise.TrustSec.EgressPushMatrix("egressPushMatrixResource", new()
{
Force = false,
});
example, err := trustsec.NewEgressPushMatrix(ctx, "egressPushMatrixResource", &trustsec.EgressPushMatrixArgs{
Force: pulumi.Bool(false),
})
var egressPushMatrixResource = new EgressPushMatrix("egressPushMatrixResource", EgressPushMatrixArgs.builder()
.force(false)
.build());
egress_push_matrix_resource = ise.trustsec.EgressPushMatrix("egressPushMatrixResource", force=False)
const egressPushMatrixResource = new ise.trustsec.EgressPushMatrix("egressPushMatrixResource", {force: false});
type: ise:trustsec:EgressPushMatrix
properties:
force: false
EgressPushMatrix Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The EgressPushMatrix resource accepts the following input properties:
- Force bool
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- Force bool
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force Boolean
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force boolean
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force bool
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force Boolean
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
Outputs
All input properties are implicitly available as output properties. Additionally, the EgressPushMatrix resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing EgressPushMatrix Resource
Get an existing EgressPushMatrix resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: EgressPushMatrixState, opts?: CustomResourceOptions): EgressPushMatrix@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
force: Optional[bool] = None) -> EgressPushMatrixfunc GetEgressPushMatrix(ctx *Context, name string, id IDInput, state *EgressPushMatrixState, opts ...ResourceOption) (*EgressPushMatrix, error)public static EgressPushMatrix Get(string name, Input<string> id, EgressPushMatrixState? state, CustomResourceOptions? opts = null)public static EgressPushMatrix get(String name, Output<String> id, EgressPushMatrixState state, CustomResourceOptions options)resources: _: type: ise:trustsec:EgressPushMatrix get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Force bool
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- Force bool
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force Boolean
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force boolean
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force bool
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
- force Boolean
- Set to true to re-trigger push on update. Will automatically reset to false after execution.
- Default value:
false
- Default value:
Package Details
- Repository
- ise pulumi/pulumi-ise
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
iseTerraform Provider.
