@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
52 lines • 1.88 kB
JavaScript
;
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.getCameraVideoLinkOutput = exports.getCameraVideoLink = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.devices.getCameraVideoLink({
* serial: "string",
* timestamp: "string",
* });
* export const merakiDevicesCameraVideoLinkExample = example.then(example => example.item);
* ```
*/
function getCameraVideoLink(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("meraki:devices/getCameraVideoLink:getCameraVideoLink", {
"serial": args.serial,
"timestamp": args.timestamp,
}, opts);
}
exports.getCameraVideoLink = getCameraVideoLink;
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.devices.getCameraVideoLink({
* serial: "string",
* timestamp: "string",
* });
* export const merakiDevicesCameraVideoLinkExample = example.then(example => example.item);
* ```
*/
function getCameraVideoLinkOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("meraki:devices/getCameraVideoLink:getCameraVideoLink", {
"serial": args.serial,
"timestamp": args.timestamp,
}, opts);
}
exports.getCameraVideoLinkOutput = getCameraVideoLinkOutput;
//# sourceMappingURL=getCameraVideoLink.js.map