Sha256: 472655e7c2e0add23e45291007eb11cd51d6cf92d5aec13efd89bb26b8dd62de
Contents?: true
Size: 1.59 KB
Versions: 3
Compression:
Stored size: 1.59 KB
Contents
# NetworkApi::PrivateNetwork ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **id** | **String** | The private network identifier. | | | **name** | **String** | The friendly name of this private network. | | | **description** | **String** | The description of this private network. | [optional] | | **vlan_id** | **Integer** | The VLAN of this private network. | | | **type** | **String** | The type of the private network. | | | **location** | **String** | The location of this private network. | | | **location_default** | **Boolean** | Identifies network as the default private network for the specified location. | | | **cidr** | **String** | IP range associated with this private network in CIDR notation. | | | **servers** | [**Array<PrivateNetworkServer>**](PrivateNetworkServer.md) | | | | **memberships** | [**Array<NetworkMembership>**](NetworkMembership.md) | A list of resources that are members of this private network. | | | **status** | **String** | The status of the private network. Can have one of the following values: `BUSY` or `READY`. | | | **created_on** | **Time** | Date and time when this private network was created. | | ## Example ```ruby require 'pnap_network_api' instance = NetworkApi::PrivateNetwork.new( id: 604721852cf65253d151528b, name: Sample Network, description: Further details on the network, vlan_id: 10, type: PRIVATE, location: PHX, location_default: true, cidr: 10.0.0.0/24, servers: null, memberships: null, status: READY, created_on: 2022-04-07T13:30:30.491Z ) ```
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pnap_network_api-1.2.0 | docs/PrivateNetwork.md |
pnap_network_api-1.1.1 | docs/PrivateNetwork.md |
pnap_network_api-1.1.0 | docs/PrivateNetwork.md |