Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 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.getGeneralSettingList({
folder: "All",
});
export const fetchedSettingListSummary = {
countOfSettingsFetched: allSettings.then(allSettings => allSettings.total),
value: allSettings.then(allSettings => allSettings.datas?.[0]),
};
import pulumi
import pulumi_scm as scm
all_settings = scm.get_general_setting_list(folder="All")
pulumi.export("fetchedSettingListSummary", {
"countOfSettingsFetched": all_settings.total,
"value": all_settings.datas[0],
})
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.GetGeneralSettingList(ctx, &scm.GetGeneralSettingListArgs{
Folder: pulumi.StringRef("All"),
}, nil)
if err != nil {
return err
}
ctx.Export("fetchedSettingListSummary", pulumi.Map{
"countOfSettingsFetched": allSettings.Total,
"value": allSettings.Datas[0],
})
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var allSettings = Scm.GetGeneralSettingList.Invoke(new()
{
Folder = "All",
});
return new Dictionary<string, object?>
{
["fetchedSettingListSummary"] =
{
{ "countOfSettingsFetched", allSettings.Apply(getGeneralSettingListResult => getGeneralSettingListResult.Total) },
{ "value", allSettings.Apply(getGeneralSettingListResult => getGeneralSettingListResult.Datas[0]) },
},
};
});
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.GetGeneralSettingListArgs;
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.getGeneralSettingList(GetGeneralSettingListArgs.builder()
.folder("All")
.build());
ctx.export("fetchedSettingListSummary", Map.ofEntries(
Map.entry("countOfSettingsFetched", allSettings.total()),
Map.entry("value", allSettings.datas()[0])
));
}
}
variables:
allSettings:
fn::invoke:
function: scm:getGeneralSettingList
arguments:
folder: All
outputs:
# -----------------------------------------------------------------------------
# OUTPUT: Display the fetched list data
# -----------------------------------------------------------------------------
fetchedSettingListSummary:
countOfSettingsFetched: ${allSettings.total}
value: ${allSettings.datas[0]}
Using getGeneralSettingList
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 getGeneralSettingList(args: GetGeneralSettingListArgs, opts?: InvokeOptions): Promise<GetGeneralSettingListResult>
function getGeneralSettingListOutput(args: GetGeneralSettingListOutputArgs, opts?: InvokeOptions): Output<GetGeneralSettingListResult>def get_general_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) -> GetGeneralSettingListResult
def get_general_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[GetGeneralSettingListResult]func GetGeneralSettingList(ctx *Context, args *GetGeneralSettingListArgs, opts ...InvokeOption) (*GetGeneralSettingListResult, error)
func GetGeneralSettingListOutput(ctx *Context, args *GetGeneralSettingListOutputArgs, opts ...InvokeOption) GetGeneralSettingListResultOutput> Note: This function is named GetGeneralSettingList in the Go SDK.
public static class GetGeneralSettingList
{
public static Task<GetGeneralSettingListResult> InvokeAsync(GetGeneralSettingListArgs args, InvokeOptions? opts = null)
public static Output<GetGeneralSettingListResult> Invoke(GetGeneralSettingListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetGeneralSettingListResult> getGeneralSettingList(GetGeneralSettingListArgs args, InvokeOptions options)
public static Output<GetGeneralSettingListResult> getGeneralSettingList(GetGeneralSettingListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getGeneralSettingList:getGeneralSettingList
arguments:
# arguments dictionaryThe following arguments are supported:
getGeneralSettingList Result
The following output properties are available:
- Datas
List<Get
General Setting List Data> - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- 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
[]Get
General Setting List Data - The data.
- Id string
- The provider-assigned unique ID for this managed resource.
- Tfid string
- The Terraform ID.
- 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<Get
General Setting List Data> - The data.
- id String
- The provider-assigned unique ID for this managed resource.
- tfid String
- The Terraform ID.
- 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
Get
General Setting List Data[] - The data.
- id string
- The provider-assigned unique ID for this managed resource.
- tfid string
- The Terraform ID.
- 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[Get
General Setting List Data] - The data.
- id str
- The provider-assigned unique ID for this managed resource.
- tfid str
- The Terraform ID.
- 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
- The Terraform ID.
- 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
GetGeneralSettingListData
GetGeneralSettingListDataGeneral
- bool
- Force admins to acknowledge login banner
- Domain string
- DNS domain
- Geo
Location GetGeneral Setting List Data General Geo Location - Geographic coordinates
- Locale string
- Locale
- string
- Logon banner
- Setting
Get
General Setting List Data General Setting - Setting
- Ssl
Tls stringService Profile - SSL/TLS service profile
- Timezone string
- Timezone
- bool
- Force admins to acknowledge login banner
- Domain string
- DNS domain
- Geo
Location GetGeneral Setting List Data General Geo Location - Geographic coordinates
- Locale string
- Locale
- string
- Logon banner
- Setting
Get
General Setting List Data General Setting - Setting
- Ssl
Tls stringService Profile - SSL/TLS service profile
- Timezone string
- Timezone
- Boolean
- Force admins to acknowledge login banner
- domain String
- DNS domain
- geo
Location GetGeneral Setting List Data General Geo Location - Geographic coordinates
- locale String
- Locale
- String
- Logon banner
- setting
Get
General Setting List Data General Setting - Setting
- ssl
Tls StringService Profile - SSL/TLS service profile
- timezone String
- Timezone
- boolean
- Force admins to acknowledge login banner
- domain string
- DNS domain
- geo
Location GetGeneral Setting List Data General Geo Location - Geographic coordinates
- locale string
- Locale
- string
- Logon banner
- setting
Get
General Setting List Data General Setting - Setting
- ssl
Tls stringService Profile - SSL/TLS service profile
- timezone string
- Timezone
- bool
- Force admins to acknowledge login banner
- domain str
- DNS domain
- geo_
location GetGeneral Setting List Data General Geo Location - Geographic coordinates
- locale str
- Locale
- str
- Logon banner
- setting
Get
General Setting List Data General Setting - Setting
- ssl_
tls_ strservice_ profile - SSL/TLS service profile
- timezone str
- Timezone
- Boolean
- Force admins to acknowledge login banner
- domain String
- DNS domain
- geo
Location Property Map - Geographic coordinates
- locale String
- Locale
- String
- Logon banner
- setting Property Map
- Setting
- ssl
Tls StringService Profile - SSL/TLS service profile
- timezone String
- Timezone
GetGeneralSettingListDataGeneralGeoLocation
GetGeneralSettingListDataGeneralSetting
- Auto
Mac boolDetect - Use hypervisor assigned MAC addresses
- Fail
Open bool - Fail open
- Management
Get
General Setting List Data General Setting Management - Management
- Tunnel
Acceleration bool - Tunnel acceleration
- Auto
Mac boolDetect - Use hypervisor assigned MAC addresses
- Fail
Open bool - Fail open
- Management
Get
General Setting List Data General Setting Management - Management
- Tunnel
Acceleration bool - Tunnel acceleration
- auto
Mac BooleanDetect - Use hypervisor assigned MAC addresses
- fail
Open Boolean - Fail open
- management
Get
General Setting List Data General Setting Management - Management
- tunnel
Acceleration Boolean - Tunnel acceleration
- auto
Mac booleanDetect - Use hypervisor assigned MAC addresses
- fail
Open boolean - Fail open
- management
Get
General Setting List Data General Setting Management - Management
- tunnel
Acceleration boolean - Tunnel acceleration
- auto_
mac_ booldetect - Use hypervisor assigned MAC addresses
- fail_
open bool - Fail open
- management
Get
General Setting List Data General Setting Management - Management
- tunnel_
acceleration bool - Tunnel acceleration
- auto
Mac BooleanDetect - Use hypervisor assigned MAC addresses
- fail
Open Boolean - Fail open
- management Property Map
- Management
- tunnel
Acceleration Boolean - Tunnel acceleration
GetGeneralSettingListDataGeneralSettingManagement
- Auto
Acquire boolCommit Lock - Automatically acquire commit lock
- Enable
Certificate boolExpiration Check - Certificate expiration check
- Auto
Acquire boolCommit Lock - Automatically acquire commit lock
- Enable
Certificate boolExpiration Check - Certificate expiration check
- auto
Acquire BooleanCommit Lock - Automatically acquire commit lock
- enable
Certificate BooleanExpiration Check - Certificate expiration check
- auto
Acquire booleanCommit Lock - Automatically acquire commit lock
- enable
Certificate booleanExpiration Check - Certificate expiration check
- auto_
acquire_ boolcommit_ lock - Automatically acquire commit lock
- enable_
certificate_ boolexpiration_ check - Certificate expiration check
- auto
Acquire BooleanCommit Lock - Automatically acquire commit lock
- enable
Certificate BooleanExpiration Check - Certificate expiration check
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Viewing docs for Strata Cloud Manager v1.0.5
published on Saturday, Mar 21, 2026 by Pulumi
published on Saturday, Mar 21, 2026 by Pulumi
