@pulumi/sdwan
Version:
A Pulumi package for managing resources on Cisco Catalyst SD-WAN.. Based on terraform-provider-sdwan: version v0.4.1
299 lines (298 loc) • 10.1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* This resource can manage a Transport Cellular Profile Feature.
* - Minimum SD-WAN Manager version: `20.12.0`
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as sdwan from "@pulumi/sdwan";
*
* const example = new sdwan.TransportCellularProfileFeature("example", {
* name: "Example",
* description: "My Example",
* featureProfileId: "f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac",
* profileId: 1,
* accessPointName: "apn1",
* requiresAuthentication: true,
* authenticationType: "pap",
* profileUsername: "example",
* profilePassword: "example123!",
* packetDataNetworkType: "ipv4",
* noOverwrite: false,
* });
* ```
*
* ## Import
*
* The `pulumi import` command can be used, for example:
*
* Expected import identifier with the format: "transport_cellular_profile_feature_id,feature_profile_id"
*
* ```sh
* $ pulumi import sdwan:index/transportCellularProfileFeature:TransportCellularProfileFeature example "f6b2c44c-693c-4763-b010-895aa3d236bd,f6dd22c8-0b4f-496c-9a0b-6813d1f8b8ac"
* ```
*/
export declare class TransportCellularProfileFeature extends pulumi.CustomResource {
/**
* Get an existing TransportCellularProfileFeature resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: TransportCellularProfileFeatureState, opts?: pulumi.CustomResourceOptions): TransportCellularProfileFeature;
/**
* Returns true if the given object is an instance of TransportCellularProfileFeature. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is TransportCellularProfileFeature;
/**
* Set access point name
*/
readonly accessPointName: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly accessPointNameVariable: pulumi.Output<string | undefined>;
/**
* Set authentication type, Attribute conditional on `requiresAuthentication` being equal to `true` - Choices: `pap`,
* `chap`, `papChap`
*/
readonly authenticationType: pulumi.Output<string | undefined>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
readonly authenticationTypeVariable: pulumi.Output<string | undefined>;
/**
* The description of the Feature
*/
readonly description: pulumi.Output<string | undefined>;
/**
* Feature Profile ID
*/
readonly featureProfileId: pulumi.Output<string>;
/**
* The name of the Feature
*/
readonly name: pulumi.Output<string>;
/**
* No Overwrite
*/
readonly noOverwrite: pulumi.Output<boolean | undefined>;
/**
* Variable name
*/
readonly noOverwriteVariable: pulumi.Output<string | undefined>;
/**
* Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
*/
readonly packetDataNetworkType: pulumi.Output<string | undefined>;
/**
* Variable name
*/
readonly packetDataNetworkTypeVariable: pulumi.Output<string | undefined>;
/**
* Set Profile ID - Range: `1`-`16`
*/
readonly profileId: pulumi.Output<number | undefined>;
/**
* Variable name
*/
readonly profileIdVariable: pulumi.Output<string | undefined>;
/**
* Set the profile password, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
readonly profilePassword: pulumi.Output<string | undefined>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
readonly profilePasswordVariable: pulumi.Output<string | undefined>;
/**
* Set the profile username, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
readonly profileUsername: pulumi.Output<string | undefined>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
readonly profileUsernameVariable: pulumi.Output<string | undefined>;
/**
* Require authentication type - Default value: `false`
*/
readonly requiresAuthentication: pulumi.Output<boolean | undefined>;
/**
* The version of the Feature
*/
readonly version: pulumi.Output<number>;
/**
* Create a TransportCellularProfileFeature resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args: TransportCellularProfileFeatureArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering TransportCellularProfileFeature resources.
*/
export interface TransportCellularProfileFeatureState {
/**
* Set access point name
*/
accessPointName?: pulumi.Input<string>;
/**
* Variable name
*/
accessPointNameVariable?: pulumi.Input<string>;
/**
* Set authentication type, Attribute conditional on `requiresAuthentication` being equal to `true` - Choices: `pap`,
* `chap`, `papChap`
*/
authenticationType?: pulumi.Input<string>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
authenticationTypeVariable?: pulumi.Input<string>;
/**
* The description of the Feature
*/
description?: pulumi.Input<string>;
/**
* Feature Profile ID
*/
featureProfileId?: pulumi.Input<string>;
/**
* The name of the Feature
*/
name?: pulumi.Input<string>;
/**
* No Overwrite
*/
noOverwrite?: pulumi.Input<boolean>;
/**
* Variable name
*/
noOverwriteVariable?: pulumi.Input<string>;
/**
* Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
*/
packetDataNetworkType?: pulumi.Input<string>;
/**
* Variable name
*/
packetDataNetworkTypeVariable?: pulumi.Input<string>;
/**
* Set Profile ID - Range: `1`-`16`
*/
profileId?: pulumi.Input<number>;
/**
* Variable name
*/
profileIdVariable?: pulumi.Input<string>;
/**
* Set the profile password, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profilePassword?: pulumi.Input<string>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profilePasswordVariable?: pulumi.Input<string>;
/**
* Set the profile username, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profileUsername?: pulumi.Input<string>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profileUsernameVariable?: pulumi.Input<string>;
/**
* Require authentication type - Default value: `false`
*/
requiresAuthentication?: pulumi.Input<boolean>;
/**
* The version of the Feature
*/
version?: pulumi.Input<number>;
}
/**
* The set of arguments for constructing a TransportCellularProfileFeature resource.
*/
export interface TransportCellularProfileFeatureArgs {
/**
* Set access point name
*/
accessPointName?: pulumi.Input<string>;
/**
* Variable name
*/
accessPointNameVariable?: pulumi.Input<string>;
/**
* Set authentication type, Attribute conditional on `requiresAuthentication` being equal to `true` - Choices: `pap`,
* `chap`, `papChap`
*/
authenticationType?: pulumi.Input<string>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
authenticationTypeVariable?: pulumi.Input<string>;
/**
* The description of the Feature
*/
description?: pulumi.Input<string>;
/**
* Feature Profile ID
*/
featureProfileId: pulumi.Input<string>;
/**
* The name of the Feature
*/
name?: pulumi.Input<string>;
/**
* No Overwrite
*/
noOverwrite?: pulumi.Input<boolean>;
/**
* Variable name
*/
noOverwriteVariable?: pulumi.Input<string>;
/**
* Set packet data network type - Choices: `ipv4`, `ipv4v6`, `ipv6` - Default value: `ipv4`
*/
packetDataNetworkType?: pulumi.Input<string>;
/**
* Variable name
*/
packetDataNetworkTypeVariable?: pulumi.Input<string>;
/**
* Set Profile ID - Range: `1`-`16`
*/
profileId?: pulumi.Input<number>;
/**
* Variable name
*/
profileIdVariable?: pulumi.Input<string>;
/**
* Set the profile password, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profilePassword?: pulumi.Input<string>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profilePasswordVariable?: pulumi.Input<string>;
/**
* Set the profile username, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profileUsername?: pulumi.Input<string>;
/**
* Variable name, Attribute conditional on `requiresAuthentication` being equal to `true`
*/
profileUsernameVariable?: pulumi.Input<string>;
/**
* Require authentication type - Default value: `false`
*/
requiresAuthentication?: pulumi.Input<boolean>;
}