sdwan.ConfigurationGroup
Explore with Pulumi AI
This resource can manage a Configuration Group .
- Minimum SD-WAN Manager version: 20.12.0
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.ConfigurationGroup("example", {
    name: "CG_1",
    description: "My config group 1",
    solution: "sdwan",
    featureProfileIds: ["f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"],
    devices: [{
        id: "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
        variables: [{
            name: "host_name",
            value: "edge1",
        }],
    }],
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.ConfigurationGroup("example",
    name="CG_1",
    description="My config group 1",
    solution="sdwan",
    feature_profile_ids=["f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"],
    devices=[{
        "id": "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
        "variables": [{
            "name": "host_name",
            "value": "edge1",
        }],
    }])
package main
import (
	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := sdwan.NewConfigurationGroup(ctx, "example", &sdwan.ConfigurationGroupArgs{
			Name:        pulumi.String("CG_1"),
			Description: pulumi.String("My config group 1"),
			Solution:    pulumi.String("sdwan"),
			FeatureProfileIds: pulumi.StringArray{
				pulumi.String("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"),
			},
			Devices: sdwan.ConfigurationGroupDeviceArray{
				&sdwan.ConfigurationGroupDeviceArgs{
					Id: pulumi.String("C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B"),
					Variables: sdwan.ConfigurationGroupDeviceVariableArray{
						&sdwan.ConfigurationGroupDeviceVariableArgs{
							Name:  pulumi.String("host_name"),
							Value: pulumi.String("edge1"),
						},
					},
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Sdwan = Pulumi.Sdwan;
return await Deployment.RunAsync(() => 
{
    var example = new Sdwan.ConfigurationGroup("example", new()
    {
        Name = "CG_1",
        Description = "My config group 1",
        Solution = "sdwan",
        FeatureProfileIds = new[]
        {
            "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
        },
        Devices = new[]
        {
            new Sdwan.Inputs.ConfigurationGroupDeviceArgs
            {
                Id = "C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B",
                Variables = new[]
                {
                    new Sdwan.Inputs.ConfigurationGroupDeviceVariableArgs
                    {
                        Name = "host_name",
                        Value = "edge1",
                    },
                },
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.ConfigurationGroup;
import com.pulumi.sdwan.ConfigurationGroupArgs;
import com.pulumi.sdwan.inputs.ConfigurationGroupDeviceArgs;
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) {
        var example = new ConfigurationGroup("example", ConfigurationGroupArgs.builder()
            .name("CG_1")
            .description("My config group 1")
            .solution("sdwan")
            .featureProfileIds("f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac")
            .devices(ConfigurationGroupDeviceArgs.builder()
                .id("C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B")
                .variables(ConfigurationGroupDeviceVariableArgs.builder()
                    .name("host_name")
                    .value("edge1")
                    .build())
                .build())
            .build());
    }
}
resources:
  example:
    type: sdwan:ConfigurationGroup
    properties:
      name: CG_1
      description: My config group 1
      solution: sdwan
      featureProfileIds:
        - f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac
      devices:
        - id: C8K-40C0CCFD-9EA8-2B2E-E73B-32C5924EC79B
          variables:
            - name: host_name
              value: edge1
Create ConfigurationGroup Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConfigurationGroup(name: string, args: ConfigurationGroupArgs, opts?: CustomResourceOptions);@overload
def ConfigurationGroup(resource_name: str,
                       args: ConfigurationGroupArgs,
                       opts: Optional[ResourceOptions] = None)
@overload
def ConfigurationGroup(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       description: Optional[str] = None,
                       solution: Optional[str] = None,
                       devices: Optional[Sequence[ConfigurationGroupDeviceArgs]] = None,
                       feature_profile_ids: Optional[Sequence[str]] = None,
                       feature_versions: Optional[Sequence[str]] = None,
                       name: Optional[str] = None,
                       topology_devices: Optional[Sequence[ConfigurationGroupTopologyDeviceArgs]] = None,
                       topology_site_devices: Optional[int] = None)func NewConfigurationGroup(ctx *Context, name string, args ConfigurationGroupArgs, opts ...ResourceOption) (*ConfigurationGroup, error)public ConfigurationGroup(string name, ConfigurationGroupArgs args, CustomResourceOptions? opts = null)
public ConfigurationGroup(String name, ConfigurationGroupArgs args)
public ConfigurationGroup(String name, ConfigurationGroupArgs args, CustomResourceOptions options)
type: sdwan:ConfigurationGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args ConfigurationGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args ConfigurationGroupArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args ConfigurationGroupArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConfigurationGroupArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConfigurationGroupArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var configurationGroupResource = new Sdwan.ConfigurationGroup("configurationGroupResource", new()
{
    Description = "string",
    Solution = "string",
    Devices = new[]
    {
        new Sdwan.Inputs.ConfigurationGroupDeviceArgs
        {
            Deploy = false,
            Id = "string",
            Variables = new[]
            {
                new Sdwan.Inputs.ConfigurationGroupDeviceVariableArgs
                {
                    Name = "string",
                    ListValues = new[]
                    {
                        "string",
                    },
                    Value = "string",
                },
            },
        },
    },
    FeatureProfileIds = new[]
    {
        "string",
    },
    FeatureVersions = new[]
    {
        "string",
    },
    Name = "string",
    TopologyDevices = new[]
    {
        new Sdwan.Inputs.ConfigurationGroupTopologyDeviceArgs
        {
            CriteriaAttribute = "string",
            CriteriaValue = "string",
            UnsupportedFeatures = new[]
            {
                new Sdwan.Inputs.ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs
                {
                    ParcelId = "string",
                    ParcelType = "string",
                },
            },
        },
    },
    TopologySiteDevices = 0,
});
example, err := sdwan.NewConfigurationGroup(ctx, "configurationGroupResource", &sdwan.ConfigurationGroupArgs{
	Description: pulumi.String("string"),
	Solution:    pulumi.String("string"),
	Devices: sdwan.ConfigurationGroupDeviceArray{
		&sdwan.ConfigurationGroupDeviceArgs{
			Deploy: pulumi.Bool(false),
			Id:     pulumi.String("string"),
			Variables: sdwan.ConfigurationGroupDeviceVariableArray{
				&sdwan.ConfigurationGroupDeviceVariableArgs{
					Name: pulumi.String("string"),
					ListValues: pulumi.StringArray{
						pulumi.String("string"),
					},
					Value: pulumi.String("string"),
				},
			},
		},
	},
	FeatureProfileIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	FeatureVersions: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	TopologyDevices: sdwan.ConfigurationGroupTopologyDeviceArray{
		&sdwan.ConfigurationGroupTopologyDeviceArgs{
			CriteriaAttribute: pulumi.String("string"),
			CriteriaValue:     pulumi.String("string"),
			UnsupportedFeatures: sdwan.ConfigurationGroupTopologyDeviceUnsupportedFeatureArray{
				&sdwan.ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs{
					ParcelId:   pulumi.String("string"),
					ParcelType: pulumi.String("string"),
				},
			},
		},
	},
	TopologySiteDevices: pulumi.Int(0),
})
var configurationGroupResource = new ConfigurationGroup("configurationGroupResource", ConfigurationGroupArgs.builder()
    .description("string")
    .solution("string")
    .devices(ConfigurationGroupDeviceArgs.builder()
        .deploy(false)
        .id("string")
        .variables(ConfigurationGroupDeviceVariableArgs.builder()
            .name("string")
            .listValues("string")
            .value("string")
            .build())
        .build())
    .featureProfileIds("string")
    .featureVersions("string")
    .name("string")
    .topologyDevices(ConfigurationGroupTopologyDeviceArgs.builder()
        .criteriaAttribute("string")
        .criteriaValue("string")
        .unsupportedFeatures(ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs.builder()
            .parcelId("string")
            .parcelType("string")
            .build())
        .build())
    .topologySiteDevices(0)
    .build());
configuration_group_resource = sdwan.ConfigurationGroup("configurationGroupResource",
    description="string",
    solution="string",
    devices=[{
        "deploy": False,
        "id": "string",
        "variables": [{
            "name": "string",
            "list_values": ["string"],
            "value": "string",
        }],
    }],
    feature_profile_ids=["string"],
    feature_versions=["string"],
    name="string",
    topology_devices=[{
        "criteria_attribute": "string",
        "criteria_value": "string",
        "unsupported_features": [{
            "parcel_id": "string",
            "parcel_type": "string",
        }],
    }],
    topology_site_devices=0)
const configurationGroupResource = new sdwan.ConfigurationGroup("configurationGroupResource", {
    description: "string",
    solution: "string",
    devices: [{
        deploy: false,
        id: "string",
        variables: [{
            name: "string",
            listValues: ["string"],
            value: "string",
        }],
    }],
    featureProfileIds: ["string"],
    featureVersions: ["string"],
    name: "string",
    topologyDevices: [{
        criteriaAttribute: "string",
        criteriaValue: "string",
        unsupportedFeatures: [{
            parcelId: "string",
            parcelType: "string",
        }],
    }],
    topologySiteDevices: 0,
});
type: sdwan:ConfigurationGroup
properties:
    description: string
    devices:
        - deploy: false
          id: string
          variables:
            - listValues:
                - string
              name: string
              value: string
    featureProfileIds:
        - string
    featureVersions:
        - string
    name: string
    solution: string
    topologyDevices:
        - criteriaAttribute: string
          criteriaValue: string
          unsupportedFeatures:
            - parcelId: string
              parcelType: string
    topologySiteDevices: 0
ConfigurationGroup Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The ConfigurationGroup resource accepts the following input properties:
- Description string
- Description
- Solution string
- Type of solution - Choices: mobility,sdwan,nfvirtual
- Devices
List<ConfigurationGroup Device> 
- List of devices
- FeatureProfile List<string>Ids 
- List of feature profile IDs
- FeatureVersions List<string>
- List of all associated feature versions
- Name string
- The name of the configuration group
- TopologyDevices List<ConfigurationGroup Topology Device> 
- List of topology device types
- TopologySite intDevices 
- Number of devices per site - Range: 1-20
- Description string
- Description
- Solution string
- Type of solution - Choices: mobility,sdwan,nfvirtual
- Devices
[]ConfigurationGroup Device Args 
- List of devices
- FeatureProfile []stringIds 
- List of feature profile IDs
- FeatureVersions []string
- List of all associated feature versions
- Name string
- The name of the configuration group
- TopologyDevices []ConfigurationGroup Topology Device Args 
- List of topology device types
- TopologySite intDevices 
- Number of devices per site - Range: 1-20
- description String
- Description
- solution String
- Type of solution - Choices: mobility,sdwan,nfvirtual
- devices
List<ConfigurationGroup Device> 
- List of devices
- featureProfile List<String>Ids 
- List of feature profile IDs
- featureVersions List<String>
- List of all associated feature versions
- name String
- The name of the configuration group
- topologyDevices List<ConfigurationGroup Topology Device> 
- List of topology device types
- topologySite IntegerDevices 
- Number of devices per site - Range: 1-20
- description string
- Description
- solution string
- Type of solution - Choices: mobility,sdwan,nfvirtual
- devices
ConfigurationGroup Device[] 
- List of devices
- featureProfile string[]Ids 
- List of feature profile IDs
- featureVersions string[]
- List of all associated feature versions
- name string
- The name of the configuration group
- topologyDevices ConfigurationGroup Topology Device[] 
- List of topology device types
- topologySite numberDevices 
- Number of devices per site - Range: 1-20
- description str
- Description
- solution str
- Type of solution - Choices: mobility,sdwan,nfvirtual
- devices
Sequence[ConfigurationGroup Device Args] 
- List of devices
- feature_profile_ Sequence[str]ids 
- List of feature profile IDs
- feature_versions Sequence[str]
- List of all associated feature versions
- name str
- The name of the configuration group
- topology_devices Sequence[ConfigurationGroup Topology Device Args] 
- List of topology device types
- topology_site_ intdevices 
- Number of devices per site - Range: 1-20
- description String
- Description
- solution String
- Type of solution - Choices: mobility,sdwan,nfvirtual
- devices List<Property Map>
- List of devices
- featureProfile List<String>Ids 
- List of feature profile IDs
- featureVersions List<String>
- List of all associated feature versions
- name String
- The name of the configuration group
- topologyDevices List<Property Map>
- List of topology device types
- topologySite NumberDevices 
- Number of devices per site - Range: 1-20
Outputs
All input properties are implicitly available as output properties. Additionally, the ConfigurationGroup resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ConfigurationGroup Resource
Get an existing ConfigurationGroup resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: ConfigurationGroupState, opts?: CustomResourceOptions): ConfigurationGroup@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        devices: Optional[Sequence[ConfigurationGroupDeviceArgs]] = None,
        feature_profile_ids: Optional[Sequence[str]] = None,
        feature_versions: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        solution: Optional[str] = None,
        topology_devices: Optional[Sequence[ConfigurationGroupTopologyDeviceArgs]] = None,
        topology_site_devices: Optional[int] = None) -> ConfigurationGroupfunc GetConfigurationGroup(ctx *Context, name string, id IDInput, state *ConfigurationGroupState, opts ...ResourceOption) (*ConfigurationGroup, error)public static ConfigurationGroup Get(string name, Input<string> id, ConfigurationGroupState? state, CustomResourceOptions? opts = null)public static ConfigurationGroup get(String name, Output<String> id, ConfigurationGroupState state, CustomResourceOptions options)resources:  _:    type: sdwan:ConfigurationGroup    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Description string
- Description
- Devices
List<ConfigurationGroup Device> 
- List of devices
- FeatureProfile List<string>Ids 
- List of feature profile IDs
- FeatureVersions List<string>
- List of all associated feature versions
- Name string
- The name of the configuration group
- Solution string
- Type of solution - Choices: mobility,sdwan,nfvirtual
- TopologyDevices List<ConfigurationGroup Topology Device> 
- List of topology device types
- TopologySite intDevices 
- Number of devices per site - Range: 1-20
- Description string
- Description
- Devices
[]ConfigurationGroup Device Args 
- List of devices
- FeatureProfile []stringIds 
- List of feature profile IDs
- FeatureVersions []string
- List of all associated feature versions
- Name string
- The name of the configuration group
- Solution string
- Type of solution - Choices: mobility,sdwan,nfvirtual
- TopologyDevices []ConfigurationGroup Topology Device Args 
- List of topology device types
- TopologySite intDevices 
- Number of devices per site - Range: 1-20
- description String
- Description
- devices
List<ConfigurationGroup Device> 
- List of devices
- featureProfile List<String>Ids 
- List of feature profile IDs
- featureVersions List<String>
- List of all associated feature versions
- name String
- The name of the configuration group
- solution String
- Type of solution - Choices: mobility,sdwan,nfvirtual
- topologyDevices List<ConfigurationGroup Topology Device> 
- List of topology device types
- topologySite IntegerDevices 
- Number of devices per site - Range: 1-20
- description string
- Description
- devices
ConfigurationGroup Device[] 
- List of devices
- featureProfile string[]Ids 
- List of feature profile IDs
- featureVersions string[]
- List of all associated feature versions
- name string
- The name of the configuration group
- solution string
- Type of solution - Choices: mobility,sdwan,nfvirtual
- topologyDevices ConfigurationGroup Topology Device[] 
- List of topology device types
- topologySite numberDevices 
- Number of devices per site - Range: 1-20
- description str
- Description
- devices
Sequence[ConfigurationGroup Device Args] 
- List of devices
- feature_profile_ Sequence[str]ids 
- List of feature profile IDs
- feature_versions Sequence[str]
- List of all associated feature versions
- name str
- The name of the configuration group
- solution str
- Type of solution - Choices: mobility,sdwan,nfvirtual
- topology_devices Sequence[ConfigurationGroup Topology Device Args] 
- List of topology device types
- topology_site_ intdevices 
- Number of devices per site - Range: 1-20
- description String
- Description
- devices List<Property Map>
- List of devices
- featureProfile List<String>Ids 
- List of feature profile IDs
- featureVersions List<String>
- List of all associated feature versions
- name String
- The name of the configuration group
- solution String
- Type of solution - Choices: mobility,sdwan,nfvirtual
- topologyDevices List<Property Map>
- List of topology device types
- topologySite NumberDevices 
- Number of devices per site - Range: 1-20
Supporting Types
ConfigurationGroupDevice, ConfigurationGroupDeviceArgs      
- Deploy bool
- Deploy to device if enabled.- Default value: false
 
- Default value: 
- Id string
- Device ID
- Variables
List<ConfigurationGroup Device Variable> 
- List of variables
- Deploy bool
- Deploy to device if enabled.- Default value: false
 
- Default value: 
- Id string
- Device ID
- Variables
[]ConfigurationGroup Device Variable 
- List of variables
- deploy Boolean
- Deploy to device if enabled.- Default value: false
 
- Default value: 
- id String
- Device ID
- variables
List<ConfigurationGroup Device Variable> 
- List of variables
- deploy boolean
- Deploy to device if enabled.- Default value: false
 
- Default value: 
- id string
- Device ID
- variables
ConfigurationGroup Device Variable[] 
- List of variables
- deploy bool
- Deploy to device if enabled.- Default value: false
 
- Default value: 
- id str
- Device ID
- variables
Sequence[ConfigurationGroup Device Variable] 
- List of variables
- deploy Boolean
- Deploy to device if enabled.- Default value: false
 
- Default value: 
- id String
- Device ID
- variables List<Property Map>
- List of variables
ConfigurationGroupDeviceVariable, ConfigurationGroupDeviceVariableArgs        
- Name string
- Variable name
- ListValues List<string>
- Use this instead of valuein case value is of typeList.
- Value string
- Variable value
- Name string
- Variable name
- ListValues []string
- Use this instead of valuein case value is of typeList.
- Value string
- Variable value
- name String
- Variable name
- listValues List<String>
- Use this instead of valuein case value is of typeList.
- value String
- Variable value
- name string
- Variable name
- listValues string[]
- Use this instead of valuein case value is of typeList.
- value string
- Variable value
- name str
- Variable name
- list_values Sequence[str]
- Use this instead of valuein case value is of typeList.
- value str
- Variable value
- name String
- Variable name
- listValues List<String>
- Use this instead of valuein case value is of typeList.
- value String
- Variable value
ConfigurationGroupTopologyDevice, ConfigurationGroupTopologyDeviceArgs        
- CriteriaAttribute string
- Criteria attribute- Choices: tag
 
- Choices: 
- CriteriaValue string
- Criteria value
- UnsupportedFeatures List<ConfigurationGroup Topology Device Unsupported Feature> 
- List of unsupported features
- CriteriaAttribute string
- Criteria attribute- Choices: tag
 
- Choices: 
- CriteriaValue string
- Criteria value
- UnsupportedFeatures []ConfigurationGroup Topology Device Unsupported Feature 
- List of unsupported features
- criteriaAttribute String
- Criteria attribute- Choices: tag
 
- Choices: 
- criteriaValue String
- Criteria value
- unsupportedFeatures List<ConfigurationGroup Topology Device Unsupported Feature> 
- List of unsupported features
- criteriaAttribute string
- Criteria attribute- Choices: tag
 
- Choices: 
- criteriaValue string
- Criteria value
- unsupportedFeatures ConfigurationGroup Topology Device Unsupported Feature[] 
- List of unsupported features
- criteria_attribute str
- Criteria attribute- Choices: tag
 
- Choices: 
- criteria_value str
- Criteria value
- unsupported_features Sequence[ConfigurationGroup Topology Device Unsupported Feature] 
- List of unsupported features
- criteriaAttribute String
- Criteria attribute- Choices: tag
 
- Choices: 
- criteriaValue String
- Criteria value
- unsupportedFeatures List<Property Map>
- List of unsupported features
ConfigurationGroupTopologyDeviceUnsupportedFeature, ConfigurationGroupTopologyDeviceUnsupportedFeatureArgs            
- ParcelId string
- Parcel ID
- ParcelType string
- Parcel type- Choices: wan/vpn/interface/gre,wan/vpn/interface/ethernet,wan/vpn/interface/cellular,wan/vpn/interface/ipsec,wan/vpn/interface/serial,routing/ospf,lan/vpn/interface/ethernet,lan/vpn/interface/svi,lan/vpn/interface/ipsec,lan/vpn
 
- Choices: 
- ParcelId string
- Parcel ID
- ParcelType string
- Parcel type- Choices: wan/vpn/interface/gre,wan/vpn/interface/ethernet,wan/vpn/interface/cellular,wan/vpn/interface/ipsec,wan/vpn/interface/serial,routing/ospf,lan/vpn/interface/ethernet,lan/vpn/interface/svi,lan/vpn/interface/ipsec,lan/vpn
 
- Choices: 
- parcelId String
- Parcel ID
- parcelType String
- Parcel type- Choices: wan/vpn/interface/gre,wan/vpn/interface/ethernet,wan/vpn/interface/cellular,wan/vpn/interface/ipsec,wan/vpn/interface/serial,routing/ospf,lan/vpn/interface/ethernet,lan/vpn/interface/svi,lan/vpn/interface/ipsec,lan/vpn
 
- Choices: 
- parcelId string
- Parcel ID
- parcelType string
- Parcel type- Choices: wan/vpn/interface/gre,wan/vpn/interface/ethernet,wan/vpn/interface/cellular,wan/vpn/interface/ipsec,wan/vpn/interface/serial,routing/ospf,lan/vpn/interface/ethernet,lan/vpn/interface/svi,lan/vpn/interface/ipsec,lan/vpn
 
- Choices: 
- parcel_id str
- Parcel ID
- parcel_type str
- Parcel type- Choices: wan/vpn/interface/gre,wan/vpn/interface/ethernet,wan/vpn/interface/cellular,wan/vpn/interface/ipsec,wan/vpn/interface/serial,routing/ospf,lan/vpn/interface/ethernet,lan/vpn/interface/svi,lan/vpn/interface/ipsec,lan/vpn
 
- Choices: 
- parcelId String
- Parcel ID
- parcelType String
- Parcel type- Choices: wan/vpn/interface/gre,wan/vpn/interface/ethernet,wan/vpn/interface/cellular,wan/vpn/interface/ipsec,wan/vpn/interface/serial,routing/ospf,lan/vpn/interface/ethernet,lan/vpn/interface/svi,lan/vpn/interface/ipsec,lan/vpn
 
- Choices: 
Import
$ pulumi import sdwan:index/configurationGroup:ConfigurationGroup example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sdwanTerraform Provider.
