Class SubnetPoolArgs
Inherited Members
Namespace: Pulumi.OpenStack.Networking
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class SubnetPoolArgs : ResourceArgs
Constructors
View SourceSubnetPoolArgs()
Declaration
public SubnetPoolArgs()
Properties
View SourceAddressScopeId
The Neutron address scope to assign to the subnetpool. Changing this updates the address scope id of the existing subnetpool.
Declaration
public Input<string> AddressScopeId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
DefaultPrefixlen
The size of the prefix to allocate when the cidr or prefixlen attributes are omitted when you create the subnet. Defaults to the MinPrefixLen. Changing this updates the default prefixlen of the existing subnetpool.
Declaration
public Input<int> DefaultPrefixlen { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
DefaultQuota
The per-project quota on the prefix space that can be allocated from the subnetpool for project subnets. Changing this updates the default quota of the existing subnetpool.
Declaration
public Input<int> DefaultQuota { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Description
The human-readable description for the subnetpool. Changing this updates the description of the existing subnetpool.
Declaration
public Input<string> Description { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
IpVersion
The IP protocol version.
Declaration
public Input<int> IpVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
IsDefault
Indicates whether the subnetpool is default subnetpool or not. Changing this updates the default status of the existing subnetpool.
Declaration
public Input<bool> IsDefault { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
MaxPrefixlen
The maximum prefix size that can be allocated from the subnetpool. For IPv4 subnetpools, default is 32. For IPv6 subnetpools, default is 128. Changing this updates the max prefixlen of the existing subnetpool.
Declaration
public Input<int> MaxPrefixlen { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
MinPrefixlen
The smallest prefix that can be allocated from a subnetpool. For IPv4 subnetpools, default is 8. For IPv6 subnetpools, default is 64. Changing this updates the min prefixlen of the existing subnetpool.
Declaration
public Input<int> MinPrefixlen { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Int32> |
Name
The name of the subnetpool. Changing this updates the name of the existing subnetpool.
Declaration
public Input<string> Name { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Prefixes
A list of subnet prefixes to assign to the subnetpool. Neutron API merges adjacent prefixes and treats them as a single prefix. Each subnet prefix must be unique among all subnet prefixes in all subnetpools that are associated with the address scope. Changing this updates the prefixes list of the existing subnetpool.
Declaration
public InputList<string> Prefixes { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
ProjectId
The owner of the subnetpool. Required if admin wants to create a subnetpool for another project. Changing this creates a new subnetpool.
Declaration
public Input<string> ProjectId { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Region
The region in which to obtain the V2 Networking client.
A Networking client is needed to create a Neutron subnetpool. If omitted, the
region argument of the provider is used. Changing this creates a new
subnetpool.
Declaration
public Input<string> Region { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Shared
Indicates whether this subnetpool is shared across all projects. Changing this updates the shared status of the existing subnetpool.
Declaration
public Input<bool> Shared { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Tags
A set of string tags for the subnetpool.
Declaration
public InputList<string> Tags { get; set; }
Property Value
| Type | Description |
|---|---|
| InputList<System.String> |
ValueSpecs
Map of additional options.
Declaration
public InputMap<object> ValueSpecs { get; set; }
Property Value
| Type | Description |
|---|---|
| InputMap<System.Object> |