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

iosxe.Cts

Explore with Pulumi AI

This resource can manage the CTS configuration.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Iosxe = Lbrlabs.PulumiPackage.Iosxe;

return await Deployment.RunAsync(() => 
{
    var example = new Iosxe.Cts("example", new()
    {
        AuthorizationList = "Tacacs-GROUP",
    });

});
Copy
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.NewCts(ctx, "example", &iosxe.CtsArgs{
			AuthorizationList: pulumi.String("Tacacs-GROUP"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.iosxe.Cts;
import com.pulumi.iosxe.CtsArgs;
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) {
        var example = new Cts("example", CtsArgs.builder()        
            .authorizationList("Tacacs-GROUP")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as iosxe from "@lbrlabs/pulumi-iosxe";

const example = new iosxe.Cts("example", {authorizationList: "Tacacs-GROUP"});
Copy
import pulumi
import lbrlabs_pulumi_iosxe as iosxe

example = iosxe.Cts("example", authorization_list="Tacacs-GROUP")
Copy
resources:
  example:
    type: iosxe:Cts
    properties:
      authorizationList: Tacacs-GROUP
Copy

Create Cts Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new Cts(name: string, args?: CtsArgs, opts?: CustomResourceOptions);
@overload
def Cts(resource_name: str,
        args: Optional[CtsArgs] = None,
        opts: Optional[ResourceOptions] = None)

@overload
def Cts(resource_name: str,
        opts: Optional[ResourceOptions] = None,
        authorization_list: Optional[str] = None,
        delete_mode: Optional[str] = None,
        device: Optional[str] = None)
func NewCts(ctx *Context, name string, args *CtsArgs, opts ...ResourceOption) (*Cts, error)
public Cts(string name, CtsArgs? args = null, CustomResourceOptions? opts = null)
public Cts(String name, CtsArgs args)
public Cts(String name, CtsArgs args, CustomResourceOptions options)
type: iosxe:Cts
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args CtsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args CtsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args CtsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args CtsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. CtsArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var ctsResource = new Iosxe.Cts("ctsResource", new()
{
    AuthorizationList = "string",
    DeleteMode = "string",
    Device = "string",
});
Copy
example, err := iosxe.NewCts(ctx, "ctsResource", &iosxe.CtsArgs{
	AuthorizationList: pulumi.String("string"),
	DeleteMode:        pulumi.String("string"),
	Device:            pulumi.String("string"),
})
Copy
var ctsResource = new Cts("ctsResource", CtsArgs.builder()
    .authorizationList("string")
    .deleteMode("string")
    .device("string")
    .build());
Copy
cts_resource = iosxe.Cts("ctsResource",
    authorization_list="string",
    delete_mode="string",
    device="string")
Copy
const ctsResource = new iosxe.Cts("ctsResource", {
    authorizationList: "string",
    deleteMode: "string",
    device: "string",
});
Copy
type: iosxe:Cts
properties:
    authorizationList: string
    deleteMode: string
    device: string
Copy

Cts Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Cts resource accepts the following input properties:

AuthorizationList string
Local authorization list to use for CTS
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
AuthorizationList string
Local authorization list to use for CTS
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
authorizationList String
Local authorization list to use for CTS
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
authorizationList string
Local authorization list to use for CTS
deleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device string
A device name from the provider configuration.
authorization_list str
Local authorization list to use for CTS
delete_mode str
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device str
A device name from the provider configuration.
authorizationList String
Local authorization list to use for CTS
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.

Outputs

All input properties are implicitly available as output properties. Additionally, the Cts resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing Cts Resource

Get an existing Cts resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: CtsState, opts?: CustomResourceOptions): Cts
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authorization_list: Optional[str] = None,
        delete_mode: Optional[str] = None,
        device: Optional[str] = None) -> Cts
func GetCts(ctx *Context, name string, id IDInput, state *CtsState, opts ...ResourceOption) (*Cts, error)
public static Cts Get(string name, Input<string> id, CtsState? state, CustomResourceOptions? opts = null)
public static Cts get(String name, Output<String> id, CtsState state, CustomResourceOptions options)
resources:  _:    type: iosxe:Cts    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AuthorizationList string
Local authorization list to use for CTS
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
AuthorizationList string
Local authorization list to use for CTS
DeleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
Device string
A device name from the provider configuration.
authorizationList String
Local authorization list to use for CTS
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.
authorizationList string
Local authorization list to use for CTS
deleteMode string
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device string
A device name from the provider configuration.
authorization_list str
Local authorization list to use for CTS
delete_mode str
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device str
A device name from the provider configuration.
authorizationList String
Local authorization list to use for CTS
deleteMode String
Configure behavior when deleting/destroying the resource. Either delete the entire object (YANG container) being managed, or only delete the individual resource attributes configured explicitly and leave everything else as-is. Default value is all. - Choices: all, attributes
device String
A device name from the provider configuration.

Import

 $ pulumi import iosxe:index/cts:Cts example "Cisco-IOS-XE-native:native/cts"
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
iosxe lbrlabs/pulumi-iosxe
License
Apache-2.0
Notes
This Pulumi package is based on the iosxe Terraform Provider.