UNPKG

@pulumi/sdwan

Version:

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

175 lines (174 loc) 4.33 kB
import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Cisco SIG Credentials feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoSigCredentialsFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoSigCredentialsFeatureTemplate(args?: GetCiscoSigCredentialsFeatureTemplateArgs, opts?: pulumi.InvokeOptions): Promise<GetCiscoSigCredentialsFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoSigCredentialsFeatureTemplate. */ export interface GetCiscoSigCredentialsFeatureTemplateArgs { /** * The id of the feature template */ id?: string; /** * The name of the feature template */ name?: string; } /** * A collection of values returned by getCiscoSigCredentialsFeatureTemplate. */ export interface GetCiscoSigCredentialsFeatureTemplateResult { /** * 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; /** * The name of the feature template */ readonly name: string; /** * The template type */ readonly templateType: string; /** * API Key */ readonly umbrellaApiKey: string; /** * Variable name */ readonly umbrellaApiKeyVariable: string; /** * API Secret */ readonly umbrellaApiSecret: string; /** * Variable name */ readonly umbrellaApiSecretVariable: string; /** * Ord ID */ readonly umbrellaOrganizationId: string; /** * Variable name */ readonly umbrellaOrganizationIdVariable: string; /** * The version of the feature template */ readonly version: number; /** * Third Party Cloud Name */ readonly zscalerCloudName: number; /** * Variable name */ readonly zscalerCloudNameVariable: string; /** * Organization Name */ readonly zscalerOrganization: string; /** * Variable name */ readonly zscalerOrganizationVariable: string; /** * Partner API Key */ readonly zscalerPartnerApiKey: string; /** * Variable name */ readonly zscalerPartnerApiKeyVariable: string; /** * Partner Base URI to be used in REST calls */ readonly zscalerPartnerBaseUri: string; /** * Variable name */ readonly zscalerPartnerBaseUriVariable: string; /** * Partner Password */ readonly zscalerPartnerPassword: string; /** * Variable name */ readonly zscalerPartnerPasswordVariable: string; /** * Partner User Name */ readonly zscalerPartnerUsername: string; /** * Variable name */ readonly zscalerPartnerUsernameVariable: string; /** * Password of Zscaler partner account */ readonly zscalerPassword: string; /** * Variable name */ readonly zscalerPasswordVariable: string; /** * Username of Zscaler partner account */ readonly zscalerUsername: string; /** * Variable name */ readonly zscalerUsernameVariable: string; } /** * This data source can read the Cisco SIG Credentials feature template. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getCiscoSigCredentialsFeatureTemplate({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * }); * ``` */ export declare function getCiscoSigCredentialsFeatureTemplateOutput(args?: GetCiscoSigCredentialsFeatureTemplateOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCiscoSigCredentialsFeatureTemplateResult>; /** * A collection of arguments for invoking getCiscoSigCredentialsFeatureTemplate. */ export interface GetCiscoSigCredentialsFeatureTemplateOutputArgs { /** * The id of the feature template */ id?: pulumi.Input<string>; /** * The name of the feature template */ name?: pulumi.Input<string>; }