Sha256: 08db374fe28b6d7a41ae802633c8eb5500b347ef2896f4d5cc57866b2521678e

Contents?: true

Size: 1.24 KB

Versions: 5

Compression:

Stored size: 1.24 KB

Contents

# NetworkApi::PrivateNetworkCreate

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **name** | **String** | The friendly name of this private network. This name should be unique. |  |
| **description** | **String** | The description of this private network. | [optional] |
| **location** | **String** | The location of this private network. Supported values are `PHX`, `ASH`, `SGP`, `NLD`, `CHI`, `SEA` and `AUS`. |  |
| **location_default** | **Boolean** | Identifies network as the default private network for the specified location. | [optional][default to false] |
| **vlan_id** | **Integer** | The VLAN that will be assigned to this network. | [optional] |
| **cidr** | **String** | IP range associated with this private network in CIDR notation.<br> Setting the `force` query parameter to `true` allows you to skip assigning a specific IP range to network. | [optional] |

## Example

```ruby
require 'pnap_network_api'

instance = NetworkApi::PrivateNetworkCreate.new(
  name: Sample Network,
  description: Further details on the network,
  location: PHX,
  location_default: true,
  vlan_id: 10,
  cidr: 10.0.0.0/24
)
```

Version data entries

5 entries across 5 versions & 1 rubygems

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