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

iosxe.AaaAuthorization

Explore with Pulumi AI

This resource can manage the AAA Authorization configuration.

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.iosxe.AaaAuthorization;
import com.pulumi.iosxe.AaaAuthorizationArgs;
import com.pulumi.iosxe.inputs.AaaAuthorizationExecArgs;
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 AaaAuthorization("example", AaaAuthorizationArgs.builder()        
            .execs(AaaAuthorizationExecArgs.builder()
                .a1_group("GROUP1")
                .a1_if_authenticated(true)
                .a1_local(false)
                .name("TEST")
                .build())
            .build());

    }
}
Copy

Coming soon!

Coming soon!

resources:
  example:
    type: iosxe:AaaAuthorization
    properties:
      execs:
        - a1_group: GROUP1
          a1_if_authenticated: true
          a1_local: false
          name: TEST
Copy

Create AaaAuthorization Resource

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

Constructor syntax

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

@overload
def AaaAuthorization(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     delete_mode: Optional[str] = None,
                     device: Optional[str] = None,
                     execs: Optional[Sequence[AaaAuthorizationExecArgs]] = None,
                     networks: Optional[Sequence[AaaAuthorizationNetworkArgs]] = None)
func NewAaaAuthorization(ctx *Context, name string, args *AaaAuthorizationArgs, opts ...ResourceOption) (*AaaAuthorization, error)
public AaaAuthorization(string name, AaaAuthorizationArgs? args = null, CustomResourceOptions? opts = null)
public AaaAuthorization(String name, AaaAuthorizationArgs args)
public AaaAuthorization(String name, AaaAuthorizationArgs args, CustomResourceOptions options)
type: iosxe:AaaAuthorization
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 AaaAuthorizationArgs
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 AaaAuthorizationArgs
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 AaaAuthorizationArgs
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 AaaAuthorizationArgs
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. AaaAuthorizationArgs
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 aaaAuthorizationResource = new Iosxe.AaaAuthorization("aaaAuthorizationResource", new()
{
    DeleteMode = "string",
    Device = "string",
    Execs = new[]
    {
        new Iosxe.Inputs.AaaAuthorizationExecArgs
        {
            Name = "string",
            A1Group = "string",
            A1IfAuthenticated = false,
            A1Local = false,
            A2Local = false,
        },
    },
    Networks = new[]
    {
        new Iosxe.Inputs.AaaAuthorizationNetworkArgs
        {
            Id = "string",
            A1Group = "string",
        },
    },
});
Copy
example, err := iosxe.NewAaaAuthorization(ctx, "aaaAuthorizationResource", &iosxe.AaaAuthorizationArgs{
	DeleteMode: pulumi.String("string"),
	Device:     pulumi.String("string"),
	Execs: iosxe.AaaAuthorizationExecArray{
		&iosxe.AaaAuthorizationExecArgs{
			Name:              pulumi.String("string"),
			A1Group:           pulumi.String("string"),
			A1IfAuthenticated: pulumi.Bool(false),
			A1Local:           pulumi.Bool(false),
			A2Local:           pulumi.Bool(false),
		},
	},
	Networks: iosxe.AaaAuthorizationNetworkArray{
		&iosxe.AaaAuthorizationNetworkArgs{
			Id:      pulumi.String("string"),
			A1Group: pulumi.String("string"),
		},
	},
})
Copy
var aaaAuthorizationResource = new AaaAuthorization("aaaAuthorizationResource", AaaAuthorizationArgs.builder()
    .deleteMode("string")
    .device("string")
    .execs(AaaAuthorizationExecArgs.builder()
        .name("string")
        .a1Group("string")
        .a1IfAuthenticated(false)
        .a1Local(false)
        .a2Local(false)
        .build())
    .networks(AaaAuthorizationNetworkArgs.builder()
        .id("string")
        .a1Group("string")
        .build())
    .build());
Copy
aaa_authorization_resource = iosxe.AaaAuthorization("aaaAuthorizationResource",
    delete_mode="string",
    device="string",
    execs=[{
        "name": "string",
        "a1_group": "string",
        "a1_if_authenticated": False,
        "a1_local": False,
        "a2_local": False,
    }],
    networks=[{
        "id": "string",
        "a1_group": "string",
    }])
Copy
const aaaAuthorizationResource = new iosxe.AaaAuthorization("aaaAuthorizationResource", {
    deleteMode: "string",
    device: "string",
    execs: [{
        name: "string",
        a1Group: "string",
        a1IfAuthenticated: false,
        a1Local: false,
        a2Local: false,
    }],
    networks: [{
        id: "string",
        a1Group: "string",
    }],
});
Copy
type: iosxe:AaaAuthorization
properties:
    deleteMode: string
    device: string
    execs:
        - a1Group: string
          a1IfAuthenticated: false
          a1Local: false
          a2Local: false
          name: string
    networks:
        - a1Group: string
          id: string
Copy

AaaAuthorization 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 AaaAuthorization resource accepts the following input properties:

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.
Execs List<Lbrlabs.PulumiPackage.Iosxe.Inputs.AaaAuthorizationExec>
For starting an exec (shell).
Networks List<Lbrlabs.PulumiPackage.Iosxe.Inputs.AaaAuthorizationNetwork>
For network services. (PPP, SLIP, ARAP)
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.
Execs []AaaAuthorizationExecArgs
For starting an exec (shell).
Networks []AaaAuthorizationNetworkArgs
For network services. (PPP, SLIP, ARAP)
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.
execs List<AaaAuthorizationExec>
For starting an exec (shell).
networks List<AaaAuthorizationNetwork>
For network services. (PPP, SLIP, ARAP)
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.
execs AaaAuthorizationExec[]
For starting an exec (shell).
networks AaaAuthorizationNetwork[]
For network services. (PPP, SLIP, ARAP)
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.
execs Sequence[AaaAuthorizationExecArgs]
For starting an exec (shell).
networks Sequence[AaaAuthorizationNetworkArgs]
For network services. (PPP, SLIP, ARAP)
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.
execs List<Property Map>
For starting an exec (shell).
networks List<Property Map>
For network services. (PPP, SLIP, ARAP)

Outputs

All input properties are implicitly available as output properties. Additionally, the AaaAuthorization 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 AaaAuthorization Resource

Get an existing AaaAuthorization 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?: AaaAuthorizationState, opts?: CustomResourceOptions): AaaAuthorization
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        delete_mode: Optional[str] = None,
        device: Optional[str] = None,
        execs: Optional[Sequence[AaaAuthorizationExecArgs]] = None,
        networks: Optional[Sequence[AaaAuthorizationNetworkArgs]] = None) -> AaaAuthorization
func GetAaaAuthorization(ctx *Context, name string, id IDInput, state *AaaAuthorizationState, opts ...ResourceOption) (*AaaAuthorization, error)
public static AaaAuthorization Get(string name, Input<string> id, AaaAuthorizationState? state, CustomResourceOptions? opts = null)
public static AaaAuthorization get(String name, Output<String> id, AaaAuthorizationState state, CustomResourceOptions options)
resources:  _:    type: iosxe:AaaAuthorization    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:
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.
Execs List<Lbrlabs.PulumiPackage.Iosxe.Inputs.AaaAuthorizationExec>
For starting an exec (shell).
Networks List<Lbrlabs.PulumiPackage.Iosxe.Inputs.AaaAuthorizationNetwork>
For network services. (PPP, SLIP, ARAP)
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.
Execs []AaaAuthorizationExecArgs
For starting an exec (shell).
Networks []AaaAuthorizationNetworkArgs
For network services. (PPP, SLIP, ARAP)
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.
execs List<AaaAuthorizationExec>
For starting an exec (shell).
networks List<AaaAuthorizationNetwork>
For network services. (PPP, SLIP, ARAP)
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.
execs AaaAuthorizationExec[]
For starting an exec (shell).
networks AaaAuthorizationNetwork[]
For network services. (PPP, SLIP, ARAP)
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.
execs Sequence[AaaAuthorizationExecArgs]
For starting an exec (shell).
networks Sequence[AaaAuthorizationNetworkArgs]
For network services. (PPP, SLIP, ARAP)
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.
execs List<Property Map>
For starting an exec (shell).
networks List<Property Map>
For network services. (PPP, SLIP, ARAP)

Supporting Types

AaaAuthorizationExec
, AaaAuthorizationExecArgs

Name This property is required. string
A1Group string
A1IfAuthenticated bool
A1Local bool
A2Local bool
Name This property is required. string
A1Group string
A1IfAuthenticated bool
A1Local bool
A2Local bool
name This property is required. String
a1Group String
a1IfAuthenticated Boolean
a1Local Boolean
a2Local Boolean
name This property is required. string
a1Group string
a1IfAuthenticated boolean
a1Local boolean
a2Local boolean
name This property is required. str
a1_group str
a1_if_authenticated bool
a1_local bool
a2_local bool
name This property is required. String
a1Group String
a1IfAuthenticated Boolean
a1Local Boolean
a2Local Boolean

AaaAuthorizationNetwork
, AaaAuthorizationNetworkArgs

Id This property is required. string
A1Group string
Id This property is required. string
A1Group string
id This property is required. String
a1Group String
id This property is required. string
a1Group string
id This property is required. str
a1_group str
id This property is required. String
a1Group String

Import

 $ pulumi import iosxe:index/aaaAuthorization:AaaAuthorization example "Cisco-IOS-XE-native:native/aaa/Cisco-IOS-XE-aaa:authorization"
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.