import * as pulumi from "@pulumi/pulumi"; /** * This data source can read the Transport Cellular Profile Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTransportCellularProfileFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getTransportCellularProfileFeature(args: GetTransportCellularProfileFeatureArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTransportCellularProfileFeature. */ export interface GetTransportCellularProfileFeatureArgs { /** * Feature Profile ID */ featureProfileId: string; /** * The id of the Feature */ id?: string; /** * The name of the Feature */ name?: string; } /** * A collection of values returned by getTransportCellularProfileFeature. */ export interface GetTransportCellularProfileFeatureResult { /** * Set access point name */ readonly accessPointName: string; /** * Variable name */ readonly accessPointNameVariable: string; /** * Set authentication type */ readonly authenticationType: string; /** * Variable name */ readonly authenticationTypeVariable: string; /** * The description of the Feature */ readonly description: string; /** * Feature Profile ID */ readonly featureProfileId: string; /** * The id of the Feature */ readonly id: string; /** * The name of the Feature */ readonly name: string; /** * No Overwrite */ readonly noOverwrite: boolean; /** * Variable name */ readonly noOverwriteVariable: string; /** * Set packet data network type */ readonly packetDataNetworkType: string; /** * Variable name */ readonly packetDataNetworkTypeVariable: string; /** * Set Profile ID */ readonly profileId: number; /** * Variable name */ readonly profileIdVariable: string; /** * Set the profile password [Note: Catalyst SD-WAN Manager will encrypt this field before saving. Cleartext strings will not be returned back to the user in GET responses for sensitive fields.] */ readonly profilePassword: string; /** * Variable name */ readonly profilePasswordVariable: string; /** * Set the profile username */ readonly profileUsername: string; /** * Variable name */ readonly profileUsernameVariable: string; /** * Require authentication type */ readonly requiresAuthentication: boolean; /** * S-NSSAI slice differentiator */ readonly sliceDifferentiator: number; /** * Variable name */ readonly sliceDifferentiatorVariable: string; /** * S-NSSAI slice type number: 1(eMBB), 2(URLLC), 3(MioT) */ readonly sliceType: number; /** * Variable name */ readonly sliceTypeVariable: string; /** * The version of the Feature */ readonly version: number; } /** * This data source can read the Transport Cellular Profile Feature. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as sdwan from "@pulumi/sdwan"; * * const example = sdwan.getTransportCellularProfileFeature({ * id: "f6b2c44c-693c-4763-b010-895aa3d236bd", * featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac", * }); * ``` */ export declare function getTransportCellularProfileFeatureOutput(args: GetTransportCellularProfileFeatureOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTransportCellularProfileFeature. */ export interface GetTransportCellularProfileFeatureOutputArgs { /** * Feature Profile ID */ featureProfileId: pulumi.Input; /** * The id of the Feature */ id?: pulumi.Input; /** * The name of the Feature */ name?: pulumi.Input; } //# sourceMappingURL=getTransportCellularProfileFeature.d.ts.map