@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
130 lines (129 loc) • 3.29 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "./types/output";
/**
* This data source can read the System SNMP Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getSystemSnmpFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getSystemSnmpFeature(args: GetSystemSnmpFeatureArgs, opts?: pulumi.InvokeOptions): Promise<GetSystemSnmpFeatureResult>;
/**
* A collection of arguments for invoking getSystemSnmpFeature.
*/
export interface GetSystemSnmpFeatureArgs {
/**
* Feature Profile ID
*/
featureProfileId: string;
/**
* The id of the Feature
*/
id: string;
}
/**
* A collection of values returned by getSystemSnmpFeature.
*/
export interface GetSystemSnmpFeatureResult {
/**
* Configure SNMP community
*/
readonly communities: outputs.GetSystemSnmpFeatureCommunity[];
/**
* Set the contact for this managed node
*/
readonly contactPerson: string;
/**
* Variable name
*/
readonly contactPersonVariable: string;
/**
* The description of the Feature
*/
readonly description: string;
/**
* Feature Profile ID
*/
readonly featureProfileId: string;
/**
* Configure an SNMP group
*/
readonly groups: outputs.GetSystemSnmpFeatureGroup[];
/**
* The id of the Feature
*/
readonly id: string;
/**
* Set the physical location of this managed node
*/
readonly locationOfDevice: string;
/**
* Variable name
*/
readonly locationOfDeviceVariable: string;
/**
* The name of the Feature
*/
readonly name: string;
/**
* Enable or disable SNMP
*/
readonly shutdown: boolean;
/**
* Variable name
*/
readonly shutdownVariable: string;
/**
* Configure SNMP server to receive SNMP traps
*/
readonly trapTargetServers: outputs.GetSystemSnmpFeatureTrapTargetServer[];
/**
* Configure an SNMP user
*/
readonly users: outputs.GetSystemSnmpFeatureUser[];
/**
* The version of the Feature
*/
readonly version: number;
/**
* Configure a view record
*/
readonly views: outputs.GetSystemSnmpFeatureView[];
}
/**
* This data source can read the System SNMP Feature.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = sdwan.getSystemSnmpFeature({
* id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* });
* ```
*/
export declare function getSystemSnmpFeatureOutput(args: GetSystemSnmpFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSystemSnmpFeatureResult>;
/**
* A collection of arguments for invoking getSystemSnmpFeature.
*/
export interface GetSystemSnmpFeatureOutputArgs {
/**
* Feature Profile ID
*/
featureProfileId: pulumi.Input<string>;
/**
* The id of the Feature
*/
id: pulumi.Input<string>;
}