@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) • 2.05 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* ## Example Usage
*/
export declare function getAppliancePrefixesDelegatedStatics(args?: GetAppliancePrefixesDelegatedStaticsArgs, opts?: pulumi.InvokeOptions): Promise<GetAppliancePrefixesDelegatedStaticsResult>;
/**
* A collection of arguments for invoking getAppliancePrefixesDelegatedStatics.
*/
export interface GetAppliancePrefixesDelegatedStaticsArgs {
/**
* networkId path parameter. Network ID
*/
networkId?: string;
/**
* staticDelegatedPrefixId path parameter. Static delegated prefix ID
*/
staticDelegatedPrefixId?: string;
}
/**
* A collection of values returned by getAppliancePrefixesDelegatedStatics.
*/
export interface GetAppliancePrefixesDelegatedStaticsResult {
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
readonly item: outputs.networks.GetAppliancePrefixesDelegatedStaticsItem;
/**
* Array of ResponseApplianceGetNetworkAppliancePrefixesDelegatedStatics
*/
readonly items: outputs.networks.GetAppliancePrefixesDelegatedStaticsItem[];
/**
* networkId path parameter. Network ID
*/
readonly networkId?: string;
/**
* staticDelegatedPrefixId path parameter. Static delegated prefix ID
*/
readonly staticDelegatedPrefixId?: string;
}
/**
* ## Example Usage
*/
export declare function getAppliancePrefixesDelegatedStaticsOutput(args?: GetAppliancePrefixesDelegatedStaticsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetAppliancePrefixesDelegatedStaticsResult>;
/**
* A collection of arguments for invoking getAppliancePrefixesDelegatedStatics.
*/
export interface GetAppliancePrefixesDelegatedStaticsOutputArgs {
/**
* networkId path parameter. Network ID
*/
networkId?: pulumi.Input<string>;
/**
* staticDelegatedPrefixId path parameter. Static delegated prefix ID
*/
staticDelegatedPrefixId?: pulumi.Input<string>;
}