1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. IptagMatchList
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
scm logo
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi

    IptagMatchList resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const iptagMatchList = new scm.IptagMatchList("iptag_match_list", {
        name: "test-iptag-list",
        description: "IP tag match list for tracking dynamic IP address tagging events and policy enforcement",
        folder: "ngfw-shared",
        filter: "All Logs",
        sendSyslogs: ["test-syslog"],
        sendHttps: ["some-http-profile"],
        sendSnmptraps: ["snmp_test"],
        sendEmails: ["test-email"],
        quarantine: false,
        sendToPanorama: false,
    });
    
    import pulumi
    import pulumi_scm as scm
    
    iptag_match_list = scm.IptagMatchList("iptag_match_list",
        name="test-iptag-list",
        description="IP tag match list for tracking dynamic IP address tagging events and policy enforcement",
        folder="ngfw-shared",
        filter="All Logs",
        send_syslogs=["test-syslog"],
        send_https=["some-http-profile"],
        send_snmptraps=["snmp_test"],
        send_emails=["test-email"],
        quarantine=False,
        send_to_panorama=False)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-scm/sdk/go/scm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := scm.NewIptagMatchList(ctx, "iptag_match_list", &scm.IptagMatchListArgs{
    			Name:        pulumi.String("test-iptag-list"),
    			Description: pulumi.String("IP tag match list for tracking dynamic IP address tagging events and policy enforcement"),
    			Folder:      pulumi.String("ngfw-shared"),
    			Filter:      pulumi.String("All Logs"),
    			SendSyslogs: pulumi.StringArray{
    				pulumi.String("test-syslog"),
    			},
    			SendHttps: pulumi.StringArray{
    				pulumi.String("some-http-profile"),
    			},
    			SendSnmptraps: pulumi.StringArray{
    				pulumi.String("snmp_test"),
    			},
    			SendEmails: pulumi.StringArray{
    				pulumi.String("test-email"),
    			},
    			Quarantine:     pulumi.Bool(false),
    			SendToPanorama: pulumi.Bool(false),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var iptagMatchList = new Scm.IptagMatchList("iptag_match_list", new()
        {
            Name = "test-iptag-list",
            Description = "IP tag match list for tracking dynamic IP address tagging events and policy enforcement",
            Folder = "ngfw-shared",
            Filter = "All Logs",
            SendSyslogs = new[]
            {
                "test-syslog",
            },
            SendHttps = new[]
            {
                "some-http-profile",
            },
            SendSnmptraps = new[]
            {
                "snmp_test",
            },
            SendEmails = new[]
            {
                "test-email",
            },
            Quarantine = false,
            SendToPanorama = false,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.IptagMatchList;
    import com.pulumi.scm.IptagMatchListArgs;
    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 iptagMatchList = new IptagMatchList("iptagMatchList", IptagMatchListArgs.builder()
                .name("test-iptag-list")
                .description("IP tag match list for tracking dynamic IP address tagging events and policy enforcement")
                .folder("ngfw-shared")
                .filter("All Logs")
                .sendSyslogs("test-syslog")
                .sendHttps("some-http-profile")
                .sendSnmptraps("snmp_test")
                .sendEmails("test-email")
                .quarantine(false)
                .sendToPanorama(false)
                .build());
    
        }
    }
    
    resources:
      iptagMatchList:
        type: scm:IptagMatchList
        name: iptag_match_list
        properties:
          name: test-iptag-list
          description: IP tag match list for tracking dynamic IP address tagging events and policy enforcement
          folder: ngfw-shared
          filter: All Logs
          sendSyslogs:
            - test-syslog
          sendHttps:
            - some-http-profile
          sendSnmptraps:
            - snmp_test
          sendEmails:
            - test-email
          quarantine: false
          sendToPanorama: false
    

    Create IptagMatchList Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new IptagMatchList(name: string, args?: IptagMatchListArgs, opts?: CustomResourceOptions);
    @overload
    def IptagMatchList(resource_name: str,
                       args: Optional[IptagMatchListArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def IptagMatchList(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       description: Optional[str] = None,
                       device: Optional[str] = None,
                       filter: Optional[str] = None,
                       folder: Optional[str] = None,
                       name: Optional[str] = None,
                       quarantine: Optional[bool] = None,
                       send_emails: Optional[Sequence[str]] = None,
                       send_https: Optional[Sequence[str]] = None,
                       send_snmptraps: Optional[Sequence[str]] = None,
                       send_syslogs: Optional[Sequence[str]] = None,
                       send_to_panorama: Optional[bool] = None,
                       snippet: Optional[str] = None)
    func NewIptagMatchList(ctx *Context, name string, args *IptagMatchListArgs, opts ...ResourceOption) (*IptagMatchList, error)
    public IptagMatchList(string name, IptagMatchListArgs? args = null, CustomResourceOptions? opts = null)
    public IptagMatchList(String name, IptagMatchListArgs args)
    public IptagMatchList(String name, IptagMatchListArgs args, CustomResourceOptions options)
    
    type: scm:IptagMatchList
    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 IptagMatchListArgs
    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 IptagMatchListArgs
    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 IptagMatchListArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args IptagMatchListArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args IptagMatchListArgs
    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 iptagMatchListResource = new Scm.IptagMatchList("iptagMatchListResource", new()
    {
        Description = "string",
        Device = "string",
        Filter = "string",
        Folder = "string",
        Name = "string",
        Quarantine = false,
        SendEmails = new[]
        {
            "string",
        },
        SendHttps = new[]
        {
            "string",
        },
        SendSnmptraps = new[]
        {
            "string",
        },
        SendSyslogs = new[]
        {
            "string",
        },
        SendToPanorama = false,
        Snippet = "string",
    });
    
    example, err := scm.NewIptagMatchList(ctx, "iptagMatchListResource", &scm.IptagMatchListArgs{
    	Description: pulumi.String("string"),
    	Device:      pulumi.String("string"),
    	Filter:      pulumi.String("string"),
    	Folder:      pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	Quarantine:  pulumi.Bool(false),
    	SendEmails: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SendHttps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SendSnmptraps: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SendSyslogs: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SendToPanorama: pulumi.Bool(false),
    	Snippet:        pulumi.String("string"),
    })
    
    var iptagMatchListResource = new IptagMatchList("iptagMatchListResource", IptagMatchListArgs.builder()
        .description("string")
        .device("string")
        .filter("string")
        .folder("string")
        .name("string")
        .quarantine(false)
        .sendEmails("string")
        .sendHttps("string")
        .sendSnmptraps("string")
        .sendSyslogs("string")
        .sendToPanorama(false)
        .snippet("string")
        .build());
    
    iptag_match_list_resource = scm.IptagMatchList("iptagMatchListResource",
        description="string",
        device="string",
        filter="string",
        folder="string",
        name="string",
        quarantine=False,
        send_emails=["string"],
        send_https=["string"],
        send_snmptraps=["string"],
        send_syslogs=["string"],
        send_to_panorama=False,
        snippet="string")
    
    const iptagMatchListResource = new scm.IptagMatchList("iptagMatchListResource", {
        description: "string",
        device: "string",
        filter: "string",
        folder: "string",
        name: "string",
        quarantine: false,
        sendEmails: ["string"],
        sendHttps: ["string"],
        sendSnmptraps: ["string"],
        sendSyslogs: ["string"],
        sendToPanorama: false,
        snippet: "string",
    });
    
    type: scm:IptagMatchList
    properties:
        description: string
        device: string
        filter: string
        folder: string
        name: string
        quarantine: false
        sendEmails:
            - string
        sendHttps:
            - string
        sendSnmptraps:
            - string
        sendSyslogs:
            - string
        sendToPanorama: false
        snippet: string
    

    IptagMatchList 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 IptagMatchList resource accepts the following input properties:

    Description string
    Description of the iptag match list entry
    Device string
    The device in which the resource is defined
    Filter string
    Filter of the iptag match list entry
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    Name of the iptag match list entry
    Quarantine bool
    Quarantine Flag of the iptag match list entry
    SendEmails List<string>
    Send Email List of the iptag match list entry
    SendHttps List<string>
    Send HTTP List of the iptag match list entry
    SendSnmptraps List<string>
    Send SNMP Trap List of the iptag match list entry
    SendSyslogs List<string>
    Send Sys Log List of the iptag match list entry
    SendToPanorama bool
    Send to Panorama Flag of the iptag match list entry
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Description string
    Description of the iptag match list entry
    Device string
    The device in which the resource is defined
    Filter string
    Filter of the iptag match list entry
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    Name of the iptag match list entry
    Quarantine bool
    Quarantine Flag of the iptag match list entry
    SendEmails []string
    Send Email List of the iptag match list entry
    SendHttps []string
    Send HTTP List of the iptag match list entry
    SendSnmptraps []string
    Send SNMP Trap List of the iptag match list entry
    SendSyslogs []string
    Send Sys Log List of the iptag match list entry
    SendToPanorama bool
    Send to Panorama Flag of the iptag match list entry
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    description String
    Description of the iptag match list entry
    device String
    The device in which the resource is defined
    filter String
    Filter of the iptag match list entry
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    Name of the iptag match list entry
    quarantine Boolean
    Quarantine Flag of the iptag match list entry
    sendEmails List<String>
    Send Email List of the iptag match list entry
    sendHttps List<String>
    Send HTTP List of the iptag match list entry
    sendSnmptraps List<String>
    Send SNMP Trap List of the iptag match list entry
    sendSyslogs List<String>
    Send Sys Log List of the iptag match list entry
    sendToPanorama Boolean
    Send to Panorama Flag of the iptag match list entry
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    description string
    Description of the iptag match list entry
    device string
    The device in which the resource is defined
    filter string
    Filter of the iptag match list entry
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    Name of the iptag match list entry
    quarantine boolean
    Quarantine Flag of the iptag match list entry
    sendEmails string[]
    Send Email List of the iptag match list entry
    sendHttps string[]
    Send HTTP List of the iptag match list entry
    sendSnmptraps string[]
    Send SNMP Trap List of the iptag match list entry
    sendSyslogs string[]
    Send Sys Log List of the iptag match list entry
    sendToPanorama boolean
    Send to Panorama Flag of the iptag match list entry
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    description str
    Description of the iptag match list entry
    device str
    The device in which the resource is defined
    filter str
    Filter of the iptag match list entry
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    Name of the iptag match list entry
    quarantine bool
    Quarantine Flag of the iptag match list entry
    send_emails Sequence[str]
    Send Email List of the iptag match list entry
    send_https Sequence[str]
    Send HTTP List of the iptag match list entry
    send_snmptraps Sequence[str]
    Send SNMP Trap List of the iptag match list entry
    send_syslogs Sequence[str]
    Send Sys Log List of the iptag match list entry
    send_to_panorama bool
    Send to Panorama Flag of the iptag match list entry
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    description String
    Description of the iptag match list entry
    device String
    The device in which the resource is defined
    filter String
    Filter of the iptag match list entry
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    Name of the iptag match list entry
    quarantine Boolean
    Quarantine Flag of the iptag match list entry
    sendEmails List<String>
    Send Email List of the iptag match list entry
    sendHttps List<String>
    Send HTTP List of the iptag match list entry
    sendSnmptraps List<String>
    Send SNMP Trap List of the iptag match list entry
    sendSyslogs List<String>
    Send Sys Log List of the iptag match list entry
    sendToPanorama Boolean
    Send to Panorama Flag of the iptag match list entry
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the IptagMatchList resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    The Terraform ID.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    The Terraform ID.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    The Terraform ID.

    Look up Existing IptagMatchList Resource

    Get an existing IptagMatchList 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?: IptagMatchListState, opts?: CustomResourceOptions): IptagMatchList
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            description: Optional[str] = None,
            device: Optional[str] = None,
            filter: Optional[str] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            quarantine: Optional[bool] = None,
            send_emails: Optional[Sequence[str]] = None,
            send_https: Optional[Sequence[str]] = None,
            send_snmptraps: Optional[Sequence[str]] = None,
            send_syslogs: Optional[Sequence[str]] = None,
            send_to_panorama: Optional[bool] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> IptagMatchList
    func GetIptagMatchList(ctx *Context, name string, id IDInput, state *IptagMatchListState, opts ...ResourceOption) (*IptagMatchList, error)
    public static IptagMatchList Get(string name, Input<string> id, IptagMatchListState? state, CustomResourceOptions? opts = null)
    public static IptagMatchList get(String name, Output<String> id, IptagMatchListState state, CustomResourceOptions options)
    resources:  _:    type: scm:IptagMatchList    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.
    The following state arguments are supported:
    Description string
    Description of the iptag match list entry
    Device string
    The device in which the resource is defined
    Filter string
    Filter of the iptag match list entry
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    Name of the iptag match list entry
    Quarantine bool
    Quarantine Flag of the iptag match list entry
    SendEmails List<string>
    Send Email List of the iptag match list entry
    SendHttps List<string>
    Send HTTP List of the iptag match list entry
    SendSnmptraps List<string>
    Send SNMP Trap List of the iptag match list entry
    SendSyslogs List<string>
    Send Sys Log List of the iptag match list entry
    SendToPanorama bool
    Send to Panorama Flag of the iptag match list entry
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    Description string
    Description of the iptag match list entry
    Device string
    The device in which the resource is defined
    Filter string
    Filter of the iptag match list entry
    Folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Name string
    Name of the iptag match list entry
    Quarantine bool
    Quarantine Flag of the iptag match list entry
    SendEmails []string
    Send Email List of the iptag match list entry
    SendHttps []string
    Send HTTP List of the iptag match list entry
    SendSnmptraps []string
    Send SNMP Trap List of the iptag match list entry
    SendSyslogs []string
    Send Sys Log List of the iptag match list entry
    SendToPanorama bool
    Send to Panorama Flag of the iptag match list entry
    Snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    Tfid string
    The Terraform ID.
    description String
    Description of the iptag match list entry
    device String
    The device in which the resource is defined
    filter String
    Filter of the iptag match list entry
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    Name of the iptag match list entry
    quarantine Boolean
    Quarantine Flag of the iptag match list entry
    sendEmails List<String>
    Send Email List of the iptag match list entry
    sendHttps List<String>
    Send HTTP List of the iptag match list entry
    sendSnmptraps List<String>
    Send SNMP Trap List of the iptag match list entry
    sendSyslogs List<String>
    Send Sys Log List of the iptag match list entry
    sendToPanorama Boolean
    Send to Panorama Flag of the iptag match list entry
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.
    description string
    Description of the iptag match list entry
    device string
    The device in which the resource is defined
    filter string
    Filter of the iptag match list entry
    folder string

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name string
    Name of the iptag match list entry
    quarantine boolean
    Quarantine Flag of the iptag match list entry
    sendEmails string[]
    Send Email List of the iptag match list entry
    sendHttps string[]
    Send HTTP List of the iptag match list entry
    sendSnmptraps string[]
    Send SNMP Trap List of the iptag match list entry
    sendSyslogs string[]
    Send Sys Log List of the iptag match list entry
    sendToPanorama boolean
    Send to Panorama Flag of the iptag match list entry
    snippet string

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid string
    The Terraform ID.
    description str
    Description of the iptag match list entry
    device str
    The device in which the resource is defined
    filter str
    Filter of the iptag match list entry
    folder str

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name str
    Name of the iptag match list entry
    quarantine bool
    Quarantine Flag of the iptag match list entry
    send_emails Sequence[str]
    Send Email List of the iptag match list entry
    send_https Sequence[str]
    Send HTTP List of the iptag match list entry
    send_snmptraps Sequence[str]
    Send SNMP Trap List of the iptag match list entry
    send_syslogs Sequence[str]
    Send Sys Log List of the iptag match list entry
    send_to_panorama bool
    Send to Panorama Flag of the iptag match list entry
    snippet str

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid str
    The Terraform ID.
    description String
    Description of the iptag match list entry
    device String
    The device in which the resource is defined
    filter String
    Filter of the iptag match list entry
    folder String

    The folder in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    name String
    Name of the iptag match list entry
    quarantine Boolean
    Quarantine Flag of the iptag match list entry
    sendEmails List<String>
    Send Email List of the iptag match list entry
    sendHttps List<String>
    Send HTTP List of the iptag match list entry
    sendSnmptraps List<String>
    Send SNMP Trap List of the iptag match list entry
    sendSyslogs List<String>
    Send Sys Log List of the iptag match list entry
    sendToPanorama Boolean
    Send to Panorama Flag of the iptag match list entry
    snippet String

    The snippet in which the resource is defined

    ℹ️ Note: You must specify exactly one of device, folder, and snippet.

    tfid String
    The Terraform ID.

    Import

    The following command can be used to import a resource not managed by Terraform:

    $ pulumi import scm:index/iptagMatchList:IptagMatchList example folder:::id
    

    or

    $ pulumi import scm:index/iptagMatchList:IptagMatchList example :snippet::id
    

    or

    $ pulumi import scm:index/iptagMatchList:IptagMatchList example ::device:id
    

    Note: Please provide just one of folder, snippet, or device for the import command.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Viewing docs for Strata Cloud Manager v1.0.5
    published on Saturday, Mar 21, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.