Sha256: a23fd5c07d9fbf82dcb7f482270bc03bd74b91cfc7597c4ab40c729b7b2d591b

Contents?: true

Size: 1019 Bytes

Versions: 6

Compression:

Stored size: 1019 Bytes

Contents

# NetworkApi::PublicNetworkCreate

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **name** | **String** | The friendly name of this public network. This name should be unique. |  |
| **description** | **String** | The description of this public network. | [optional] |
| **location** | **String** | The location of this public network. Supported values are `PHX`, `ASH`, `SGP`, `NLD`, `CHI`, `SEA` and `AUS`. |  |
| **vlan_id** | **Integer** | The VLAN that will be assigned to this network. | [optional] |
| **ip_blocks** | [**Array<PublicNetworkIpBlock>**](PublicNetworkIpBlock.md) | A list of IP Blocks that will be associated with this public network. | [optional] |

## Example

```ruby
require 'pnap_network_api'

instance = NetworkApi::PublicNetworkCreate.new(
  name: Sample Network,
  description: Further details on the network.,
  location: PHX,
  vlan_id: 10,
  ip_blocks: null
)
```

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
pnap_network_api-2.0.1 docs/PublicNetworkCreate.md
pnap_network_api-2.0.0 docs/PublicNetworkCreate.md
pnap_network_api-1.3.2 docs/PublicNetworkCreate.md
pnap_network_api-1.3.1 docs/PublicNetworkCreate.md
pnap_network_api-1.3.0 docs/PublicNetworkCreate.md
pnap_network_api-1.2.0 docs/PublicNetworkCreate.md