sdwan.CiscoNtpFeatureTemplate
Explore with Pulumi AI
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=[{
        "id": 0,
        "id_variable": "string",
        "optional": False,
        "value": "string",
        "value_variable": "string",
    }],
    master_stratum_variable="string",
    master_variable="string",
    name="string",
    servers=[{
        "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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<CiscoNtp Feature Template Authentication Key> 
- Set MD5 authentication key
- Master bool
- Configure device as NTP master - Default value: false
- MasterSource stringInterface 
- Set interface for NTP Master
- MasterSource stringInterface Variable 
- Variable name
- MasterStratum int
- Master Stratum <1..15> - Range: 1-15
- MasterStratum stringVariable 
- Variable name
- MasterVariable string
- Variable name
- Name string
- The name of the feature template
- Servers
List<CiscoNtp Feature Template Server> 
- Configure NTP servers
- TrustedKeys List<int>
- Designate authentication key as trustworthy
- TrustedKeys stringVariable 
- 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 []CiscoNtp Feature Template Authentication Key Args 
- Set MD5 authentication key
- Master bool
- Configure device as NTP master - Default value: false
- MasterSource stringInterface 
- Set interface for NTP Master
- MasterSource stringInterface Variable 
- Variable name
- MasterStratum int
- Master Stratum <1..15> - Range: 1-15
- MasterStratum stringVariable 
- Variable name
- MasterVariable string
- Variable name
- Name string
- The name of the feature template
- Servers
[]CiscoNtp Feature Template Server Args 
- Configure NTP servers
- TrustedKeys []int
- Designate authentication key as trustworthy
- TrustedKeys stringVariable 
- 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<CiscoNtp Feature Template Authentication Key> 
- Set MD5 authentication key
- master Boolean
- Configure device as NTP master - Default value: false
- masterSource StringInterface 
- Set interface for NTP Master
- masterSource StringInterface Variable 
- Variable name
- masterStratum Integer
- Master Stratum <1..15> - Range: 1-15
- masterStratum StringVariable 
- Variable name
- masterVariable String
- Variable name
- name String
- The name of the feature template
- servers
List<CiscoNtp Feature Template Server> 
- Configure NTP servers
- trustedKeys List<Integer>
- Designate authentication key as trustworthy
- trustedKeys StringVariable 
- 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 CiscoNtp Feature Template Authentication Key[] 
- Set MD5 authentication key
- master boolean
- Configure device as NTP master - Default value: false
- masterSource stringInterface 
- Set interface for NTP Master
- masterSource stringInterface Variable 
- Variable name
- masterStratum number
- Master Stratum <1..15> - Range: 1-15
- masterStratum stringVariable 
- Variable name
- masterVariable string
- Variable name
- name string
- The name of the feature template
- servers
CiscoNtp Feature Template Server[] 
- Configure NTP servers
- trustedKeys number[]
- Designate authentication key as trustworthy
- trustedKeys stringVariable 
- 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[CiscoNtp Feature Template Authentication Key Args] 
- Set MD5 authentication key
- master bool
- Configure device as NTP master - Default value: false
- master_source_ strinterface 
- Set interface for NTP Master
- master_source_ strinterface_ variable 
- Variable name
- master_stratum int
- Master Stratum <1..15> - Range: 1-15
- master_stratum_ strvariable 
- Variable name
- master_variable str
- Variable name
- name str
- The name of the feature template
- servers
Sequence[CiscoNtp Feature Template Server Args] 
- Configure NTP servers
- trusted_keys Sequence[int]
- Designate authentication key as trustworthy
- trusted_keys_ strvariable 
- 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
- masterSource StringInterface 
- Set interface for NTP Master
- masterSource StringInterface Variable 
- Variable name
- masterStratum Number
- Master Stratum <1..15> - Range: 1-15
- masterStratum StringVariable 
- 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
- trustedKeys StringVariable 
- 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) -> CiscoNtpFeatureTemplatefunc 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)resources:  _:    type: sdwan:CiscoNtpFeatureTemplate    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- AuthenticationKeys List<CiscoNtp Feature Template Authentication Key> 
- 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
- MasterSource stringInterface 
- Set interface for NTP Master
- MasterSource stringInterface Variable 
- Variable name
- MasterStratum int
- Master Stratum <1..15> - Range: 1-15
- MasterStratum stringVariable 
- Variable name
- MasterVariable string
- Variable name
- Name string
- The name of the feature template
- Servers
List<CiscoNtp Feature Template Server> 
- Configure NTP servers
- TemplateType string
- The template type
- TrustedKeys List<int>
- Designate authentication key as trustworthy
- TrustedKeys stringVariable 
- Variable name
- Version int
- The version of the feature template
- AuthenticationKeys []CiscoNtp Feature Template Authentication Key Args 
- 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
- MasterSource stringInterface 
- Set interface for NTP Master
- MasterSource stringInterface Variable 
- Variable name
- MasterStratum int
- Master Stratum <1..15> - Range: 1-15
- MasterStratum stringVariable 
- Variable name
- MasterVariable string
- Variable name
- Name string
- The name of the feature template
- Servers
[]CiscoNtp Feature Template Server Args 
- Configure NTP servers
- TemplateType string
- The template type
- TrustedKeys []int
- Designate authentication key as trustworthy
- TrustedKeys stringVariable 
- Variable name
- Version int
- The version of the feature template
- authenticationKeys List<CiscoNtp Feature Template Authentication Key> 
- 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
- masterSource StringInterface 
- Set interface for NTP Master
- masterSource StringInterface Variable 
- Variable name
- masterStratum Integer
- Master Stratum <1..15> - Range: 1-15
- masterStratum StringVariable 
- Variable name
- masterVariable String
- Variable name
- name String
- The name of the feature template
- servers
List<CiscoNtp Feature Template Server> 
- Configure NTP servers
- templateType String
- The template type
- trustedKeys List<Integer>
- Designate authentication key as trustworthy
- trustedKeys StringVariable 
- Variable name
- version Integer
- The version of the feature template
- authenticationKeys CiscoNtp Feature Template Authentication Key[] 
- 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
- masterSource stringInterface 
- Set interface for NTP Master
- masterSource stringInterface Variable 
- Variable name
- masterStratum number
- Master Stratum <1..15> - Range: 1-15
- masterStratum stringVariable 
- Variable name
- masterVariable string
- Variable name
- name string
- The name of the feature template
- servers
CiscoNtp Feature Template Server[] 
- Configure NTP servers
- templateType string
- The template type
- trustedKeys number[]
- Designate authentication key as trustworthy
- trustedKeys stringVariable 
- Variable name
- version number
- The version of the feature template
- authentication_keys Sequence[CiscoNtp Feature Template Authentication Key Args] 
- 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_ strinterface 
- Set interface for NTP Master
- master_source_ strinterface_ variable 
- Variable name
- master_stratum int
- Master Stratum <1..15> - Range: 1-15
- master_stratum_ strvariable 
- Variable name
- master_variable str
- Variable name
- name str
- The name of the feature template
- servers
Sequence[CiscoNtp Feature Template Server Args] 
- Configure NTP servers
- template_type str
- The template type
- trusted_keys Sequence[int]
- Designate authentication key as trustworthy
- trusted_keys_ strvariable 
- 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
- masterSource StringInterface 
- Set interface for NTP Master
- masterSource StringInterface Variable 
- Variable name
- masterStratum Number
- Master Stratum <1..15> - Range: 1-15
- masterStratum StringVariable 
- 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
- trustedKeys StringVariable 
- Variable name
- version Number
- The version of the feature template
Supporting Types
CiscoNtpFeatureTemplateAuthenticationKey, CiscoNtpFeatureTemplateAuthenticationKeyArgs            
- Id int
- MD5 authentication key ID- Range: 1-65535
 
- Range: 
- 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
 
- Range: 
- 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
 
- Range: 
- 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
 
- Range: 
- 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
 
- Range: 
- 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
 
- Range: 
- 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          
- AuthenticationKey intId 
- Set authentication key for the server- Range: 1-65535
 
- Range: 
- AuthenticationKey stringId Variable 
- Variable name
- HostnameIp string
- Set hostname or IP address of server
- HostnameIp stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Prefer bool
- Prefer this NTP server- Default value: false
 
- Default value: 
- PreferVariable string
- Variable name
- SourceInterface string
- Set interface to use to reach NTP server
- SourceInterface stringVariable 
- Variable name
- Version int
- Set NTP version- Range: 1-4
- Default value: 4
 
- Range: 
- VersionVariable string
- Variable name
- VpnId int
- Set VPN in which NTP server is located- Range: 0-65530
- Default value: 0
 
- Range: 
- VpnId stringVariable 
- Variable name
- AuthenticationKey intId 
- Set authentication key for the server- Range: 1-65535
 
- Range: 
- AuthenticationKey stringId Variable 
- Variable name
- HostnameIp string
- Set hostname or IP address of server
- HostnameIp stringVariable 
- Variable name
- Optional bool
- Indicates if list item is considered optional.
- Prefer bool
- Prefer this NTP server- Default value: false
 
- Default value: 
- PreferVariable string
- Variable name
- SourceInterface string
- Set interface to use to reach NTP server
- SourceInterface stringVariable 
- Variable name
- Version int
- Set NTP version- Range: 1-4
- Default value: 4
 
- Range: 
- VersionVariable string
- Variable name
- VpnId int
- Set VPN in which NTP server is located- Range: 0-65530
- Default value: 0
 
- Range: 
- VpnId stringVariable 
- Variable name
- authenticationKey IntegerId 
- Set authentication key for the server- Range: 1-65535
 
- Range: 
- authenticationKey StringId Variable 
- Variable name
- hostnameIp String
- Set hostname or IP address of server
- hostnameIp StringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefer Boolean
- Prefer this NTP server- Default value: false
 
- Default value: 
- preferVariable String
- Variable name
- sourceInterface String
- Set interface to use to reach NTP server
- sourceInterface StringVariable 
- Variable name
- version Integer
- Set NTP version- Range: 1-4
- Default value: 4
 
- Range: 
- versionVariable String
- Variable name
- vpnId Integer
- Set VPN in which NTP server is located- Range: 0-65530
- Default value: 0
 
- Range: 
- vpnId StringVariable 
- Variable name
- authenticationKey numberId 
- Set authentication key for the server- Range: 1-65535
 
- Range: 
- authenticationKey stringId Variable 
- Variable name
- hostnameIp string
- Set hostname or IP address of server
- hostnameIp stringVariable 
- Variable name
- optional boolean
- Indicates if list item is considered optional.
- prefer boolean
- Prefer this NTP server- Default value: false
 
- Default value: 
- preferVariable string
- Variable name
- sourceInterface string
- Set interface to use to reach NTP server
- sourceInterface stringVariable 
- Variable name
- version number
- Set NTP version- Range: 1-4
- Default value: 4
 
- Range: 
- versionVariable string
- Variable name
- vpnId number
- Set VPN in which NTP server is located- Range: 0-65530
- Default value: 0
 
- Range: 
- vpnId stringVariable 
- Variable name
- authentication_key_ intid 
- Set authentication key for the server- Range: 1-65535
 
- Range: 
- authentication_key_ strid_ variable 
- Variable name
- hostname_ip str
- Set hostname or IP address of server
- hostname_ip_ strvariable 
- Variable name
- optional bool
- Indicates if list item is considered optional.
- prefer bool
- Prefer this NTP server- Default value: false
 
- Default value: 
- prefer_variable str
- Variable name
- source_interface str
- Set interface to use to reach NTP server
- source_interface_ strvariable 
- Variable name
- version int
- Set NTP version- Range: 1-4
- Default value: 4
 
- Range: 
- version_variable str
- Variable name
- vpn_id int
- Set VPN in which NTP server is located- Range: 0-65530
- Default value: 0
 
- Range: 
- vpn_id_ strvariable 
- Variable name
- authenticationKey NumberId 
- Set authentication key for the server- Range: 1-65535
 
- Range: 
- authenticationKey StringId Variable 
- Variable name
- hostnameIp String
- Set hostname or IP address of server
- hostnameIp StringVariable 
- Variable name
- optional Boolean
- Indicates if list item is considered optional.
- prefer Boolean
- Prefer this NTP server- Default value: false
 
- Default value: 
- preferVariable String
- Variable name
- sourceInterface String
- Set interface to use to reach NTP server
- sourceInterface StringVariable 
- Variable name
- version Number
- Set NTP version- Range: 1-4
- Default value: 4
 
- Range: 
- versionVariable String
- Variable name
- vpnId Number
- Set VPN in which NTP server is located- Range: 0-65530
- Default value: 0
 
- Range: 
- vpnId StringVariable 
- 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 sdwanTerraform Provider.
