@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
75 lines (74 loc) • 2.21 kB
TypeScript
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.getApplianceRfProfiles({
* networkId: "string",
* });
* export const merakiNetworksApplianceRfProfilesExample = example.then(example => example.item);
* ```
*/
export declare function getApplianceRfProfiles(args?: GetApplianceRfProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetApplianceRfProfilesResult>;
/**
* A collection of arguments for invoking getApplianceRfProfiles.
*/
export interface GetApplianceRfProfilesArgs {
/**
* networkId path parameter. Network ID
*/
networkId?: string;
/**
* rfProfileId path parameter. Rf profile ID
*/
rfProfileId?: string;
}
/**
* A collection of values returned by getApplianceRfProfiles.
*/
export interface GetApplianceRfProfilesResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.networks.GetApplianceRfProfilesItem;
/**
* networkId path parameter. Network ID
*/
readonly networkId?: string;
/**
* rfProfileId path parameter. Rf profile ID
*/
readonly rfProfileId?: string;
}
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getApplianceRfProfiles({
* networkId: "string",
* });
* export const merakiNetworksApplianceRfProfilesExample = example.then(example => example.item);
* ```
*/
export declare function getApplianceRfProfilesOutput(args?: GetApplianceRfProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetApplianceRfProfilesResult>;
/**
* A collection of arguments for invoking getApplianceRfProfiles.
*/
export interface GetApplianceRfProfilesOutputArgs {
/**
* networkId path parameter. Network ID
*/
networkId?: pulumi.Input<string>;
/**
* rfProfileId path parameter. Rf profile ID
*/
rfProfileId?: pulumi.Input<string>;
}