@pulumi/meraki
Version:
A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0
77 lines (76 loc) • 2.4 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.getWirelessEthernetPortsProfiles({
* networkId: "string",
* profileId: "string",
* });
* export const merakiNetworksWirelessEthernetPortsProfilesExample = example.then(example => example.item);
* ```
*/
export declare function getWirelessEthernetPortsProfiles(args: GetWirelessEthernetPortsProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetWirelessEthernetPortsProfilesResult>;
/**
* A collection of arguments for invoking getWirelessEthernetPortsProfiles.
*/
export interface GetWirelessEthernetPortsProfilesArgs {
/**
* networkId path parameter. Network ID
*/
networkId: string;
/**
* profileId path parameter. Profile ID
*/
profileId: string;
}
/**
* A collection of values returned by getWirelessEthernetPortsProfiles.
*/
export interface GetWirelessEthernetPortsProfilesResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.networks.GetWirelessEthernetPortsProfilesItem;
/**
* networkId path parameter. Network ID
*/
readonly networkId: string;
/**
* profileId path parameter. Profile ID
*/
readonly profileId: string;
}
/**
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as meraki from "@pulumi/meraki";
*
* const example = meraki.networks.getWirelessEthernetPortsProfiles({
* networkId: "string",
* profileId: "string",
* });
* export const merakiNetworksWirelessEthernetPortsProfilesExample = example.then(example => example.item);
* ```
*/
export declare function getWirelessEthernetPortsProfilesOutput(args: GetWirelessEthernetPortsProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetWirelessEthernetPortsProfilesResult>;
/**
* A collection of arguments for invoking getWirelessEthernetPortsProfiles.
*/
export interface GetWirelessEthernetPortsProfilesOutputArgs {
/**
* networkId path parameter. Network ID
*/
networkId: pulumi.Input<string>;
/**
* profileId path parameter. Profile ID
*/
profileId: pulumi.Input<string>;
}