1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. getServiceSettingList
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
scm logo
Strata Cloud Manager v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi

    Retrieves a listing of config items.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as scm from "@pulumi/scm";
    
    const allSettings = scm.getServiceSettingList({
        folder: "All",
    });
    export const fetchedSettingListSummary = {
        countOfSettingsFetched: allSettings.then(allSettings => allSettings.total),
        dnsSetting: allSettings.then(allSettings => allSettings.datas?.[0]?.services?.dnsSetting),
    };
    
    import pulumi
    import pulumi_scm as scm
    
    all_settings = scm.get_service_setting_list(folder="All")
    pulumi.export("fetchedSettingListSummary", {
        "countOfSettingsFetched": all_settings.total,
        "dnsSetting": all_settings.datas[0].services.dns_setting,
    })
    
    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 {
    		allSettings, err := scm.GetServiceSettingList(ctx, &scm.GetServiceSettingListArgs{
    			Folder: pulumi.StringRef("All"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("fetchedSettingListSummary", pulumi.Map{
    			"countOfSettingsFetched": allSettings.Total,
    			"dnsSetting":             allSettings.Datas[0].Services.DnsSetting,
    		})
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Scm = Pulumi.Scm;
    
    return await Deployment.RunAsync(() => 
    {
        var allSettings = Scm.GetServiceSettingList.Invoke(new()
        {
            Folder = "All",
        });
    
        return new Dictionary<string, object?>
        {
            ["fetchedSettingListSummary"] = 
            {
                { "countOfSettingsFetched", allSettings.Apply(getServiceSettingListResult => getServiceSettingListResult.Total) },
                { "dnsSetting", allSettings.Apply(getServiceSettingListResult => getServiceSettingListResult.Datas[0]?.Services?.DnsSetting) },
            },
        };
    });
    
    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.GetServiceSettingListArgs;
    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 allSettings = ScmFunctions.getServiceSettingList(GetServiceSettingListArgs.builder()
                .folder("All")
                .build());
    
            ctx.export("fetchedSettingListSummary", Map.ofEntries(
                Map.entry("countOfSettingsFetched", allSettings.total()),
                Map.entry("dnsSetting", allSettings.datas()[0].services().dnsSetting())
            ));
        }
    }
    
    variables:
      allSettings:
        fn::invoke:
          function: scm:getServiceSettingList
          arguments:
            folder: All
    outputs:
      # -----------------------------------------------------------------------------
      # OUTPUT: Display the fetched list data
      # -----------------------------------------------------------------------------
      fetchedSettingListSummary:
        countOfSettingsFetched: ${allSettings.total}
        dnsSetting: ${allSettings.datas[0].services.dnsSetting}
    

    Using getServiceSettingList

    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 getServiceSettingList(args: GetServiceSettingListArgs, opts?: InvokeOptions): Promise<GetServiceSettingListResult>
    function getServiceSettingListOutput(args: GetServiceSettingListOutputArgs, opts?: InvokeOptions): Output<GetServiceSettingListResult>
    def get_service_setting_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) -> GetServiceSettingListResult
    def get_service_setting_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[GetServiceSettingListResult]
    func GetServiceSettingList(ctx *Context, args *GetServiceSettingListArgs, opts ...InvokeOption) (*GetServiceSettingListResult, error)
    func GetServiceSettingListOutput(ctx *Context, args *GetServiceSettingListOutputArgs, opts ...InvokeOption) GetServiceSettingListResultOutput

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

    public static class GetServiceSettingList 
    {
        public static Task<GetServiceSettingListResult> InvokeAsync(GetServiceSettingListArgs args, InvokeOptions? opts = null)
        public static Output<GetServiceSettingListResult> Invoke(GetServiceSettingListInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetServiceSettingListResult> getServiceSettingList(GetServiceSettingListArgs args, InvokeOptions options)
    public static Output<GetServiceSettingListResult> getServiceSettingList(GetServiceSettingListArgs args, InvokeOptions options)
    
    fn::invoke:
      function: scm:index/getServiceSettingList:getServiceSettingList
      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.

    getServiceSettingList Result

    The following output properties are available:

    Datas List<GetServiceSettingListData>
    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 []GetServiceSettingListData
    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<GetServiceSettingListData>
    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 GetServiceSettingListData[]
    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[GetServiceSettingListData]
    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

    GetServiceSettingListData

    Device string
    The device in which the resource is defined
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource
    Services GetServiceSettingListDataServices
    Services
    Snippet string
    The snippet of the item.
    Tfid string
    Device string
    The device in which the resource is defined
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder of the item. Default: Shared.
    Id string
    UUID of the resource
    Services GetServiceSettingListDataServices
    Services
    Snippet string
    The snippet of the item.
    Tfid string
    device String
    The device in which the resource is defined
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource
    services GetServiceSettingListDataServices
    Services
    snippet String
    The snippet of the item.
    tfid String
    device string
    The device in which the resource is defined
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder of the item. Default: Shared.
    id string
    UUID of the resource
    services GetServiceSettingListDataServices
    Services
    snippet string
    The snippet of the item.
    tfid string
    device str
    The device in which the resource is defined
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder of the item. Default: Shared.
    id str
    UUID of the resource
    services GetServiceSettingListDataServices
    Services
    snippet str
    The snippet of the item.
    tfid str
    device String
    The device in which the resource is defined
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder of the item. Default: Shared.
    id String
    UUID of the resource
    services Property Map
    Services
    snippet String
    The snippet of the item.
    tfid String

    GetServiceSettingListDataServices

    DnsSetting GetServiceSettingListDataServicesDnsSetting
    Dns setting
    FqdnRefreshTime double
    Fqdn refresh time
    FqdnStaleEntryTimeout double
    Fqdn stale entry timeout
    InlineCloudProxy bool
    Inline cloud proxy
    LcaasUseProxy bool
    Lcaas use proxy
    NtpServers GetServiceSettingListDataServicesNtpServers
    Ntp servers
    SecureProxyPassword string
    Secure proxy password
    SecureProxyPort double
    Secure proxy port
    SecureProxyServer string
    Secure proxy server
    SecureProxyUser string
    Secure proxy user
    ServerVerification bool
    Server verification
    UpdateServer string
    Update server
    DnsSetting GetServiceSettingListDataServicesDnsSetting
    Dns setting
    FqdnRefreshTime float64
    Fqdn refresh time
    FqdnStaleEntryTimeout float64
    Fqdn stale entry timeout
    InlineCloudProxy bool
    Inline cloud proxy
    LcaasUseProxy bool
    Lcaas use proxy
    NtpServers GetServiceSettingListDataServicesNtpServers
    Ntp servers
    SecureProxyPassword string
    Secure proxy password
    SecureProxyPort float64
    Secure proxy port
    SecureProxyServer string
    Secure proxy server
    SecureProxyUser string
    Secure proxy user
    ServerVerification bool
    Server verification
    UpdateServer string
    Update server
    dnsSetting GetServiceSettingListDataServicesDnsSetting
    Dns setting
    fqdnRefreshTime Double
    Fqdn refresh time
    fqdnStaleEntryTimeout Double
    Fqdn stale entry timeout
    inlineCloudProxy Boolean
    Inline cloud proxy
    lcaasUseProxy Boolean
    Lcaas use proxy
    ntpServers GetServiceSettingListDataServicesNtpServers
    Ntp servers
    secureProxyPassword String
    Secure proxy password
    secureProxyPort Double
    Secure proxy port
    secureProxyServer String
    Secure proxy server
    secureProxyUser String
    Secure proxy user
    serverVerification Boolean
    Server verification
    updateServer String
    Update server
    dnsSetting GetServiceSettingListDataServicesDnsSetting
    Dns setting
    fqdnRefreshTime number
    Fqdn refresh time
    fqdnStaleEntryTimeout number
    Fqdn stale entry timeout
    inlineCloudProxy boolean
    Inline cloud proxy
    lcaasUseProxy boolean
    Lcaas use proxy
    ntpServers GetServiceSettingListDataServicesNtpServers
    Ntp servers
    secureProxyPassword string
    Secure proxy password
    secureProxyPort number
    Secure proxy port
    secureProxyServer string
    Secure proxy server
    secureProxyUser string
    Secure proxy user
    serverVerification boolean
    Server verification
    updateServer string
    Update server
    dns_setting GetServiceSettingListDataServicesDnsSetting
    Dns setting
    fqdn_refresh_time float
    Fqdn refresh time
    fqdn_stale_entry_timeout float
    Fqdn stale entry timeout
    inline_cloud_proxy bool
    Inline cloud proxy
    lcaas_use_proxy bool
    Lcaas use proxy
    ntp_servers GetServiceSettingListDataServicesNtpServers
    Ntp servers
    secure_proxy_password str
    Secure proxy password
    secure_proxy_port float
    Secure proxy port
    secure_proxy_server str
    Secure proxy server
    secure_proxy_user str
    Secure proxy user
    server_verification bool
    Server verification
    update_server str
    Update server
    dnsSetting Property Map
    Dns setting
    fqdnRefreshTime Number
    Fqdn refresh time
    fqdnStaleEntryTimeout Number
    Fqdn stale entry timeout
    inlineCloudProxy Boolean
    Inline cloud proxy
    lcaasUseProxy Boolean
    Lcaas use proxy
    ntpServers Property Map
    Ntp servers
    secureProxyPassword String
    Secure proxy password
    secureProxyPort Number
    Secure proxy port
    secureProxyServer String
    Secure proxy server
    secureProxyUser String
    Secure proxy user
    serverVerification Boolean
    Server verification
    updateServer String
    Update server

    GetServiceSettingListDataServicesDnsSetting

    DnsProxyObject string
    Dns proxy object
    Servers GetServiceSettingListDataServicesDnsSettingServers

    Servers

    ℹ️ Note: You must specify exactly one of dns_proxy_object and servers.

    DnsProxyObject string
    Dns proxy object
    Servers GetServiceSettingListDataServicesDnsSettingServers

    Servers

    ℹ️ Note: You must specify exactly one of dns_proxy_object and servers.

    dnsProxyObject String
    Dns proxy object
    servers GetServiceSettingListDataServicesDnsSettingServers

    Servers

    ℹ️ Note: You must specify exactly one of dns_proxy_object and servers.

    dnsProxyObject string
    Dns proxy object
    servers GetServiceSettingListDataServicesDnsSettingServers

    Servers

    ℹ️ Note: You must specify exactly one of dns_proxy_object and servers.

    dns_proxy_object str
    Dns proxy object
    servers GetServiceSettingListDataServicesDnsSettingServers

    Servers

    ℹ️ Note: You must specify exactly one of dns_proxy_object and servers.

    dnsProxyObject String
    Dns proxy object
    servers Property Map

    Servers

    ℹ️ Note: You must specify exactly one of dns_proxy_object and servers.

    GetServiceSettingListDataServicesDnsSettingServers

    Primary string
    Primary
    Secondary string
    Secondary
    Primary string
    Primary
    Secondary string
    Secondary
    primary String
    Primary
    secondary String
    Secondary
    primary string
    Primary
    secondary string
    Secondary
    primary str
    Primary
    secondary str
    Secondary
    primary String
    Primary
    secondary String
    Secondary

    GetServiceSettingListDataServicesNtpServers

    primaryNtpServer Property Map
    Primary ntp server
    secondaryNtpServer Property Map
    Secondary ntp server

    GetServiceSettingListDataServicesNtpServersPrimaryNtpServer

    authenticationType Property Map
    Authentication type
    ntpServerAddress String
    Ntp server address

    GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationType

    autokey Property Map
    Autokey
    none Property Map

    None

    ℹ️ Note: You must specify exactly one of autokey, none, and symmetric_key.

    symmetricKey Property Map

    Symmetric key

    ℹ️ Note: You must specify exactly one of autokey, none, and symmetric_key.

    GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKey

    algorithm Property Map
    Algorithm
    keyId Number
    Key id

    GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithm

    GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5

    AuthenticationKey string
    Authentication key
    AuthenticationKey string
    Authentication key
    authenticationKey String
    Authentication key
    authenticationKey string
    Authentication key
    authentication_key str
    Authentication key
    authenticationKey String
    Authentication key

    GetServiceSettingListDataServicesNtpServersPrimaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1

    AuthenticationKey string
    Authentication key
    AuthenticationKey string
    Authentication key
    authenticationKey String
    Authentication key
    authenticationKey string
    Authentication key
    authentication_key str
    Authentication key
    authenticationKey String
    Authentication key

    GetServiceSettingListDataServicesNtpServersSecondaryNtpServer

    authenticationType Property Map
    Authentication type
    ntpServerAddress String
    Ntp server address

    GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationType

    autokey Property Map
    Autokey
    none Property Map

    None

    ℹ️ Note: You must specify exactly one of autokey, none, and symmetric_key.

    symmetricKey Property Map

    Symmetric key

    ℹ️ Note: You must specify exactly one of autokey, none, and symmetric_key.

    GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKey

    algorithm Property Map
    Algorithm
    keyId Number
    Key id

    GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithm

    GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmMd5

    AuthenticationKey string
    Authentication key
    AuthenticationKey string
    Authentication key
    authenticationKey String
    Authentication key
    authenticationKey string
    Authentication key
    authentication_key str
    Authentication key
    authenticationKey String
    Authentication key

    GetServiceSettingListDataServicesNtpServersSecondaryNtpServerAuthenticationTypeSymmetricKeyAlgorithmSha1

    AuthenticationKey string
    Authentication key
    AuthenticationKey string
    Authentication key
    authenticationKey String
    Authentication key
    authenticationKey string
    Authentication key
    authentication_key str
    Authentication key
    authenticationKey String
    Authentication key

    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 v1.0.3 published on Thursday, Jan 22, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate