@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
89 lines (88 loc) • 3.33 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.getWirelessRfProfiles({
* includeTemplateProfiles: false,
* networkId: "string",
* });
* export const merakiNetworksWirelessRfProfilesExample = example.then(example => example.item);
* ```
*/
export declare function getWirelessRfProfiles(args?: GetWirelessRfProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetWirelessRfProfilesResult>;
/**
* A collection of arguments for invoking getWirelessRfProfiles.
*/
export interface GetWirelessRfProfilesArgs {
/**
* includeTemplateProfiles query parameter. If the network is bound to a template, this parameter controls whether or not the non-basic RF profiles defined on the template should be included in the response alongside the non-basic profiles defined on the bound network. Defaults to false.
*/
includeTemplateProfiles?: boolean;
/**
* networkId path parameter. Network ID
*/
networkId?: string;
/**
* rfProfileId path parameter. Rf profile ID
*/
rfProfileId?: string;
}
/**
* A collection of values returned by getWirelessRfProfiles.
*/
export interface GetWirelessRfProfilesResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* includeTemplateProfiles query parameter. If the network is bound to a template, this parameter controls whether or not the non-basic RF profiles defined on the template should be included in the response alongside the non-basic profiles defined on the bound network. Defaults to false.
*/
readonly includeTemplateProfiles?: boolean;
readonly item: outputs.networks.GetWirelessRfProfilesItem;
/**
* 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.getWirelessRfProfiles({
* includeTemplateProfiles: false,
* networkId: "string",
* });
* export const merakiNetworksWirelessRfProfilesExample = example.then(example => example.item);
* ```
*/
export declare function getWirelessRfProfilesOutput(args?: GetWirelessRfProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWirelessRfProfilesResult>;
/**
* A collection of arguments for invoking getWirelessRfProfiles.
*/
export interface GetWirelessRfProfilesOutputArgs {
/**
* includeTemplateProfiles query parameter. If the network is bound to a template, this parameter controls whether or not the non-basic RF profiles defined on the template should be included in the response alongside the non-basic profiles defined on the bound network. Defaults to false.
*/
includeTemplateProfiles?: pulumi.Input<boolean>;
/**
* networkId path parameter. Network ID
*/
networkId?: pulumi.Input<string>;
/**
* rfProfileId path parameter. Rf profile ID
*/
rfProfileId?: pulumi.Input<string>;
}