pnap_billing_api 2.0.0 → 2.1.0
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/README.md +9 -0
- data/VERSION +1 -1
- data/docs/BandwidthRecord.md +4 -2
- data/docs/CreditDetails.md +49 -0
- data/docs/CreditDetailsBase.md +20 -0
- data/docs/CreditTypeEnum.md +15 -0
- data/docs/DiscountDetails.md +2 -2
- data/docs/DiscountTypeEnum.md +15 -0
- data/docs/GpuConfigurationMetadata.md +20 -0
- data/docs/OperatingSystemRecord.md +4 -2
- data/docs/PricingPlan.md +2 -2
- data/docs/PromoCreditDetails.md +24 -0
- data/docs/PublicSubnetRecord.md +4 -2
- data/docs/RatedUsageProductCategoryEnum.md +15 -0
- data/docs/RatedUsageRecord.md +5 -3
- data/docs/ReservationAutoRenewDisableRequest.md +1 -1
- data/docs/ServerProductMetadata.md +3 -1
- data/docs/ServerRecord.md +4 -2
- data/docs/StorageRecord.md +4 -2
- data/docs/SystemCreditCauseEnum.md +15 -0
- data/docs/SystemCreditDetails.md +22 -0
- data/lib/pnap_billing_api/models/bandwidth_record.rb +13 -15
- data/lib/pnap_billing_api/models/credit_details.rb +105 -0
- data/lib/pnap_billing_api/models/credit_details_base.rb +261 -0
- data/lib/pnap_billing_api/models/credit_type_enum.rb +40 -0
- data/lib/pnap_billing_api/models/discount_details.rb +1 -14
- data/lib/pnap_billing_api/models/discount_type_enum.rb +41 -0
- data/lib/pnap_billing_api/models/gpu_configuration_metadata.rb +226 -0
- data/lib/pnap_billing_api/models/operating_system_record.rb +13 -15
- data/lib/pnap_billing_api/models/promo_credit_details.rb +301 -0
- data/lib/pnap_billing_api/models/public_subnet_record.rb +13 -15
- data/lib/pnap_billing_api/models/rated_usage_product_category_enum.rb +43 -0
- data/lib/pnap_billing_api/models/rated_usage_record.rb +16 -18
- data/lib/pnap_billing_api/models/server_product_metadata.rb +16 -4
- data/lib/pnap_billing_api/models/server_record.rb +13 -15
- data/lib/pnap_billing_api/models/storage_record.rb +13 -15
- data/lib/pnap_billing_api/models/system_credit_cause_enum.rb +39 -0
- data/lib/pnap_billing_api/models/system_credit_details.rb +283 -0
- data/lib/pnap_billing_api.rb +9 -0
- data/spec/models/bandwidth_record_spec.rb +6 -4
- data/spec/models/credit_details_base_spec.rb +42 -0
- data/spec/models/credit_details_spec.rb +32 -0
- data/spec/models/credit_type_enum_spec.rb +30 -0
- data/spec/models/discount_details_spec.rb +0 -4
- data/spec/models/discount_type_enum_spec.rb +30 -0
- data/spec/models/gpu_configuration_metadata_spec.rb +42 -0
- data/spec/models/operating_system_record_spec.rb +6 -4
- data/spec/models/promo_credit_details_spec.rb +54 -0
- data/spec/models/public_subnet_record_spec.rb +6 -4
- data/spec/models/rated_usage_product_category_enum_spec.rb +30 -0
- data/spec/models/rated_usage_record_spec.rb +6 -4
- data/spec/models/server_product_metadata_spec.rb +6 -0
- data/spec/models/server_record_spec.rb +6 -4
- data/spec/models/storage_record_spec.rb +6 -4
- data/spec/models/system_credit_cause_enum_spec.rb +30 -0
- data/spec/models/system_credit_details_spec.rb +48 -0
- metadata +67 -31
@@ -36,10 +36,6 @@ describe BillingApi::RatedUsageRecord do
|
|
36
36
|
describe 'test attribute "product_category"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["bmc-server", "bandwidth", "operating-system", "public-ip", "storage"])
|
40
|
-
# validator.allowable_values.each do |value|
|
41
|
-
# expect { instance.product_category = value }.not_to raise_error
|
42
|
-
# end
|
43
39
|
end
|
44
40
|
end
|
45
41
|
|
@@ -145,4 +141,10 @@ describe BillingApi::RatedUsageRecord do
|
|
145
141
|
end
|
146
142
|
end
|
147
143
|
|
144
|
+
describe 'test attribute "credit_details"' do
|
145
|
+
it 'should work' do
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
148
150
|
end
|
@@ -69,4 +69,10 @@ describe BillingApi::ServerProductMetadata do
|
|
69
69
|
end
|
70
70
|
end
|
71
71
|
|
72
|
+
describe 'test attribute "gpu_configurations"' do
|
73
|
+
it 'should work' do
|
74
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
72
78
|
end
|
@@ -36,10 +36,6 @@ describe BillingApi::ServerRecord do
|
|
36
36
|
describe 'test attribute "product_category"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["bmc-server", "bandwidth", "operating-system", "public-ip", "storage"])
|
40
|
-
# validator.allowable_values.each do |value|
|
41
|
-
# expect { instance.product_category = value }.not_to raise_error
|
42
|
-
# end
|
43
39
|
end
|
44
40
|
end
|
45
41
|
|
@@ -145,6 +141,12 @@ describe BillingApi::ServerRecord do
|
|
145
141
|
end
|
146
142
|
end
|
147
143
|
|
144
|
+
describe 'test attribute "credit_details"' do
|
145
|
+
it 'should work' do
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
148
150
|
describe 'test attribute "metadata"' do
|
149
151
|
it 'should work' do
|
150
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -36,10 +36,6 @@ describe BillingApi::StorageRecord do
|
|
36
36
|
describe 'test attribute "product_category"' do
|
37
37
|
it 'should work' do
|
38
38
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
-
# validator = Petstore::EnumTest::EnumAttributeValidator.new('String', ["bmc-server", "bandwidth", "operating-system", "public-ip", "storage"])
|
40
|
-
# validator.allowable_values.each do |value|
|
41
|
-
# expect { instance.product_category = value }.not_to raise_error
|
42
|
-
# end
|
43
39
|
end
|
44
40
|
end
|
45
41
|
|
@@ -145,6 +141,12 @@ describe BillingApi::StorageRecord do
|
|
145
141
|
end
|
146
142
|
end
|
147
143
|
|
144
|
+
describe 'test attribute "credit_details"' do
|
145
|
+
it 'should work' do
|
146
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
147
|
+
end
|
148
|
+
end
|
149
|
+
|
148
150
|
describe 'test attribute "metadata"' do
|
149
151
|
it 'should work' do
|
150
152
|
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
@@ -0,0 +1,30 @@
|
|
1
|
+
=begin
|
2
|
+
#Billing API
|
3
|
+
|
4
|
+
#Automate your infrastructure billing with the Bare Metal Cloud Billing API. Reserve your server instances to ensure guaranteed resource availability for 12, 24, and 36 months. Retrieve your server’s rated usage for a given period and enable or disable auto-renewals.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/phoenixnap-bare-metal-cloud-billing-models' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/billing/v1/)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.2.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BillingApi::SystemCreditCauseEnum
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BillingApi::SystemCreditCauseEnum do
|
21
|
+
let(:instance) { BillingApi::SystemCreditCauseEnum.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SystemCreditCauseEnum' do
|
24
|
+
it 'should create an instance of SystemCreditCauseEnum' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(BillingApi::SystemCreditCauseEnum)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
=begin
|
2
|
+
#Billing API
|
3
|
+
|
4
|
+
#Automate your infrastructure billing with the Bare Metal Cloud Billing API. Reserve your server instances to ensure guaranteed resource availability for 12, 24, and 36 months. Retrieve your server’s rated usage for a given period and enable or disable auto-renewals.<br> <br> <span class='pnap-api-knowledge-base-link'> Knowledge base articles to help you can be found <a href='https://phoenixnap.com/kb/phoenixnap-bare-metal-cloud-billing-models' target='_blank'>here</a> </span><br> <br> <b>All URLs are relative to (https://api.phoenixnap.com/billing/v1/)</b>
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 0.1
|
7
|
+
Contact: support@phoenixnap.com
|
8
|
+
Generated by: https://openapi-generator.tech
|
9
|
+
OpenAPI Generator version: 7.2.0
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for BillingApi::SystemCreditDetails
|
18
|
+
# Automatically generated by openapi-generator (https://openapi-generator.tech)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe BillingApi::SystemCreditDetails do
|
21
|
+
let(:instance) { BillingApi::SystemCreditDetails.new }
|
22
|
+
|
23
|
+
describe 'test an instance of SystemCreditDetails' do
|
24
|
+
it 'should create an instance of SystemCreditDetails' do
|
25
|
+
# uncomment below to test the instance creation
|
26
|
+
#expect(instance).to be_instance_of(BillingApi::SystemCreditDetails)
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test attribute "applied_amount"' do
|
31
|
+
it 'should work' do
|
32
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'test attribute "type"' do
|
37
|
+
it 'should work' do
|
38
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
describe 'test attribute "cause"' do
|
43
|
+
it 'should work' do
|
44
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
45
|
+
end
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pnap_billing_api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PhoenixNAP
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -66,8 +66,13 @@ files:
|
|
66
66
|
- docs/BandwidthRecord.md
|
67
67
|
- docs/BillingConfigurationsApi.md
|
68
68
|
- docs/ConfigurationDetails.md
|
69
|
+
- docs/CreditDetails.md
|
70
|
+
- docs/CreditDetailsBase.md
|
71
|
+
- docs/CreditTypeEnum.md
|
69
72
|
- docs/DiscountDetails.md
|
73
|
+
- docs/DiscountTypeEnum.md
|
70
74
|
- docs/Error.md
|
75
|
+
- docs/GpuConfigurationMetadata.md
|
71
76
|
- docs/LocationAvailabilityDetail.md
|
72
77
|
- docs/LocationEnum.md
|
73
78
|
- docs/OperatingSystemDetails.md
|
@@ -81,10 +86,12 @@ files:
|
|
81
86
|
- docs/ProductCategoryEnum.md
|
82
87
|
- docs/ProductsApi.md
|
83
88
|
- docs/ProductsGet200ResponseInner.md
|
89
|
+
- docs/PromoCreditDetails.md
|
84
90
|
- docs/PublicSubnetDetails.md
|
85
91
|
- docs/PublicSubnetRecord.md
|
86
92
|
- docs/RatedUsageApi.md
|
87
93
|
- docs/RatedUsageGet200ResponseInner.md
|
94
|
+
- docs/RatedUsageProductCategoryEnum.md
|
88
95
|
- docs/RatedUsageRecord.md
|
89
96
|
- docs/Reservation.md
|
90
97
|
- docs/ReservationAutoRenewDisableRequest.md
|
@@ -99,6 +106,8 @@ files:
|
|
99
106
|
- docs/ServerRecord.md
|
100
107
|
- docs/StorageDetails.md
|
101
108
|
- docs/StorageRecord.md
|
109
|
+
- docs/SystemCreditCauseEnum.md
|
110
|
+
- docs/SystemCreditDetails.md
|
102
111
|
- docs/ThresholdConfigurationDetails.md
|
103
112
|
- lib/pnap_billing_api.rb
|
104
113
|
- lib/pnap_billing_api/api/billing_configurations_api.rb
|
@@ -113,8 +122,13 @@ files:
|
|
113
122
|
- lib/pnap_billing_api/models/bandwidth_details.rb
|
114
123
|
- lib/pnap_billing_api/models/bandwidth_record.rb
|
115
124
|
- lib/pnap_billing_api/models/configuration_details.rb
|
125
|
+
- lib/pnap_billing_api/models/credit_details.rb
|
126
|
+
- lib/pnap_billing_api/models/credit_details_base.rb
|
127
|
+
- lib/pnap_billing_api/models/credit_type_enum.rb
|
116
128
|
- lib/pnap_billing_api/models/discount_details.rb
|
129
|
+
- lib/pnap_billing_api/models/discount_type_enum.rb
|
117
130
|
- lib/pnap_billing_api/models/error.rb
|
131
|
+
- lib/pnap_billing_api/models/gpu_configuration_metadata.rb
|
118
132
|
- lib/pnap_billing_api/models/location_availability_detail.rb
|
119
133
|
- lib/pnap_billing_api/models/location_enum.rb
|
120
134
|
- lib/pnap_billing_api/models/operating_system_details.rb
|
@@ -126,9 +140,11 @@ files:
|
|
126
140
|
- lib/pnap_billing_api/models/product_availability.rb
|
127
141
|
- lib/pnap_billing_api/models/product_category_enum.rb
|
128
142
|
- lib/pnap_billing_api/models/products_get200_response_inner.rb
|
143
|
+
- lib/pnap_billing_api/models/promo_credit_details.rb
|
129
144
|
- lib/pnap_billing_api/models/public_subnet_details.rb
|
130
145
|
- lib/pnap_billing_api/models/public_subnet_record.rb
|
131
146
|
- lib/pnap_billing_api/models/rated_usage_get200_response_inner.rb
|
147
|
+
- lib/pnap_billing_api/models/rated_usage_product_category_enum.rb
|
132
148
|
- lib/pnap_billing_api/models/rated_usage_record.rb
|
133
149
|
- lib/pnap_billing_api/models/reservation.rb
|
134
150
|
- lib/pnap_billing_api/models/reservation_auto_renew_disable_request.rb
|
@@ -142,6 +158,8 @@ files:
|
|
142
158
|
- lib/pnap_billing_api/models/server_record.rb
|
143
159
|
- lib/pnap_billing_api/models/storage_details.rb
|
144
160
|
- lib/pnap_billing_api/models/storage_record.rb
|
161
|
+
- lib/pnap_billing_api/models/system_credit_cause_enum.rb
|
162
|
+
- lib/pnap_billing_api/models/system_credit_details.rb
|
145
163
|
- lib/pnap_billing_api/models/threshold_configuration_details.rb
|
146
164
|
- lib/pnap_billing_api/version.rb
|
147
165
|
- pnap_billing_api.gemspec
|
@@ -154,8 +172,13 @@ files:
|
|
154
172
|
- spec/models/bandwidth_details_spec.rb
|
155
173
|
- spec/models/bandwidth_record_spec.rb
|
156
174
|
- spec/models/configuration_details_spec.rb
|
175
|
+
- spec/models/credit_details_base_spec.rb
|
176
|
+
- spec/models/credit_details_spec.rb
|
177
|
+
- spec/models/credit_type_enum_spec.rb
|
157
178
|
- spec/models/discount_details_spec.rb
|
179
|
+
- spec/models/discount_type_enum_spec.rb
|
158
180
|
- spec/models/error_spec.rb
|
181
|
+
- spec/models/gpu_configuration_metadata_spec.rb
|
159
182
|
- spec/models/location_availability_detail_spec.rb
|
160
183
|
- spec/models/location_enum_spec.rb
|
161
184
|
- spec/models/operating_system_details_spec.rb
|
@@ -167,9 +190,11 @@ files:
|
|
167
190
|
- spec/models/product_category_enum_spec.rb
|
168
191
|
- spec/models/product_spec.rb
|
169
192
|
- spec/models/products_get200_response_inner_spec.rb
|
193
|
+
- spec/models/promo_credit_details_spec.rb
|
170
194
|
- spec/models/public_subnet_details_spec.rb
|
171
195
|
- spec/models/public_subnet_record_spec.rb
|
172
196
|
- spec/models/rated_usage_get200_response_inner_spec.rb
|
197
|
+
- spec/models/rated_usage_product_category_enum_spec.rb
|
173
198
|
- spec/models/rated_usage_record_spec.rb
|
174
199
|
- spec/models/reservation_auto_renew_disable_request_spec.rb
|
175
200
|
- spec/models/reservation_invoicing_model_enum_spec.rb
|
@@ -183,6 +208,8 @@ files:
|
|
183
208
|
- spec/models/server_record_spec.rb
|
184
209
|
- spec/models/storage_details_spec.rb
|
185
210
|
- spec/models/storage_record_spec.rb
|
211
|
+
- spec/models/system_credit_cause_enum_spec.rb
|
212
|
+
- spec/models/system_credit_details_spec.rb
|
186
213
|
- spec/models/threshold_configuration_details_spec.rb
|
187
214
|
- spec/spec_helper.rb
|
188
215
|
homepage: https://phoenixnap.com/bare-metal-cloud
|
@@ -190,7 +217,7 @@ licenses:
|
|
190
217
|
- MPL-2.0
|
191
218
|
metadata:
|
192
219
|
source_code_uri: https://github.com/phoenixnap/ruby-sdk-bmc
|
193
|
-
post_install_message:
|
220
|
+
post_install_message:
|
194
221
|
rdoc_options: []
|
195
222
|
require_paths:
|
196
223
|
- lib
|
@@ -205,48 +232,57 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
205
232
|
- !ruby/object:Gem::Version
|
206
233
|
version: '0'
|
207
234
|
requirements: []
|
208
|
-
rubygems_version: 3.
|
209
|
-
signing_key:
|
235
|
+
rubygems_version: 3.4.20
|
236
|
+
signing_key:
|
210
237
|
specification_version: 4
|
211
238
|
summary: Billing API Ruby Gem
|
212
239
|
test_files:
|
213
240
|
- spec/api/product_availability_api_spec.rb
|
214
241
|
- spec/api/reservations_api_spec.rb
|
215
|
-
- spec/api/products_api_spec.rb
|
216
242
|
- spec/api/rated_usage_api_spec.rb
|
243
|
+
- spec/api/products_api_spec.rb
|
217
244
|
- spec/api/billing_configurations_api_spec.rb
|
218
|
-
- spec/models/
|
245
|
+
- spec/models/operating_system_record_spec.rb
|
246
|
+
- spec/models/error_spec.rb
|
219
247
|
- spec/models/configuration_details_spec.rb
|
220
|
-
- spec/models/
|
221
|
-
- spec/models/
|
222
|
-
- spec/models/
|
248
|
+
- spec/models/credit_type_enum_spec.rb
|
249
|
+
- spec/models/package_unit_enum_spec.rb
|
250
|
+
- spec/models/promo_credit_details_spec.rb
|
251
|
+
- spec/models/location_enum_spec.rb
|
252
|
+
- spec/models/server_product_spec.rb
|
253
|
+
- spec/models/gpu_configuration_metadata_spec.rb
|
254
|
+
- spec/models/pricing_plan_spec.rb
|
255
|
+
- spec/models/credit_details_base_spec.rb
|
223
256
|
- spec/models/bandwidth_record_spec.rb
|
224
257
|
- spec/models/public_subnet_record_spec.rb
|
225
|
-
- spec/models/
|
226
|
-
- spec/models/
|
258
|
+
- spec/models/rated_usage_get200_response_inner_spec.rb
|
259
|
+
- spec/models/bandwidth_details_spec.rb
|
260
|
+
- spec/models/storage_record_spec.rb
|
261
|
+
- spec/models/product_availability_spec.rb
|
262
|
+
- spec/models/reservation_model_enum_spec.rb
|
263
|
+
- spec/models/system_credit_details_spec.rb
|
264
|
+
- spec/models/credit_details_spec.rb
|
227
265
|
- spec/models/reservation_spec.rb
|
228
|
-
- spec/models/
|
229
|
-
- spec/models/operating_system_record_spec.rb
|
230
|
-
- spec/models/reservation_invoicing_model_enum_spec.rb
|
231
|
-
- spec/models/location_enum_spec.rb
|
232
|
-
- spec/models/price_unit_enum_spec.rb
|
266
|
+
- spec/models/reservation_product_category_enum_spec.rb
|
233
267
|
- spec/models/reservation_auto_renew_disable_request_spec.rb
|
234
|
-
- spec/models/product_availability_spec.rb
|
235
|
-
- spec/models/applicable_discounts_spec.rb
|
236
268
|
- spec/models/operating_system_details_spec.rb
|
269
|
+
- spec/models/location_availability_detail_spec.rb
|
270
|
+
- spec/models/products_get200_response_inner_spec.rb
|
271
|
+
- spec/models/discount_type_enum_spec.rb
|
272
|
+
- spec/models/rated_usage_product_category_enum_spec.rb
|
273
|
+
- spec/models/public_subnet_details_spec.rb
|
274
|
+
- spec/models/reservation_invoicing_model_enum_spec.rb
|
275
|
+
- spec/models/applicable_discounts_spec.rb
|
237
276
|
- spec/models/server_product_metadata_spec.rb
|
277
|
+
- spec/models/product_spec.rb
|
278
|
+
- spec/models/price_unit_enum_spec.rb
|
279
|
+
- spec/models/storage_details_spec.rb
|
280
|
+
- spec/models/server_record_spec.rb
|
281
|
+
- spec/models/product_category_enum_spec.rb
|
238
282
|
- spec/models/rated_usage_record_spec.rb
|
239
|
-
- spec/models/products_get200_response_inner_spec.rb
|
240
|
-
- spec/models/server_details_spec.rb
|
241
|
-
- spec/models/reservation_model_enum_spec.rb
|
242
|
-
- spec/models/pricing_plan_spec.rb
|
243
|
-
- spec/models/package_unit_enum_spec.rb
|
244
283
|
- spec/models/threshold_configuration_details_spec.rb
|
245
|
-
- spec/models/
|
284
|
+
- spec/models/server_details_spec.rb
|
246
285
|
- spec/models/reservation_request_spec.rb
|
247
|
-
- spec/models/
|
248
|
-
- spec/models/
|
249
|
-
- spec/models/rated_usage_get200_response_inner_spec.rb
|
250
|
-
- spec/models/reservation_product_category_enum_spec.rb
|
251
|
-
- spec/models/bandwidth_details_spec.rb
|
286
|
+
- spec/models/discount_details_spec.rb
|
287
|
+
- spec/models/system_credit_cause_enum_spec.rb
|
252
288
|
- spec/spec_helper.rb
|