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.networks.getVlanProfilesAssignmentsByDevice({
 *     endingBefore: "string",
 *     networkId: "string",
 *     perPage: 1,
 *     productTypes: ["string"],
 *     serials: ["string"],
 *     stackIds: ["string"],
 *     startingAfter: "string",
 * });
 * export const merakiNetworksVlanProfilesAssignmentsByDeviceExample = example.then(example => example.items);
 * ```
 */
export declare function getVlanProfilesAssignmentsByDevice(args: GetVlanProfilesAssignmentsByDeviceArgs, opts?: pulumi.InvokeOptions): Promise<GetVlanProfilesAssignmentsByDeviceResult>;
/**
 * A collection of arguments for invoking getVlanProfilesAssignmentsByDevice.
 */
export interface GetVlanProfilesAssignmentsByDeviceArgs {
    /**
     * endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    endingBefore?: string;
    /**
     * networkId path parameter. Network ID
     */
    networkId: string;
    /**
     * perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
     */
    perPage?: number;
    /**
     * productTypes query parameter. Optional parameter to filter devices by product types.
     */
    productTypes?: string[];
    /**
     * serials query parameter. Optional parameter to filter devices by serials. All devices returned belong to serial numbers that are an exact match.
     */
    serials?: string[];
    /**
     * stackIds query parameter. Optional parameter to filter devices by Switch Stack ids.
     */
    stackIds?: string[];
    /**
     * startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    startingAfter?: string;
}
/**
 * A collection of values returned by getVlanProfilesAssignmentsByDevice.
 */
export interface GetVlanProfilesAssignmentsByDeviceResult {
    /**
     * endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    readonly endingBefore?: string;
    /**
     * The provider-assigned unique ID for this managed resource.
     */
    readonly id: string;
    /**
     * Array of ResponseNetworksGetNetworkVlanProfilesAssignmentsByDevice
     */
    readonly items: outputs.networks.GetVlanProfilesAssignmentsByDeviceItem[];
    /**
     * networkId path parameter. Network ID
     */
    readonly networkId: string;
    /**
     * perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
     */
    readonly perPage?: number;
    /**
     * productTypes query parameter. Optional parameter to filter devices by product types.
     */
    readonly productTypes?: string[];
    /**
     * serials query parameter. Optional parameter to filter devices by serials. All devices returned belong to serial numbers that are an exact match.
     */
    readonly serials?: string[];
    /**
     * stackIds query parameter. Optional parameter to filter devices by Switch Stack ids.
     */
    readonly stackIds?: string[];
    /**
     * startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    readonly startingAfter?: string;
}
/**
 * ## Example Usage
 *
 * ```typescript
 * import * as pulumi from "@pulumi/pulumi";
 * import * as meraki from "@pulumi/meraki";
 *
 * const example = meraki.networks.getVlanProfilesAssignmentsByDevice({
 *     endingBefore: "string",
 *     networkId: "string",
 *     perPage: 1,
 *     productTypes: ["string"],
 *     serials: ["string"],
 *     stackIds: ["string"],
 *     startingAfter: "string",
 * });
 * export const merakiNetworksVlanProfilesAssignmentsByDeviceExample = example.then(example => example.items);
 * ```
 */
export declare function getVlanProfilesAssignmentsByDeviceOutput(args: GetVlanProfilesAssignmentsByDeviceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVlanProfilesAssignmentsByDeviceResult>;
/**
 * A collection of arguments for invoking getVlanProfilesAssignmentsByDevice.
 */
export interface GetVlanProfilesAssignmentsByDeviceOutputArgs {
    /**
     * endingBefore query parameter. A token used by the server to indicate the end of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    endingBefore?: pulumi.Input<string>;
    /**
     * networkId path parameter. Network ID
     */
    networkId: pulumi.Input<string>;
    /**
     * perPage query parameter. The number of entries per page returned. Acceptable range is 3 1000. Default is 1000.
     */
    perPage?: pulumi.Input<number>;
    /**
     * productTypes query parameter. Optional parameter to filter devices by product types.
     */
    productTypes?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * serials query parameter. Optional parameter to filter devices by serials. All devices returned belong to serial numbers that are an exact match.
     */
    serials?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * stackIds query parameter. Optional parameter to filter devices by Switch Stack ids.
     */
    stackIds?: pulumi.Input<pulumi.Input<string>[]>;
    /**
     * startingAfter query parameter. A token used by the server to indicate the start of the page. Often this is a timestamp or an ID but it is not limited to those. This parameter should not be defined by client applications. The link for the first, last, prev, or next page in the HTTP Link header should define it.
     */
    startingAfter?: pulumi.Input<string>;
}
