digitalocean.ReservedIpv6
Explore with Pulumi AI
Create ReservedIpv6 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ReservedIpv6(name: string, args: ReservedIpv6Args, opts?: CustomResourceOptions);
@overload
def ReservedIpv6(resource_name: str,
args: ReservedIpv6Args,
opts: Optional[ResourceOptions] = None)
@overload
def ReservedIpv6(resource_name: str,
opts: Optional[ResourceOptions] = None,
region_slug: Optional[str] = None,
droplet_id: Optional[int] = None,
ip: Optional[str] = None)
func NewReservedIpv6(ctx *Context, name string, args ReservedIpv6Args, opts ...ResourceOption) (*ReservedIpv6, error)
public ReservedIpv6(string name, ReservedIpv6Args args, CustomResourceOptions? opts = null)
public ReservedIpv6(String name, ReservedIpv6Args args)
public ReservedIpv6(String name, ReservedIpv6Args args, CustomResourceOptions options)
type: digitalocean:ReservedIpv6
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 ReservedIpv6Args
- 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 ReservedIpv6Args
- 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 ReservedIpv6Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ReservedIpv6Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ReservedIpv6Args
- 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 reservedIpv6Resource = new DigitalOcean.ReservedIpv6("reservedIpv6Resource", new()
{
RegionSlug = "string",
DropletId = 0,
Ip = "string",
});
example, err := digitalocean.NewReservedIpv6(ctx, "reservedIpv6Resource", &digitalocean.ReservedIpv6Args{
RegionSlug: pulumi.String("string"),
DropletId: pulumi.Int(0),
Ip: pulumi.String("string"),
})
var reservedIpv6Resource = new ReservedIpv6("reservedIpv6Resource", ReservedIpv6Args.builder()
.regionSlug("string")
.dropletId(0)
.ip("string")
.build());
reserved_ipv6_resource = digitalocean.ReservedIpv6("reservedIpv6Resource",
region_slug="string",
droplet_id=0,
ip="string")
const reservedIpv6Resource = new digitalocean.ReservedIpv6("reservedIpv6Resource", {
regionSlug: "string",
dropletId: 0,
ip: "string",
});
type: digitalocean:ReservedIpv6
properties:
dropletId: 0
ip: string
regionSlug: string
ReservedIpv6 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 ReservedIpv6 resource accepts the following input properties:
- Region
Slug string - Droplet
Id int - Ip string
- Region
Slug string - Droplet
Id int - Ip string
- region
Slug String - droplet
Id Integer - ip String
- region
Slug string - droplet
Id number - ip string
- region_
slug str - droplet_
id int - ip str
- region
Slug String - droplet
Id Number - ip String
Outputs
All input properties are implicitly available as output properties. Additionally, the ReservedIpv6 resource produces the following output properties:
Look up Existing ReservedIpv6 Resource
Get an existing ReservedIpv6 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?: ReservedIpv6State, opts?: CustomResourceOptions): ReservedIpv6
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
droplet_id: Optional[int] = None,
ip: Optional[str] = None,
region_slug: Optional[str] = None,
urn: Optional[str] = None) -> ReservedIpv6
func GetReservedIpv6(ctx *Context, name string, id IDInput, state *ReservedIpv6State, opts ...ResourceOption) (*ReservedIpv6, error)
public static ReservedIpv6 Get(string name, Input<string> id, ReservedIpv6State? state, CustomResourceOptions? opts = null)
public static ReservedIpv6 get(String name, Output<String> id, ReservedIpv6State 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.
- Droplet
Id int - Ip string
- Region
Slug string - Urn string
- the uniform resource name for the reserved ipv6
- Droplet
Id int - Ip string
- Region
Slug string - Urn string
- the uniform resource name for the reserved ipv6
- droplet
Id Integer - ip String
- region
Slug String - urn String
- the uniform resource name for the reserved ipv6
- droplet
Id number - ip string
- region
Slug string - urn string
- the uniform resource name for the reserved ipv6
- droplet_
id int - ip str
- region_
slug str - urn str
- the uniform resource name for the reserved ipv6
- droplet
Id Number - ip String
- region
Slug String - urn String
- the uniform resource name for the reserved ipv6
Package Details
- Repository
- DigitalOcean pulumi/pulumi-digitalocean
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
digitalocean
Terraform Provider.