RoutePathAccessList resource
Create RoutePathAccessList Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RoutePathAccessList(name: string, args?: RoutePathAccessListArgs, opts?: CustomResourceOptions);@overload
def RoutePathAccessList(resource_name: str,
args: Optional[RoutePathAccessListArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def RoutePathAccessList(resource_name: str,
opts: Optional[ResourceOptions] = None,
aspath_entries: Optional[Sequence[RoutePathAccessListAspathEntryArgs]] = None,
description: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None)func NewRoutePathAccessList(ctx *Context, name string, args *RoutePathAccessListArgs, opts ...ResourceOption) (*RoutePathAccessList, error)public RoutePathAccessList(string name, RoutePathAccessListArgs? args = null, CustomResourceOptions? opts = null)
public RoutePathAccessList(String name, RoutePathAccessListArgs args)
public RoutePathAccessList(String name, RoutePathAccessListArgs args, CustomResourceOptions options)
type: scm:RoutePathAccessList
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RoutePathAccessListArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RoutePathAccessListArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RoutePathAccessListArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RoutePathAccessListArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RoutePathAccessListArgs
- 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 routePathAccessListResource = new Scm.RoutePathAccessList("routePathAccessListResource", new()
{
AspathEntries = new[]
{
new Scm.Inputs.RoutePathAccessListAspathEntryArgs
{
Action = "string",
AspathRegex = "string",
Name = 0,
},
},
Description = "string",
Device = "string",
Folder = "string",
Name = "string",
Snippet = "string",
});
example, err := scm.NewRoutePathAccessList(ctx, "routePathAccessListResource", &scm.RoutePathAccessListArgs{
AspathEntries: scm.RoutePathAccessListAspathEntryArray{
&scm.RoutePathAccessListAspathEntryArgs{
Action: pulumi.String("string"),
AspathRegex: pulumi.String("string"),
Name: pulumi.Int(0),
},
},
Description: pulumi.String("string"),
Device: pulumi.String("string"),
Folder: pulumi.String("string"),
Name: pulumi.String("string"),
Snippet: pulumi.String("string"),
})
var routePathAccessListResource = new RoutePathAccessList("routePathAccessListResource", RoutePathAccessListArgs.builder()
.aspathEntries(RoutePathAccessListAspathEntryArgs.builder()
.action("string")
.aspathRegex("string")
.name(0)
.build())
.description("string")
.device("string")
.folder("string")
.name("string")
.snippet("string")
.build());
route_path_access_list_resource = scm.RoutePathAccessList("routePathAccessListResource",
aspath_entries=[{
"action": "string",
"aspath_regex": "string",
"name": 0,
}],
description="string",
device="string",
folder="string",
name="string",
snippet="string")
const routePathAccessListResource = new scm.RoutePathAccessList("routePathAccessListResource", {
aspathEntries: [{
action: "string",
aspathRegex: "string",
name: 0,
}],
description: "string",
device: "string",
folder: "string",
name: "string",
snippet: "string",
});
type: scm:RoutePathAccessList
properties:
aspathEntries:
- action: string
aspathRegex: string
name: 0
description: string
device: string
folder: string
name: string
snippet: string
RoutePathAccessList 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 RoutePathAccessList resource accepts the following input properties:
- Aspath
Entries List<RoutePath Access List Aspath Entry> - AS paths
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- AS path access list name
- Snippet string
- The snippet in which the resource is defined
- Aspath
Entries []RoutePath Access List Aspath Entry Args - AS paths
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- AS path access list name
- Snippet string
- The snippet in which the resource is defined
- aspath
Entries List<RoutePath Access List Aspath Entry> - AS paths
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- AS path access list name
- snippet String
- The snippet in which the resource is defined
- aspath
Entries RoutePath Access List Aspath Entry[] - AS paths
- description string
- Description
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- name string
- AS path access list name
- snippet string
- The snippet in which the resource is defined
- aspath_
entries Sequence[RoutePath Access List Aspath Entry Args] - AS paths
- description str
- Description
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- name str
- AS path access list name
- snippet str
- The snippet in which the resource is defined
- aspath
Entries List<Property Map> - AS paths
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- AS path access list name
- snippet String
- The snippet in which the resource is defined
Outputs
All input properties are implicitly available as output properties. Additionally, the RoutePathAccessList resource produces the following output properties:
Look up Existing RoutePathAccessList Resource
Get an existing RoutePathAccessList 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?: RoutePathAccessListState, opts?: CustomResourceOptions): RoutePathAccessList@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aspath_entries: Optional[Sequence[RoutePathAccessListAspathEntryArgs]] = None,
description: Optional[str] = None,
device: Optional[str] = None,
folder: Optional[str] = None,
name: Optional[str] = None,
snippet: Optional[str] = None,
tfid: Optional[str] = None) -> RoutePathAccessListfunc GetRoutePathAccessList(ctx *Context, name string, id IDInput, state *RoutePathAccessListState, opts ...ResourceOption) (*RoutePathAccessList, error)public static RoutePathAccessList Get(string name, Input<string> id, RoutePathAccessListState? state, CustomResourceOptions? opts = null)public static RoutePathAccessList get(String name, Output<String> id, RoutePathAccessListState state, CustomResourceOptions options)resources: _: type: scm:RoutePathAccessList get: id: ${id}- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Aspath
Entries List<RoutePath Access List Aspath Entry> - AS paths
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- AS path access list name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- Aspath
Entries []RoutePath Access List Aspath Entry Args - AS paths
- Description string
- Description
- Device string
- The device in which the resource is defined
- Folder string
- The folder in which the resource is defined
- Name string
- AS path access list name
- Snippet string
- The snippet in which the resource is defined
- Tfid string
- aspath
Entries List<RoutePath Access List Aspath Entry> - AS paths
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- AS path access list name
- snippet String
- The snippet in which the resource is defined
- tfid String
- aspath
Entries RoutePath Access List Aspath Entry[] - AS paths
- description string
- Description
- device string
- The device in which the resource is defined
- folder string
- The folder in which the resource is defined
- name string
- AS path access list name
- snippet string
- The snippet in which the resource is defined
- tfid string
- aspath_
entries Sequence[RoutePath Access List Aspath Entry Args] - AS paths
- description str
- Description
- device str
- The device in which the resource is defined
- folder str
- The folder in which the resource is defined
- name str
- AS path access list name
- snippet str
- The snippet in which the resource is defined
- tfid str
- aspath
Entries List<Property Map> - AS paths
- description String
- Description
- device String
- The device in which the resource is defined
- folder String
- The folder in which the resource is defined
- name String
- AS path access list name
- snippet String
- The snippet in which the resource is defined
- tfid String
Supporting Types
RoutePathAccessListAspathEntry, RoutePathAccessListAspathEntryArgs
- Action string
- Action
- Aspath
Regex string - AS path regular expression
- Name int
- Sequence number
- Action string
- Action
- Aspath
Regex string - AS path regular expression
- Name int
- Sequence number
- action String
- Action
- aspath
Regex String - AS path regular expression
- name Integer
- Sequence number
- action string
- Action
- aspath
Regex string - AS path regular expression
- name number
- Sequence number
- action str
- Action
- aspath_
regex str - AS path regular expression
- name int
- Sequence number
- action String
- Action
- aspath
Regex String - AS path regular expression
- name Number
- Sequence number
Package Details
- Repository
- scm pulumi/pulumi-scm
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scmTerraform Provider.
