UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

112 lines (111 loc) 3.37 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * OspfAuthProfile data source */ export declare function getOspfAuthProfile(args: GetOspfAuthProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetOspfAuthProfileResult>; /** * A collection of arguments for invoking getOspfAuthProfile. */ export interface GetOspfAuthProfileArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: string; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: string; /** * UUID of the resource */ id: string; /** * Profile name */ name?: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: string; } /** * A collection of values returned by getOspfAuthProfile. */ export interface GetOspfAuthProfileResult { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly device: string; /** * Map of sensitive values returned from the API. */ readonly encryptedValues: { [key: string]: string; }; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly folder: string; /** * UUID of the resource */ readonly id: string; /** * MD5s * > ℹ️ **Note:** You must specify exactly one of `md5` and `password`. */ readonly md5s: outputs.GetOspfAuthProfileMd5[]; /** * Profile name */ readonly name: string; /** * Password * > ℹ️ **Note:** You must specify exactly one of `md5` and `password`. */ readonly password: string; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ readonly snippet: string; readonly tfid: string; } /** * OspfAuthProfile data source */ export declare function getOspfAuthProfileOutput(args: GetOspfAuthProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetOspfAuthProfileResult>; /** * A collection of arguments for invoking getOspfAuthProfile. */ export interface GetOspfAuthProfileOutputArgs { /** * The device in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ device?: pulumi.Input<string>; /** * The folder in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ folder?: pulumi.Input<string>; /** * UUID of the resource */ id: pulumi.Input<string>; /** * Profile name */ name?: pulumi.Input<string>; /** * The snippet in which the resource is defined * > ℹ️ **Note:** You must specify exactly one of `device`, `folder`, and `snippet`. */ snippet?: pulumi.Input<string>; }