Show / Hide Table of Contents

Class SubnetPoolArgs

Inheritance
System.Object
InputArgs
ResourceArgs
SubnetPoolArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.OpenStack.Networking
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class SubnetPoolArgs : ResourceArgs

Constructors

View Source

SubnetPoolArgs()

Declaration
public SubnetPoolArgs()

Properties

View Source

AddressScopeId

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>
View Source

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>
View Source

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>
View Source

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>
View Source

IpVersion

The IP protocol version.

Declaration
public Input<int> IpVersion { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

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>
View Source

Tags

A set of string tags for the subnetpool.

Declaration
public InputList<string> Tags { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

ValueSpecs

Map of additional options.

Declaration
public InputMap<object> ValueSpecs { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.