UNPKG

@pulumi/sdwan

Version:

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

128 lines (127 loc) 3.24 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * This data source can read the Cisco NTP feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoNtpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoNtpFeatureTemplate(args?: GetCiscoNtpFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoNtpFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoNtpFeatureTemplate. */ export interface GetCiscoNtpFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCiscoNtpFeatureTemplate. */ export interface GetCiscoNtpFeatureTemplateResult { /** * Set MD5 authentication key */ readonly authenticationKeys: outputs.GetCiscoNtpFeatureTemplateAuthenticationKey[]; /** * The description of the feature template */ readonly description: string; /** * List of supported device types */ readonly deviceTypes: string[]; /** * The id of the feature template */ readonly id: string; /** * Configure device as NTP master */ readonly master: boolean; /** * Set interface for NTP Master */ readonly masterSourceInterface: string; /** * Variable name */ readonly masterSourceInterfaceVariable: string; /** * Master Stratum \n\n */ readonly masterStratum: number; /** * Variable name */ readonly masterStratumVariable: string; /** * Variable name */ readonly masterVariable: string; /** * The name of the feature template */ readonly name: string; /** * Configure NTP servers */ readonly servers: outputs.GetCiscoNtpFeatureTemplateServer[]; /** * The template type */ readonly templateType: string; /** * Designate authentication key as trustworthy */ readonly trustedKeys: number[]; /** * Variable name */ readonly trustedKeysVariable: string; /** * The version of the feature template */ readonly version: number; } /** * This data source can read the Cisco NTP feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoNtpFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoNtpFeatureTemplateOutput(args?: GetCiscoNtpFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoNtpFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoNtpFeatureTemplate. */ export interface GetCiscoNtpFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }