UNPKG

@pulumi/meraki

Version:

A Pulumi package for creating and managing Cisco Meraki resources. Based on terraform-provider-meraki: version v0.2.0

83 lines (82 loc) 2.57 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * ## Example Usage */ export declare function getConfigTemplatesSwitchProfilesPorts(args?: GetConfigTemplatesSwitchProfilesPortsArgs, opts?: pulumi.InvokeOptions): Promise<GetConfigTemplatesSwitchProfilesPortsResult>; /** * A collection of arguments for invoking getConfigTemplatesSwitchProfilesPorts. */ export interface GetConfigTemplatesSwitchProfilesPortsArgs { /** * configTemplateId path parameter. Config template ID */ configTemplateId?: string; /** * organizationId path parameter. Organization ID */ organizationId?: string; /** * portId path parameter. Port ID */ portId?: string; /** * profileId path parameter. Profile ID */ profileId?: string; } /** * A collection of values returned by getConfigTemplatesSwitchProfilesPorts. */ export interface GetConfigTemplatesSwitchProfilesPortsResult { /** * configTemplateId path parameter. Config template ID */ readonly configTemplateId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly item: outputs.organizations.GetConfigTemplatesSwitchProfilesPortsItem; /** * Array of ResponseSwitchGetOrganizationConfigTemplateSwitchProfilePorts */ readonly items: outputs.organizations.GetConfigTemplatesSwitchProfilesPortsItem[]; /** * organizationId path parameter. Organization ID */ readonly organizationId?: string; /** * portId path parameter. Port ID */ readonly portId?: string; /** * profileId path parameter. Profile ID */ readonly profileId?: string; } /** * ## Example Usage */ export declare function getConfigTemplatesSwitchProfilesPortsOutput(args?: GetConfigTemplatesSwitchProfilesPortsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConfigTemplatesSwitchProfilesPortsResult>; /** * A collection of arguments for invoking getConfigTemplatesSwitchProfilesPorts. */ export interface GetConfigTemplatesSwitchProfilesPortsOutputArgs { /** * configTemplateId path parameter. Config template ID */ configTemplateId?: pulumi.Input<string>; /** * organizationId path parameter. Organization ID */ organizationId?: pulumi.Input<string>; /** * portId path parameter. Port ID */ portId?: pulumi.Input<string>; /** * profileId path parameter. Profile ID */ profileId?: pulumi.Input<string>; }