Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
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";
// Data source to retrieve a list of IKE Gateways.
// You can filter the list by folder, snippet, or device.
// This example retrieves all gateways in the "Shared" folder.
const exampleListIkeGatewayDs = scm.getIkeGatewayList({
folder: "Remote Networks",
});
export const ikeGatewayListTotal = exampleListIkeGatewayDs.then(exampleListIkeGatewayDs => exampleListIkeGatewayDs.total);
export const ikeGatewayListData = exampleListIkeGatewayDs.then(exampleListIkeGatewayDs => exampleListIkeGatewayDs.datas);
import pulumi
import pulumi_scm as scm
# Data source to retrieve a list of IKE Gateways.
# You can filter the list by folder, snippet, or device.
# This example retrieves all gateways in the "Shared" folder.
example_list_ike_gateway_ds = scm.get_ike_gateway_list(folder="Remote Networks")
pulumi.export("ikeGatewayListTotal", example_list_ike_gateway_ds.total)
pulumi.export("ikeGatewayListData", example_list_ike_gateway_ds.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 {
// Data source to retrieve a list of IKE Gateways.
// You can filter the list by folder, snippet, or device.
// This example retrieves all gateways in the "Shared" folder.
exampleListIkeGatewayDs, err := scm.GetIkeGatewayList(ctx, &scm.GetIkeGatewayListArgs{
Folder: pulumi.StringRef("Remote Networks"),
}, nil)
if err != nil {
return err
}
ctx.Export("ikeGatewayListTotal", exampleListIkeGatewayDs.Total)
ctx.Export("ikeGatewayListData", exampleListIkeGatewayDs.Datas)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
// Data source to retrieve a list of IKE Gateways.
// You can filter the list by folder, snippet, or device.
// This example retrieves all gateways in the "Shared" folder.
var exampleListIkeGatewayDs = Scm.GetIkeGatewayList.Invoke(new()
{
Folder = "Remote Networks",
});
return new Dictionary<string, object?>
{
["ikeGatewayListTotal"] = exampleListIkeGatewayDs.Apply(getIkeGatewayListResult => getIkeGatewayListResult.Total),
["ikeGatewayListData"] = exampleListIkeGatewayDs.Apply(getIkeGatewayListResult => getIkeGatewayListResult.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.GetIkeGatewayListArgs;
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) {
// Data source to retrieve a list of IKE Gateways.
// You can filter the list by folder, snippet, or device.
// This example retrieves all gateways in the "Shared" folder.
final var exampleListIkeGatewayDs = ScmFunctions.getIkeGatewayList(GetIkeGatewayListArgs.builder()
.folder("Remote Networks")
.build());
ctx.export("ikeGatewayListTotal", exampleListIkeGatewayDs.total());
ctx.export("ikeGatewayListData", exampleListIkeGatewayDs.datas());
}
}
variables:
# /**
# * Data source to retrieve a list of IKE Gateways.
# * You can filter the list by folder, snippet, or device.
# * This example retrieves all gateways in the "Shared" folder.
# */
exampleListIkeGatewayDs:
fn::invoke:
function: scm:getIkeGatewayList
arguments:
folder: Remote Networks
outputs:
# /**
# * Output the total number of IKE Gateways found by the data source.
# */
ikeGatewayListTotal: ${exampleListIkeGatewayDs.total}
# /**
# * Output the list of data for all retrieved IKE Gateways.
# * This provides the configuration details for each gateway in the list.
# * $ terraform output -json ike_gateway_list_data can help you view the details.
# */
ikeGatewayListData: ${exampleListIkeGatewayDs.datas}
Using getIkeGatewayList
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 getIkeGatewayList(args: GetIkeGatewayListArgs, opts?: InvokeOptions): Promise<GetIkeGatewayListResult>
function getIkeGatewayListOutput(args: GetIkeGatewayListOutputArgs, opts?: InvokeOptions): Output<GetIkeGatewayListResult>def get_ike_gateway_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) -> GetIkeGatewayListResult
def get_ike_gateway_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[GetIkeGatewayListResult]func GetIkeGatewayList(ctx *Context, args *GetIkeGatewayListArgs, opts ...InvokeOption) (*GetIkeGatewayListResult, error)
func GetIkeGatewayListOutput(ctx *Context, args *GetIkeGatewayListOutputArgs, opts ...InvokeOption) GetIkeGatewayListResultOutput> Note: This function is named GetIkeGatewayList in the Go SDK.
public static class GetIkeGatewayList
{
public static Task<GetIkeGatewayListResult> InvokeAsync(GetIkeGatewayListArgs args, InvokeOptions? opts = null)
public static Output<GetIkeGatewayListResult> Invoke(GetIkeGatewayListInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetIkeGatewayListResult> getIkeGatewayList(GetIkeGatewayListArgs args, InvokeOptions options)
public static Output<GetIkeGatewayListResult> getIkeGatewayList(GetIkeGatewayListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getIkeGatewayList:getIkeGatewayList
arguments:
# arguments dictionaryThe following arguments are supported:
getIkeGatewayList Result
The following output properties are available:
- Datas
List<Get
Ike Gateway List Data> - 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
[]Get
Ike Gateway List Data - 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<Get
Ike Gateway List Data> - 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
Get
Ike Gateway List Data[] - 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[Get
Ike Gateway List Data] - 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
GetIkeGatewayListData
- Authentication
Get
Ike Gateway List Data Authentication - Authentication
- Device string
- The device in which the resource is defined
- Encrypted
Values Dictionary<string, string> - Map of sensitive values returned from the API.
- Folder string
- The folder in which the resource is defined
- Id string
- UUID of the resource
- Local
Address GetIke Gateway List Data Local Address - Local address
- Local
Id GetIke Gateway List Data Local Id - Local id
- Name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]
- Peer
Address GetIke Gateway List Data Peer Address - Peer address
- Peer
Id GetIke Gateway List Data Peer Id - Peer id
- Protocol
Get
Ike Gateway List Data Protocol - Protocol
- Protocol
Common GetIke Gateway List Data Protocol Common - Protocol common
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Authentication
Get
Ike Gateway List Data Authentication - Authentication
- Device string
- The device in which the resource is defined
- Encrypted
Values map[string]string - Map of sensitive values returned from the API.
- Folder string
- The folder in which the resource is defined
- Id string
- UUID of the resource
- Local
Address GetIke Gateway List Data Local Address - Local address
- Local
Id GetIke Gateway List Data Local Id - Local id
- Name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]
- Peer
Address GetIke Gateway List Data Peer Address - Peer address
- Peer
Id GetIke Gateway List Data Peer Id - Peer id
- Protocol
Get
Ike Gateway List Data Protocol - Protocol
- Protocol
Common GetIke Gateway List Data Protocol Common - Protocol common
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- authentication
Get
Ike Gateway List Data Authentication - Authentication
- device String
- The device in which the resource is defined
- encrypted
Values Map<String,String> - Map of sensitive values returned from the API.
- folder String
- The folder in which the resource is defined
- id String
- UUID of the resource
- local
Address GetIke Gateway List Data Local Address - Local address
- local
Id GetIke Gateway List Data Local Id - Local id
- name String
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]
- peer
Address GetIke Gateway List Data Peer Address - Peer address
- peer
Id GetIke Gateway List Data Peer Id - Peer id
- protocol
Get
Ike Gateway List Data Protocol - Protocol
- protocol
Common GetIke Gateway List Data Protocol Common - Protocol common
- snippet String
- The snippet in which the resource is defined
- tfid String
- authentication
Get
Ike Gateway List Data Authentication - Authentication
- device string
- The device in which the resource is defined
- encrypted
Values {[key: string]: string} - Map of sensitive values returned from the API.
- folder string
- The folder in which the resource is defined
- id string
- UUID of the resource
- local
Address GetIke Gateway List Data Local Address - Local address
- local
Id GetIke Gateway List Data Local Id - Local id
- name string
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]
- peer
Address GetIke Gateway List Data Peer Address - Peer address
- peer
Id GetIke Gateway List Data Peer Id - Peer id
- protocol
Get
Ike Gateway List Data Protocol - Protocol
- protocol
Common GetIke Gateway List Data Protocol Common - Protocol common
- snippet string
- The snippet in which the resource is defined
- tfid string
- authentication
Get
Ike Gateway List Data Authentication - Authentication
- 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 in which the resource is defined
- id str
- UUID of the resource
- local_
address GetIke Gateway List Data Local Address - Local address
- local_
id GetIke Gateway List Data Local Id - Local id
- name str
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]
- peer_
address GetIke Gateway List Data Peer Address - Peer address
- peer_
id GetIke Gateway List Data Peer Id - Peer id
- protocol
Get
Ike Gateway List Data Protocol - Protocol
- protocol_
common GetIke Gateway List Data Protocol Common - Protocol common
- snippet str
- The snippet in which the resource is defined
- tfid str
- authentication Property Map
- Authentication
- device String
- The device in which the resource is defined
- encrypted
Values Map<String> - Map of sensitive values returned from the API.
- folder String
- The folder in which the resource is defined
- id String
- UUID of the resource
- local
Address Property Map - Local address
- local
Id Property Map - Local id
- name String
- Alphanumeric string begin with letter: [0-9a-zA-Z._-]
- peer
Address Property Map - Peer address
- peer
Id Property Map - Peer id
- protocol Property Map
- Protocol
- protocol
Common Property Map - Protocol common
- snippet String
- The snippet in which the resource is defined
- tfid String
GetIkeGatewayListDataAuthentication
- Certificate
Get
Ike Gateway List Data Authentication Certificate - Certificate
-
Get
Ike Gateway List Data Authentication Pre Shared Key - Pre shared key
- Certificate
Get
Ike Gateway List Data Authentication Certificate - Certificate
-
Get
Ike Gateway List Data Authentication Pre Shared Key - Pre shared key
- certificate
Get
Ike Gateway List Data Authentication Certificate - Certificate
-
Get
Ike Gateway List Data Authentication Pre Shared Key - Pre shared key
- certificate
Get
Ike Gateway List Data Authentication Certificate - Certificate
-
Get
Ike Gateway List Data Authentication Pre Shared Key - Pre shared key
- certificate
Get
Ike Gateway List Data Authentication Certificate - Certificate
-
Get
Ike Gateway List Data Authentication Pre Shared Key - Pre shared key
- certificate Property Map
- Certificate
- Property Map
- Pre shared key
GetIkeGatewayListDataAuthenticationCertificate
- Allow
Id boolPayload Mismatch - Allow id payload mismatch
- Certificate
Profile string - Certificate profile
- Local
Certificate GetIke Gateway List Data Authentication Certificate Local Certificate - Local certificate
- Strict
Validation boolRevocation - Strict validation revocation
- Use
Management boolAs Source - Use management as source
- Allow
Id boolPayload Mismatch - Allow id payload mismatch
- Certificate
Profile string - Certificate profile
- Local
Certificate GetIke Gateway List Data Authentication Certificate Local Certificate - Local certificate
- Strict
Validation boolRevocation - Strict validation revocation
- Use
Management boolAs Source - Use management as source
- allow
Id BooleanPayload Mismatch - Allow id payload mismatch
- certificate
Profile String - Certificate profile
- local
Certificate GetIke Gateway List Data Authentication Certificate Local Certificate - Local certificate
- strict
Validation BooleanRevocation - Strict validation revocation
- use
Management BooleanAs Source - Use management as source
- allow
Id booleanPayload Mismatch - Allow id payload mismatch
- certificate
Profile string - Certificate profile
- local
Certificate GetIke Gateway List Data Authentication Certificate Local Certificate - Local certificate
- strict
Validation booleanRevocation - Strict validation revocation
- use
Management booleanAs Source - Use management as source
- allow_
id_ boolpayload_ mismatch - Allow id payload mismatch
- certificate_
profile str - Certificate profile
- local_
certificate GetIke Gateway List Data Authentication Certificate Local Certificate - Local certificate
- strict_
validation_ boolrevocation - Strict validation revocation
- use_
management_ boolas_ source - Use management as source
- allow
Id BooleanPayload Mismatch - Allow id payload mismatch
- certificate
Profile String - Certificate profile
- local
Certificate Property Map - Local certificate
- strict
Validation BooleanRevocation - Strict validation revocation
- use
Management BooleanAs Source - Use management as source
GetIkeGatewayListDataAuthenticationCertificateLocalCertificate
- Local
Certificate stringName - Local certificate name
- Local
Certificate stringName - Local certificate name
- local
Certificate StringName - Local certificate name
- local
Certificate stringName - Local certificate name
- local_
certificate_ strname - Local certificate name
- local
Certificate StringName - Local certificate name
GetIkeGatewayListDataAuthenticationPreSharedKey
- Key string
- Key
- Key string
- Key
- key String
- Key
- key string
- Key
- key str
- Key
- key String
- Key
GetIkeGatewayListDataLocalAddress
- Interface string
- Interface variable or hardcoded vlan/loopback. vlan will be passed as default value
- Interface string
- Interface variable or hardcoded vlan/loopback. vlan will be passed as default value
- interface_ String
- Interface variable or hardcoded vlan/loopback. vlan will be passed as default value
- interface string
- Interface variable or hardcoded vlan/loopback. vlan will be passed as default value
- interface str
- Interface variable or hardcoded vlan/loopback. vlan will be passed as default value
- interface String
- Interface variable or hardcoded vlan/loopback. vlan will be passed as default value
GetIkeGatewayListDataLocalId
GetIkeGatewayListDataPeerAddress
- Dynamic
Get
Ike Gateway List Data Peer Address Dynamic - Dynamic
- Fqdn string
- peer gateway FQDN name
- Ip string
- peer gateway has static IP address
- Dynamic
Get
Ike Gateway List Data Peer Address Dynamic - Dynamic
- Fqdn string
- peer gateway FQDN name
- Ip string
- peer gateway has static IP address
- dynamic
Get
Ike Gateway List Data Peer Address Dynamic - Dynamic
- fqdn String
- peer gateway FQDN name
- ip String
- peer gateway has static IP address
- dynamic
Get
Ike Gateway List Data Peer Address Dynamic - Dynamic
- fqdn string
- peer gateway FQDN name
- ip string
- peer gateway has static IP address
- dynamic
Get
Ike Gateway List Data Peer Address Dynamic - Dynamic
- fqdn str
- peer gateway FQDN name
- ip str
- peer gateway has static IP address
- dynamic Property Map
- Dynamic
- fqdn String
- peer gateway FQDN name
- ip String
- peer gateway has static IP address
GetIkeGatewayListDataPeerId
GetIkeGatewayListDataProtocol
- Ikev1
Get
Ike Gateway List Data Protocol Ikev1 - Ikev1
- Ikev2
Get
Ike Gateway List Data Protocol Ikev2 - Ikev2
- Version string
- Version
- Ikev1
Get
Ike Gateway List Data Protocol Ikev1 - Ikev1
- Ikev2
Get
Ike Gateway List Data Protocol Ikev2 - Ikev2
- Version string
- Version
- ikev1
Get
Ike Gateway List Data Protocol Ikev1 - Ikev1
- ikev2
Get
Ike Gateway List Data Protocol Ikev2 - Ikev2
- version String
- Version
- ikev1
Get
Ike Gateway List Data Protocol Ikev1 - Ikev1
- ikev2
Get
Ike Gateway List Data Protocol Ikev2 - Ikev2
- version string
- Version
- ikev1
Get
Ike Gateway List Data Protocol Ikev1 - Ikev1
- ikev2
Get
Ike Gateway List Data Protocol Ikev2 - Ikev2
- version str
- Version
- ikev1 Property Map
- Ikev1
- ikev2 Property Map
- Ikev2
- version String
- Version
GetIkeGatewayListDataProtocolCommon
- Fragmentation
Get
Ike Gateway List Data Protocol Common Fragmentation - Fragmentation
- Nat
Traversal GetIke Gateway List Data Protocol Common Nat Traversal - Enables NAT traversal for the IKE gateway.
- Passive
Mode bool - Passive mode
- Fragmentation
Get
Ike Gateway List Data Protocol Common Fragmentation - Fragmentation
- Nat
Traversal GetIke Gateway List Data Protocol Common Nat Traversal - Enables NAT traversal for the IKE gateway.
- Passive
Mode bool - Passive mode
- fragmentation
Get
Ike Gateway List Data Protocol Common Fragmentation - Fragmentation
- nat
Traversal GetIke Gateway List Data Protocol Common Nat Traversal - Enables NAT traversal for the IKE gateway.
- passive
Mode Boolean - Passive mode
- fragmentation
Get
Ike Gateway List Data Protocol Common Fragmentation - Fragmentation
- nat
Traversal GetIke Gateway List Data Protocol Common Nat Traversal - Enables NAT traversal for the IKE gateway.
- passive
Mode boolean - Passive mode
- fragmentation
Get
Ike Gateway List Data Protocol Common Fragmentation - Fragmentation
- nat_
traversal GetIke Gateway List Data Protocol Common Nat Traversal - Enables NAT traversal for the IKE gateway.
- passive_
mode bool - Passive mode
- fragmentation Property Map
- Fragmentation
- nat
Traversal Property Map - Enables NAT traversal for the IKE gateway.
- passive
Mode Boolean - Passive mode
GetIkeGatewayListDataProtocolCommonFragmentation
- Enable bool
- Enable
- Enable bool
- Enable
- enable Boolean
- Enable
- enable boolean
- Enable
- enable bool
- Enable
- enable Boolean
- Enable
GetIkeGatewayListDataProtocolCommonNatTraversal
- Enable bool
- Enable
- Enable bool
- Enable
- enable Boolean
- Enable
- enable boolean
- Enable
- enable bool
- Enable
- enable Boolean
- Enable
GetIkeGatewayListDataProtocolIkev1
- Dpd
Get
Ike Gateway List Data Protocol Ikev1Dpd - Dpd
- Ike
Crypto stringProfile - Ike crypto profile
- Dpd
Get
Ike Gateway List Data Protocol Ikev1Dpd - Dpd
- Ike
Crypto stringProfile - Ike crypto profile
- dpd
Get
Ike Gateway List Data Protocol Ikev1Dpd - Dpd
- ike
Crypto StringProfile - Ike crypto profile
- dpd
Get
Ike Gateway List Data Protocol Ikev1Dpd - Dpd
- ike
Crypto stringProfile - Ike crypto profile
- dpd
Get
Ike Gateway List Data Protocol Ikev1Dpd - Dpd
- ike_
crypto_ strprofile - Ike crypto profile
- dpd Property Map
- Dpd
- ike
Crypto StringProfile - Ike crypto profile
GetIkeGatewayListDataProtocolIkev1Dpd
- Enable bool
- Enable
- Enable bool
- Enable
- enable Boolean
- Enable
- enable boolean
- Enable
- enable bool
- Enable
- enable Boolean
- Enable
GetIkeGatewayListDataProtocolIkev2
- Dpd
Get
Ike Gateway List Data Protocol Ikev2Dpd - Dpd
- Ike
Crypto stringProfile - Ike crypto profile
- Dpd
Get
Ike Gateway List Data Protocol Ikev2Dpd - Dpd
- Ike
Crypto stringProfile - Ike crypto profile
- dpd
Get
Ike Gateway List Data Protocol Ikev2Dpd - Dpd
- ike
Crypto StringProfile - Ike crypto profile
- dpd
Get
Ike Gateway List Data Protocol Ikev2Dpd - Dpd
- ike
Crypto stringProfile - Ike crypto profile
- dpd
Get
Ike Gateway List Data Protocol Ikev2Dpd - Dpd
- ike_
crypto_ strprofile - Ike crypto profile
- dpd Property Map
- Dpd
- ike
Crypto StringProfile - Ike crypto profile
GetIkeGatewayListDataProtocolIkev2Dpd
- Enable bool
- Enable
- Enable bool
- Enable
- enable Boolean
- Enable
- enable boolean
- Enable
- enable bool
- Enable
- enable Boolean
- Enable
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
