UNPKG

@pulumi/meraki

Version:

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

71 lines (70 loc) 2.28 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getSmTargetGroups(args?: GetSmTargetGroupsArgs, opts?: pulumi.InvokeOptions): Promise<GetSmTargetGroupsResult>; /** * A collection of arguments for invoking getSmTargetGroups. */ export interface GetSmTargetGroupsArgs { /** * networkId path parameter. Network ID */ networkId?: string; /** * targetGroupId path parameter. Target group ID */ targetGroupId?: string; /** * withDetails query parameter. Boolean indicating if the the ids of the devices or users scoped by the target group should be included in the response */ withDetails?: boolean; } /** * A collection of values returned by getSmTargetGroups. */ export interface GetSmTargetGroupsResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.networks.GetSmTargetGroupsItem; /** * Array of ResponseSmGetNetworkSmTargetGroups */ readonly items: outputs.networks.GetSmTargetGroupsItem[]; /** * networkId path parameter. Network ID */ readonly networkId?: string; /** * targetGroupId path parameter. Target group ID */ readonly targetGroupId?: string; /** * withDetails query parameter. Boolean indicating if the the ids of the devices or users scoped by the target group should be included in the response */ readonly withDetails?: boolean; } /** * ## Example Usage */ export declare function getSmTargetGroupsOutput(args?: GetSmTargetGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmTargetGroupsResult>; /** * A collection of arguments for invoking getSmTargetGroups. */ export interface GetSmTargetGroupsOutputArgs { /** * networkId path parameter. Network ID */ networkId?: pulumi.Input<string>; /** * targetGroupId path parameter. Target group ID */ targetGroupId?: pulumi.Input<string>; /** * withDetails query parameter. Boolean indicating if the the ids of the devices or users scoped by the target group should be included in the response */ withDetails?: pulumi.Input<boolean>; }