pnap_network_api 1.3.1 → 1.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/docs/PublicNetwork.md +1 -1
- data/lib/pnap_network_api/models/public_network.rb +1 -1
- metadata +10 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9487b3688d06b798b0843f12f94f65f5f759da5c84b4ff888bd005a7beb97a31
|
4
|
+
data.tar.gz: 0e27b3e68f11309ad6e1f966381167c4b68710776c28b2e1c2eda5c763f85cb4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 19a86218e532c88146044361683bcefe9d50583e1cce3e346c45b34b43eee95dc3b9e4aa3e45def2400f2609c454d29231ff0705bd9e61439428b3e093da4810
|
7
|
+
data.tar.gz: e1ff00f8fd609ca213b66c2e252271d0edc36680641a27aff7104f88b69470aeb37ad6e8f4ca95db12970772edf5394b6b182792c48727479ccc9061b172659b
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.3.
|
1
|
+
1.3.2
|
data/docs/PublicNetwork.md
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
| **name** | **String** | The friendly name of this public network. | |
|
11
11
|
| **location** | **String** | The location of this public network. Supported values are `PHX`, `ASH`, `SGP`, `NLD`, `CHI`, `SEA` and `AUS`. | |
|
12
12
|
| **description** | **String** | The description of this public network. | [optional] |
|
13
|
-
| **status** | **String** | The status of the public network. Can have one of the following values: `BUSY` or `
|
13
|
+
| **status** | **String** | The status of the public network. Can have one of the following values: `BUSY`, `READY`, `DELETING` or `ERROR`. | |
|
14
14
|
| **created_on** | **Time** | Date and time when this public network was created. | |
|
15
15
|
| **ip_blocks** | [**Array<PublicNetworkIpBlock>**](PublicNetworkIpBlock.md) | A list of IP Blocks that are associated with this public network. | |
|
16
16
|
|
@@ -34,7 +34,7 @@ module NetworkApi
|
|
34
34
|
# The description of this public network.
|
35
35
|
attr_accessor :description
|
36
36
|
|
37
|
-
# The status of the public network. Can have one of the following values: `BUSY` or `
|
37
|
+
# The status of the public network. Can have one of the following values: `BUSY`, `READY`, `DELETING` or `ERROR`.
|
38
38
|
attr_accessor :status
|
39
39
|
|
40
40
|
# Date and time when this public network was created.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pnap_network_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PhoenixNAP
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-07-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -139,14 +139,14 @@ test_files:
|
|
139
139
|
- spec/api_client_spec.rb
|
140
140
|
- spec/configuration_spec.rb
|
141
141
|
- spec/models/public_network_ip_block_spec.rb
|
142
|
-
- spec/models/public_network_modify_spec.rb
|
143
|
-
- spec/models/public_network_membership_spec.rb
|
144
|
-
- spec/models/error_spec.rb
|
145
|
-
- spec/models/network_membership_spec.rb
|
146
|
-
- spec/models/private_network_spec.rb
|
147
|
-
- spec/models/public_network_create_spec.rb
|
148
|
-
- spec/models/private_network_create_spec.rb
|
149
142
|
- spec/models/private_network_modify_spec.rb
|
150
|
-
- spec/models/
|
143
|
+
- spec/models/public_network_create_spec.rb
|
151
144
|
- spec/models/private_network_server_spec.rb
|
145
|
+
- spec/models/network_membership_spec.rb
|
146
|
+
- spec/models/public_network_spec.rb
|
147
|
+
- spec/models/error_spec.rb
|
148
|
+
- spec/models/private_network_create_spec.rb
|
149
|
+
- spec/models/public_network_membership_spec.rb
|
150
|
+
- spec/models/private_network_spec.rb
|
151
|
+
- spec/models/public_network_modify_spec.rb
|
152
152
|
- spec/spec_helper.rb
|