1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getApplicationList
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    // Fetch a list of all application objects.
    // This data source will call the "List" API endpoint.
    const allApps = scm.getApplicationList({
        folder: "All",
    });
    export const applicationsListRaw = allApps.then(allApps => allApps.datas);
    
    import pulumi
    import pulumi_scm as scm
    
    # Fetch a list of all application objects.
    # This data source will call the "List" API endpoint.
    all_apps = scm.get_application_list(folder="All")
    pulumi.export("applicationsListRaw", all_apps.datas)
    
    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 {
    		// Fetch a list of all application objects.
    		// This data source will call the "List" API endpoint.
    		allApps, err := scm.GetApplicationList(ctx, &scm.GetApplicationListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("applicationsListRaw", allApps.Datas)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        // Fetch a list of all application objects.
        // This data source will call the "List" API endpoint.
        var allApps = Scm.GetApplicationList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["applicationsListRaw"] = allApps.Apply(getApplicationListResult => getApplicationListResult.Datas),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.scm.ScmFunctions;
    import com.pulumi.scm.inputs.GetApplicationListArgs;
    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) {
            // Fetch a list of all application objects.
            // This data source will call the "List" API endpoint.
            final var allApps = ScmFunctions.getApplicationList(GetApplicationListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("applicationsListRaw", allApps.datas());
        }
    }
    
    variables:
      # Fetch a list of all application objects.
      # This data source will call the "List" API endpoint.
      allApps:
        fn::invoke:
          function: scm:getApplicationList
          arguments:
            folder: All
    outputs:
      # Output the raw list of all application objects
      applicationsListRaw: ${allApps.datas}
    

    Using getApplicationList

    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 getApplicationList(args: GetApplicationListArgs, opts?: InvokeOptions): Promise<GetApplicationListResult>
    function getApplicationListOutput(args: GetApplicationListOutputArgs, opts?: InvokeOptions): Output<GetApplicationListResult>
    def get_application_list(device: Optional[str] = None,
                             folder: Optional[str] = None,
                             limit: Optional[int] = None,
                             name: Optional[str] = None,
                             offset: Optional[int] = None,
                             snippet: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetApplicationListResult
    def get_application_list_output(device: Optional[pulumi.Input[str]] = None,
                             folder: Optional[pulumi.Input[str]] = None,
                             limit: Optional[pulumi.Input[int]] = None,
                             name: Optional[pulumi.Input[str]] = None,
                             offset: Optional[pulumi.Input[int]] = None,
                             snippet: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetApplicationListResult]
    func GetApplicationList(ctx *Context, args *GetApplicationListArgs, opts ...InvokeOption) (*GetApplicationListResult, error)
    func GetApplicationListOutput(ctx *Context, args *GetApplicationListOutputArgs, opts ...InvokeOption) GetApplicationListResultOutput

    > Note: This function is named GetApplicationList in the Go SDK.

    public static class GetApplicationList 
    {
        public static Task<GetApplicationListResult> InvokeAsync(GetApplicationListArgs args, InvokeOptions? opts = null)
        public static Output<GetApplicationListResult> Invoke(GetApplicationListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetApplicationListResult> getApplicationList(GetApplicationListArgs args, InvokeOptions options)
    public static Output<GetApplicationListResult> getApplicationList(GetApplicationListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getApplicationList:getApplicationList
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    getApplicationList Result

    The following output properties are available:

    Datas List<GetApplicationListData>
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    Datas []GetApplicationListData
    The data.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    Total int
    The total number of items.
    Device string
    The device of the item.
    Folder string
    The folder of the item. Default: Shared.
    Limit int
    The max number of items to return. Default: 200.
    Name string
    The name of the item.
    Offset int
    The offset of the first item to return.
    Snippet string
    The snippet of the item.
    datas List<GetApplicationListData>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Integer
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Integer
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Integer
    The offset of the first item to return.
    snippet String
    The snippet of the item.
    datas GetApplicationListData[]
    The data.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    total number
    The total number of items.
    device string
    The device of the item.
    folder string
    The folder of the item. Default: Shared.
    limit number
    The max number of items to return. Default: 200.
    name string
    The name of the item.
    offset number
    The offset of the first item to return.
    snippet string
    The snippet of the item.
    datas Sequence[GetApplicationListData]
    The data.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    total int
    The total number of items.
    device str
    The device of the item.
    folder str
    The folder of the item. Default: Shared.
    limit int
    The max number of items to return. Default: 200.
    name str
    The name of the item.
    offset int
    The offset of the first item to return.
    snippet str
    The snippet of the item.
    datas List<Property Map>
    The data.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    total Number
    The total number of items.
    device String
    The device of the item.
    folder String
    The folder of the item. Default: Shared.
    limit Number
    The max number of items to return. Default: 200.
    name String
    The name of the item.
    offset Number
    The offset of the first item to return.
    snippet String
    The snippet of the item.

    Supporting Types

    GetApplicationListData

    AbleToTransferFile bool
    Able to transfer file
    AlgDisableCapability string
    Alg disable capability
    Category string
    Category
    ConsumeBigBandwidth bool
    Consume big bandwidth
    DataIdent bool
    Data ident
    Default GetApplicationListDataDefault
    Default
    Description string
    Description
    Device string
    The device in which the resource is defined
    EvasiveBehavior bool
    Evasive behavior
    FileTypeIdent bool
    File type ident
    Folder string
    The folder in which the resource is defined
    HasKnownVulnerability bool
    Has known vulnerability
    Id string
    The UUID of the application
    Name string
    The name of the application
    NoAppidCaching bool
    No appid caching
    ParentApp string
    Parent app
    PervasiveUse bool
    Pervasive use
    ProneToMisuse bool
    Prone to misuse
    Risk string
    Risk
    Signatures List<GetApplicationListDataSignature>
    Signature
    Snippet string
    The snippet in which the resource is defined
    Subcategory string
    Subcategory
    TcpHalfClosedTimeout int
    timeout for half-close session in seconds
    TcpTimeWaitTimeout int
    timeout for session in time_wait state in seconds
    TcpTimeout int
    timeout in seconds
    Technology string
    Technology
    Tfid string
    Timeout int
    timeout in seconds
    TunnelApplications bool
    Tunnel applications
    TunnelOtherApplication bool
    Tunnel other application
    UdpTimeout int
    timeout in seconds
    UsedByMalware bool
    Used by malware
    VirusIdent bool
    Virus ident
    AbleToTransferFile bool
    Able to transfer file
    AlgDisableCapability string
    Alg disable capability
    Category string
    Category
    ConsumeBigBandwidth bool
    Consume big bandwidth
    DataIdent bool
    Data ident
    Default GetApplicationListDataDefault
    Default
    Description string
    Description
    Device string
    The device in which the resource is defined
    EvasiveBehavior bool
    Evasive behavior
    FileTypeIdent bool
    File type ident
    Folder string
    The folder in which the resource is defined
    HasKnownVulnerability bool
    Has known vulnerability
    Id string
    The UUID of the application
    Name string
    The name of the application
    NoAppidCaching bool
    No appid caching
    ParentApp string
    Parent app
    PervasiveUse bool
    Pervasive use
    ProneToMisuse bool
    Prone to misuse
    Risk string
    Risk
    Signatures []GetApplicationListDataSignature
    Signature
    Snippet string
    The snippet in which the resource is defined
    Subcategory string
    Subcategory
    TcpHalfClosedTimeout int
    timeout for half-close session in seconds
    TcpTimeWaitTimeout int
    timeout for session in time_wait state in seconds
    TcpTimeout int
    timeout in seconds
    Technology string
    Technology
    Tfid string
    Timeout int
    timeout in seconds
    TunnelApplications bool
    Tunnel applications
    TunnelOtherApplication bool
    Tunnel other application
    UdpTimeout int
    timeout in seconds
    UsedByMalware bool
    Used by malware
    VirusIdent bool
    Virus ident
    ableToTransferFile Boolean
    Able to transfer file
    algDisableCapability String
    Alg disable capability
    category String
    Category
    consumeBigBandwidth Boolean
    Consume big bandwidth
    dataIdent Boolean
    Data ident
    default_ GetApplicationListDataDefault
    Default
    description String
    Description
    device String
    The device in which the resource is defined
    evasiveBehavior Boolean
    Evasive behavior
    fileTypeIdent Boolean
    File type ident
    folder String
    The folder in which the resource is defined
    hasKnownVulnerability Boolean
    Has known vulnerability
    id String
    The UUID of the application
    name String
    The name of the application
    noAppidCaching Boolean
    No appid caching
    parentApp String
    Parent app
    pervasiveUse Boolean
    Pervasive use
    proneToMisuse Boolean
    Prone to misuse
    risk String
    Risk
    signatures List<GetApplicationListDataSignature>
    Signature
    snippet String
    The snippet in which the resource is defined
    subcategory String
    Subcategory
    tcpHalfClosedTimeout Integer
    timeout for half-close session in seconds
    tcpTimeWaitTimeout Integer
    timeout for session in time_wait state in seconds
    tcpTimeout Integer
    timeout in seconds
    technology String
    Technology
    tfid String
    timeout Integer
    timeout in seconds
    tunnelApplications Boolean
    Tunnel applications
    tunnelOtherApplication Boolean
    Tunnel other application
    udpTimeout Integer
    timeout in seconds
    usedByMalware Boolean
    Used by malware
    virusIdent Boolean
    Virus ident
    ableToTransferFile boolean
    Able to transfer file
    algDisableCapability string
    Alg disable capability
    category string
    Category
    consumeBigBandwidth boolean
    Consume big bandwidth
    dataIdent boolean
    Data ident
    default GetApplicationListDataDefault
    Default
    description string
    Description
    device string
    The device in which the resource is defined
    evasiveBehavior boolean
    Evasive behavior
    fileTypeIdent boolean
    File type ident
    folder string
    The folder in which the resource is defined
    hasKnownVulnerability boolean
    Has known vulnerability
    id string
    The UUID of the application
    name string
    The name of the application
    noAppidCaching boolean
    No appid caching
    parentApp string
    Parent app
    pervasiveUse boolean
    Pervasive use
    proneToMisuse boolean
    Prone to misuse
    risk string
    Risk
    signatures GetApplicationListDataSignature[]
    Signature
    snippet string
    The snippet in which the resource is defined
    subcategory string
    Subcategory
    tcpHalfClosedTimeout number
    timeout for half-close session in seconds
    tcpTimeWaitTimeout number
    timeout for session in time_wait state in seconds
    tcpTimeout number
    timeout in seconds
    technology string
    Technology
    tfid string
    timeout number
    timeout in seconds
    tunnelApplications boolean
    Tunnel applications
    tunnelOtherApplication boolean
    Tunnel other application
    udpTimeout number
    timeout in seconds
    usedByMalware boolean
    Used by malware
    virusIdent boolean
    Virus ident
    able_to_transfer_file bool
    Able to transfer file
    alg_disable_capability str
    Alg disable capability
    category str
    Category
    consume_big_bandwidth bool
    Consume big bandwidth
    data_ident bool
    Data ident
    default GetApplicationListDataDefault
    Default
    description str
    Description
    device str
    The device in which the resource is defined
    evasive_behavior bool
    Evasive behavior
    file_type_ident bool
    File type ident
    folder str
    The folder in which the resource is defined
    has_known_vulnerability bool
    Has known vulnerability
    id str
    The UUID of the application
    name str
    The name of the application
    no_appid_caching bool
    No appid caching
    parent_app str
    Parent app
    pervasive_use bool
    Pervasive use
    prone_to_misuse bool
    Prone to misuse
    risk str
    Risk
    signatures Sequence[GetApplicationListDataSignature]
    Signature
    snippet str
    The snippet in which the resource is defined
    subcategory str
    Subcategory
    tcp_half_closed_timeout int
    timeout for half-close session in seconds
    tcp_time_wait_timeout int
    timeout for session in time_wait state in seconds
    tcp_timeout int
    timeout in seconds
    technology str
    Technology
    tfid str
    timeout int
    timeout in seconds
    tunnel_applications bool
    Tunnel applications
    tunnel_other_application bool
    Tunnel other application
    udp_timeout int
    timeout in seconds
    used_by_malware bool
    Used by malware
    virus_ident bool
    Virus ident
    ableToTransferFile Boolean
    Able to transfer file
    algDisableCapability String
    Alg disable capability
    category String
    Category
    consumeBigBandwidth Boolean
    Consume big bandwidth
    dataIdent Boolean
    Data ident
    default Property Map
    Default
    description String
    Description
    device String
    The device in which the resource is defined
    evasiveBehavior Boolean
    Evasive behavior
    fileTypeIdent Boolean
    File type ident
    folder String
    The folder in which the resource is defined
    hasKnownVulnerability Boolean
    Has known vulnerability
    id String
    The UUID of the application
    name String
    The name of the application
    noAppidCaching Boolean
    No appid caching
    parentApp String
    Parent app
    pervasiveUse Boolean
    Pervasive use
    proneToMisuse Boolean
    Prone to misuse
    risk String
    Risk
    signatures List<Property Map>
    Signature
    snippet String
    The snippet in which the resource is defined
    subcategory String
    Subcategory
    tcpHalfClosedTimeout Number
    timeout for half-close session in seconds
    tcpTimeWaitTimeout Number
    timeout for session in time_wait state in seconds
    tcpTimeout Number
    timeout in seconds
    technology String
    Technology
    tfid String
    timeout Number
    timeout in seconds
    tunnelApplications Boolean
    Tunnel applications
    tunnelOtherApplication Boolean
    Tunnel other application
    udpTimeout Number
    timeout in seconds
    usedByMalware Boolean
    Used by malware
    virusIdent Boolean
    Virus ident

    GetApplicationListDataDefault

    identByIcmp6Type Property Map
    Ident by icmp6 type
    identByIcmpType Property Map
    Ident by icmp type
    identByIpProtocol String
    Ident by ip protocol
    ports List<String>
    Port

    GetApplicationListDataDefaultIdentByIcmp6Type

    Code string
    Code
    Type string
    Type
    Code string
    Code
    Type string
    Type
    code String
    Code
    type String
    Type
    code string
    Code
    type string
    Type
    code str
    Code
    type str
    Type
    code String
    Code
    type String
    Type

    GetApplicationListDataDefaultIdentByIcmpType

    Code string
    Code
    Type string
    Type
    Code string
    Code
    Type string
    Type
    code String
    Code
    type String
    Type
    code string
    Code
    type string
    Type
    code str
    Code
    type str
    Type
    code String
    Code
    type String
    Type

    GetApplicationListDataSignature

    AndConditions List<GetApplicationListDataSignatureAndCondition>
    And condition
    Comment string
    Comment
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    OrderFree bool
    Order free
    Scope string
    Scope
    AndConditions []GetApplicationListDataSignatureAndCondition
    And condition
    Comment string
    Comment
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    OrderFree bool
    Order free
    Scope string
    Scope
    andConditions List<GetApplicationListDataSignatureAndCondition>
    And condition
    comment String
    Comment
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    orderFree Boolean
    Order free
    scope String
    Scope
    andConditions GetApplicationListDataSignatureAndCondition[]
    And condition
    comment string
    Comment
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    orderFree boolean
    Order free
    scope string
    Scope
    and_conditions Sequence[GetApplicationListDataSignatureAndCondition]
    And condition
    comment str
    Comment
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]
    order_free bool
    Order free
    scope str
    Scope
    andConditions List<Property Map>
    And condition
    comment String
    Comment
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    orderFree Boolean
    Order free
    scope String
    Scope

    GetApplicationListDataSignatureAndCondition

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    OrConditions List<GetApplicationListDataSignatureAndConditionOrCondition>
    Or condition
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    OrConditions []GetApplicationListDataSignatureAndConditionOrCondition
    Or condition
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    orConditions List<GetApplicationListDataSignatureAndConditionOrCondition>
    Or condition
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    orConditions GetApplicationListDataSignatureAndConditionOrCondition[]
    Or condition
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    orConditions List<Property Map>
    Or condition

    GetApplicationListDataSignatureAndConditionOrCondition

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Operator GetApplicationListDataSignatureAndConditionOrConditionOperator
    Operator
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Operator GetApplicationListDataSignatureAndConditionOrConditionOperator
    Operator
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    operator GetApplicationListDataSignatureAndConditionOrConditionOperator
    Operator
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    operator GetApplicationListDataSignatureAndConditionOrConditionOperator
    Operator
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    operator Property Map
    Operator

    GetApplicationListDataSignatureAndConditionOrConditionOperator

    GetApplicationListDataSignatureAndConditionOrConditionOperatorEqualTo

    Context string
    Context
    Mask string
    4-byte hex value
    Position string
    Position
    Value string
    Value
    Context string
    Context
    Mask string
    4-byte hex value
    Position string
    Position
    Value string
    Value
    context String
    Context
    mask String
    4-byte hex value
    position String
    Position
    value String
    Value
    context string
    Context
    mask string
    4-byte hex value
    position string
    Position
    value string
    Value
    context str
    Context
    mask str
    4-byte hex value
    position str
    Position
    value str
    Value
    context String
    Context
    mask String
    4-byte hex value
    position String
    Position
    value String
    Value

    GetApplicationListDataSignatureAndConditionOrConditionOperatorGreaterThan

    context String
    Context
    qualifiers List<Property Map>
    Qualifier
    value Number
    Value

    GetApplicationListDataSignatureAndConditionOrConditionOperatorGreaterThanQualifier

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Value string
    Value
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Value string
    Value
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    value String
    Value
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    value string
    Value
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]
    value str
    Value
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    value String
    Value

    GetApplicationListDataSignatureAndConditionOrConditionOperatorLessThan

    context String
    Context
    qualifiers List<Property Map>
    Qualifier
    value Number
    Value

    GetApplicationListDataSignatureAndConditionOrConditionOperatorLessThanQualifier

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Value string
    Value
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Value string
    Value
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    value String
    Value
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    value string
    Value
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]
    value str
    Value
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    value String
    Value

    GetApplicationListDataSignatureAndConditionOrConditionOperatorPatternMatch

    context String
    Context
    pattern String
    Pattern
    qualifiers List<Property Map>
    Qualifier

    GetApplicationListDataSignatureAndConditionOrConditionOperatorPatternMatchQualifier

    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Value string
    Value
    Name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    Value string
    Value
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    value String
    Value
    name string
    Alphanumeric string [ 0-9a-zA-Z._-]
    value string
    Value
    name str
    Alphanumeric string [ 0-9a-zA-Z._-]
    value str
    Value
    name String
    Alphanumeric string [ 0-9a-zA-Z._-]
    value String
    Value

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate