1. Packages
  2. Cisco Catalyst SD-WAN
  3. API Docs
  4. getCellularProfileFeatureTemplate
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

sdwan.getCellularProfileFeatureTemplate

Explore with Pulumi AI

sdwan logo
Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi

    This data source can read the Cellular Profile feature template.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as sdwan from "@pulumi/sdwan";
    
    const example = sdwan.getCellularProfileFeatureTemplate({
        id: "f6b2c44c-693c-4763-b010-895aa3d236bd",
    });
    
    import pulumi
    import pulumi_sdwan as sdwan
    
    example = sdwan.get_cellular_profile_feature_template(id="f6b2c44c-693c-4763-b010-895aa3d236bd")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-sdwan/sdk/go/sdwan"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := sdwan.LookupCellularProfileFeatureTemplate(ctx, &sdwan.LookupCellularProfileFeatureTemplateArgs{
    			Id: pulumi.StringRef("f6b2c44c-693c-4763-b010-895aa3d236bd"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Sdwan = Pulumi.Sdwan;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Sdwan.GetCellularProfileFeatureTemplate.Invoke(new()
        {
            Id = "f6b2c44c-693c-4763-b010-895aa3d236bd",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.sdwan.SdwanFunctions;
    import com.pulumi.sdwan.inputs.GetCellularProfileFeatureTemplateArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var example = SdwanFunctions.getCellularProfileFeatureTemplate(GetCellularProfileFeatureTemplateArgs.builder()
                .id("f6b2c44c-693c-4763-b010-895aa3d236bd")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: sdwan:getCellularProfileFeatureTemplate
          Arguments:
            id: f6b2c44c-693c-4763-b010-895aa3d236bd
    

    Using getCellularProfileFeatureTemplate

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getCellularProfileFeatureTemplate(args: GetCellularProfileFeatureTemplateArgs, opts?: InvokeOptions): Promise<GetCellularProfileFeatureTemplateResult>
    function getCellularProfileFeatureTemplateOutput(args: GetCellularProfileFeatureTemplateOutputArgs, opts?: InvokeOptions): Output<GetCellularProfileFeatureTemplateResult>
    def get_cellular_profile_feature_template(id: Optional[str] = None,
                                              name: Optional[str] = None,
                                              opts: Optional[InvokeOptions] = None) -> GetCellularProfileFeatureTemplateResult
    def get_cellular_profile_feature_template_output(id: Optional[pulumi.Input[str]] = None,
                                              name: Optional[pulumi.Input[str]] = None,
                                              opts: Optional[InvokeOptions] = None) -> Output[GetCellularProfileFeatureTemplateResult]
    func LookupCellularProfileFeatureTemplate(ctx *Context, args *LookupCellularProfileFeatureTemplateArgs, opts ...InvokeOption) (*LookupCellularProfileFeatureTemplateResult, error)
    func LookupCellularProfileFeatureTemplateOutput(ctx *Context, args *LookupCellularProfileFeatureTemplateOutputArgs, opts ...InvokeOption) LookupCellularProfileFeatureTemplateResultOutput

    > Note: This function is named LookupCellularProfileFeatureTemplate in the Go SDK.

    public static class GetCellularProfileFeatureTemplate 
    {
        public static Task<GetCellularProfileFeatureTemplateResult> InvokeAsync(GetCellularProfileFeatureTemplateArgs args, InvokeOptions? opts = null)
        public static Output<GetCellularProfileFeatureTemplateResult> Invoke(GetCellularProfileFeatureTemplateInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCellularProfileFeatureTemplateResult> getCellularProfileFeatureTemplate(GetCellularProfileFeatureTemplateArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: sdwan:index/getCellularProfileFeatureTemplate:getCellularProfileFeatureTemplate
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Id string
    The id of the feature template
    Name string
    The name of the feature template
    Id string
    The id of the feature template
    Name string
    The name of the feature template
    id String
    The id of the feature template
    name String
    The name of the feature template
    id string
    The id of the feature template
    name string
    The name of the feature template
    id str
    The id of the feature template
    name str
    The name of the feature template
    id String
    The id of the feature template
    name String
    The name of the feature template

    getCellularProfileFeatureTemplate Result

    The following output properties are available:

    AccessPointName string
    Set access point name
    AccessPointNameVariable string
    Variable name
    AuthenticationType string
    Set authentication type
    AuthenticationTypeVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes List<string>
    List of supported device types
    Id string
    The id of the feature template
    IfName string
    Set interface name
    IfNameVariable string
    Variable name
    IpAddress string
    Set IP address
    IpAddressVariable string
    Variable name
    Name string
    The name of the feature template
    PacketDataNetworkType string
    Set packet data network type
    PacketDataNetworkTypeVariable string
    Variable name
    PrimaryDnsAddress string
    Set the address of the primary DNS server
    PrimaryDnsAddressVariable string
    Variable name
    ProfileId int
    Set Profile ID
    ProfileIdVariable string
    Variable name
    ProfileName string
    Set profile name
    ProfileNameVariable string
    Variable name
    ProfilePassword string
    Set the profile password
    ProfilePasswordVariable string
    Variable name
    ProfileUsername string
    Set the profile username
    ProfileUsernameVariable string
    Variable name
    SecondaryDnsAddress string
    Set the address of the secondary DNS server
    SecondaryDnsAddressVariable string
    Variable name
    TemplateType string
    The template type
    Version int
    The version of the feature template
    AccessPointName string
    Set access point name
    AccessPointNameVariable string
    Variable name
    AuthenticationType string
    Set authentication type
    AuthenticationTypeVariable string
    Variable name
    Description string
    The description of the feature template
    DeviceTypes []string
    List of supported device types
    Id string
    The id of the feature template
    IfName string
    Set interface name
    IfNameVariable string
    Variable name
    IpAddress string
    Set IP address
    IpAddressVariable string
    Variable name
    Name string
    The name of the feature template
    PacketDataNetworkType string
    Set packet data network type
    PacketDataNetworkTypeVariable string
    Variable name
    PrimaryDnsAddress string
    Set the address of the primary DNS server
    PrimaryDnsAddressVariable string
    Variable name
    ProfileId int
    Set Profile ID
    ProfileIdVariable string
    Variable name
    ProfileName string
    Set profile name
    ProfileNameVariable string
    Variable name
    ProfilePassword string
    Set the profile password
    ProfilePasswordVariable string
    Variable name
    ProfileUsername string
    Set the profile username
    ProfileUsernameVariable string
    Variable name
    SecondaryDnsAddress string
    Set the address of the secondary DNS server
    SecondaryDnsAddressVariable string
    Variable name
    TemplateType string
    The template type
    Version int
    The version of the feature template
    accessPointName String
    Set access point name
    accessPointNameVariable String
    Variable name
    authenticationType String
    Set authentication type
    authenticationTypeVariable String
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types
    id String
    The id of the feature template
    ifName String
    Set interface name
    ifNameVariable String
    Variable name
    ipAddress String
    Set IP address
    ipAddressVariable String
    Variable name
    name String
    The name of the feature template
    packetDataNetworkType String
    Set packet data network type
    packetDataNetworkTypeVariable String
    Variable name
    primaryDnsAddress String
    Set the address of the primary DNS server
    primaryDnsAddressVariable String
    Variable name
    profileId Integer
    Set Profile ID
    profileIdVariable String
    Variable name
    profileName String
    Set profile name
    profileNameVariable String
    Variable name
    profilePassword String
    Set the profile password
    profilePasswordVariable String
    Variable name
    profileUsername String
    Set the profile username
    profileUsernameVariable String
    Variable name
    secondaryDnsAddress String
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable String
    Variable name
    templateType String
    The template type
    version Integer
    The version of the feature template
    accessPointName string
    Set access point name
    accessPointNameVariable string
    Variable name
    authenticationType string
    Set authentication type
    authenticationTypeVariable string
    Variable name
    description string
    The description of the feature template
    deviceTypes string[]
    List of supported device types
    id string
    The id of the feature template
    ifName string
    Set interface name
    ifNameVariable string
    Variable name
    ipAddress string
    Set IP address
    ipAddressVariable string
    Variable name
    name string
    The name of the feature template
    packetDataNetworkType string
    Set packet data network type
    packetDataNetworkTypeVariable string
    Variable name
    primaryDnsAddress string
    Set the address of the primary DNS server
    primaryDnsAddressVariable string
    Variable name
    profileId number
    Set Profile ID
    profileIdVariable string
    Variable name
    profileName string
    Set profile name
    profileNameVariable string
    Variable name
    profilePassword string
    Set the profile password
    profilePasswordVariable string
    Variable name
    profileUsername string
    Set the profile username
    profileUsernameVariable string
    Variable name
    secondaryDnsAddress string
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable string
    Variable name
    templateType string
    The template type
    version number
    The version of the feature template
    access_point_name str
    Set access point name
    access_point_name_variable str
    Variable name
    authentication_type str
    Set authentication type
    authentication_type_variable str
    Variable name
    description str
    The description of the feature template
    device_types Sequence[str]
    List of supported device types
    id str
    The id of the feature template
    if_name str
    Set interface name
    if_name_variable str
    Variable name
    ip_address str
    Set IP address
    ip_address_variable str
    Variable name
    name str
    The name of the feature template
    packet_data_network_type str
    Set packet data network type
    packet_data_network_type_variable str
    Variable name
    primary_dns_address str
    Set the address of the primary DNS server
    primary_dns_address_variable str
    Variable name
    profile_id int
    Set Profile ID
    profile_id_variable str
    Variable name
    profile_name str
    Set profile name
    profile_name_variable str
    Variable name
    profile_password str
    Set the profile password
    profile_password_variable str
    Variable name
    profile_username str
    Set the profile username
    profile_username_variable str
    Variable name
    secondary_dns_address str
    Set the address of the secondary DNS server
    secondary_dns_address_variable str
    Variable name
    template_type str
    The template type
    version int
    The version of the feature template
    accessPointName String
    Set access point name
    accessPointNameVariable String
    Variable name
    authenticationType String
    Set authentication type
    authenticationTypeVariable String
    Variable name
    description String
    The description of the feature template
    deviceTypes List<String>
    List of supported device types
    id String
    The id of the feature template
    ifName String
    Set interface name
    ifNameVariable String
    Variable name
    ipAddress String
    Set IP address
    ipAddressVariable String
    Variable name
    name String
    The name of the feature template
    packetDataNetworkType String
    Set packet data network type
    packetDataNetworkTypeVariable String
    Variable name
    primaryDnsAddress String
    Set the address of the primary DNS server
    primaryDnsAddressVariable String
    Variable name
    profileId Number
    Set Profile ID
    profileIdVariable String
    Variable name
    profileName String
    Set profile name
    profileNameVariable String
    Variable name
    profilePassword String
    Set the profile password
    profilePasswordVariable String
    Variable name
    profileUsername String
    Set the profile username
    profileUsernameVariable String
    Variable name
    secondaryDnsAddress String
    Set the address of the secondary DNS server
    secondaryDnsAddressVariable String
    Variable name
    templateType String
    The template type
    version Number
    The version of the feature template

    Package Details

    Repository
    sdwan pulumi/pulumi-sdwan
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the sdwan Terraform Provider.
    sdwan logo
    Cisco Catalyst SD-WAN v0.1.1 published on Friday, May 31, 2024 by Pulumi