UNPKG

@pulumi/meraki

Version:

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

59 lines (58 loc) 1.94 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getCameraCustomAnalyticsArtifacts(args?: GetCameraCustomAnalyticsArtifactsArgs, opts?: pulumi.InvokeOptions): Promise<GetCameraCustomAnalyticsArtifactsResult>; /** * A collection of arguments for invoking getCameraCustomAnalyticsArtifacts. */ export interface GetCameraCustomAnalyticsArtifactsArgs { /** * artifactId path parameter. Artifact ID */ artifactId?: string; /** * organizationId path parameter. Organization ID */ organizationId?: string; } /** * A collection of values returned by getCameraCustomAnalyticsArtifacts. */ export interface GetCameraCustomAnalyticsArtifactsResult { /** * artifactId path parameter. Artifact ID */ readonly artifactId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.organizations.GetCameraCustomAnalyticsArtifactsItem; /** * Array of ResponseCameraGetOrganizationCameraCustomAnalyticsArtifacts */ readonly items: outputs.organizations.GetCameraCustomAnalyticsArtifactsItem[]; /** * organizationId path parameter. Organization ID */ readonly organizationId?: string; } /** * ## Example Usage */ export declare function getCameraCustomAnalyticsArtifactsOutput(args?: GetCameraCustomAnalyticsArtifactsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetCameraCustomAnalyticsArtifactsResult>; /** * A collection of arguments for invoking getCameraCustomAnalyticsArtifacts. */ export interface GetCameraCustomAnalyticsArtifactsOutputArgs { /** * artifactId path parameter. Artifact ID */ artifactId?: pulumi.Input<string>; /** * organizationId path parameter. Organization ID */ organizationId?: pulumi.Input<string>; }