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.getTcpSettingList({
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_tcp_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.GetTcpSettingList(ctx, &scm.GetTcpSettingListArgs{
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.GetTcpSettingList.Invoke(new()
{
Folder = "All",
});
return new Dictionary<string, object?>
{
["fetchedSettingListSummary"] =
{
{ "countOfSettingsFetched", allSettings.Apply(getTcpSettingListResult => getTcpSettingListResult.Total) },
{ "value", allSettings.Apply(getTcpSettingListResult => getTcpSettingListResult.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.GetTcpSettingListArgs;
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.getTcpSettingList(GetTcpSettingListArgs.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:getTcpSettingList
arguments:
folder: All
outputs:
# -----------------------------------------------------------------------------
# OUTPUT: Display the fetched list data
# -----------------------------------------------------------------------------
fetchedSettingListSummary:
countOfSettingsFetched: ${allSettings.total}
value: ${allSettings.datas[0]}
Using getTcpSettingList
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 getTcpSettingList(args: GetTcpSettingListArgs, opts?: InvokeOptions): Promise<GetTcpSettingListResult>
function getTcpSettingListOutput(args: GetTcpSettingListOutputArgs, opts?: InvokeOptions): Output<GetTcpSettingListResult>def get_tcp_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) -> GetTcpSettingListResult
def get_tcp_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[GetTcpSettingListResult]func GetTcpSettingList(ctx *Context, args *GetTcpSettingListArgs, opts ...InvokeOption) (*GetTcpSettingListResult, error)
func GetTcpSettingListOutput(ctx *Context, args *GetTcpSettingListOutputArgs, opts ...InvokeOption) GetTcpSettingListResultOutput> Note: This function is named GetTcpSettingList in the Go SDK.
public static class GetTcpSettingList
{
public static Task<GetTcpSettingListResult> InvokeAsync(GetTcpSettingListArgs args, InvokeOptions? opts = null)
public static Output<GetTcpSettingListResult> Invoke(GetTcpSettingListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetTcpSettingListResult> getTcpSettingList(GetTcpSettingListArgs args, InvokeOptions options)
public static Output<GetTcpSettingListResult> getTcpSettingList(GetTcpSettingListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getTcpSettingList:getTcpSettingList
arguments:
# arguments dictionaryThe following arguments are supported:
getTcpSettingList Result
The following output properties are available:
- Datas
List<Get
Tcp 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
Tcp 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
Tcp 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
Tcp 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
Tcp 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
GetTcpSettingListData
GetTcpSettingListDataTcp
- Allow
Challenge boolAck - Allow arbitrary ACK in response to SYN?
- Asymmetric
Path string - Asymmetric path action
- Bypass
Exceed boolOo Queue - Forward segments exceeding TCP out-of-order queue?
- Check
Timestamp boolOption - Drop segments with null timestamp option?
- Drop
Zero boolFlag - Drop segments without flag?
- Siptcp
Cleartext stringProxy - SIP TCP cleartext action (
'0'= Always Off,'1'= Always Enabled,'2'= Automatically enable proxy when needed) - Strip
Mptcp boolOption - Strip MPTCP option?
- Tcp
Retransmit boolScan - TCP retransmit scan?
- Urgent
Data string - Urgent data flag action
- Allow
Challenge boolAck - Allow arbitrary ACK in response to SYN?
- Asymmetric
Path string - Asymmetric path action
- Bypass
Exceed boolOo Queue - Forward segments exceeding TCP out-of-order queue?
- Check
Timestamp boolOption - Drop segments with null timestamp option?
- Drop
Zero boolFlag - Drop segments without flag?
- Siptcp
Cleartext stringProxy - SIP TCP cleartext action (
'0'= Always Off,'1'= Always Enabled,'2'= Automatically enable proxy when needed) - Strip
Mptcp boolOption - Strip MPTCP option?
- Tcp
Retransmit boolScan - TCP retransmit scan?
- Urgent
Data string - Urgent data flag action
- allow
Challenge BooleanAck - Allow arbitrary ACK in response to SYN?
- asymmetric
Path String - Asymmetric path action
- bypass
Exceed BooleanOo Queue - Forward segments exceeding TCP out-of-order queue?
- check
Timestamp BooleanOption - Drop segments with null timestamp option?
- drop
Zero BooleanFlag - Drop segments without flag?
- siptcp
Cleartext StringProxy - SIP TCP cleartext action (
'0'= Always Off,'1'= Always Enabled,'2'= Automatically enable proxy when needed) - strip
Mptcp BooleanOption - Strip MPTCP option?
- tcp
Retransmit BooleanScan - TCP retransmit scan?
- urgent
Data String - Urgent data flag action
- allow
Challenge booleanAck - Allow arbitrary ACK in response to SYN?
- asymmetric
Path string - Asymmetric path action
- bypass
Exceed booleanOo Queue - Forward segments exceeding TCP out-of-order queue?
- check
Timestamp booleanOption - Drop segments with null timestamp option?
- drop
Zero booleanFlag - Drop segments without flag?
- siptcp
Cleartext stringProxy - SIP TCP cleartext action (
'0'= Always Off,'1'= Always Enabled,'2'= Automatically enable proxy when needed) - strip
Mptcp booleanOption - Strip MPTCP option?
- tcp
Retransmit booleanScan - TCP retransmit scan?
- urgent
Data string - Urgent data flag action
- allow_
challenge_ boolack - Allow arbitrary ACK in response to SYN?
- asymmetric_
path str - Asymmetric path action
- bypass_
exceed_ booloo_ queue - Forward segments exceeding TCP out-of-order queue?
- check_
timestamp_ booloption - Drop segments with null timestamp option?
- drop_
zero_ boolflag - Drop segments without flag?
- siptcp_
cleartext_ strproxy - SIP TCP cleartext action (
'0'= Always Off,'1'= Always Enabled,'2'= Automatically enable proxy when needed) - strip_
mptcp_ booloption - Strip MPTCP option?
- tcp_
retransmit_ boolscan - TCP retransmit scan?
- urgent_
data str - Urgent data flag action
- allow
Challenge BooleanAck - Allow arbitrary ACK in response to SYN?
- asymmetric
Path String - Asymmetric path action
- bypass
Exceed BooleanOo Queue - Forward segments exceeding TCP out-of-order queue?
- check
Timestamp BooleanOption - Drop segments with null timestamp option?
- drop
Zero BooleanFlag - Drop segments without flag?
- siptcp
Cleartext StringProxy - SIP TCP cleartext action (
'0'= Always Off,'1'= Always Enabled,'2'= Automatically enable proxy when needed) - strip
Mptcp BooleanOption - Strip MPTCP option?
- tcp
Retransmit BooleanScan - TCP retransmit scan?
- urgent
Data String - Urgent data flag action
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
