1. Packages
  2. Cisco IOS XE Resource Provider
  3. API Docs
  4. getCts
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

iosxe.getCts

Explore with Pulumi AI

iosxe logo
Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs

    This data source can read the CTS configuration.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Iosxe = Pulumi.Iosxe;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Iosxe.GetCts.Invoke();
    
    });
    
    package main
    
    import (
    	"github.com/lbrlabs/pulumi-iosxe/sdk/go/iosxe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := iosxe.LookupCts(ctx, nil, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.iosxe.IosxeFunctions;
    import com.pulumi.iosxe.inputs.GetCtsArgs;
    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 = IosxeFunctions.getCts();
    
        }
    }
    
    import pulumi
    import pulumi_iosxe as iosxe
    
    example = iosxe.get_cts()
    
    import * as pulumi from "@pulumi/pulumi";
    import * as iosxe from "@pulumi/iosxe";
    
    const example = iosxe.getCts({});
    
    variables:
      example:
        fn::invoke:
          Function: iosxe:getCts
          Arguments: {}
    

    Using getCts

    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 getCts(args: GetCtsArgs, opts?: InvokeOptions): Promise<GetCtsResult>
    function getCtsOutput(args: GetCtsOutputArgs, opts?: InvokeOptions): Output<GetCtsResult>
    def get_cts(device: Optional[str] = None,
                opts: Optional[InvokeOptions] = None) -> GetCtsResult
    def get_cts_output(device: Optional[pulumi.Input[str]] = None,
                opts: Optional[InvokeOptions] = None) -> Output[GetCtsResult]
    func LookupCts(ctx *Context, args *LookupCtsArgs, opts ...InvokeOption) (*LookupCtsResult, error)
    func LookupCtsOutput(ctx *Context, args *LookupCtsOutputArgs, opts ...InvokeOption) LookupCtsResultOutput

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

    public static class GetCts 
    {
        public static Task<GetCtsResult> InvokeAsync(GetCtsArgs args, InvokeOptions? opts = null)
        public static Output<GetCtsResult> Invoke(GetCtsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCtsResult> getCts(GetCtsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: iosxe:index/getCts:getCts
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Device string
    A device name from the provider configuration.
    Device string
    A device name from the provider configuration.
    device String
    A device name from the provider configuration.
    device string
    A device name from the provider configuration.
    device str
    A device name from the provider configuration.
    device String
    A device name from the provider configuration.

    getCts Result

    The following output properties are available:

    AuthorizationList string
    Local authorization list to use for CTS
    Id string
    The path of the retrieved object.
    Device string
    A device name from the provider configuration.
    AuthorizationList string
    Local authorization list to use for CTS
    Id string
    The path of the retrieved object.
    Device string
    A device name from the provider configuration.
    authorizationList String
    Local authorization list to use for CTS
    id String
    The path of the retrieved object.
    device String
    A device name from the provider configuration.
    authorizationList string
    Local authorization list to use for CTS
    id string
    The path of the retrieved object.
    device string
    A device name from the provider configuration.
    authorization_list str
    Local authorization list to use for CTS
    id str
    The path of the retrieved object.
    device str
    A device name from the provider configuration.
    authorizationList String
    Local authorization list to use for CTS
    id String
    The path of the retrieved object.
    device String
    A device name from the provider configuration.

    Package Details

    Repository
    iosxe lbrlabs/pulumi-iosxe
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the iosxe Terraform Provider.
    iosxe logo
    Cisco IOS XE v0.0.1 published on Friday, Sep 22, 2023 by lbrlabs