@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
68 lines • 2.94 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.getCameraDetectionsHistoryByBoundaryByIntervalOutput = exports.getCameraDetectionsHistoryByBoundaryByInterval = 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.organizations.getCameraDetectionsHistoryByBoundaryByInterval({
* boundaryIds: ["string"],
* boundaryTypes: ["string"],
* duration: 1,
* organizationId: "string",
* perPage: 1,
* ranges: ["string"],
* });
* export const merakiOrganizationsCameraDetectionsHistoryByBoundaryByIntervalExample = example.then(example => example.items);
* ```
*/
function getCameraDetectionsHistoryByBoundaryByInterval(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invoke("meraki:organizations/getCameraDetectionsHistoryByBoundaryByInterval:getCameraDetectionsHistoryByBoundaryByInterval", {
"boundaryIds": args.boundaryIds,
"boundaryTypes": args.boundaryTypes,
"duration": args.duration,
"organizationId": args.organizationId,
"perPage": args.perPage,
"ranges": args.ranges,
}, opts);
}
exports.getCameraDetectionsHistoryByBoundaryByInterval = getCameraDetectionsHistoryByBoundaryByInterval;
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.organizations.getCameraDetectionsHistoryByBoundaryByInterval({
* boundaryIds: ["string"],
* boundaryTypes: ["string"],
* duration: 1,
* organizationId: "string",
* perPage: 1,
* ranges: ["string"],
* });
* export const merakiOrganizationsCameraDetectionsHistoryByBoundaryByIntervalExample = example.then(example => example.items);
* ```
*/
function getCameraDetectionsHistoryByBoundaryByIntervalOutput(args, opts) {
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
return pulumi.runtime.invokeOutput("meraki:organizations/getCameraDetectionsHistoryByBoundaryByInterval:getCameraDetectionsHistoryByBoundaryByInterval", {
"boundaryIds": args.boundaryIds,
"boundaryTypes": args.boundaryTypes,
"duration": args.duration,
"organizationId": args.organizationId,
"perPage": args.perPage,
"ranges": args.ranges,
}, opts);
}
exports.getCameraDetectionsHistoryByBoundaryByIntervalOutput = getCameraDetectionsHistoryByBoundaryByIntervalOutput;
//# sourceMappingURL=getCameraDetectionsHistoryByBoundaryByInterval.js.map