UNPKG

@pulumi/meraki

Version:

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

84 lines 3.33 kB
"use strict"; // *** 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.getApiRequestsOverviewResponseCodesByIntervalOutput = exports.getApiRequestsOverviewResponseCodesByInterval = 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.getApiRequestsOverviewResponseCodesByInterval({ * adminIds: ["string"], * interval: 1, * operationIds: ["string"], * organizationId: "string", * sourceIps: ["string"], * t0: "string", * t1: "string", * timespan: 1, * userAgent: "string", * version: 1, * }); * export const merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample = example.then(example => example.items); * ``` */ function getApiRequestsOverviewResponseCodesByInterval(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invoke("meraki:organizations/getApiRequestsOverviewResponseCodesByInterval:getApiRequestsOverviewResponseCodesByInterval", { "adminIds": args.adminIds, "interval": args.interval, "operationIds": args.operationIds, "organizationId": args.organizationId, "sourceIps": args.sourceIps, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, "userAgent": args.userAgent, "version": args.version, }, opts); } exports.getApiRequestsOverviewResponseCodesByInterval = getApiRequestsOverviewResponseCodesByInterval; /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.organizations.getApiRequestsOverviewResponseCodesByInterval({ * adminIds: ["string"], * interval: 1, * operationIds: ["string"], * organizationId: "string", * sourceIps: ["string"], * t0: "string", * t1: "string", * timespan: 1, * userAgent: "string", * version: 1, * }); * export const merakiOrganizationsApiRequestsOverviewResponseCodesByIntervalExample = example.then(example => example.items); * ``` */ function getApiRequestsOverviewResponseCodesByIntervalOutput(args, opts) { opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {}); return pulumi.runtime.invokeOutput("meraki:organizations/getApiRequestsOverviewResponseCodesByInterval:getApiRequestsOverviewResponseCodesByInterval", { "adminIds": args.adminIds, "interval": args.interval, "operationIds": args.operationIds, "organizationId": args.organizationId, "sourceIps": args.sourceIps, "t0": args.t0, "t1": args.t1, "timespan": args.timespan, "userAgent": args.userAgent, "version": args.version, }, opts); } exports.getApiRequestsOverviewResponseCodesByIntervalOutput = getApiRequestsOverviewResponseCodesByIntervalOutput; //# sourceMappingURL=getApiRequestsOverviewResponseCodesByInterval.js.map