@pulumi/scm
Version:
A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1
62 lines (61 loc) • 1.53 kB
TypeScript
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 {
/**
* UUID of the resource
*/
id: string;
/**
* Profile name
*/
name?: string;
}
/**
* A collection of values returned by getOspfAuthProfile.
*/
export interface GetOspfAuthProfileResult {
/**
* The device in which the resource is defined
*/
readonly device: string;
readonly encryptedValues: {
[key: string]: string;
};
readonly folder: string;
/**
* UUID of the resource
*/
readonly id: string;
readonly md5s: outputs.GetOspfAuthProfileMd5[];
/**
* Profile name
*/
readonly name: string;
readonly password: string;
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 {
/**
* UUID of the resource
*/
id: pulumi.Input<string>;
/**
* Profile name
*/
name?: pulumi.Input<string>;
}