Sha256: c6cf4ece7611888b6b0c68cb25f40306d5e8f2ece5aa9d85478824e9c9d635fc

Contents?: true

Size: 1018 Bytes

Versions: 3

Compression:

Stored size: 1018 Bytes

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] |
| **cidr** | **String** | IP range associated with this private network in CIDR notation. |  |

## Example

```ruby
require 'pnap_network_api'

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
pnap_network_api-1.1.1 docs/PrivateNetworkCreate.md
pnap_network_api-1.1.0 docs/PrivateNetworkCreate.md
pnap_network_api-1.0.0 docs/PrivateNetworkCreate.md