sdwan.Ipv6PrefixListPolicyObject
Explore with Pulumi AI
This resource can manage a IPv6 Prefix List Policy Object .
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sdwan from "@pulumi/sdwan";
const example = new sdwan.Ipv6PrefixListPolicyObject("example", {
name: "Example",
entries: [{
prefix: "2001:1:1:2::/64",
le: 80,
ge: 128,
}],
});
import pulumi
import pulumi_sdwan as sdwan
example = sdwan.Ipv6PrefixListPolicyObject("example",
name="Example",
entries=[sdwan.Ipv6PrefixListPolicyObjectEntryArgs(
prefix="2001:1:1:2::/64",
le=80,
ge=128,
)])
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.NewIpv6PrefixListPolicyObject(ctx, "example", &sdwan.Ipv6PrefixListPolicyObjectArgs{
Name: pulumi.String("Example"),
Entries: sdwan.Ipv6PrefixListPolicyObjectEntryArray{
&sdwan.Ipv6PrefixListPolicyObjectEntryArgs{
Prefix: pulumi.String("2001:1:1:2::/64"),
Le: pulumi.Int(80),
Ge: pulumi.Int(128),
},
},
})
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 = new Sdwan.Ipv6PrefixListPolicyObject("example", new()
{
Name = "Example",
Entries = new[]
{
new Sdwan.Inputs.Ipv6PrefixListPolicyObjectEntryArgs
{
Prefix = "2001:1:1:2::/64",
Le = 80,
Ge = 128,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sdwan.Ipv6PrefixListPolicyObject;
import com.pulumi.sdwan.Ipv6PrefixListPolicyObjectArgs;
import com.pulumi.sdwan.inputs.Ipv6PrefixListPolicyObjectEntryArgs;
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 Ipv6PrefixListPolicyObject("example", Ipv6PrefixListPolicyObjectArgs.builder()
.name("Example")
.entries(Ipv6PrefixListPolicyObjectEntryArgs.builder()
.prefix("2001:1:1:2::/64")
.le(80)
.ge(128)
.build())
.build());
}
}
resources:
example:
type: sdwan:Ipv6PrefixListPolicyObject
properties:
name: Example
entries:
- prefix: 2001:1:1:2::/64
le: 80
ge: 128
Create Ipv6PrefixListPolicyObject Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Ipv6PrefixListPolicyObject(name: string, args: Ipv6PrefixListPolicyObjectArgs, opts?: CustomResourceOptions);
@overload
def Ipv6PrefixListPolicyObject(resource_name: str,
args: Ipv6PrefixListPolicyObjectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Ipv6PrefixListPolicyObject(resource_name: str,
opts: Optional[ResourceOptions] = None,
entries: Optional[Sequence[Ipv6PrefixListPolicyObjectEntryArgs]] = None,
name: Optional[str] = None)
func NewIpv6PrefixListPolicyObject(ctx *Context, name string, args Ipv6PrefixListPolicyObjectArgs, opts ...ResourceOption) (*Ipv6PrefixListPolicyObject, error)
public Ipv6PrefixListPolicyObject(string name, Ipv6PrefixListPolicyObjectArgs args, CustomResourceOptions? opts = null)
public Ipv6PrefixListPolicyObject(String name, Ipv6PrefixListPolicyObjectArgs args)
public Ipv6PrefixListPolicyObject(String name, Ipv6PrefixListPolicyObjectArgs args, CustomResourceOptions options)
type: sdwan:Ipv6PrefixListPolicyObject
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 Ipv6PrefixListPolicyObjectArgs
- 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 Ipv6PrefixListPolicyObjectArgs
- 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 Ipv6PrefixListPolicyObjectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Ipv6PrefixListPolicyObjectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args Ipv6PrefixListPolicyObjectArgs
- 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 ipv6PrefixListPolicyObjectResource = new Sdwan.Ipv6PrefixListPolicyObject("ipv6PrefixListPolicyObjectResource", new()
{
Entries = new[]
{
new Sdwan.Inputs.Ipv6PrefixListPolicyObjectEntryArgs
{
Prefix = "string",
Ge = 0,
Le = 0,
},
},
Name = "string",
});
example, err := sdwan.NewIpv6PrefixListPolicyObject(ctx, "ipv6PrefixListPolicyObjectResource", &sdwan.Ipv6PrefixListPolicyObjectArgs{
Entries: sdwan.Ipv6PrefixListPolicyObjectEntryArray{
&sdwan.Ipv6PrefixListPolicyObjectEntryArgs{
Prefix: pulumi.String("string"),
Ge: pulumi.Int(0),
Le: pulumi.Int(0),
},
},
Name: pulumi.String("string"),
})
var ipv6PrefixListPolicyObjectResource = new Ipv6PrefixListPolicyObject("ipv6PrefixListPolicyObjectResource", Ipv6PrefixListPolicyObjectArgs.builder()
.entries(Ipv6PrefixListPolicyObjectEntryArgs.builder()
.prefix("string")
.ge(0)
.le(0)
.build())
.name("string")
.build());
ipv6_prefix_list_policy_object_resource = sdwan.Ipv6PrefixListPolicyObject("ipv6PrefixListPolicyObjectResource",
entries=[sdwan.Ipv6PrefixListPolicyObjectEntryArgs(
prefix="string",
ge=0,
le=0,
)],
name="string")
const ipv6PrefixListPolicyObjectResource = new sdwan.Ipv6PrefixListPolicyObject("ipv6PrefixListPolicyObjectResource", {
entries: [{
prefix: "string",
ge: 0,
le: 0,
}],
name: "string",
});
type: sdwan:Ipv6PrefixListPolicyObject
properties:
entries:
- ge: 0
le: 0
prefix: string
name: string
Ipv6PrefixListPolicyObject Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Ipv6PrefixListPolicyObject resource accepts the following input properties:
- Entries
List<Ipv6Prefix
List Policy Object Entry> - List of entries
- Name string
- The name of the policy object
- Entries
[]Ipv6Prefix
List Policy Object Entry Args - List of entries
- Name string
- The name of the policy object
- entries
List<Ipv6Prefix
List Policy Object Entry> - List of entries
- name String
- The name of the policy object
- entries
Ipv6Prefix
List Policy Object Entry[] - List of entries
- name string
- The name of the policy object
- entries
Sequence[Ipv6Prefix
List Policy Object Entry Args] - List of entries
- name str
- The name of the policy object
- entries List<Property Map>
- List of entries
- name String
- The name of the policy object
Outputs
All input properties are implicitly available as output properties. Additionally, the Ipv6PrefixListPolicyObject resource produces the following output properties:
Look up Existing Ipv6PrefixListPolicyObject Resource
Get an existing Ipv6PrefixListPolicyObject 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?: Ipv6PrefixListPolicyObjectState, opts?: CustomResourceOptions): Ipv6PrefixListPolicyObject
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
entries: Optional[Sequence[Ipv6PrefixListPolicyObjectEntryArgs]] = None,
name: Optional[str] = None,
version: Optional[int] = None) -> Ipv6PrefixListPolicyObject
func GetIpv6PrefixListPolicyObject(ctx *Context, name string, id IDInput, state *Ipv6PrefixListPolicyObjectState, opts ...ResourceOption) (*Ipv6PrefixListPolicyObject, error)
public static Ipv6PrefixListPolicyObject Get(string name, Input<string> id, Ipv6PrefixListPolicyObjectState? state, CustomResourceOptions? opts = null)
public static Ipv6PrefixListPolicyObject get(String name, Output<String> id, Ipv6PrefixListPolicyObjectState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Entries
List<Ipv6Prefix
List Policy Object Entry> - List of entries
- Name string
- The name of the policy object
- Version int
- The version of the object
- Entries
[]Ipv6Prefix
List Policy Object Entry Args - List of entries
- Name string
- The name of the policy object
- Version int
- The version of the object
- entries
List<Ipv6Prefix
List Policy Object Entry> - List of entries
- name String
- The name of the policy object
- version Integer
- The version of the object
- entries
Ipv6Prefix
List Policy Object Entry[] - List of entries
- name string
- The name of the policy object
- version number
- The version of the object
- entries
Sequence[Ipv6Prefix
List Policy Object Entry Args] - List of entries
- name str
- The name of the policy object
- version int
- The version of the object
- entries List<Property Map>
- List of entries
- name String
- The name of the policy object
- version Number
- The version of the object
Supporting Types
Ipv6PrefixListPolicyObjectEntry, Ipv6PrefixListPolicyObjectEntryArgs
Import
$ pulumi import sdwan:index/ipv6PrefixListPolicyObject:Ipv6PrefixListPolicyObject example "f6b2c44c-693c-4763-b010-895aa3d236bd"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- sdwan pulumi/pulumi-sdwan
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
sdwan
Terraform Provider.