1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. CiscoNtpFeatureTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.CiscoNtpFeatureTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This resource can manage a Cisco NTP 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.CiscoNtpFeatureTemplate;
    import com.pulumi.sdwan.CiscoNtpFeatureTemplateArgs;
    import com.pulumi.sdwan.inputs.CiscoNtpFeatureTemplateAuthenticationKeyArgs;
    import com.pulumi.sdwan.inputs.CiscoNtpFeatureTemplateServerArgs;
    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 CiscoNtpFeatureTemplate("example", CiscoNtpFeatureTemplateArgs.builder()        
                .name("Example")
                .description("My Example")
                .deviceTypes("vedge-C8000V")
                .master(true)
                .masterStratum(6)
                .masterSourceInterface("e1")
                .trustedKeys(1)
                .authenticationKeys(CiscoNtpFeatureTemplateAuthenticationKeyArgs.builder()
                    .id(1)
                    .value("12345")
                    .build())
                .servers(CiscoNtpFeatureTemplateServerArgs.builder()
                    .hostname_ip("NTP_SERVER1")
                    .authentication_key_id(1)
                    .vpn_id(1)
                    .version(4)
                    .source_interface("e1")
                    .prefer(true)
                    .build())
                .build());
    
        }
    }
    
    resources:
      example:
        type: sdwan:CiscoNtpFeatureTemplate
        properties:
          name: Example
          description: My Example
          deviceTypes:
            - vedge-C8000V
          master: true
          masterStratum: 6
          masterSourceInterface: e1
          trustedKeys:
            - 1
          authenticationKeys:
            - id: 1
              value: '12345'
          servers:
            - hostname_ip: NTP_SERVER1
              authentication_key_id: 1
              vpn_id: 1
              version: 4
              source_interface: e1
              prefer: true
    

    Create CiscoNtpFeatureTemplate Resource

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

    Constructor syntax

    new CiscoNtpFeatureTemplate(name: string, args: CiscoNtpFeatureTemplateArgs, opts?: CustomResourceOptions);
    @overload
    def CiscoNtpFeatureTemplate(resource_name: str,
                                args: CiscoNtpFeatureTemplateArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def CiscoNtpFeatureTemplate(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                device_types: Optional[Sequence[str]] = None,
                                description: Optional[str] = None,
                                master_stratum: Optional[int] = None,
                                master: Optional[bool] = None,
                                master_source_interface: Optional[str] = None,
                                master_source_interface_variable: Optional[str] = None,
                                authentication_keys: Optional[Sequence[CiscoNtpFeatureTemplateAuthenticationKeyArgs]] = None,
                                master_stratum_variable: Optional[str] = None,
                                master_variable: Optional[str] = None,
                                name: Optional[str] = None,
                                servers: Optional[Sequence[CiscoNtpFeatureTemplateServerArgs]] = None,
                                trusted_keys: Optional[Sequence[int]] = None,
                                trusted_keys_variable: Optional[str] = None)
    func NewCiscoNtpFeatureTemplate(ctx *Context, name string, args CiscoNtpFeatureTemplateArgs, opts ...ResourceOption) (*CiscoNtpFeatureTemplate, error)
    public CiscoNtpFeatureTemplate(string name, CiscoNtpFeatureTemplateArgs args, CustomResourceOptions? opts = null)
    public CiscoNtpFeatureTemplate(String name, CiscoNtpFeatureTemplateArgs args)
    public CiscoNtpFeatureTemplate(String name, CiscoNtpFeatureTemplateArgs args, CustomResourceOptions options)
    
    type: sdwan:CiscoNtpFeatureTemplate
    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 CiscoNtpFeatureTemplateArgs
    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 CiscoNtpFeatureTemplateArgs
    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 CiscoNtpFeatureTemplateArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CiscoNtpFeatureTemplateArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CiscoNtpFeatureTemplateArgs
    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 ciscoNtpFeatureTemplateResource = new Sdwan.CiscoNtpFeatureTemplate("ciscoNtpFeatureTemplateResource", new()
    {
        DeviceTypes = new[]
        {
            "string",
        },
        Description = "string",
        MasterStratum = 0,
        Master = false,
        MasterSourceInterface = "string",
        MasterSourceInterfaceVariable = "string",
        AuthenticationKeys = new[]
        {
            new Sdwan.Inputs.CiscoNtpFeatureTemplateAuthenticationKeyArgs
            {
                Id = 0,
                IdVariable = "string",
                Optional = false,
                Value = "string",
                ValueVariable = "string",
            },
        },
        MasterStratumVariable = "string",
        MasterVariable = "string",
        Name = "string",
        Servers = new[]
        {
            new Sdwan.Inputs.CiscoNtpFeatureTemplateServerArgs
            {
                AuthenticationKeyId = 0,
                AuthenticationKeyIdVariable = "string",
                HostnameIp = "string",
                HostnameIpVariable = "string",
                Optional = false,
                Prefer = false,
                PreferVariable = "string",
                SourceInterface = "string",
                SourceInterfaceVariable = "string",
                Version = 0,
                VersionVariable = "string",
                VpnId = 0,
                VpnIdVariable = "string",
            },
        },
        TrustedKeys = new[]
        {
            0,
        },
        TrustedKeysVariable = "string",
    });
    
    example, err := sdwan.NewCiscoNtpFeatureTemplate(ctx, "ciscoNtpFeatureTemplateResource", &sdwan.CiscoNtpFeatureTemplateArgs{
    	DeviceTypes: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Description:                   pulumi.String("string"),
    	MasterStratum:                 pulumi.Int(0),
    	Master:                        pulumi.Bool(false),
    	MasterSourceInterface:         pulumi.String("string"),
    	MasterSourceInterfaceVariable: pulumi.String("string"),
    	AuthenticationKeys: sdwan.CiscoNtpFeatureTemplateAuthenticationKeyArray{
    		&sdwan.CiscoNtpFeatureTemplateAuthenticationKeyArgs{
    			Id:            pulumi.Int(0),
    			IdVariable:    pulumi.String("string"),
    			Optional:      pulumi.Bool(false),
    			Value:         pulumi.String("string"),
    			ValueVariable: pulumi.String("string"),
    		},
    	},
    	MasterStratumVariable: pulumi.String("string"),
    	MasterVariable:        pulumi.String("string"),
    	Name:                  pulumi.String("string"),
    	Servers: sdwan.CiscoNtpFeatureTemplateServerArray{
    		&sdwan.CiscoNtpFeatureTemplateServerArgs{
    			AuthenticationKeyId:         pulumi.Int(0),
    			AuthenticationKeyIdVariable: pulumi.String("string"),
    			HostnameIp:                  pulumi.String("string"),
    			HostnameIpVariable:          pulumi.String("string"),
    			Optional:                    pulumi.Bool(false),
    			Prefer:                      pulumi.Bool(false),
    			PreferVariable:              pulumi.String("string"),
    			SourceInterface:             pulumi.String("string"),
    			SourceInterfaceVariable:     pulumi.String("string"),
    			Version:                     pulumi.Int(0),
    			VersionVariable:             pulumi.String("string"),
    			VpnId:                       pulumi.Int(0),
    			VpnIdVariable:               pulumi.String("string"),
    		},
    	},
    	TrustedKeys: pulumi.IntArray{
    		pulumi.Int(0),
    	},
    	TrustedKeysVariable: pulumi.String("string"),
    })
    
    var ciscoNtpFeatureTemplateResource = new CiscoNtpFeatureTemplate("ciscoNtpFeatureTemplateResource", CiscoNtpFeatureTemplateArgs.builder()
        .deviceTypes("string")
        .description("string")
        .masterStratum(0)
        .master(false)
        .masterSourceInterface("string")
        .masterSourceInterfaceVariable("string")
        .authenticationKeys(CiscoNtpFeatureTemplateAuthenticationKeyArgs.builder()
            .id(0)
            .idVariable("string")
            .optional(false)
            .value("string")
            .valueVariable("string")
            .build())
        .masterStratumVariable("string")
        .masterVariable("string")
        .name("string")
        .servers(CiscoNtpFeatureTemplateServerArgs.builder()
            .authenticationKeyId(0)
            .authenticationKeyIdVariable("string")
            .hostnameIp("string")
            .hostnameIpVariable("string")
            .optional(false)
            .prefer(false)
            .preferVariable("string")
            .sourceInterface("string")
            .sourceInterfaceVariable("string")
            .version(0)
            .versionVariable("string")
            .vpnId(0)
            .vpnIdVariable("string")
            .build())
        .trustedKeys(0)
        .trustedKeysVariable("string")
        .build());
    
    cisco_ntp_feature_template_resource = sdwan.CiscoNtpFeatureTemplate("ciscoNtpFeatureTemplateResource",
        device_types=["string"],
        description="string",
        master_stratum=0,
        master=False,
        master_source_interface="string",
        master_source_interface_variable="string",
        authentication_keys=[sdwan.CiscoNtpFeatureTemplateAuthenticationKeyArgs(
            id=0,
            id_variable="string",
            optional=False,
            value="string",
            value_variable="string",
        )],
        master_stratum_variable="string",
        master_variable="string",
        name="string",
        servers=[sdwan.CiscoNtpFeatureTemplateServerArgs(
            authentication_key_id=0,
            authentication_key_id_variable="string",
            hostname_ip="string",
            hostname_ip_variable="string",
            optional=False,
            prefer=False,
            prefer_variable="string",
            source_interface="string",
            source_interface_variable="string",
            version=0,
            version_variable="string",
            vpn_id=0,
            vpn_id_variable="string",
        )],
        trusted_keys=[0],
        trusted_keys_variable="string")
    
    const ciscoNtpFeatureTemplateResource = new sdwan.CiscoNtpFeatureTemplate("ciscoNtpFeatureTemplateResource", {
        deviceTypes: ["string"],
        description: "string",
        masterStratum: 0,
        master: false,
        masterSourceInterface: "string",
        masterSourceInterfaceVariable: "string",
        authenticationKeys: [{
            id: 0,
            idVariable: "string",
            optional: false,
            value: "string",
            valueVariable: "string",
        }],
        masterStratumVariable: "string",
        masterVariable: "string",
        name: "string",
        servers: [{
            authenticationKeyId: 0,
            authenticationKeyIdVariable: "string",
            hostnameIp: "string",
            hostnameIpVariable: "string",
            optional: false,
            prefer: false,
            preferVariable: "string",
            sourceInterface: "string",
            sourceInterfaceVariable: "string",
            version: 0,
            versionVariable: "string",
            vpnId: 0,
            vpnIdVariable: "string",
        }],
        trustedKeys: [0],
        trustedKeysVariable: "string",
    });
    
    type: sdwan:CiscoNtpFeatureTemplate
    properties:
        authenticationKeys:
            - id: 0
              idVariable: string
              optional: false
              value: string
              valueVariable: string
        description: string
        deviceTypes:
            - string
        master: false
        masterSourceInterface: string
        masterSourceInterfaceVariable: string
        masterStratum: 0
        masterStratumVariable: string
        masterVariable: string
        name: string
        servers:
            - authenticationKeyId: 0
              authenticationKeyIdVariable: string
              hostnameIp: string
              hostnameIpVariable: string
              optional: false
              prefer: false
              preferVariable: string
              sourceInterface: string
              sourceInterfaceVariable: string
              version: 0
              versionVariable: string
              vpnId: 0
              vpnIdVariable: string
        trustedKeys:
            - 0
        trustedKeysVariable: string
    

    CiscoNtpFeatureTemplate Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CiscoNtpFeatureTemplate resource accepts the following input properties:

    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
    AuthenticationKeys List<CiscoNtpFeatureTemplateAuthenticationKey>
    Set MD5 authentication key
    Master bool
    Configure device as NTP master - Default value: false
    MasterSourceInterface string
    Set interface for NTP Master
    MasterSourceInterfaceVariable string
    Variable name
    MasterStratum int
    Master Stratum <1..15> - Range: 1-15
    MasterStratumVariable string
    Variable name
    MasterVariable string
    Variable name
    Name string
    The name of the feature template
    Servers List<CiscoNtpFeatureTemplateServer>
    Configure NTP servers
    TrustedKeys List<int>
    Designate authentication key as trustworthy
    TrustedKeysVariable 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
    AuthenticationKeys []CiscoNtpFeatureTemplateAuthenticationKeyArgs
    Set MD5 authentication key
    Master bool
    Configure device as NTP master - Default value: false
    MasterSourceInterface string
    Set interface for NTP Master
    MasterSourceInterfaceVariable string
    Variable name
    MasterStratum int
    Master Stratum <1..15> - Range: 1-15
    MasterStratumVariable string
    Variable name
    MasterVariable string
    Variable name
    Name string
    The name of the feature template
    Servers []CiscoNtpFeatureTemplateServerArgs
    Configure NTP servers
    TrustedKeys []int
    Designate authentication key as trustworthy
    TrustedKeysVariable 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
    authenticationKeys List<CiscoNtpFeatureTemplateAuthenticationKey>
    Set MD5 authentication key
    master Boolean
    Configure device as NTP master - Default value: false
    masterSourceInterface String
    Set interface for NTP Master
    masterSourceInterfaceVariable String
    Variable name
    masterStratum Integer
    Master Stratum <1..15> - Range: 1-15
    masterStratumVariable String
    Variable name
    masterVariable String
    Variable name
    name String
    The name of the feature template
    servers List<CiscoNtpFeatureTemplateServer>
    Configure NTP servers
    trustedKeys List<Integer>
    Designate authentication key as trustworthy
    trustedKeysVariable 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
    authenticationKeys CiscoNtpFeatureTemplateAuthenticationKey[]
    Set MD5 authentication key
    master boolean
    Configure device as NTP master - Default value: false
    masterSourceInterface string
    Set interface for NTP Master
    masterSourceInterfaceVariable string
    Variable name
    masterStratum number
    Master Stratum <1..15> - Range: 1-15
    masterStratumVariable string
    Variable name
    masterVariable string
    Variable name
    name string
    The name of the feature template
    servers CiscoNtpFeatureTemplateServer[]
    Configure NTP servers
    trustedKeys number[]
    Designate authentication key as trustworthy
    trustedKeysVariable string
    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
    authentication_keys Sequence[CiscoNtpFeatureTemplateAuthenticationKeyArgs]
    Set MD5 authentication key
    master bool
    Configure device as NTP master - Default value: false
    master_source_interface str
    Set interface for NTP Master
    master_source_interface_variable str
    Variable name
    master_stratum int
    Master Stratum <1..15> - Range: 1-15
    master_stratum_variable str
    Variable name
    master_variable str
    Variable name
    name str
    The name of the feature template
    servers Sequence[CiscoNtpFeatureTemplateServerArgs]
    Configure NTP servers
    trusted_keys Sequence[int]
    Designate authentication key as trustworthy
    trusted_keys_variable str
    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
    authenticationKeys List<Property Map>
    Set MD5 authentication key
    master Boolean
    Configure device as NTP master - Default value: false
    masterSourceInterface String
    Set interface for NTP Master
    masterSourceInterfaceVariable String
    Variable name
    masterStratum Number
    Master Stratum <1..15> - Range: 1-15
    masterStratumVariable String
    Variable name
    masterVariable String
    Variable name
    name String
    The name of the feature template
    servers List<Property Map>
    Configure NTP servers
    trustedKeys List<Number>
    Designate authentication key as trustworthy
    trustedKeysVariable String
    Variable name

    Outputs

    All input properties are implicitly available as output properties. Additionally, the CiscoNtpFeatureTemplate 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 CiscoNtpFeatureTemplate Resource

    Get an existing CiscoNtpFeatureTemplate 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?: CiscoNtpFeatureTemplateState, opts?: CustomResourceOptions): CiscoNtpFeatureTemplate
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            authentication_keys: Optional[Sequence[CiscoNtpFeatureTemplateAuthenticationKeyArgs]] = None,
            description: Optional[str] = None,
            device_types: Optional[Sequence[str]] = None,
            master: Optional[bool] = None,
            master_source_interface: Optional[str] = None,
            master_source_interface_variable: Optional[str] = None,
            master_stratum: Optional[int] = None,
            master_stratum_variable: Optional[str] = None,
            master_variable: Optional[str] = None,
            name: Optional[str] = None,
            servers: Optional[Sequence[CiscoNtpFeatureTemplateServerArgs]] = None,
            template_type: Optional[str] = None,
            trusted_keys: Optional[Sequence[int]] = None,
            trusted_keys_variable: Optional[str] = None,
            version: Optional[int] = None) -> CiscoNtpFeatureTemplate
    func GetCiscoNtpFeatureTemplate(ctx *Context, name string, id IDInput, state *CiscoNtpFeatureTemplateState, opts ...ResourceOption) (*CiscoNtpFeatureTemplate, error)
    public static CiscoNtpFeatureTemplate Get(string name, Input<string> id, CiscoNtpFeatureTemplateState? state, CustomResourceOptions? opts = null)
    public static CiscoNtpFeatureTemplate get(String name, Output<String> id, CiscoNtpFeatureTemplateState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    AuthenticationKeys List<CiscoNtpFeatureTemplateAuthenticationKey>
    Set MD5 authentication key
    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
    Master bool
    Configure device as NTP master - Default value: false
    MasterSourceInterface string
    Set interface for NTP Master
    MasterSourceInterfaceVariable string
    Variable name
    MasterStratum int
    Master Stratum <1..15> - Range: 1-15
    MasterStratumVariable string
    Variable name
    MasterVariable string
    Variable name
    Name string
    The name of the feature template
    Servers List<CiscoNtpFeatureTemplateServer>
    Configure NTP servers
    TemplateType string
    The template type
    TrustedKeys List<int>
    Designate authentication key as trustworthy
    TrustedKeysVariable string
    Variable name
    Version int
    The version of the feature template
    AuthenticationKeys []CiscoNtpFeatureTemplateAuthenticationKeyArgs
    Set MD5 authentication key
    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
    Master bool
    Configure device as NTP master - Default value: false
    MasterSourceInterface string
    Set interface for NTP Master
    MasterSourceInterfaceVariable string
    Variable name
    MasterStratum int
    Master Stratum <1..15> - Range: 1-15
    MasterStratumVariable string
    Variable name
    MasterVariable string
    Variable name
    Name string
    The name of the feature template
    Servers []CiscoNtpFeatureTemplateServerArgs
    Configure NTP servers
    TemplateType string
    The template type
    TrustedKeys []int
    Designate authentication key as trustworthy
    TrustedKeysVariable string
    Variable name
    Version int
    The version of the feature template
    authenticationKeys List<CiscoNtpFeatureTemplateAuthenticationKey>
    Set MD5 authentication key
    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
    master Boolean
    Configure device as NTP master - Default value: false
    masterSourceInterface String
    Set interface for NTP Master
    masterSourceInterfaceVariable String
    Variable name
    masterStratum Integer
    Master Stratum <1..15> - Range: 1-15
    masterStratumVariable String
    Variable name
    masterVariable String
    Variable name
    name String
    The name of the feature template
    servers List<CiscoNtpFeatureTemplateServer>
    Configure NTP servers
    templateType String
    The template type
    trustedKeys List<Integer>
    Designate authentication key as trustworthy
    trustedKeysVariable String
    Variable name
    version Integer
    The version of the feature template
    authenticationKeys CiscoNtpFeatureTemplateAuthenticationKey[]
    Set MD5 authentication key
    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
    master boolean
    Configure device as NTP master - Default value: false
    masterSourceInterface string
    Set interface for NTP Master
    masterSourceInterfaceVariable string
    Variable name
    masterStratum number
    Master Stratum <1..15> - Range: 1-15
    masterStratumVariable string
    Variable name
    masterVariable string
    Variable name
    name string
    The name of the feature template
    servers CiscoNtpFeatureTemplateServer[]
    Configure NTP servers
    templateType string
    The template type
    trustedKeys number[]
    Designate authentication key as trustworthy
    trustedKeysVariable string
    Variable name
    version number
    The version of the feature template
    authentication_keys Sequence[CiscoNtpFeatureTemplateAuthenticationKeyArgs]
    Set MD5 authentication key
    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
    master bool
    Configure device as NTP master - Default value: false
    master_source_interface str
    Set interface for NTP Master
    master_source_interface_variable str
    Variable name
    master_stratum int
    Master Stratum <1..15> - Range: 1-15
    master_stratum_variable str
    Variable name
    master_variable str
    Variable name
    name str
    The name of the feature template
    servers Sequence[CiscoNtpFeatureTemplateServerArgs]
    Configure NTP servers
    template_type str
    The template type
    trusted_keys Sequence[int]
    Designate authentication key as trustworthy
    trusted_keys_variable str
    Variable name
    version int
    The version of the feature template
    authenticationKeys List<Property Map>
    Set MD5 authentication key
    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
    master Boolean
    Configure device as NTP master - Default value: false
    masterSourceInterface String
    Set interface for NTP Master
    masterSourceInterfaceVariable String
    Variable name
    masterStratum Number
    Master Stratum <1..15> - Range: 1-15
    masterStratumVariable String
    Variable name
    masterVariable String
    Variable name
    name String
    The name of the feature template
    servers List<Property Map>
    Configure NTP servers
    templateType String
    The template type
    trustedKeys List<Number>
    Designate authentication key as trustworthy
    trustedKeysVariable String
    Variable name
    version Number
    The version of the feature template

    Supporting Types

    CiscoNtpFeatureTemplateAuthenticationKey, CiscoNtpFeatureTemplateAuthenticationKeyArgs

    Id int
    MD5 authentication key ID

    • Range: 1-65535
    IdVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    Value string
    Enter cleartext or AES-encrypted MD5 authentication key
    ValueVariable string
    Variable name
    Id int
    MD5 authentication key ID

    • Range: 1-65535
    IdVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    Value string
    Enter cleartext or AES-encrypted MD5 authentication key
    ValueVariable string
    Variable name
    id Integer
    MD5 authentication key ID

    • Range: 1-65535
    idVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    value String
    Enter cleartext or AES-encrypted MD5 authentication key
    valueVariable String
    Variable name
    id number
    MD5 authentication key ID

    • Range: 1-65535
    idVariable string
    Variable name
    optional boolean
    Indicates if list item is considered optional.
    value string
    Enter cleartext or AES-encrypted MD5 authentication key
    valueVariable string
    Variable name
    id int
    MD5 authentication key ID

    • Range: 1-65535
    id_variable str
    Variable name
    optional bool
    Indicates if list item is considered optional.
    value str
    Enter cleartext or AES-encrypted MD5 authentication key
    value_variable str
    Variable name
    id Number
    MD5 authentication key ID

    • Range: 1-65535
    idVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    value String
    Enter cleartext or AES-encrypted MD5 authentication key
    valueVariable String
    Variable name

    CiscoNtpFeatureTemplateServer, CiscoNtpFeatureTemplateServerArgs

    AuthenticationKeyId int
    Set authentication key for the server

    • Range: 1-65535
    AuthenticationKeyIdVariable string
    Variable name
    HostnameIp string
    Set hostname or IP address of server
    HostnameIpVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    Prefer bool
    Prefer this NTP server

    • Default value: false
    PreferVariable string
    Variable name
    SourceInterface string
    Set interface to use to reach NTP server
    SourceInterfaceVariable string
    Variable name
    Version int
    Set NTP version

    • Range: 1-4
    • Default value: 4
    VersionVariable string
    Variable name
    VpnId int
    Set VPN in which NTP server is located

    • Range: 0-65530
    • Default value: 0
    VpnIdVariable string
    Variable name
    AuthenticationKeyId int
    Set authentication key for the server

    • Range: 1-65535
    AuthenticationKeyIdVariable string
    Variable name
    HostnameIp string
    Set hostname or IP address of server
    HostnameIpVariable string
    Variable name
    Optional bool
    Indicates if list item is considered optional.
    Prefer bool
    Prefer this NTP server

    • Default value: false
    PreferVariable string
    Variable name
    SourceInterface string
    Set interface to use to reach NTP server
    SourceInterfaceVariable string
    Variable name
    Version int
    Set NTP version

    • Range: 1-4
    • Default value: 4
    VersionVariable string
    Variable name
    VpnId int
    Set VPN in which NTP server is located

    • Range: 0-65530
    • Default value: 0
    VpnIdVariable string
    Variable name
    authenticationKeyId Integer
    Set authentication key for the server

    • Range: 1-65535
    authenticationKeyIdVariable String
    Variable name
    hostnameIp String
    Set hostname or IP address of server
    hostnameIpVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    prefer Boolean
    Prefer this NTP server

    • Default value: false
    preferVariable String
    Variable name
    sourceInterface String
    Set interface to use to reach NTP server
    sourceInterfaceVariable String
    Variable name
    version Integer
    Set NTP version

    • Range: 1-4
    • Default value: 4
    versionVariable String
    Variable name
    vpnId Integer
    Set VPN in which NTP server is located

    • Range: 0-65530
    • Default value: 0
    vpnIdVariable String
    Variable name
    authenticationKeyId number
    Set authentication key for the server

    • Range: 1-65535
    authenticationKeyIdVariable string
    Variable name
    hostnameIp string
    Set hostname or IP address of server
    hostnameIpVariable string
    Variable name
    optional boolean
    Indicates if list item is considered optional.
    prefer boolean
    Prefer this NTP server

    • Default value: false
    preferVariable string
    Variable name
    sourceInterface string
    Set interface to use to reach NTP server
    sourceInterfaceVariable string
    Variable name
    version number
    Set NTP version

    • Range: 1-4
    • Default value: 4
    versionVariable string
    Variable name
    vpnId number
    Set VPN in which NTP server is located

    • Range: 0-65530
    • Default value: 0
    vpnIdVariable string
    Variable name
    authentication_key_id int
    Set authentication key for the server

    • Range: 1-65535
    authentication_key_id_variable str
    Variable name
    hostname_ip str
    Set hostname or IP address of server
    hostname_ip_variable str
    Variable name
    optional bool
    Indicates if list item is considered optional.
    prefer bool
    Prefer this NTP server

    • Default value: false
    prefer_variable str
    Variable name
    source_interface str
    Set interface to use to reach NTP server
    source_interface_variable str
    Variable name
    version int
    Set NTP version

    • Range: 1-4
    • Default value: 4
    version_variable str
    Variable name
    vpn_id int
    Set VPN in which NTP server is located

    • Range: 0-65530
    • Default value: 0
    vpn_id_variable str
    Variable name
    authenticationKeyId Number
    Set authentication key for the server

    • Range: 1-65535
    authenticationKeyIdVariable String
    Variable name
    hostnameIp String
    Set hostname or IP address of server
    hostnameIpVariable String
    Variable name
    optional Boolean
    Indicates if list item is considered optional.
    prefer Boolean
    Prefer this NTP server

    • Default value: false
    preferVariable String
    Variable name
    sourceInterface String
    Set interface to use to reach NTP server
    sourceInterfaceVariable String
    Variable name
    version Number
    Set NTP version

    • Range: 1-4
    • Default value: 4
    versionVariable String
    Variable name
    vpnId Number
    Set VPN in which NTP server is located

    • Range: 0-65530
    • Default value: 0
    vpnIdVariable String
    Variable name

    Import

    $ pulumi import sdwan:index/ciscoNtpFeatureTemplate:CiscoNtpFeatureTemplate 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 sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi