Sha256: 6e2c989b63e869a51773f2e57f495616c793a346250726e281ac60ec6cd28f2c
Contents?: true
Size: 1.1 KB
Versions: 1
Compression:
Stored size: 1.1 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. | | ## 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pnap_network_api-1.2.0 | docs/PrivateNetworkCreate.md |