pnap_bmc_api 1.0.0 → 1.1.1

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.
Files changed (60) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +8 -4
  3. data/VERSION +1 -1
  4. data/docs/NetworkConfiguration.md +5 -1
  5. data/docs/OsConfiguration.md +3 -1
  6. data/docs/PrivateNetworkConfiguration.md +1 -1
  7. data/docs/PublicNetworkConfiguration.md +18 -0
  8. data/docs/Quota.md +2 -2
  9. data/docs/Server.md +3 -3
  10. data/docs/ServerCreate.md +3 -3
  11. data/docs/ServerPrivateNetwork.md +1 -1
  12. data/docs/ServerPublicNetwork.md +22 -0
  13. data/docs/ServersApi.md +156 -10
  14. data/lib/pnap_bmc_api/api/quotas_api.rb +2 -2
  15. data/lib/pnap_bmc_api/api/servers_api.rb +155 -16
  16. data/lib/pnap_bmc_api/api/ssh_keys_api.rb +2 -2
  17. data/lib/pnap_bmc_api/api_client.rb +5 -3
  18. data/lib/pnap_bmc_api/api_error.rb +2 -2
  19. data/lib/pnap_bmc_api/configuration.rb +4 -3
  20. data/lib/pnap_bmc_api/models/action_result.rb +3 -2
  21. data/lib/pnap_bmc_api/models/delete_result.rb +3 -2
  22. data/lib/pnap_bmc_api/models/delete_ssh_key_result.rb +3 -2
  23. data/lib/pnap_bmc_api/models/error.rb +3 -2
  24. data/lib/pnap_bmc_api/models/ip_blocks_configuration.rb +3 -2
  25. data/lib/pnap_bmc_api/models/network_configuration.rb +26 -6
  26. data/lib/pnap_bmc_api/models/os_configuration.rb +19 -6
  27. data/lib/pnap_bmc_api/models/os_configuration_map.rb +3 -2
  28. data/lib/pnap_bmc_api/models/os_configuration_map_esxi.rb +3 -2
  29. data/lib/pnap_bmc_api/models/os_configuration_map_proxmox.rb +3 -2
  30. data/lib/pnap_bmc_api/models/os_configuration_windows.rb +3 -2
  31. data/lib/pnap_bmc_api/models/private_network_configuration.rb +4 -3
  32. data/lib/pnap_bmc_api/models/public_network_configuration.rb +223 -0
  33. data/lib/pnap_bmc_api/models/quota.rb +4 -15
  34. data/lib/pnap_bmc_api/models/quota_edit_limit_request.rb +3 -2
  35. data/lib/pnap_bmc_api/models/quota_edit_limit_request_details.rb +3 -2
  36. data/lib/pnap_bmc_api/models/quota_edit_limit_request_details_all_of.rb +3 -2
  37. data/lib/pnap_bmc_api/models/relinquish_ip_block.rb +3 -2
  38. data/lib/pnap_bmc_api/models/reset_result.rb +3 -2
  39. data/lib/pnap_bmc_api/models/server.rb +10 -18
  40. data/lib/pnap_bmc_api/models/server_create.rb +6 -5
  41. data/lib/pnap_bmc_api/models/server_ip_block.rb +4 -3
  42. data/lib/pnap_bmc_api/models/server_patch.rb +3 -2
  43. data/lib/pnap_bmc_api/models/server_private_network.rb +4 -3
  44. data/lib/pnap_bmc_api/models/server_public_network.rb +272 -0
  45. data/lib/pnap_bmc_api/models/server_reserve.rb +3 -2
  46. data/lib/pnap_bmc_api/models/server_reset.rb +3 -2
  47. data/lib/pnap_bmc_api/models/ssh_key.rb +3 -2
  48. data/lib/pnap_bmc_api/models/ssh_key_create.rb +3 -2
  49. data/lib/pnap_bmc_api/models/ssh_key_update.rb +3 -2
  50. data/lib/pnap_bmc_api/models/tag_assignment.rb +3 -2
  51. data/lib/pnap_bmc_api/models/tag_assignment_request.rb +3 -2
  52. data/lib/pnap_bmc_api/version.rb +2 -2
  53. data/lib/pnap_bmc_api.rb +4 -2
  54. data/pnap_bmc_api.gemspec +3 -3
  55. data/spec/api_client_spec.rb +2 -2
  56. data/spec/configuration_spec.rb +2 -2
  57. data/spec/models/public_network_configuration_spec.rb +34 -0
  58. data/spec/models/server_public_network_spec.rb +46 -0
  59. data/spec/spec_helper.rb +2 -2
  60. metadata +32 -24
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -20,7 +20,7 @@ module BmcApi
20
20
  @api_client = api_client
21
21
  end
22
22
  # Removes the server from private network.
23
- # Removes the server from private network. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. You are expected to perform network configuration changes in the operating system of this server. <b>This is an advanced network action that can make your server completely unavailable over any network. Make sure you are able to access this server over remote console in case of misconfiguration.</b>
23
+ # Removes the server from private network. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. <b>This is an advanced network action that can make your server completely unavailable over any network. Make sure this server is reachable over remote console for guaranteed access in case of misconfiguration.</b>
24
24
  # @param server_id [String] The server&#39;s ID.
25
25
  # @param private_network_id [String] The private network identifier.
26
26
  # @param [Hash] opts the optional parameters
@@ -31,7 +31,7 @@ module BmcApi
31
31
  end
32
32
 
33
33
  # Removes the server from private network.
34
- # Removes the server from private network. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. You are expected to perform network configuration changes in the operating system of this server. &lt;b&gt;This is an advanced network action that can make your server completely unavailable over any network. Make sure you are able to access this server over remote console in case of misconfiguration.&lt;/b&gt;
34
+ # Removes the server from private network. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. &lt;b&gt;This is an advanced network action that can make your server completely unavailable over any network. Make sure this server is reachable over remote console for guaranteed access in case of misconfiguration.&lt;/b&gt;
35
35
  # @param server_id [String] The server&#39;s ID.
36
36
  # @param private_network_id [String] The private network identifier.
37
37
  # @param [Hash] opts the optional parameters
@@ -542,7 +542,7 @@ module BmcApi
542
542
  end
543
543
 
544
544
  # Reset server.
545
- # Reset specific server.
545
+ # Deprecated: Reset specific server. Reset only supports network configurations of type 'private network' or 'IP blocks'. As an alternative, the suggested action is to deprovision the server and provision a new one with the same configuration.
546
546
  # @param server_id [String] The server&#39;s ID.
547
547
  # @param [Hash] opts the optional parameters
548
548
  # @option opts [ServerReset] :server_reset
@@ -553,7 +553,7 @@ module BmcApi
553
553
  end
554
554
 
555
555
  # Reset server.
556
- # Reset specific server.
556
+ # Deprecated: Reset specific server. Reset only supports network configurations of type &#39;private network&#39; or &#39;IP blocks&#39;. As an alternative, the suggested action is to deprovision the server and provision a new one with the same configuration.
557
557
  # @param server_id [String] The server&#39;s ID.
558
558
  # @param [Hash] opts the optional parameters
559
559
  # @option opts [ServerReset] :server_reset
@@ -801,7 +801,7 @@ module BmcApi
801
801
  end
802
802
 
803
803
  # Unassign IP Block from Server.
804
- # Removes the IP block from the server. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. You are expected to perform network configuration changes in the operating system of this server. <b>This is an advanced network action that can make your server completely unavailable over any network. Make sure you are able to access this server over remote console in case of misconfiguration.</b>
804
+ # Removes the IP block from the server. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. <b>This is an advanced network action that can make your server completely unavailable over any network. Make sure this server is reachable over remote console for guaranteed access in case of misconfiguration.</b>
805
805
  # @param server_id [String] The server&#39;s ID.
806
806
  # @param ip_block_id [String] The IP Block identifier.
807
807
  # @param [Hash] opts the optional parameters
@@ -813,7 +813,7 @@ module BmcApi
813
813
  end
814
814
 
815
815
  # Unassign IP Block from Server.
816
- # Removes the IP block from the server. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. You are expected to perform network configuration changes in the operating system of this server. &lt;b&gt;This is an advanced network action that can make your server completely unavailable over any network. Make sure you are able to access this server over remote console in case of misconfiguration.&lt;/b&gt;
816
+ # Removes the IP block from the server. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. &lt;b&gt;This is an advanced network action that can make your server completely unavailable over any network. Make sure this server is reachable over remote console for guaranteed access in case of misconfiguration.&lt;/b&gt;
817
817
  # @param server_id [String] The server&#39;s ID.
818
818
  # @param ip_block_id [String] The IP Block identifier.
819
819
  # @param [Hash] opts the optional parameters
@@ -877,7 +877,7 @@ module BmcApi
877
877
  end
878
878
 
879
879
  # Assign IP Block to Server.
880
- # Adds an IP block to this server. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. You are expected to perform network configuration changes in the operating system of this server.
880
+ # Adds an IP block to this server. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. Knowledge base article to help you can be found <a href='https://phoenixnap.com/kb/configure-server-with-public-ip-block#ftoc-heading-2' target='_blank'>here</a>.
881
881
  # @param server_id [String] The server&#39;s ID.
882
882
  # @param [Hash] opts the optional parameters
883
883
  # @option opts [ServerIpBlock] :server_ip_block
@@ -888,7 +888,7 @@ module BmcApi
888
888
  end
889
889
 
890
890
  # Assign IP Block to Server.
891
- # Adds an IP block to this server. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. You are expected to perform network configuration changes in the operating system of this server.
891
+ # Adds an IP block to this server. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. Knowledge base article to help you can be found &lt;a href&#x3D;&#39;https://phoenixnap.com/kb/configure-server-with-public-ip-block#ftoc-heading-2&#39; target&#x3D;&#39;_blank&#39;&gt;here&lt;/a&gt;.
892
892
  # @param server_id [String] The server&#39;s ID.
893
893
  # @param [Hash] opts the optional parameters
894
894
  # @option opts [ServerIpBlock] :server_ip_block
@@ -1017,7 +1017,7 @@ module BmcApi
1017
1017
  end
1018
1018
 
1019
1019
  # Adds the server to a private network.
1020
- # Adds the server to a private network.
1020
+ # Adds the server to a private network. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. If the network contains a membership of type 'storage', the first twelve IPs are already reserved by BMC and not usable. These will return a Bad Request (400) if selected. Knowledge base article to help you can be found <a href='https://phoenixnap.com/kb/configure-bmc-server-after-adding-to-network#ftoc-heading-3' target='_blank'>here</a>.
1021
1021
  # @param server_id [String] The server&#39;s ID.
1022
1022
  # @param [Hash] opts the optional parameters
1023
1023
  # @option opts [ServerPrivateNetwork] :server_private_network
@@ -1028,7 +1028,7 @@ module BmcApi
1028
1028
  end
1029
1029
 
1030
1030
  # Adds the server to a private network.
1031
- # Adds the server to a private network.
1031
+ # Adds the server to a private network. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. If the network contains a membership of type &#39;storage&#39;, the first twelve IPs are already reserved by BMC and not usable. These will return a Bad Request (400) if selected. Knowledge base article to help you can be found &lt;a href&#x3D;&#39;https://phoenixnap.com/kb/configure-bmc-server-after-adding-to-network#ftoc-heading-3&#39; target&#x3D;&#39;_blank&#39;&gt;here&lt;/a&gt;.
1032
1032
  # @param server_id [String] The server&#39;s ID.
1033
1033
  # @param [Hash] opts the optional parameters
1034
1034
  # @option opts [ServerPrivateNetwork] :server_private_network
@@ -1086,8 +1086,147 @@ module BmcApi
1086
1086
  return data, status_code, headers
1087
1087
  end
1088
1088
 
1089
- # Set server tags.
1090
- # Set tags for server.
1089
+ # Removes the server from the Public Network
1090
+ # Removes the server from the Public Network. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. <b>This is an advanced network action that can make your server completely unavailable over any network. Make sure this server is reachable over remote console for guaranteed access in case of misconfiguration.</b>
1091
+ # @param server_id [String] The server&#39;s ID.
1092
+ # @param public_network_id [String] The Public Network identifier.
1093
+ # @param [Hash] opts the optional parameters
1094
+ # @return [String]
1095
+ def servers_server_id_public_networks_delete(server_id, public_network_id, opts = {})
1096
+ data, _status_code, _headers = servers_server_id_public_networks_delete_with_http_info(server_id, public_network_id, opts)
1097
+ data
1098
+ end
1099
+
1100
+ # Removes the server from the Public Network
1101
+ # Removes the server from the Public Network. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. &lt;b&gt;This is an advanced network action that can make your server completely unavailable over any network. Make sure this server is reachable over remote console for guaranteed access in case of misconfiguration.&lt;/b&gt;
1102
+ # @param server_id [String] The server&#39;s ID.
1103
+ # @param public_network_id [String] The Public Network identifier.
1104
+ # @param [Hash] opts the optional parameters
1105
+ # @return [Array<(String, Integer, Hash)>] String data, response status code and response headers
1106
+ def servers_server_id_public_networks_delete_with_http_info(server_id, public_network_id, opts = {})
1107
+ if @api_client.config.debugging
1108
+ @api_client.config.logger.debug 'Calling API: ServersApi.servers_server_id_public_networks_delete ...'
1109
+ end
1110
+ # verify the required parameter 'server_id' is set
1111
+ if @api_client.config.client_side_validation && server_id.nil?
1112
+ fail ArgumentError, "Missing the required parameter 'server_id' when calling ServersApi.servers_server_id_public_networks_delete"
1113
+ end
1114
+ # verify the required parameter 'public_network_id' is set
1115
+ if @api_client.config.client_side_validation && public_network_id.nil?
1116
+ fail ArgumentError, "Missing the required parameter 'public_network_id' when calling ServersApi.servers_server_id_public_networks_delete"
1117
+ end
1118
+ # resource path
1119
+ local_var_path = '/servers/{serverId}/network-configuration/public-network-configuration/public-networks/{publicNetworkId}'.sub('{' + 'serverId' + '}', CGI.escape(server_id.to_s)).sub('{' + 'publicNetworkId' + '}', CGI.escape(public_network_id.to_s))
1120
+
1121
+ # query parameters
1122
+ query_params = opts[:query_params] || {}
1123
+
1124
+ # header parameters
1125
+ header_params = opts[:header_params] || {}
1126
+ # HTTP header 'Accept' (if needed)
1127
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1128
+
1129
+ # form parameters
1130
+ form_params = opts[:form_params] || {}
1131
+
1132
+ # http body (model)
1133
+ post_body = opts[:debug_body]
1134
+
1135
+ # return_type
1136
+ return_type = opts[:debug_return_type] || 'String'
1137
+
1138
+ # auth_names
1139
+ auth_names = opts[:debug_auth_names] || ['OAuth2']
1140
+
1141
+ new_options = opts.merge(
1142
+ :operation => :"ServersApi.servers_server_id_public_networks_delete",
1143
+ :header_params => header_params,
1144
+ :query_params => query_params,
1145
+ :form_params => form_params,
1146
+ :body => post_body,
1147
+ :auth_names => auth_names,
1148
+ :return_type => return_type
1149
+ )
1150
+
1151
+ data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, new_options)
1152
+ if @api_client.config.debugging
1153
+ @api_client.config.logger.debug "API called: ServersApi#servers_server_id_public_networks_delete\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1154
+ end
1155
+ return data, status_code, headers
1156
+ end
1157
+
1158
+ # Adds the server to a Public Network.
1159
+ # Adds the server to a Public Network. <b>No actual configuration is performed on the operating system.</b> BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. Knowledge base article to help you can be found <a href='https://phoenixnap.com/kb/configure-bmc-server-after-adding-to-network#ftoc-heading-3' target='_blank'>here</a>.
1160
+ # @param server_id [String] The server&#39;s ID.
1161
+ # @param [Hash] opts the optional parameters
1162
+ # @option opts [ServerPublicNetwork] :server_public_network
1163
+ # @return [ServerPublicNetwork]
1164
+ def servers_server_id_public_networks_post(server_id, opts = {})
1165
+ data, _status_code, _headers = servers_server_id_public_networks_post_with_http_info(server_id, opts)
1166
+ data
1167
+ end
1168
+
1169
+ # Adds the server to a Public Network.
1170
+ # Adds the server to a Public Network. &lt;b&gt;No actual configuration is performed on the operating system.&lt;/b&gt; BMC configures exclusively the networking devices in the datacenter infrastructure. Manual network configuration changes in the operating system of this server are required. Knowledge base article to help you can be found &lt;a href&#x3D;&#39;https://phoenixnap.com/kb/configure-bmc-server-after-adding-to-network#ftoc-heading-3&#39; target&#x3D;&#39;_blank&#39;&gt;here&lt;/a&gt;.
1171
+ # @param server_id [String] The server&#39;s ID.
1172
+ # @param [Hash] opts the optional parameters
1173
+ # @option opts [ServerPublicNetwork] :server_public_network
1174
+ # @return [Array<(ServerPublicNetwork, Integer, Hash)>] ServerPublicNetwork data, response status code and response headers
1175
+ def servers_server_id_public_networks_post_with_http_info(server_id, opts = {})
1176
+ if @api_client.config.debugging
1177
+ @api_client.config.logger.debug 'Calling API: ServersApi.servers_server_id_public_networks_post ...'
1178
+ end
1179
+ # verify the required parameter 'server_id' is set
1180
+ if @api_client.config.client_side_validation && server_id.nil?
1181
+ fail ArgumentError, "Missing the required parameter 'server_id' when calling ServersApi.servers_server_id_public_networks_post"
1182
+ end
1183
+ # resource path
1184
+ local_var_path = '/servers/{serverId}/network-configuration/public-network-configuration/public-networks'.sub('{' + 'serverId' + '}', CGI.escape(server_id.to_s))
1185
+
1186
+ # query parameters
1187
+ query_params = opts[:query_params] || {}
1188
+
1189
+ # header parameters
1190
+ header_params = opts[:header_params] || {}
1191
+ # HTTP header 'Accept' (if needed)
1192
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
1193
+ # HTTP header 'Content-Type'
1194
+ content_type = @api_client.select_header_content_type(['application/json'])
1195
+ if !content_type.nil?
1196
+ header_params['Content-Type'] = content_type
1197
+ end
1198
+
1199
+ # form parameters
1200
+ form_params = opts[:form_params] || {}
1201
+
1202
+ # http body (model)
1203
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'server_public_network'])
1204
+
1205
+ # return_type
1206
+ return_type = opts[:debug_return_type] || 'ServerPublicNetwork'
1207
+
1208
+ # auth_names
1209
+ auth_names = opts[:debug_auth_names] || ['OAuth2']
1210
+
1211
+ new_options = opts.merge(
1212
+ :operation => :"ServersApi.servers_server_id_public_networks_post",
1213
+ :header_params => header_params,
1214
+ :query_params => query_params,
1215
+ :form_params => form_params,
1216
+ :body => post_body,
1217
+ :auth_names => auth_names,
1218
+ :return_type => return_type
1219
+ )
1220
+
1221
+ data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
1222
+ if @api_client.config.debugging
1223
+ @api_client.config.logger.debug "API called: ServersApi#servers_server_id_public_networks_post\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
1224
+ end
1225
+ return data, status_code, headers
1226
+ end
1227
+
1228
+ # Overwrite tags assigned for Server.
1229
+ # Overwrites tags assigned for Server and unassigns any tags not part of the request.
1091
1230
  # @param server_id [String] The server&#39;s ID.
1092
1231
  # @param [Hash] opts the optional parameters
1093
1232
  # @option opts [Array<TagAssignmentRequest>] :tag_assignment_request
@@ -1097,8 +1236,8 @@ module BmcApi
1097
1236
  data
1098
1237
  end
1099
1238
 
1100
- # Set server tags.
1101
- # Set tags for server.
1239
+ # Overwrite tags assigned for Server.
1240
+ # Overwrites tags assigned for Server and unassigns any tags not part of the request.
1102
1241
  # @param server_id [String] The server&#39;s ID.
1103
1242
  # @param [Hash] opts the optional parameters
1104
1243
  # @option opts [Array<TagAssignmentRequest>] :tag_assignment_request
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -95,6 +95,7 @@ module BmcApi
95
95
  header_params = @default_headers.merge(opts[:header_params] || {})
96
96
  query_params = opts[:query_params] || {}
97
97
  form_params = opts[:form_params] || {}
98
+ follow_location = opts[:follow_location] || true
98
99
 
99
100
  update_params_for_auth! header_params, query_params, opts[:auth_names]
100
101
 
@@ -111,7 +112,8 @@ module BmcApi
111
112
  :ssl_verifyhost => _verify_ssl_host,
112
113
  :sslcert => @config.cert_file,
113
114
  :sslkey => @config.key_file,
114
- :verbose => @config.debugging
115
+ :verbose => @config.debugging,
116
+ :followlocation => follow_location
115
117
  }
116
118
 
117
119
  # set custom cert, if provided
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -133,6 +133,7 @@ module BmcApi
133
133
  # https://github.com/typhoeus/ethon/blob/master/lib/ethon/easy/queryable.rb#L96
134
134
  attr_accessor :params_encoding
135
135
 
136
+
136
137
  attr_accessor :inject_format
137
138
 
138
139
  attr_accessor :force_ending_format
@@ -150,10 +151,10 @@ module BmcApi
150
151
  @client_side_validation = true
151
152
  @verify_ssl = true
152
153
  @verify_ssl_host = true
153
- @params_encoding = nil
154
154
  @cert_file = nil
155
155
  @key_file = nil
156
156
  @timeout = 0
157
+ @params_encoding = nil
157
158
  @debugging = false
158
159
  @inject_format = false
159
160
  @force_ending_format = false
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -114,6 +114,7 @@ module BmcApi
114
114
  # @return [Object] Returns the model itself
115
115
  def build_from_hash(attributes)
116
116
  return nil unless attributes.is_a?(Hash)
117
+ attributes = attributes.transform_keys(&:to_sym)
117
118
  self.class.openapi_types.each_pair do |key, type|
118
119
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
119
120
  self.send("#{key}=", nil)
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -129,6 +129,7 @@ module BmcApi
129
129
  # @return [Object] Returns the model itself
130
130
  def build_from_hash(attributes)
131
131
  return nil unless attributes.is_a?(Hash)
132
+ attributes = attributes.transform_keys(&:to_sym)
132
133
  self.class.openapi_types.each_pair do |key, type|
133
134
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
134
135
  self.send("#{key}=", nil)
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -129,6 +129,7 @@ module BmcApi
129
129
  # @return [Object] Returns the model itself
130
130
  def build_from_hash(attributes)
131
131
  return nil unless attributes.is_a?(Hash)
132
+ attributes = attributes.transform_keys(&:to_sym)
132
133
  self.class.openapi_types.each_pair do |key, type|
133
134
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
134
135
  self.send("#{key}=", nil)
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -125,6 +125,7 @@ module BmcApi
125
125
  # @return [Object] Returns the model itself
126
126
  def build_from_hash(attributes)
127
127
  return nil unless attributes.is_a?(Hash)
128
+ attributes = attributes.transform_keys(&:to_sym)
128
129
  self.class.openapi_types.each_pair do |key, type|
129
130
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
130
131
  self.send("#{key}=", nil)
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -172,6 +172,7 @@ module BmcApi
172
172
  # @return [Object] Returns the model itself
173
173
  def build_from_hash(attributes)
174
174
  return nil unless attributes.is_a?(Hash)
175
+ attributes = attributes.transform_keys(&:to_sym)
175
176
  self.class.openapi_types.each_pair do |key, type|
176
177
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
177
178
  self.send("#{key}=", nil)
@@ -1,12 +1,12 @@
1
1
  =begin
2
2
  #Bare Metal Cloud API
3
3
 
4
- #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, and a lot more. Manage your infrastructure more efficiently using just a few simple api calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
4
+ #Create, power off, power on, reset, reboot, or shut down your server with the Bare Metal Cloud API. Deprovision servers, get or edit SSH key details, assign public IPs, assign servers to networks and a lot more. Manage your infrastructure more efficiently using just a few simple API calls.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/how-to-deploy-bare-metal-cloud-server' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/bmc/v1/)</b>
5
5
 
6
6
  The version of the OpenAPI document: 0.1
7
7
  Contact: support@phoenixnap.com
8
8
  Generated by: https://openapi-generator.tech
9
- OpenAPI Generator version: 5.4.0
9
+ OpenAPI Generator version: 6.1.0
10
10
 
11
11
  =end
12
12
 
@@ -16,15 +16,22 @@ require 'time'
16
16
  module BmcApi
17
17
  # Entire network details of bare metal server.
18
18
  class NetworkConfiguration
19
+ # The address of the gateway assigned / to assign to the server. When used as part of request body, IP address has to be part of private/public network assigned to this server.
20
+ attr_accessor :gateway_address
21
+
19
22
  attr_accessor :private_network_configuration
20
23
 
21
24
  attr_accessor :ip_blocks_configuration
22
25
 
26
+ attr_accessor :public_network_configuration
27
+
23
28
  # Attribute mapping from ruby-style variable name to JSON key.
24
29
  def self.attribute_map
25
30
  {
31
+ :'gateway_address' => :'gatewayAddress',
26
32
  :'private_network_configuration' => :'privateNetworkConfiguration',
27
- :'ip_blocks_configuration' => :'ipBlocksConfiguration'
33
+ :'ip_blocks_configuration' => :'ipBlocksConfiguration',
34
+ :'public_network_configuration' => :'publicNetworkConfiguration'
28
35
  }
29
36
  end
30
37
 
@@ -36,8 +43,10 @@ module BmcApi
36
43
  # Attribute type mapping.
37
44
  def self.openapi_types
38
45
  {
46
+ :'gateway_address' => :'String',
39
47
  :'private_network_configuration' => :'PrivateNetworkConfiguration',
40
- :'ip_blocks_configuration' => :'IpBlocksConfiguration'
48
+ :'ip_blocks_configuration' => :'IpBlocksConfiguration',
49
+ :'public_network_configuration' => :'PublicNetworkConfiguration'
41
50
  }
42
51
  end
43
52
 
@@ -62,6 +71,10 @@ module BmcApi
62
71
  h[k.to_sym] = v
63
72
  }
64
73
 
74
+ if attributes.key?(:'gateway_address')
75
+ self.gateway_address = attributes[:'gateway_address']
76
+ end
77
+
65
78
  if attributes.key?(:'private_network_configuration')
66
79
  self.private_network_configuration = attributes[:'private_network_configuration']
67
80
  end
@@ -69,6 +82,10 @@ module BmcApi
69
82
  if attributes.key?(:'ip_blocks_configuration')
70
83
  self.ip_blocks_configuration = attributes[:'ip_blocks_configuration']
71
84
  end
85
+
86
+ if attributes.key?(:'public_network_configuration')
87
+ self.public_network_configuration = attributes[:'public_network_configuration']
88
+ end
72
89
  end
73
90
 
74
91
  # Show invalid properties with the reasons. Usually used together with valid?
@@ -89,8 +106,10 @@ module BmcApi
89
106
  def ==(o)
90
107
  return true if self.equal?(o)
91
108
  self.class == o.class &&
109
+ gateway_address == o.gateway_address &&
92
110
  private_network_configuration == o.private_network_configuration &&
93
- ip_blocks_configuration == o.ip_blocks_configuration
111
+ ip_blocks_configuration == o.ip_blocks_configuration &&
112
+ public_network_configuration == o.public_network_configuration
94
113
  end
95
114
 
96
115
  # @see the `==` method
@@ -102,7 +121,7 @@ module BmcApi
102
121
  # Calculates hash code according to all attributes.
103
122
  # @return [Integer] Hash code
104
123
  def hash
105
- [private_network_configuration, ip_blocks_configuration].hash
124
+ [gateway_address, private_network_configuration, ip_blocks_configuration, public_network_configuration].hash
106
125
  end
107
126
 
108
127
  # Builds the object from hash
@@ -117,6 +136,7 @@ module BmcApi
117
136
  # @return [Object] Returns the model itself
118
137
  def build_from_hash(attributes)
119
138
  return nil unless attributes.is_a?(Hash)
139
+ attributes = attributes.transform_keys(&:to_sym)
120
140
  self.class.openapi_types.each_pair do |key, type|
121
141
  if attributes[self.class.attribute_map[key]].nil? && self.class.openapi_nullable.include?(key)
122
142
  self.send("#{key}=", nil)