UNPKG

@pulumi/sdwan

Version:

A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1

229 lines (228 loc) 7.62 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * This resource can manage a Cisco NTP feature template. * - Minimum SD-WAN Manager version: `15.0.0` * * ## Import * * The `pulumi import` command can be used, for example: * * ```sh * $ pulumi import sdwan:index/ciscoNtpFeatureTemplate:CiscoNtpFeatureTemplate example "f6b2c44c-693c-4763-b010-895aa3d236bd" * ``` */ export declare class CiscoNtpFeatureTemplate extends pulumi.CustomResource { /** * Get an existing CiscoNtpFeatureTemplate resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: CiscoNtpFeatureTemplateState, opts?: pulumi.CustomResourceOptions): CiscoNtpFeatureTemplate; /** * Returns true if the given object is an instance of CiscoNtpFeatureTemplate. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CiscoNtpFeatureTemplate; /** * Set MD5 authentication key */ readonly authenticationKeys: pulumi.Output<outputs.CiscoNtpFeatureTemplateAuthenticationKey[] | undefined>; /** * The description of the feature template */ readonly description: pulumi.Output<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` */ readonly deviceTypes: pulumi.Output<string[]>; /** * Configure device as NTP master - Default value: `false` */ readonly master: pulumi.Output<boolean | undefined>; /** * Set interface for NTP Master */ readonly masterSourceInterface: pulumi.Output<string | undefined>; /** * Variable name */ readonly masterSourceInterfaceVariable: pulumi.Output<string | undefined>; /** * Master Stratum <1..15> - Range: `1`-`15` */ readonly masterStratum: pulumi.Output<number | undefined>; /** * Variable name */ readonly masterStratumVariable: pulumi.Output<string | undefined>; /** * Variable name */ readonly masterVariable: pulumi.Output<string | undefined>; /** * The name of the feature template */ readonly name: pulumi.Output<string>; /** * Configure NTP servers */ readonly servers: pulumi.Output<outputs.CiscoNtpFeatureTemplateServer[] | undefined>; /** * The template type */ readonly templateType: pulumi.Output<string>; /** * Designate authentication key as trustworthy */ readonly trustedKeys: pulumi.Output<number[] | undefined>; /** * Variable name */ readonly trustedKeysVariable: pulumi.Output<string | undefined>; /** * The version of the feature template */ readonly version: pulumi.Output<number>; /** * Create a CiscoNtpFeatureTemplate resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CiscoNtpFeatureTemplateArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CiscoNtpFeatureTemplate resources. */ export interface CiscoNtpFeatureTemplateState { /** * Set MD5 authentication key */ authenticationKeys?: pulumi.Input<pulumi.Input<inputs.CiscoNtpFeatureTemplateAuthenticationKey>[]>; /** * The description of the feature template */ description?: pulumi.Input<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` */ deviceTypes?: pulumi.Input<pulumi.Input<string>[]>; /** * Configure device as NTP master - Default value: `false` */ master?: pulumi.Input<boolean>; /** * Set interface for NTP Master */ masterSourceInterface?: pulumi.Input<string>; /** * Variable name */ masterSourceInterfaceVariable?: pulumi.Input<string>; /** * Master Stratum <1..15> - Range: `1`-`15` */ masterStratum?: pulumi.Input<number>; /** * Variable name */ masterStratumVariable?: pulumi.Input<string>; /** * Variable name */ masterVariable?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; /** * Configure NTP servers */ servers?: pulumi.Input<pulumi.Input<inputs.CiscoNtpFeatureTemplateServer>[]>; /** * The template type */ templateType?: pulumi.Input<string>; /** * Designate authentication key as trustworthy */ trustedKeys?: pulumi.Input<pulumi.Input<number>[]>; /** * Variable name */ trustedKeysVariable?: pulumi.Input<string>; /** * The version of the feature template */ version?: pulumi.Input<number>; } /** * The set of arguments for constructing a CiscoNtpFeatureTemplate resource. */ export interface CiscoNtpFeatureTemplateArgs { /** * Set MD5 authentication key */ authenticationKeys?: pulumi.Input<pulumi.Input<inputs.CiscoNtpFeatureTemplateAuthenticationKey>[]>; /** * The description of the feature template */ description: pulumi.Input<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` */ deviceTypes: pulumi.Input<pulumi.Input<string>[]>; /** * Configure device as NTP master - Default value: `false` */ master?: pulumi.Input<boolean>; /** * Set interface for NTP Master */ masterSourceInterface?: pulumi.Input<string>; /** * Variable name */ masterSourceInterfaceVariable?: pulumi.Input<string>; /** * Master Stratum <1..15> - Range: `1`-`15` */ masterStratum?: pulumi.Input<number>; /** * Variable name */ masterStratumVariable?: pulumi.Input<string>; /** * Variable name */ masterVariable?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; /** * Configure NTP servers */ servers?: pulumi.Input<pulumi.Input<inputs.CiscoNtpFeatureTemplateServer>[]>; /** * Designate authentication key as trustworthy */ trustedKeys?: pulumi.Input<pulumi.Input<number>[]>; /** * Variable name */ trustedKeysVariable?: pulumi.Input<string>; }