UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

80 lines (79 loc) 2.21 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getSmDevicesCerts({ * deviceId: "string", * networkId: "string", * }); * export const merakiNetworksSmDevicesCertsExample = example.then(example => example.items); * ``` */ export declare function getSmDevicesCerts(args: GetSmDevicesCertsArgs, opts?: pulumi.InvokeOptions): Promise<GetSmDevicesCertsResult>; /** * A collection of arguments for invoking getSmDevicesCerts. */ export interface GetSmDevicesCertsArgs { /** * deviceId path parameter. Device ID */ deviceId: string; /** * networkId path parameter. Network ID */ networkId: string; } /** * A collection of values returned by getSmDevicesCerts. */ export interface GetSmDevicesCertsResult { /** * deviceId path parameter. Device ID */ readonly deviceId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of ResponseSmGetNetworkSmDeviceCerts */ readonly items: outputs.networks.GetSmDevicesCertsItem[]; /** * networkId path parameter. Network ID */ readonly networkId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.networks.getSmDevicesCerts({ * deviceId: "string", * networkId: "string", * }); * export const merakiNetworksSmDevicesCertsExample = example.then(example => example.items); * ``` */ export declare function getSmDevicesCertsOutput(args: GetSmDevicesCertsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmDevicesCertsResult>; /** * A collection of arguments for invoking getSmDevicesCerts. */ export interface GetSmDevicesCertsOutputArgs { /** * deviceId path parameter. Device ID */ deviceId: pulumi.Input<string>; /** * networkId path parameter. Network ID */ networkId: pulumi.Input<string>; }