@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
77 lines (76 loc) • 2.56 kB
TypeScript
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.devices.getCameraVideoLink({
* serial: "string",
* timestamp: "string",
* });
* export const merakiDevicesCameraVideoLinkExample = example.then(example => example.item);
* ```
*/
export declare function getCameraVideoLink(args: GetCameraVideoLinkArgs, opts?: pulumi.InvokeOptions): Promise<GetCameraVideoLinkResult>;
/**
* A collection of arguments for invoking getCameraVideoLink.
*/
export interface GetCameraVideoLinkArgs {
/**
* serial path parameter.
*/
serial: string;
/**
* timestamp query parameter. [optional] The video link will start at this time. The timestamp should be a string in ISO8601 format. If no timestamp is specified, we will assume current time.
*/
timestamp?: string;
}
/**
* A collection of values returned by getCameraVideoLink.
*/
export interface GetCameraVideoLinkResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.devices.GetCameraVideoLinkItem;
/**
* serial path parameter.
*/
readonly serial: string;
/**
* timestamp query parameter. [optional] The video link will start at this time. The timestamp should be a string in ISO8601 format. If no timestamp is specified, we will assume current time.
*/
readonly timestamp?: string;
}
/**
* ## 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);
* ```
*/
export declare function getCameraVideoLinkOutput(args: GetCameraVideoLinkOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCameraVideoLinkResult>;
/**
* A collection of arguments for invoking getCameraVideoLink.
*/
export interface GetCameraVideoLinkOutputArgs {
/**
* serial path parameter.
*/
serial: pulumi.Input<string>;
/**
* timestamp query parameter. [optional] The video link will start at this time. The timestamp should be a string in ISO8601 format. If no timestamp is specified, we will assume current time.
*/
timestamp?: pulumi.Input<string>;
}