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