UNPKG

@pulumi/meraki

Version:

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

66 lines (65 loc) 1.99 kB
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.organizations.getAlertsProfiles({ * organizationId: "string", * }); * export const merakiOrganizationsAlertsProfilesExample = example.then(example => example.items); * ``` */ export declare function getAlertsProfiles(args: GetAlertsProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetAlertsProfilesResult>; /** * A collection of arguments for invoking getAlertsProfiles. */ export interface GetAlertsProfilesArgs { /** * organizationId path parameter. Organization ID */ organizationId: string; } /** * A collection of values returned by getAlertsProfiles. */ export interface GetAlertsProfilesResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of ResponseOrganizationsGetOrganizationAlertsProfiles */ readonly items: outputs.organizations.GetAlertsProfilesItem[]; /** * organizationId path parameter. Organization ID */ readonly organizationId: string; } /** * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as meraki from "@pulumi/meraki"; * * const example = meraki.organizations.getAlertsProfiles({ * organizationId: "string", * }); * export const merakiOrganizationsAlertsProfilesExample = example.then(example => example.items); * ``` */ export declare function getAlertsProfilesOutput(args: GetAlertsProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAlertsProfilesResult>; /** * A collection of arguments for invoking getAlertsProfiles. */ export interface GetAlertsProfilesOutputArgs { /** * organizationId path parameter. Organization ID */ organizationId: pulumi.Input<string>; }