@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.7 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* ## Example Usage
*/
export declare function getSmVppAccounts(args?: GetSmVppAccountsArgs, opts?: pulumi.InvokeOptions): Promise<GetSmVppAccountsResult>;
/**
* A collection of arguments for invoking getSmVppAccounts.
*/
export interface GetSmVppAccountsArgs {
/**
* organizationId path parameter. Organization ID
*/
organizationId?: string;
/**
* vppAccountId path parameter. Vpp account ID
*/
vppAccountId?: string;
}
/**
* A collection of values returned by getSmVppAccounts.
*/
export interface GetSmVppAccountsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.organizations.GetSmVppAccountsItem;
/**
* Array of ResponseSmGetOrganizationSmVppAccounts
*/
readonly items: outputs.organizations.GetSmVppAccountsItem[];
/**
* organizationId path parameter. Organization ID
*/
readonly organizationId?: string;
/**
* vppAccountId path parameter. Vpp account ID
*/
readonly vppAccountId?: string;
}
/**
* ## Example Usage
*/
export declare function getSmVppAccountsOutput(args?: GetSmVppAccountsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSmVppAccountsResult>;
/**
* A collection of arguments for invoking getSmVppAccounts.
*/
export interface GetSmVppAccountsOutputArgs {
/**
* organizationId path parameter. Organization ID
*/
organizationId?: pulumi.Input<string>;
/**
* vppAccountId path parameter. Vpp account ID
*/
vppAccountId?: pulumi.Input<string>;
}