Strata Cloud Manager v0.3.1 published on Thursday, Mar 13, 2025 by Pulumi
scm.getServiceConnectionList
Explore with Pulumi AI
Retrieves a listing of config items.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scm from "@pulumi/scm";
const example = scm.getServiceConnectionList({
folder: "Service Connections",
});
import pulumi
import pulumi_scm as scm
example = scm.get_service_connection_list(folder="Service Connections")
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 {
_, err := scm.GetServiceConnectionList(ctx, &scm.GetServiceConnectionListArgs{
Folder: pulumi.StringRef("Service Connections"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scm = Pulumi.Scm;
return await Deployment.RunAsync(() =>
{
var example = Scm.GetServiceConnectionList.Invoke(new()
{
Folder = "Service Connections",
});
});
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.GetServiceConnectionListArgs;
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 example = ScmFunctions.getServiceConnectionList(GetServiceConnectionListArgs.builder()
.folder("Service Connections")
.build());
}
}
variables:
example:
fn::invoke:
function: scm:getServiceConnectionList
arguments:
folder: Service Connections
Using getServiceConnectionList
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 getServiceConnectionList(args: GetServiceConnectionListArgs, opts?: InvokeOptions): Promise<GetServiceConnectionListResult>
function getServiceConnectionListOutput(args: GetServiceConnectionListOutputArgs, opts?: InvokeOptions): Output<GetServiceConnectionListResult>
def get_service_connection_list(folder: Optional[str] = None,
limit: Optional[int] = None,
name: Optional[str] = None,
offset: Optional[int] = None,
opts: Optional[InvokeOptions] = None) -> GetServiceConnectionListResult
def get_service_connection_list_output(folder: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[int]] = None,
name: Optional[pulumi.Input[str]] = None,
offset: Optional[pulumi.Input[int]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetServiceConnectionListResult]
func GetServiceConnectionList(ctx *Context, args *GetServiceConnectionListArgs, opts ...InvokeOption) (*GetServiceConnectionListResult, error)
func GetServiceConnectionListOutput(ctx *Context, args *GetServiceConnectionListOutputArgs, opts ...InvokeOption) GetServiceConnectionListResultOutput
> Note: This function is named GetServiceConnectionList
in the Go SDK.
public static class GetServiceConnectionList
{
public static Task<GetServiceConnectionListResult> InvokeAsync(GetServiceConnectionListArgs args, InvokeOptions? opts = null)
public static Output<GetServiceConnectionListResult> Invoke(GetServiceConnectionListInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetServiceConnectionListResult> getServiceConnectionList(GetServiceConnectionListArgs args, InvokeOptions options)
public static Output<GetServiceConnectionListResult> getServiceConnectionList(GetServiceConnectionListArgs args, InvokeOptions options)
fn::invoke:
function: scm:index/getServiceConnectionList:getServiceConnectionList
arguments:
# arguments dictionary
The following arguments are supported:
- Folder string
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - Limit int
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - Name string
- The Name param.
- Offset int
- The Offset param. Default:
0
.
- Folder string
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - Limit int
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - Name string
- The Name param.
- Offset int
- The Offset param. Default:
0
.
- folder String
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - limit Integer
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - name String
- The Name param.
- offset Integer
- The Offset param. Default:
0
.
- folder string
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - limit number
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - name string
- The Name param.
- offset number
- The Offset param. Default:
0
.
- folder str
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - limit int
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - name str
- The Name param.
- offset int
- The Offset param. Default:
0
.
- folder String
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - limit Number
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - name String
- The Name param.
- offset Number
- The Offset param. Default:
0
.
getServiceConnectionList Result
The following output properties are available:
- Datas
List<Get
Service Connection List Data> - The Data param.
- Folder string
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - Id string
- The provider-assigned unique ID for this managed resource.
- Limit int
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - Offset int
- The Offset param. Default:
0
. - Tfid string
- Total int
- The Total param.
- Name string
- The Name param.
- Datas
[]Get
Service Connection List Data - The Data param.
- Folder string
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - Id string
- The provider-assigned unique ID for this managed resource.
- Limit int
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - Offset int
- The Offset param. Default:
0
. - Tfid string
- Total int
- The Total param.
- Name string
- The Name param.
- datas
List<Get
Service Connection List Data> - The Data param.
- folder String
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - id String
- The provider-assigned unique ID for this managed resource.
- limit Integer
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - offset Integer
- The Offset param. Default:
0
. - tfid String
- total Integer
- The Total param.
- name String
- The Name param.
- datas
Get
Service Connection List Data[] - The Data param.
- folder string
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - id string
- The provider-assigned unique ID for this managed resource.
- limit number
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - offset number
- The Offset param. Default:
0
. - tfid string
- total number
- The Total param.
- name string
- The Name param.
- datas
Sequence[Get
Service Connection List Data] - The Data param.
- folder str
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - id str
- The provider-assigned unique ID for this managed resource.
- limit int
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - offset int
- The Offset param. Default:
0
. - tfid str
- total int
- The Total param.
- name str
- The Name param.
- datas List<Property Map>
- The Data param.
- folder String
- The Folder param. String can either be a specific string(
"Service Connections"
) or match this regex:^[0-9a-zA-Z._\s-]{1,}$
. Default:"Service Connections"
. - id String
- The provider-assigned unique ID for this managed resource.
- limit Number
- The Limit param. A limit of -1 will return all configured items. Default:
200
. - offset Number
- The Offset param. Default:
0
. - tfid String
- total Number
- The Total param.
- name String
- The Name param.
Supporting Types
GetServiceConnectionListData
- Backup
SC This property is required. string - The BackupSC param.
- Bgp
Peer This property is required. GetService Connection List Data Bgp Peer - The BgpPeer param.
- Id
This property is required. string - UUID of the resource.
- Ipsec
Tunnel This property is required. string - The IpsecTunnel param.
- Name
This property is required. string - The Name param.
- Nat
Pool This property is required. string - The NatPool param.
- No
Export Community This property is required. string - The NoExportCommunity param. String must be one of these:
"Disabled"
,"Enabled-In"
,"Enabled-Out"
,"Enabled-Both"
. - Onboarding
Type This property is required. string - The OnboardingType param. String must be one of these:
"classic"
. Default:"classic"
. - Protocol
This property is required. GetService Connection List Data Protocol - The Protocol param.
- Qos
This property is required. GetService Connection List Data Qos - The Qos param.
- Region
This property is required. string - The Region param.
- Secondary
Ipsec Tunnel This property is required. string - The SecondaryIpsecTunnel param.
- Source
Nat This property is required. bool - The SourceNat param.
- Subnets
This property is required. List<string> - The Subnets param.
- Backup
SC This property is required. string - The BackupSC param.
- Bgp
Peer This property is required. GetService Connection List Data Bgp Peer - The BgpPeer param.
- Id
This property is required. string - UUID of the resource.
- Ipsec
Tunnel This property is required. string - The IpsecTunnel param.
- Name
This property is required. string - The Name param.
- Nat
Pool This property is required. string - The NatPool param.
- No
Export Community This property is required. string - The NoExportCommunity param. String must be one of these:
"Disabled"
,"Enabled-In"
,"Enabled-Out"
,"Enabled-Both"
. - Onboarding
Type This property is required. string - The OnboardingType param. String must be one of these:
"classic"
. Default:"classic"
. - Protocol
This property is required. GetService Connection List Data Protocol - The Protocol param.
- Qos
This property is required. GetService Connection List Data Qos - The Qos param.
- Region
This property is required. string - The Region param.
- Secondary
Ipsec Tunnel This property is required. string - The SecondaryIpsecTunnel param.
- Source
Nat This property is required. bool - The SourceNat param.
- Subnets
This property is required. []string - The Subnets param.
- backup
SC This property is required. String - The BackupSC param.
- bgp
Peer This property is required. GetService Connection List Data Bgp Peer - The BgpPeer param.
- id
This property is required. String - UUID of the resource.
- ipsec
Tunnel This property is required. String - The IpsecTunnel param.
- name
This property is required. String - The Name param.
- nat
Pool This property is required. String - The NatPool param.
- no
Export Community This property is required. String - The NoExportCommunity param. String must be one of these:
"Disabled"
,"Enabled-In"
,"Enabled-Out"
,"Enabled-Both"
. - onboarding
Type This property is required. String - The OnboardingType param. String must be one of these:
"classic"
. Default:"classic"
. - protocol
This property is required. GetService Connection List Data Protocol - The Protocol param.
- qos
This property is required. GetService Connection List Data Qos - The Qos param.
- region
This property is required. String - The Region param.
- secondary
Ipsec Tunnel This property is required. String - The SecondaryIpsecTunnel param.
- source
Nat This property is required. Boolean - The SourceNat param.
- subnets
This property is required. List<String> - The Subnets param.
- backup
SC This property is required. string - The BackupSC param.
- bgp
Peer This property is required. GetService Connection List Data Bgp Peer - The BgpPeer param.
- id
This property is required. string - UUID of the resource.
- ipsec
Tunnel This property is required. string - The IpsecTunnel param.
- name
This property is required. string - The Name param.
- nat
Pool This property is required. string - The NatPool param.
- no
Export Community This property is required. string - The NoExportCommunity param. String must be one of these:
"Disabled"
,"Enabled-In"
,"Enabled-Out"
,"Enabled-Both"
. - onboarding
Type This property is required. string - The OnboardingType param. String must be one of these:
"classic"
. Default:"classic"
. - protocol
This property is required. GetService Connection List Data Protocol - The Protocol param.
- qos
This property is required. GetService Connection List Data Qos - The Qos param.
- region
This property is required. string - The Region param.
- secondary
Ipsec Tunnel This property is required. string - The SecondaryIpsecTunnel param.
- source
Nat This property is required. boolean - The SourceNat param.
- subnets
This property is required. string[] - The Subnets param.
- backup_
sc This property is required. str - The BackupSC param.
- bgp_
peer This property is required. GetService Connection List Data Bgp Peer - The BgpPeer param.
- id
This property is required. str - UUID of the resource.
- ipsec_
tunnel This property is required. str - The IpsecTunnel param.
- name
This property is required. str - The Name param.
- nat_
pool This property is required. str - The NatPool param.
- no_
export_ community This property is required. str - The NoExportCommunity param. String must be one of these:
"Disabled"
,"Enabled-In"
,"Enabled-Out"
,"Enabled-Both"
. - onboarding_
type This property is required. str - The OnboardingType param. String must be one of these:
"classic"
. Default:"classic"
. - protocol
This property is required. GetService Connection List Data Protocol - The Protocol param.
- qos
This property is required. GetService Connection List Data Qos - The Qos param.
- region
This property is required. str - The Region param.
- secondary_
ipsec_ tunnel This property is required. str - The SecondaryIpsecTunnel param.
- source_
nat This property is required. bool - The SourceNat param.
- subnets
This property is required. Sequence[str] - The Subnets param.
- backup
SC This property is required. String - The BackupSC param.
- bgp
Peer This property is required. Property Map - The BgpPeer param.
- id
This property is required. String - UUID of the resource.
- ipsec
Tunnel This property is required. String - The IpsecTunnel param.
- name
This property is required. String - The Name param.
- nat
Pool This property is required. String - The NatPool param.
- no
Export Community This property is required. String - The NoExportCommunity param. String must be one of these:
"Disabled"
,"Enabled-In"
,"Enabled-Out"
,"Enabled-Both"
. - onboarding
Type This property is required. String - The OnboardingType param. String must be one of these:
"classic"
. Default:"classic"
. - protocol
This property is required. Property Map - The Protocol param.
- qos
This property is required. Property Map - The Qos param.
- region
This property is required. String - The Region param.
- secondary
Ipsec Tunnel This property is required. String - The SecondaryIpsecTunnel param.
- source
Nat This property is required. Boolean - The SourceNat param.
- subnets
This property is required. List<String> - The Subnets param.
GetServiceConnectionListDataBgpPeer
- Local
Ip Address This property is required. string - The LocalIpAddress param.
- Local
Ipv6Address This property is required. string - The LocalIpv6Address param.
- Peer
Ip Address This property is required. string - The PeerIpAddress param.
- Peer
Ipv6Address This property is required. string - The PeerIpv6Address param.
- Same
As Primary This property is required. bool - The SameAsPrimary param.
- Secret
This property is required. string - The Secret param.
- Local
Ip Address This property is required. string - The LocalIpAddress param.
- Local
Ipv6Address This property is required. string - The LocalIpv6Address param.
- Peer
Ip Address This property is required. string - The PeerIpAddress param.
- Peer
Ipv6Address This property is required. string - The PeerIpv6Address param.
- Same
As Primary This property is required. bool - The SameAsPrimary param.
- Secret
This property is required. string - The Secret param.
- local
Ip Address This property is required. String - The LocalIpAddress param.
- local
Ipv6Address This property is required. String - The LocalIpv6Address param.
- peer
Ip Address This property is required. String - The PeerIpAddress param.
- peer
Ipv6Address This property is required. String - The PeerIpv6Address param.
- same
As Primary This property is required. Boolean - The SameAsPrimary param.
- secret
This property is required. String - The Secret param.
- local
Ip Address This property is required. string - The LocalIpAddress param.
- local
Ipv6Address This property is required. string - The LocalIpv6Address param.
- peer
Ip Address This property is required. string - The PeerIpAddress param.
- peer
Ipv6Address This property is required. string - The PeerIpv6Address param.
- same
As Primary This property is required. boolean - The SameAsPrimary param.
- secret
This property is required. string - The Secret param.
- local_
ip_ address This property is required. str - The LocalIpAddress param.
- local_
ipv6_ address This property is required. str - The LocalIpv6Address param.
- peer_
ip_ address This property is required. str - The PeerIpAddress param.
- peer_
ipv6_ address This property is required. str - The PeerIpv6Address param.
- same_
as_ primary This property is required. bool - The SameAsPrimary param.
- secret
This property is required. str - The Secret param.
- local
Ip Address This property is required. String - The LocalIpAddress param.
- local
Ipv6Address This property is required. String - The LocalIpv6Address param.
- peer
Ip Address This property is required. String - The PeerIpAddress param.
- peer
Ipv6Address This property is required. String - The PeerIpv6Address param.
- same
As Primary This property is required. Boolean - The SameAsPrimary param.
- secret
This property is required. String - The Secret param.
GetServiceConnectionListDataProtocol
- Bgp
This property is required. GetService Connection List Data Protocol Bgp - The Bgp param.
- Bgp
This property is required. GetService Connection List Data Protocol Bgp - The Bgp param.
- bgp
This property is required. GetService Connection List Data Protocol Bgp - The Bgp param.
- bgp
This property is required. GetService Connection List Data Protocol Bgp - The Bgp param.
- bgp
This property is required. GetService Connection List Data Protocol Bgp - The Bgp param.
- bgp
This property is required. Property Map - The Bgp param.
GetServiceConnectionListDataProtocolBgp
- Do
Not Export Routes This property is required. bool - The DoNotExportRoutes param.
- Enable
This property is required. bool - The Enable param.
- Fast
Failover This property is required. bool - The FastFailover param.
- Local
Ip Address This property is required. string - The LocalIpAddress param.
- Originate
Default Route This property is required. bool - The OriginateDefaultRoute param.
- Peer
As This property is required. string - The PeerAs param.
- Peer
Ip Address This property is required. string - The PeerIpAddress param.
- Secret
This property is required. string - The Secret param.
- Summarize
Mobile User Routes This property is required. bool - The SummarizeMobileUserRoutes param.
- Do
Not Export Routes This property is required. bool - The DoNotExportRoutes param.
- Enable
This property is required. bool - The Enable param.
- Fast
Failover This property is required. bool - The FastFailover param.
- Local
Ip Address This property is required. string - The LocalIpAddress param.
- Originate
Default Route This property is required. bool - The OriginateDefaultRoute param.
- Peer
As This property is required. string - The PeerAs param.
- Peer
Ip Address This property is required. string - The PeerIpAddress param.
- Secret
This property is required. string - The Secret param.
- Summarize
Mobile User Routes This property is required. bool - The SummarizeMobileUserRoutes param.
- do
Not Export Routes This property is required. Boolean - The DoNotExportRoutes param.
- enable
This property is required. Boolean - The Enable param.
- fast
Failover This property is required. Boolean - The FastFailover param.
- local
Ip Address This property is required. String - The LocalIpAddress param.
- originate
Default Route This property is required. Boolean - The OriginateDefaultRoute param.
- peer
As This property is required. String - The PeerAs param.
- peer
Ip Address This property is required. String - The PeerIpAddress param.
- secret
This property is required. String - The Secret param.
- summarize
Mobile User Routes This property is required. Boolean - The SummarizeMobileUserRoutes param.
- do
Not Export Routes This property is required. boolean - The DoNotExportRoutes param.
- enable
This property is required. boolean - The Enable param.
- fast
Failover This property is required. boolean - The FastFailover param.
- local
Ip Address This property is required. string - The LocalIpAddress param.
- originate
Default Route This property is required. boolean - The OriginateDefaultRoute param.
- peer
As This property is required. string - The PeerAs param.
- peer
Ip Address This property is required. string - The PeerIpAddress param.
- secret
This property is required. string - The Secret param.
- summarize
Mobile User Routes This property is required. boolean - The SummarizeMobileUserRoutes param.
- do_
not_ export_ routes This property is required. bool - The DoNotExportRoutes param.
- enable
This property is required. bool - The Enable param.
- fast_
failover This property is required. bool - The FastFailover param.
- local_
ip_ address This property is required. str - The LocalIpAddress param.
- originate_
default_ route This property is required. bool - The OriginateDefaultRoute param.
- peer_
as This property is required. str - The PeerAs param.
- peer_
ip_ address This property is required. str - The PeerIpAddress param.
- secret
This property is required. str - The Secret param.
- summarize_
mobile_ user_ routes This property is required. bool - The SummarizeMobileUserRoutes param.
- do
Not Export Routes This property is required. Boolean - The DoNotExportRoutes param.
- enable
This property is required. Boolean - The Enable param.
- fast
Failover This property is required. Boolean - The FastFailover param.
- local
Ip Address This property is required. String - The LocalIpAddress param.
- originate
Default Route This property is required. Boolean - The OriginateDefaultRoute param.
- peer
As This property is required. String - The PeerAs param.
- peer
Ip Address This property is required. String - The PeerIpAddress param.
- secret
This property is required. String - The Secret param.
- summarize
Mobile User Routes This property is required. Boolean - The SummarizeMobileUserRoutes param.
GetServiceConnectionListDataQos
- Enable
This property is required. bool - The Enable param.
- Qos
Profile This property is required. string - The QosProfile param.
- Enable
This property is required. bool - The Enable param.
- Qos
Profile This property is required. string - The QosProfile param.
- enable
This property is required. Boolean - The Enable param.
- qos
Profile This property is required. String - The QosProfile param.
- enable
This property is required. boolean - The Enable param.
- qos
Profile This property is required. string - The QosProfile param.
- enable
This property is required. bool - The Enable param.
- qos_
profile This property is required. str - The QosProfile param.
- enable
This property is required. Boolean - The Enable param.
- qos
Profile This property is required. String - The QosProfile param.
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scm
Terraform Provider.