1. Packages
  2. Cisco Catalyst SD-WAN Provider
  3. API Docs
  4. CiscoSnmpFeatureTemplate
Cisco Catalyst SD-WAN v0.3.0 published on Friday, Mar 28, 2025 by Pulumi

sdwan.CiscoSnmpFeatureTemplate

Explore with Pulumi AI

This resource can manage a Cisco SNMP feature template.

  • Minimum SD-WAN Manager version: 15.0.0

Example Usage

Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.CiscoSnmpFeatureTemplate;
import com.pulumi.sdwan.CiscoSnmpFeatureTemplateArgs;
import com.pulumi.sdwan.inputs.CiscoSnmpFeatureTemplateViewArgs;
import com.pulumi.sdwan.inputs.CiscoSnmpFeatureTemplateCommunityArgs;
import com.pulumi.sdwan.inputs.CiscoSnmpFeatureTemplateGroupArgs;
import com.pulumi.sdwan.inputs.CiscoSnmpFeatureTemplateUserArgs;
import com.pulumi.sdwan.inputs.CiscoSnmpFeatureTemplateTrapTargetArgs;
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 CiscoSnmpFeatureTemplate("example", CiscoSnmpFeatureTemplateArgs.builder()
            .name("Example")
            .description("My Example")
            .deviceTypes("vedge-C8000V")
            .shutdown(false)
            .contact("Max")
            .location("Building 1")
            .views(CiscoSnmpFeatureTemplateViewArgs.builder()
                .name("VIEW1")
                .object_identifiers(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                .build())
            .communities(CiscoSnmpFeatureTemplateCommunityArgs.builder()
                .name("community1")
                .view("VIEW1")
                .authorization("read-only")
                .build())
            .groups(CiscoSnmpFeatureTemplateGroupArgs.builder()
                .name("GROUP1")
                .security_level("auth-priv")
                .view("VIEW1")
                .build())
            .users(CiscoSnmpFeatureTemplateUserArgs.builder()
                .name("user1")
                .authentication_protocol("sha")
                .authentication_password("password123")
                .privacy_protocol("aes-cfb-128")
                .privacy_password("password123")
                .group("GROUP1")
                .build())
            .trapTargets(CiscoSnmpFeatureTemplateTrapTargetArgs.builder()
                .vpn_id(1)
                .ip("1.1.1.1")
                .udp_port(12345)
                .community_name("community1")
                .user("user1")
                .source_interface("e1")
                .build())
            .build());

    }
}
Copy
resources:
  example:
    type: sdwan:CiscoSnmpFeatureTemplate
    properties:
      name: Example
      description: My Example
      deviceTypes:
        - vedge-C8000V
      shutdown: false
      contact: Max
      location: Building 1
      views:
        - name: VIEW1
          object_identifiers:
            - id: 1.2.3
              exclude: true
      communities:
        - name: community1
          view: VIEW1
          authorization: read-only
      groups:
        - name: GROUP1
          security_level: auth-priv
          view: VIEW1
      users:
        - name: user1
          authentication_protocol: sha
          authentication_password: password123
          privacy_protocol: aes-cfb-128
          privacy_password: password123
          group: GROUP1
      trapTargets:
        - vpn_id: 1
          ip: 1.1.1.1
          udp_port: 12345
          community_name: community1
          user: user1
          source_interface: e1
Copy

Create CiscoSnmpFeatureTemplate Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new CiscoSnmpFeatureTemplate(name: string, args: CiscoSnmpFeatureTemplateArgs, opts?: CustomResourceOptions);
@overload
def CiscoSnmpFeatureTemplate(resource_name: str,
                             args: CiscoSnmpFeatureTemplateArgs,
                             opts: Optional[ResourceOptions] = None)

@overload
def CiscoSnmpFeatureTemplate(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             description: Optional[str] = None,
                             device_types: Optional[Sequence[str]] = None,
                             location: Optional[str] = None,
                             contact_variable: Optional[str] = None,
                             contact: Optional[str] = None,
                             groups: Optional[Sequence[CiscoSnmpFeatureTemplateGroupArgs]] = None,
                             communities: Optional[Sequence[CiscoSnmpFeatureTemplateCommunityArgs]] = None,
                             location_variable: Optional[str] = None,
                             name: Optional[str] = None,
                             shutdown: Optional[bool] = None,
                             shutdown_variable: Optional[str] = None,
                             trap_targets: Optional[Sequence[CiscoSnmpFeatureTemplateTrapTargetArgs]] = None,
                             users: Optional[Sequence[CiscoSnmpFeatureTemplateUserArgs]] = None,
                             views: Optional[Sequence[CiscoSnmpFeatureTemplateViewArgs]] = None)
func NewCiscoSnmpFeatureTemplate(ctx *Context, name string, args CiscoSnmpFeatureTemplateArgs, opts ...ResourceOption) (*CiscoSnmpFeatureTemplate, error)
public CiscoSnmpFeatureTemplate(string name, CiscoSnmpFeatureTemplateArgs args, CustomResourceOptions? opts = null)
public CiscoSnmpFeatureTemplate(String name, CiscoSnmpFeatureTemplateArgs args)
public CiscoSnmpFeatureTemplate(String name, CiscoSnmpFeatureTemplateArgs args, CustomResourceOptions options)
type: sdwan:CiscoSnmpFeatureTemplate
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. CiscoSnmpFeatureTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. CiscoSnmpFeatureTemplateArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. CiscoSnmpFeatureTemplateArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. CiscoSnmpFeatureTemplateArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CiscoSnmpFeatureTemplateArgs
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 ciscoSnmpFeatureTemplateResource = new Sdwan.CiscoSnmpFeatureTemplate("ciscoSnmpFeatureTemplateResource", new()
{
    Description = "string",
    DeviceTypes = new[]
    {
        "string",
    },
    Location = "string",
    ContactVariable = "string",
    Contact = "string",
    Groups = new[]
    {
        new Sdwan.Inputs.CiscoSnmpFeatureTemplateGroupArgs
        {
            Name = "string",
            Optional = false,
            SecurityLevel = "string",
            View = "string",
            ViewVariable = "string",
        },
    },
    Communities = new[]
    {
        new Sdwan.Inputs.CiscoSnmpFeatureTemplateCommunityArgs
        {
            Authorization = "string",
            AuthorizationVariable = "string",
            Name = "string",
            Optional = false,
            View = "string",
            ViewVariable = "string",
        },
    },
    LocationVariable = "string",
    Name = "string",
    Shutdown = false,
    ShutdownVariable = "string",
    TrapTargets = new[]
    {
        new Sdwan.Inputs.CiscoSnmpFeatureTemplateTrapTargetArgs
        {
            CommunityName = "string",
            CommunityNameVariable = "string",
            Ip = "string",
            IpVariable = "string",
            Optional = false,
            SourceInterface = "string",
            SourceInterfaceVariable = "string",
            UdpPort = 0,
            UdpPortVariable = "string",
            User = "string",
            UserVariable = "string",
            VpnId = 0,
            VpnIdVariable = "string",
        },
    },
    Users = new[]
    {
        new Sdwan.Inputs.CiscoSnmpFeatureTemplateUserArgs
        {
            AuthenticationPassword = "string",
            AuthenticationPasswordVariable = "string",
            AuthenticationProtocol = "string",
            AuthenticationProtocolVariable = "string",
            Group = "string",
            GroupVariable = "string",
            Name = "string",
            Optional = false,
            PrivacyPassword = "string",
            PrivacyPasswordVariable = "string",
            PrivacyProtocol = "string",
            PrivacyProtocolVariable = "string",
        },
    },
    Views = new[]
    {
        new Sdwan.Inputs.CiscoSnmpFeatureTemplateViewArgs
        {
            Name = "string",
            ObjectIdentifiers = new[]
            {
                new Sdwan.Inputs.CiscoSnmpFeatureTemplateViewObjectIdentifierArgs
                {
                    Exclude = false,
                    ExcludeVariable = "string",
                    Id = "string",
                    IdVariable = "string",
                    Optional = false,
                },
            },
            Optional = false,
        },
    },
});
Copy
example, err := sdwan.NewCiscoSnmpFeatureTemplate(ctx, "ciscoSnmpFeatureTemplateResource", &sdwan.CiscoSnmpFeatureTemplateArgs{
	Description: pulumi.String("string"),
	DeviceTypes: pulumi.StringArray{
		pulumi.String("string"),
	},
	Location:        pulumi.String("string"),
	ContactVariable: pulumi.String("string"),
	Contact:         pulumi.String("string"),
	Groups: sdwan.CiscoSnmpFeatureTemplateGroupArray{
		&sdwan.CiscoSnmpFeatureTemplateGroupArgs{
			Name:          pulumi.String("string"),
			Optional:      pulumi.Bool(false),
			SecurityLevel: pulumi.String("string"),
			View:          pulumi.String("string"),
			ViewVariable:  pulumi.String("string"),
		},
	},
	Communities: sdwan.CiscoSnmpFeatureTemplateCommunityArray{
		&sdwan.CiscoSnmpFeatureTemplateCommunityArgs{
			Authorization:         pulumi.String("string"),
			AuthorizationVariable: pulumi.String("string"),
			Name:                  pulumi.String("string"),
			Optional:              pulumi.Bool(false),
			View:                  pulumi.String("string"),
			ViewVariable:          pulumi.String("string"),
		},
	},
	LocationVariable: pulumi.String("string"),
	Name:             pulumi.String("string"),
	Shutdown:         pulumi.Bool(false),
	ShutdownVariable: pulumi.String("string"),
	TrapTargets: sdwan.CiscoSnmpFeatureTemplateTrapTargetArray{
		&sdwan.CiscoSnmpFeatureTemplateTrapTargetArgs{
			CommunityName:           pulumi.String("string"),
			CommunityNameVariable:   pulumi.String("string"),
			Ip:                      pulumi.String("string"),
			IpVariable:              pulumi.String("string"),
			Optional:                pulumi.Bool(false),
			SourceInterface:         pulumi.String("string"),
			SourceInterfaceVariable: pulumi.String("string"),
			UdpPort:                 pulumi.Int(0),
			UdpPortVariable:         pulumi.String("string"),
			User:                    pulumi.String("string"),
			UserVariable:            pulumi.String("string"),
			VpnId:                   pulumi.Int(0),
			VpnIdVariable:           pulumi.String("string"),
		},
	},
	Users: sdwan.CiscoSnmpFeatureTemplateUserArray{
		&sdwan.CiscoSnmpFeatureTemplateUserArgs{
			AuthenticationPassword:         pulumi.String("string"),
			AuthenticationPasswordVariable: pulumi.String("string"),
			AuthenticationProtocol:         pulumi.String("string"),
			AuthenticationProtocolVariable: pulumi.String("string"),
			Group:                          pulumi.String("string"),
			GroupVariable:                  pulumi.String("string"),
			Name:                           pulumi.String("string"),
			Optional:                       pulumi.Bool(false),
			PrivacyPassword:                pulumi.String("string"),
			PrivacyPasswordVariable:        pulumi.String("string"),
			PrivacyProtocol:                pulumi.String("string"),
			PrivacyProtocolVariable:        pulumi.String("string"),
		},
	},
	Views: sdwan.CiscoSnmpFeatureTemplateViewArray{
		&sdwan.CiscoSnmpFeatureTemplateViewArgs{
			Name: pulumi.String("string"),
			ObjectIdentifiers: sdwan.CiscoSnmpFeatureTemplateViewObjectIdentifierArray{
				&sdwan.CiscoSnmpFeatureTemplateViewObjectIdentifierArgs{
					Exclude:         pulumi.Bool(false),
					ExcludeVariable: pulumi.String("string"),
					Id:              pulumi.String("string"),
					IdVariable:      pulumi.String("string"),
					Optional:        pulumi.Bool(false),
				},
			},
			Optional: pulumi.Bool(false),
		},
	},
})
Copy
var ciscoSnmpFeatureTemplateResource = new CiscoSnmpFeatureTemplate("ciscoSnmpFeatureTemplateResource", CiscoSnmpFeatureTemplateArgs.builder()
    .description("string")
    .deviceTypes("string")
    .location("string")
    .contactVariable("string")
    .contact("string")
    .groups(CiscoSnmpFeatureTemplateGroupArgs.builder()
        .name("string")
        .optional(false)
        .securityLevel("string")
        .view("string")
        .viewVariable("string")
        .build())
    .communities(CiscoSnmpFeatureTemplateCommunityArgs.builder()
        .authorization("string")
        .authorizationVariable("string")
        .name("string")
        .optional(false)
        .view("string")
        .viewVariable("string")
        .build())
    .locationVariable("string")
    .name("string")
    .shutdown(false)
    .shutdownVariable("string")
    .trapTargets(CiscoSnmpFeatureTemplateTrapTargetArgs.builder()
        .communityName("string")
        .communityNameVariable("string")
        .ip("string")
        .ipVariable("string")
        .optional(false)
        .sourceInterface("string")
        .sourceInterfaceVariable("string")
        .udpPort(0)
        .udpPortVariable("string")
        .user("string")
        .userVariable("string")
        .vpnId(0)
        .vpnIdVariable("string")
        .build())
    .users(CiscoSnmpFeatureTemplateUserArgs.builder()
        .authenticationPassword("string")
        .authenticationPasswordVariable("string")
        .authenticationProtocol("string")
        .authenticationProtocolVariable("string")
        .group("string")
        .groupVariable("string")
        .name("string")
        .optional(false)
        .privacyPassword("string")
        .privacyPasswordVariable("string")
        .privacyProtocol("string")
        .privacyProtocolVariable("string")
        .build())
    .views(CiscoSnmpFeatureTemplateViewArgs.builder()
        .name("string")
        .objectIdentifiers(CiscoSnmpFeatureTemplateViewObjectIdentifierArgs.builder()
            .exclude(false)
            .excludeVariable("string")
            .id("string")
            .idVariable("string")
            .optional(false)
            .build())
        .optional(false)
        .build())
    .build());
Copy
cisco_snmp_feature_template_resource = sdwan.CiscoSnmpFeatureTemplate("ciscoSnmpFeatureTemplateResource",
    description="string",
    device_types=["string"],
    location="string",
    contact_variable="string",
    contact="string",
    groups=[{
        "name": "string",
        "optional": False,
        "security_level": "string",
        "view": "string",
        "view_variable": "string",
    }],
    communities=[{
        "authorization": "string",
        "authorization_variable": "string",
        "name": "string",
        "optional": False,
        "view": "string",
        "view_variable": "string",
    }],
    location_variable="string",
    name="string",
    shutdown=False,
    shutdown_variable="string",
    trap_targets=[{
        "community_name": "string",
        "community_name_variable": "string",
        "ip": "string",
        "ip_variable": "string",
        "optional": False,
        "source_interface": "string",
        "source_interface_variable": "string",
        "udp_port": 0,
        "udp_port_variable": "string",
        "user": "string",
        "user_variable": "string",
        "vpn_id": 0,
        "vpn_id_variable": "string",
    }],
    users=[{
        "authentication_password": "string",
        "authentication_password_variable": "string",
        "authentication_protocol": "string",
        "authentication_protocol_variable": "string",
        "group": "string",
        "group_variable": "string",
        "name": "string",
        "optional": False,
        "privacy_password": "string",
        "privacy_password_variable": "string",
        "privacy_protocol": "string",
        "privacy_protocol_variable": "string",
    }],
    views=[{
        "name": "string",
        "object_identifiers": [{
            "exclude": False,
            "exclude_variable": "string",
            "id": "string",
            "id_variable": "string",
            "optional": False,
        }],
        "optional": False,
    }])
Copy
const ciscoSnmpFeatureTemplateResource = new sdwan.CiscoSnmpFeatureTemplate("ciscoSnmpFeatureTemplateResource", {
    description: "string",
    deviceTypes: ["string"],
    location: "string",
    contactVariable: "string",
    contact: "string",
    groups: [{
        name: "string",
        optional: false,
        securityLevel: "string",
        view: "string",
        viewVariable: "string",
    }],
    communities: [{
        authorization: "string",
        authorizationVariable: "string",
        name: "string",
        optional: false,
        view: "string",
        viewVariable: "string",
    }],
    locationVariable: "string",
    name: "string",
    shutdown: false,
    shutdownVariable: "string",
    trapTargets: [{
        communityName: "string",
        communityNameVariable: "string",
        ip: "string",
        ipVariable: "string",
        optional: false,
        sourceInterface: "string",
        sourceInterfaceVariable: "string",
        udpPort: 0,
        udpPortVariable: "string",
        user: "string",
        userVariable: "string",
        vpnId: 0,
        vpnIdVariable: "string",
    }],
    users: [{
        authenticationPassword: "string",
        authenticationPasswordVariable: "string",
        authenticationProtocol: "string",
        authenticationProtocolVariable: "string",
        group: "string",
        groupVariable: "string",
        name: "string",
        optional: false,
        privacyPassword: "string",
        privacyPasswordVariable: "string",
        privacyProtocol: "string",
        privacyProtocolVariable: "string",
    }],
    views: [{
        name: "string",
        objectIdentifiers: [{
            exclude: false,
            excludeVariable: "string",
            id: "string",
            idVariable: "string",
            optional: false,
        }],
        optional: false,
    }],
});
Copy
type: sdwan:CiscoSnmpFeatureTemplate
properties:
    communities:
        - authorization: string
          authorizationVariable: string
          name: string
          optional: false
          view: string
          viewVariable: string
    contact: string
    contactVariable: string
    description: string
    deviceTypes:
        - string
    groups:
        - name: string
          optional: false
          securityLevel: string
          view: string
          viewVariable: string
    location: string
    locationVariable: string
    name: string
    shutdown: false
    shutdownVariable: string
    trapTargets:
        - communityName: string
          communityNameVariable: string
          ip: string
          ipVariable: string
          optional: false
          sourceInterface: string
          sourceInterfaceVariable: string
          udpPort: 0
          udpPortVariable: string
          user: string
          userVariable: string
          vpnId: 0
          vpnIdVariable: string
    users:
        - authenticationPassword: string
          authenticationPasswordVariable: string
          authenticationProtocol: string
          authenticationProtocolVariable: string
          group: string
          groupVariable: string
          name: string
          optional: false
          privacyPassword: string
          privacyPasswordVariable: string
          privacyProtocol: string
          privacyProtocolVariable: string
    views:
        - name: string
          objectIdentifiers:
            - exclude: false
              excludeVariable: string
              id: string
              idVariable: string
              optional: false
          optional: false
Copy

CiscoSnmpFeatureTemplate 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 CiscoSnmpFeatureTemplate resource accepts the following input properties:

Description This property is required. string
The description of the feature template
DeviceTypes This property is required. List<string>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
Communities List<CiscoSnmpFeatureTemplateCommunity>
Configure SNMP community
Contact string
Set the contact for this managed node
ContactVariable string
Variable name
Groups List<CiscoSnmpFeatureTemplateGroup>
Configure an SNMP group
Location string
Set the physical location of this managed node
LocationVariable string
Variable name
Name string
The name of the feature template
Shutdown bool
Enable or disable SNMP - Default value: true
ShutdownVariable string
Variable name
TrapTargets List<CiscoSnmpFeatureTemplateTrapTarget>
Configure SNMP server to receive SNMP traps
Users List<CiscoSnmpFeatureTemplateUser>
Configure an SNMP user
Views List<CiscoSnmpFeatureTemplateView>
Configure a view record
Description This property is required. string
The description of the feature template
DeviceTypes This property is required. []string
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
Communities []CiscoSnmpFeatureTemplateCommunityArgs
Configure SNMP community
Contact string
Set the contact for this managed node
ContactVariable string
Variable name
Groups []CiscoSnmpFeatureTemplateGroupArgs
Configure an SNMP group
Location string
Set the physical location of this managed node
LocationVariable string
Variable name
Name string
The name of the feature template
Shutdown bool
Enable or disable SNMP - Default value: true
ShutdownVariable string
Variable name
TrapTargets []CiscoSnmpFeatureTemplateTrapTargetArgs
Configure SNMP server to receive SNMP traps
Users []CiscoSnmpFeatureTemplateUserArgs
Configure an SNMP user
Views []CiscoSnmpFeatureTemplateViewArgs
Configure a view record
description This property is required. String
The description of the feature template
deviceTypes This property is required. List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
communities List<CiscoSnmpFeatureTemplateCommunity>
Configure SNMP community
contact String
Set the contact for this managed node
contactVariable String
Variable name
groups List<CiscoSnmpFeatureTemplateGroup>
Configure an SNMP group
location String
Set the physical location of this managed node
locationVariable String
Variable name
name String
The name of the feature template
shutdown Boolean
Enable or disable SNMP - Default value: true
shutdownVariable String
Variable name
trapTargets List<CiscoSnmpFeatureTemplateTrapTarget>
Configure SNMP server to receive SNMP traps
users List<CiscoSnmpFeatureTemplateUser>
Configure an SNMP user
views List<CiscoSnmpFeatureTemplateView>
Configure a view record
description This property is required. string
The description of the feature template
deviceTypes This property is required. string[]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
communities CiscoSnmpFeatureTemplateCommunity[]
Configure SNMP community
contact string
Set the contact for this managed node
contactVariable string
Variable name
groups CiscoSnmpFeatureTemplateGroup[]
Configure an SNMP group
location string
Set the physical location of this managed node
locationVariable string
Variable name
name string
The name of the feature template
shutdown boolean
Enable or disable SNMP - Default value: true
shutdownVariable string
Variable name
trapTargets CiscoSnmpFeatureTemplateTrapTarget[]
Configure SNMP server to receive SNMP traps
users CiscoSnmpFeatureTemplateUser[]
Configure an SNMP user
views CiscoSnmpFeatureTemplateView[]
Configure a view record
description This property is required. str
The description of the feature template
device_types This property is required. Sequence[str]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
communities Sequence[CiscoSnmpFeatureTemplateCommunityArgs]
Configure SNMP community
contact str
Set the contact for this managed node
contact_variable str
Variable name
groups Sequence[CiscoSnmpFeatureTemplateGroupArgs]
Configure an SNMP group
location str
Set the physical location of this managed node
location_variable str
Variable name
name str
The name of the feature template
shutdown bool
Enable or disable SNMP - Default value: true
shutdown_variable str
Variable name
trap_targets Sequence[CiscoSnmpFeatureTemplateTrapTargetArgs]
Configure SNMP server to receive SNMP traps
users Sequence[CiscoSnmpFeatureTemplateUserArgs]
Configure an SNMP user
views Sequence[CiscoSnmpFeatureTemplateViewArgs]
Configure a view record
description This property is required. String
The description of the feature template
deviceTypes This property is required. List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
communities List<Property Map>
Configure SNMP community
contact String
Set the contact for this managed node
contactVariable String
Variable name
groups List<Property Map>
Configure an SNMP group
location String
Set the physical location of this managed node
locationVariable String
Variable name
name String
The name of the feature template
shutdown Boolean
Enable or disable SNMP - Default value: true
shutdownVariable String
Variable name
trapTargets List<Property Map>
Configure SNMP server to receive SNMP traps
users List<Property Map>
Configure an SNMP user
views List<Property Map>
Configure a view record

Outputs

All input properties are implicitly available as output properties. Additionally, the CiscoSnmpFeatureTemplate resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
TemplateType string
The template type
Version int
The version of the feature template
Id string
The provider-assigned unique ID for this managed resource.
TemplateType string
The template type
Version int
The version of the feature template
id String
The provider-assigned unique ID for this managed resource.
templateType String
The template type
version Integer
The version of the feature template
id string
The provider-assigned unique ID for this managed resource.
templateType string
The template type
version number
The version of the feature template
id str
The provider-assigned unique ID for this managed resource.
template_type str
The template type
version int
The version of the feature template
id String
The provider-assigned unique ID for this managed resource.
templateType String
The template type
version Number
The version of the feature template

Look up Existing CiscoSnmpFeatureTemplate Resource

Get an existing CiscoSnmpFeatureTemplate 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?: CiscoSnmpFeatureTemplateState, opts?: CustomResourceOptions): CiscoSnmpFeatureTemplate
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        communities: Optional[Sequence[CiscoSnmpFeatureTemplateCommunityArgs]] = None,
        contact: Optional[str] = None,
        contact_variable: Optional[str] = None,
        description: Optional[str] = None,
        device_types: Optional[Sequence[str]] = None,
        groups: Optional[Sequence[CiscoSnmpFeatureTemplateGroupArgs]] = None,
        location: Optional[str] = None,
        location_variable: Optional[str] = None,
        name: Optional[str] = None,
        shutdown: Optional[bool] = None,
        shutdown_variable: Optional[str] = None,
        template_type: Optional[str] = None,
        trap_targets: Optional[Sequence[CiscoSnmpFeatureTemplateTrapTargetArgs]] = None,
        users: Optional[Sequence[CiscoSnmpFeatureTemplateUserArgs]] = None,
        version: Optional[int] = None,
        views: Optional[Sequence[CiscoSnmpFeatureTemplateViewArgs]] = None) -> CiscoSnmpFeatureTemplate
func GetCiscoSnmpFeatureTemplate(ctx *Context, name string, id IDInput, state *CiscoSnmpFeatureTemplateState, opts ...ResourceOption) (*CiscoSnmpFeatureTemplate, error)
public static CiscoSnmpFeatureTemplate Get(string name, Input<string> id, CiscoSnmpFeatureTemplateState? state, CustomResourceOptions? opts = null)
public static CiscoSnmpFeatureTemplate get(String name, Output<String> id, CiscoSnmpFeatureTemplateState state, CustomResourceOptions options)
resources:  _:    type: sdwan:CiscoSnmpFeatureTemplate    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Communities List<CiscoSnmpFeatureTemplateCommunity>
Configure SNMP community
Contact string
Set the contact for this managed node
ContactVariable string
Variable name
Description string
The description of the feature template
DeviceTypes List<string>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
Groups List<CiscoSnmpFeatureTemplateGroup>
Configure an SNMP group
Location string
Set the physical location of this managed node
LocationVariable string
Variable name
Name string
The name of the feature template
Shutdown bool
Enable or disable SNMP - Default value: true
ShutdownVariable string
Variable name
TemplateType string
The template type
TrapTargets List<CiscoSnmpFeatureTemplateTrapTarget>
Configure SNMP server to receive SNMP traps
Users List<CiscoSnmpFeatureTemplateUser>
Configure an SNMP user
Version int
The version of the feature template
Views List<CiscoSnmpFeatureTemplateView>
Configure a view record
Communities []CiscoSnmpFeatureTemplateCommunityArgs
Configure SNMP community
Contact string
Set the contact for this managed node
ContactVariable string
Variable name
Description string
The description of the feature template
DeviceTypes []string
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
Groups []CiscoSnmpFeatureTemplateGroupArgs
Configure an SNMP group
Location string
Set the physical location of this managed node
LocationVariable string
Variable name
Name string
The name of the feature template
Shutdown bool
Enable or disable SNMP - Default value: true
ShutdownVariable string
Variable name
TemplateType string
The template type
TrapTargets []CiscoSnmpFeatureTemplateTrapTargetArgs
Configure SNMP server to receive SNMP traps
Users []CiscoSnmpFeatureTemplateUserArgs
Configure an SNMP user
Version int
The version of the feature template
Views []CiscoSnmpFeatureTemplateViewArgs
Configure a view record
communities List<CiscoSnmpFeatureTemplateCommunity>
Configure SNMP community
contact String
Set the contact for this managed node
contactVariable String
Variable name
description String
The description of the feature template
deviceTypes List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
groups List<CiscoSnmpFeatureTemplateGroup>
Configure an SNMP group
location String
Set the physical location of this managed node
locationVariable String
Variable name
name String
The name of the feature template
shutdown Boolean
Enable or disable SNMP - Default value: true
shutdownVariable String
Variable name
templateType String
The template type
trapTargets List<CiscoSnmpFeatureTemplateTrapTarget>
Configure SNMP server to receive SNMP traps
users List<CiscoSnmpFeatureTemplateUser>
Configure an SNMP user
version Integer
The version of the feature template
views List<CiscoSnmpFeatureTemplateView>
Configure a view record
communities CiscoSnmpFeatureTemplateCommunity[]
Configure SNMP community
contact string
Set the contact for this managed node
contactVariable string
Variable name
description string
The description of the feature template
deviceTypes string[]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
groups CiscoSnmpFeatureTemplateGroup[]
Configure an SNMP group
location string
Set the physical location of this managed node
locationVariable string
Variable name
name string
The name of the feature template
shutdown boolean
Enable or disable SNMP - Default value: true
shutdownVariable string
Variable name
templateType string
The template type
trapTargets CiscoSnmpFeatureTemplateTrapTarget[]
Configure SNMP server to receive SNMP traps
users CiscoSnmpFeatureTemplateUser[]
Configure an SNMP user
version number
The version of the feature template
views CiscoSnmpFeatureTemplateView[]
Configure a view record
communities Sequence[CiscoSnmpFeatureTemplateCommunityArgs]
Configure SNMP community
contact str
Set the contact for this managed node
contact_variable str
Variable name
description str
The description of the feature template
device_types Sequence[str]
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
groups Sequence[CiscoSnmpFeatureTemplateGroupArgs]
Configure an SNMP group
location str
Set the physical location of this managed node
location_variable str
Variable name
name str
The name of the feature template
shutdown bool
Enable or disable SNMP - Default value: true
shutdown_variable str
Variable name
template_type str
The template type
trap_targets Sequence[CiscoSnmpFeatureTemplateTrapTargetArgs]
Configure SNMP server to receive SNMP traps
users Sequence[CiscoSnmpFeatureTemplateUserArgs]
Configure an SNMP user
version int
The version of the feature template
views Sequence[CiscoSnmpFeatureTemplateViewArgs]
Configure a view record
communities List<Property Map>
Configure SNMP community
contact String
Set the contact for this managed node
contactVariable String
Variable name
description String
The description of the feature template
deviceTypes List<String>
List of supported device types - Choices: vedge-C8000V, vedge-C8300-1N1S-4T2X, vedge-C8300-1N1S-6T, vedge-C8300-2N2S-6T, vedge-C8300-2N2S-4T2X, vedge-C8500-12X4QC, vedge-C8500-12X, vedge-C8500-20X6C, vedge-C8500L-8S4X, vedge-C8200-1N-4T, vedge-C8200L-1N-4T
groups List<Property Map>
Configure an SNMP group
location String
Set the physical location of this managed node
locationVariable String
Variable name
name String
The name of the feature template
shutdown Boolean
Enable or disable SNMP - Default value: true
shutdownVariable String
Variable name
templateType String
The template type
trapTargets List<Property Map>
Configure SNMP server to receive SNMP traps
users List<Property Map>
Configure an SNMP user
version Number
The version of the feature template
views List<Property Map>
Configure a view record

Supporting Types

CiscoSnmpFeatureTemplateCommunity
, CiscoSnmpFeatureTemplateCommunityArgs

Authorization string
Configure access permissions

  • Choices: read-only
AuthorizationVariable string
Variable name
Name string
Set name of the SNMP community
Optional bool
Indicates if list item is considered optional.
View string
Set name of the SNMP view
ViewVariable string
Variable name
Authorization string
Configure access permissions

  • Choices: read-only
AuthorizationVariable string
Variable name
Name string
Set name of the SNMP community
Optional bool
Indicates if list item is considered optional.
View string
Set name of the SNMP view
ViewVariable string
Variable name
authorization String
Configure access permissions

  • Choices: read-only
authorizationVariable String
Variable name
name String
Set name of the SNMP community
optional Boolean
Indicates if list item is considered optional.
view String
Set name of the SNMP view
viewVariable String
Variable name
authorization string
Configure access permissions

  • Choices: read-only
authorizationVariable string
Variable name
name string
Set name of the SNMP community
optional boolean
Indicates if list item is considered optional.
view string
Set name of the SNMP view
viewVariable string
Variable name
authorization str
Configure access permissions

  • Choices: read-only
authorization_variable str
Variable name
name str
Set name of the SNMP community
optional bool
Indicates if list item is considered optional.
view str
Set name of the SNMP view
view_variable str
Variable name
authorization String
Configure access permissions

  • Choices: read-only
authorizationVariable String
Variable name
name String
Set name of the SNMP community
optional Boolean
Indicates if list item is considered optional.
view String
Set name of the SNMP view
viewVariable String
Variable name

CiscoSnmpFeatureTemplateGroup
, CiscoSnmpFeatureTemplateGroupArgs

Name string
Name of the SNMP group
Optional bool
Indicates if list item is considered optional.
SecurityLevel string
Configure security level

  • Choices: no-auth-no-priv, auth-no-priv, auth-priv
View string
Name of the SNMP view
ViewVariable string
Variable name
Name string
Name of the SNMP group
Optional bool
Indicates if list item is considered optional.
SecurityLevel string
Configure security level

  • Choices: no-auth-no-priv, auth-no-priv, auth-priv
View string
Name of the SNMP view
ViewVariable string
Variable name
name String
Name of the SNMP group
optional Boolean
Indicates if list item is considered optional.
securityLevel String
Configure security level

  • Choices: no-auth-no-priv, auth-no-priv, auth-priv
view String
Name of the SNMP view
viewVariable String
Variable name
name string
Name of the SNMP group
optional boolean
Indicates if list item is considered optional.
securityLevel string
Configure security level

  • Choices: no-auth-no-priv, auth-no-priv, auth-priv
view string
Name of the SNMP view
viewVariable string
Variable name
name str
Name of the SNMP group
optional bool
Indicates if list item is considered optional.
security_level str
Configure security level

  • Choices: no-auth-no-priv, auth-no-priv, auth-priv
view str
Name of the SNMP view
view_variable str
Variable name
name String
Name of the SNMP group
optional Boolean
Indicates if list item is considered optional.
securityLevel String
Configure security level

  • Choices: no-auth-no-priv, auth-no-priv, auth-priv
view String
Name of the SNMP view
viewVariable String
Variable name

CiscoSnmpFeatureTemplateTrapTarget
, CiscoSnmpFeatureTemplateTrapTargetArgs

CommunityName string
Set name of the SNMP community
CommunityNameVariable string
Variable name
Ip string
Set IPv4/IPv6 address of SNMP server
IpVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
SourceInterface string
Source interface for outgoing SNMP traps
SourceInterfaceVariable string
Variable name
UdpPort int
Set UDP port number to connect to SNMP server

  • Range: 1-65535
UdpPortVariable string
Variable name
User string
Set name of the SNMP user
UserVariable string
Variable name
VpnId int
Set VPN in which SNMP server is located

  • Range: 0-65530
VpnIdVariable string
Variable name
CommunityName string
Set name of the SNMP community
CommunityNameVariable string
Variable name
Ip string
Set IPv4/IPv6 address of SNMP server
IpVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
SourceInterface string
Source interface for outgoing SNMP traps
SourceInterfaceVariable string
Variable name
UdpPort int
Set UDP port number to connect to SNMP server

  • Range: 1-65535
UdpPortVariable string
Variable name
User string
Set name of the SNMP user
UserVariable string
Variable name
VpnId int
Set VPN in which SNMP server is located

  • Range: 0-65530
VpnIdVariable string
Variable name
communityName String
Set name of the SNMP community
communityNameVariable String
Variable name
ip String
Set IPv4/IPv6 address of SNMP server
ipVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
sourceInterface String
Source interface for outgoing SNMP traps
sourceInterfaceVariable String
Variable name
udpPort Integer
Set UDP port number to connect to SNMP server

  • Range: 1-65535
udpPortVariable String
Variable name
user String
Set name of the SNMP user
userVariable String
Variable name
vpnId Integer
Set VPN in which SNMP server is located

  • Range: 0-65530
vpnIdVariable String
Variable name
communityName string
Set name of the SNMP community
communityNameVariable string
Variable name
ip string
Set IPv4/IPv6 address of SNMP server
ipVariable string
Variable name
optional boolean
Indicates if list item is considered optional.
sourceInterface string
Source interface for outgoing SNMP traps
sourceInterfaceVariable string
Variable name
udpPort number
Set UDP port number to connect to SNMP server

  • Range: 1-65535
udpPortVariable string
Variable name
user string
Set name of the SNMP user
userVariable string
Variable name
vpnId number
Set VPN in which SNMP server is located

  • Range: 0-65530
vpnIdVariable string
Variable name
community_name str
Set name of the SNMP community
community_name_variable str
Variable name
ip str
Set IPv4/IPv6 address of SNMP server
ip_variable str
Variable name
optional bool
Indicates if list item is considered optional.
source_interface str
Source interface for outgoing SNMP traps
source_interface_variable str
Variable name
udp_port int
Set UDP port number to connect to SNMP server

  • Range: 1-65535
udp_port_variable str
Variable name
user str
Set name of the SNMP user
user_variable str
Variable name
vpn_id int
Set VPN in which SNMP server is located

  • Range: 0-65530
vpn_id_variable str
Variable name
communityName String
Set name of the SNMP community
communityNameVariable String
Variable name
ip String
Set IPv4/IPv6 address of SNMP server
ipVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
sourceInterface String
Source interface for outgoing SNMP traps
sourceInterfaceVariable String
Variable name
udpPort Number
Set UDP port number to connect to SNMP server

  • Range: 1-65535
udpPortVariable String
Variable name
user String
Set name of the SNMP user
userVariable String
Variable name
vpnId Number
Set VPN in which SNMP server is located

  • Range: 0-65530
vpnIdVariable String
Variable name

CiscoSnmpFeatureTemplateUser
, CiscoSnmpFeatureTemplateUserArgs

AuthenticationPassword string
Specify authentication protocol password
AuthenticationPasswordVariable string
Variable name
AuthenticationProtocol string
Configure authentication protocol

  • Choices: md5, sha
AuthenticationProtocolVariable string
Variable name
Group string
Name of the SNMP group
GroupVariable string
Variable name
Name string
Name of the SNMP user
Optional bool
Indicates if list item is considered optional.
PrivacyPassword string
Specify privacy protocol password
PrivacyPasswordVariable string
Variable name
PrivacyProtocol string
Configure privacy protocol

  • Choices: aes-cfb-128, aes-256-cfb-128
PrivacyProtocolVariable string
Variable name
AuthenticationPassword string
Specify authentication protocol password
AuthenticationPasswordVariable string
Variable name
AuthenticationProtocol string
Configure authentication protocol

  • Choices: md5, sha
AuthenticationProtocolVariable string
Variable name
Group string
Name of the SNMP group
GroupVariable string
Variable name
Name string
Name of the SNMP user
Optional bool
Indicates if list item is considered optional.
PrivacyPassword string
Specify privacy protocol password
PrivacyPasswordVariable string
Variable name
PrivacyProtocol string
Configure privacy protocol

  • Choices: aes-cfb-128, aes-256-cfb-128
PrivacyProtocolVariable string
Variable name
authenticationPassword String
Specify authentication protocol password
authenticationPasswordVariable String
Variable name
authenticationProtocol String
Configure authentication protocol

  • Choices: md5, sha
authenticationProtocolVariable String
Variable name
group String
Name of the SNMP group
groupVariable String
Variable name
name String
Name of the SNMP user
optional Boolean
Indicates if list item is considered optional.
privacyPassword String
Specify privacy protocol password
privacyPasswordVariable String
Variable name
privacyProtocol String
Configure privacy protocol

  • Choices: aes-cfb-128, aes-256-cfb-128
privacyProtocolVariable String
Variable name
authenticationPassword string
Specify authentication protocol password
authenticationPasswordVariable string
Variable name
authenticationProtocol string
Configure authentication protocol

  • Choices: md5, sha
authenticationProtocolVariable string
Variable name
group string
Name of the SNMP group
groupVariable string
Variable name
name string
Name of the SNMP user
optional boolean
Indicates if list item is considered optional.
privacyPassword string
Specify privacy protocol password
privacyPasswordVariable string
Variable name
privacyProtocol string
Configure privacy protocol

  • Choices: aes-cfb-128, aes-256-cfb-128
privacyProtocolVariable string
Variable name
authentication_password str
Specify authentication protocol password
authentication_password_variable str
Variable name
authentication_protocol str
Configure authentication protocol

  • Choices: md5, sha
authentication_protocol_variable str
Variable name
group str
Name of the SNMP group
group_variable str
Variable name
name str
Name of the SNMP user
optional bool
Indicates if list item is considered optional.
privacy_password str
Specify privacy protocol password
privacy_password_variable str
Variable name
privacy_protocol str
Configure privacy protocol

  • Choices: aes-cfb-128, aes-256-cfb-128
privacy_protocol_variable str
Variable name
authenticationPassword String
Specify authentication protocol password
authenticationPasswordVariable String
Variable name
authenticationProtocol String
Configure authentication protocol

  • Choices: md5, sha
authenticationProtocolVariable String
Variable name
group String
Name of the SNMP group
groupVariable String
Variable name
name String
Name of the SNMP user
optional Boolean
Indicates if list item is considered optional.
privacyPassword String
Specify privacy protocol password
privacyPasswordVariable String
Variable name
privacyProtocol String
Configure privacy protocol

  • Choices: aes-cfb-128, aes-256-cfb-128
privacyProtocolVariable String
Variable name

CiscoSnmpFeatureTemplateView
, CiscoSnmpFeatureTemplateViewArgs

Name string
Set the name of the SNMP view
ObjectIdentifiers List<CiscoSnmpFeatureTemplateViewObjectIdentifier>
Configure SNMP object identifier
Optional bool
Indicates if list item is considered optional.
Name string
Set the name of the SNMP view
ObjectIdentifiers []CiscoSnmpFeatureTemplateViewObjectIdentifier
Configure SNMP object identifier
Optional bool
Indicates if list item is considered optional.
name String
Set the name of the SNMP view
objectIdentifiers List<CiscoSnmpFeatureTemplateViewObjectIdentifier>
Configure SNMP object identifier
optional Boolean
Indicates if list item is considered optional.
name string
Set the name of the SNMP view
objectIdentifiers CiscoSnmpFeatureTemplateViewObjectIdentifier[]
Configure SNMP object identifier
optional boolean
Indicates if list item is considered optional.
name str
Set the name of the SNMP view
object_identifiers Sequence[CiscoSnmpFeatureTemplateViewObjectIdentifier]
Configure SNMP object identifier
optional bool
Indicates if list item is considered optional.
name String
Set the name of the SNMP view
objectIdentifiers List<Property Map>
Configure SNMP object identifier
optional Boolean
Indicates if list item is considered optional.

CiscoSnmpFeatureTemplateViewObjectIdentifier
, CiscoSnmpFeatureTemplateViewObjectIdentifierArgs

Exclude bool
Exclude the OID

  • Default value: false
ExcludeVariable string
Variable name
Id string
Configure identifier of subtree of MIB objects
IdVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
Exclude bool
Exclude the OID

  • Default value: false
ExcludeVariable string
Variable name
Id string
Configure identifier of subtree of MIB objects
IdVariable string
Variable name
Optional bool
Indicates if list item is considered optional.
exclude Boolean
Exclude the OID

  • Default value: false
excludeVariable String
Variable name
id String
Configure identifier of subtree of MIB objects
idVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.
exclude boolean
Exclude the OID

  • Default value: false
excludeVariable string
Variable name
id string
Configure identifier of subtree of MIB objects
idVariable string
Variable name
optional boolean
Indicates if list item is considered optional.
exclude bool
Exclude the OID

  • Default value: false
exclude_variable str
Variable name
id str
Configure identifier of subtree of MIB objects
id_variable str
Variable name
optional bool
Indicates if list item is considered optional.
exclude Boolean
Exclude the OID

  • Default value: false
excludeVariable String
Variable name
id String
Configure identifier of subtree of MIB objects
idVariable String
Variable name
optional Boolean
Indicates if list item is considered optional.

Import

$ pulumi import sdwan:index/ciscoSnmpFeatureTemplate:CiscoSnmpFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd"
Copy

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 sdwan Terraform Provider.