vantage-client 0.0.8 → 0.1.0.beta.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/Gemfile.lock +1 -1
- data/README.md +120 -62
- data/docs/Cost.md +11 -0
- data/docs/Costs.md +11 -0
- data/docs/CostsApi.md +177 -0
- data/docs/PingApi.md +1 -1
- data/docs/PricesApi.md +30 -7
- data/docs/Report.md +13 -0
- data/docs/Reports.md +9 -0
- data/lib/vantage-client/api/costs_api.rb +185 -0
- data/lib/vantage-client/api/ping_api.rb +3 -3
- data/lib/vantage-client/api/prices_api.rb +25 -1
- data/lib/vantage-client/api_client.rb +1 -1
- data/lib/vantage-client/api_error.rb +1 -1
- data/lib/vantage-client/configuration.rb +1 -1
- data/lib/vantage-client/models/cost.rb +215 -0
- data/lib/vantage-client/models/costs.rb +216 -0
- data/lib/vantage-client/models/price.rb +1 -1
- data/lib/vantage-client/models/prices.rb +1 -1
- data/lib/vantage-client/models/product.rb +1 -1
- data/lib/vantage-client/models/products.rb +1 -1
- data/lib/vantage-client/models/provider.rb +1 -1
- data/lib/vantage-client/models/providers.rb +1 -1
- data/lib/vantage-client/models/report.rb +235 -0
- data/lib/vantage-client/models/reports.rb +196 -0
- data/lib/vantage-client/models/service.rb +1 -1
- data/lib/vantage-client/models/services.rb +1 -1
- data/lib/vantage-client/version.rb +2 -2
- data/lib/vantage-client.rb +6 -1
- data/spec/.DS_Store +0 -0
- data/spec/api/costs_api_spec.rb +73 -0
- data/spec/api/ping_api_spec.rb +2 -2
- data/spec/api/prices_api_spec.rb +9 -1
- data/spec/api_client_spec.rb +1 -1
- data/spec/configuration_spec.rb +1 -1
- data/spec/models/cost_spec.rb +59 -0
- data/spec/models/costs_spec.rb +59 -0
- data/spec/models/price_spec.rb +1 -1
- data/spec/models/prices_spec.rb +1 -1
- data/spec/models/product_spec.rb +1 -1
- data/spec/models/products_spec.rb +1 -1
- data/spec/models/provider_spec.rb +1 -1
- data/spec/models/providers_spec.rb +1 -1
- data/spec/models/report_spec.rb +71 -0
- data/spec/models/reports_spec.rb +47 -0
- data/spec/models/service_spec.rb +1 -1
- data/spec/models/services_spec.rb +1 -1
- data/spec/spec_helper.rb +1 -1
- data/vantage-client-0.1.0.beta.1.gem +0 -0
- data/vantage-client.gemspec +1 -1
- metadata +26 -4
@@ -6,10 +6,10 @@
|
|
6
6
|
OpenAPI spec version: 1.0.0
|
7
7
|
Contact: support@vantage.sh
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.4.
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
13
13
|
module Vantage
|
14
|
-
VERSION = '0.0.
|
14
|
+
VERSION = '0.1.0.beta.2'
|
15
15
|
end
|
data/lib/vantage-client.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
OpenAPI spec version: 1.0.0
|
7
7
|
Contact: support@vantage.sh
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.4.
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -17,16 +17,21 @@ require 'vantage-client/version'
|
|
17
17
|
require 'vantage-client/configuration'
|
18
18
|
|
19
19
|
# Models
|
20
|
+
require 'vantage-client/models/cost'
|
21
|
+
require 'vantage-client/models/costs'
|
20
22
|
require 'vantage-client/models/price'
|
21
23
|
require 'vantage-client/models/prices'
|
22
24
|
require 'vantage-client/models/product'
|
23
25
|
require 'vantage-client/models/products'
|
24
26
|
require 'vantage-client/models/provider'
|
25
27
|
require 'vantage-client/models/providers'
|
28
|
+
require 'vantage-client/models/report'
|
29
|
+
require 'vantage-client/models/reports'
|
26
30
|
require 'vantage-client/models/service'
|
27
31
|
require 'vantage-client/models/services'
|
28
32
|
|
29
33
|
# APIs
|
34
|
+
require 'vantage-client/api/costs_api'
|
30
35
|
require 'vantage-client/api/ping_api'
|
31
36
|
require 'vantage-client/api/prices_api'
|
32
37
|
|
data/spec/.DS_Store
ADDED
Binary file
|
@@ -0,0 +1,73 @@
|
|
1
|
+
=begin
|
2
|
+
#Vantage
|
3
|
+
|
4
|
+
#Vantage API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@vantage.sh
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
|
16
|
+
# Unit tests for Vantage::CostsApi
|
17
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
18
|
+
# Please update as you see appropriate
|
19
|
+
describe 'CostsApi' do
|
20
|
+
before do
|
21
|
+
# run before each test
|
22
|
+
@instance = Vantage::CostsApi.new
|
23
|
+
end
|
24
|
+
|
25
|
+
after do
|
26
|
+
# run after each test
|
27
|
+
end
|
28
|
+
|
29
|
+
describe 'test an instance of CostsApi' do
|
30
|
+
it 'should create an instance of CostsApi' do
|
31
|
+
expect(@instance).to be_instance_of(Vantage::CostsApi)
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
# unit tests for get_costs
|
36
|
+
# Return available Costs for the specified Cost Report and optional time period. If no time period is specified it will return all available costs for the report.
|
37
|
+
# @param report_id
|
38
|
+
# @param [Hash] opts the optional parameters
|
39
|
+
# @option opts [String] :start_date Query costs by the first date you would like to filter from. ISO 8601 Formatted - 2021-07-15 or 2021-07-15T19:20:48+00:00.
|
40
|
+
# @option opts [String] :end_date Query costs by the last date you would like to filter to. ISO 8601 Formatted - 2021-07-15 or 2021-07-15T19:20:48+00:00.
|
41
|
+
# @option opts [Integer] :page The page of results to return.
|
42
|
+
# @option opts [Integer] :limit The amount of results to return. The maximum is 1000
|
43
|
+
# @return [Costs]
|
44
|
+
describe 'get_costs test' do
|
45
|
+
it 'should work' do
|
46
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
# unit tests for get_report
|
51
|
+
# Return a Cost Report.
|
52
|
+
# @param report_id
|
53
|
+
# @param [Hash] opts the optional parameters
|
54
|
+
# @return [Report]
|
55
|
+
describe 'get_report test' do
|
56
|
+
it 'should work' do
|
57
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
# unit tests for get_reports
|
62
|
+
# Return all Cost Reports.
|
63
|
+
# @param [Hash] opts the optional parameters
|
64
|
+
# @option opts [Integer] :page The page of results to return.
|
65
|
+
# @option opts [Integer] :limit The amount of results to return. The maximum is 1000
|
66
|
+
# @return [Reports]
|
67
|
+
describe 'get_reports test' do
|
68
|
+
it 'should work' do
|
69
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
data/spec/api/ping_api_spec.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
OpenAPI spec version: 1.0.0
|
7
7
|
Contact: support@vantage.sh
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.4.
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -33,7 +33,7 @@ describe 'PingApi' do
|
|
33
33
|
end
|
34
34
|
|
35
35
|
# unit tests for ping
|
36
|
-
# This is a health check endpoint that can be used to determine Vantage API healthiness. It will return
|
36
|
+
# This is a health check endpoint that can be used to determine Vantage API healthiness. It will return 200 if everything is running smoothly.
|
37
37
|
# @param [Hash] opts the optional parameters
|
38
38
|
# @return [Object]
|
39
39
|
describe 'ping test' do
|
data/spec/api/prices_api_spec.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
OpenAPI spec version: 1.0.0
|
7
7
|
Contact: support@vantage.sh
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
-
Swagger Codegen version: 2.4.
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
10
|
|
11
11
|
=end
|
12
12
|
|
@@ -48,6 +48,8 @@ describe 'PricesApi' do
|
|
48
48
|
# Return available Prices across all Regions for a Product.
|
49
49
|
# @param product_id
|
50
50
|
# @param [Hash] opts the optional parameters
|
51
|
+
# @option opts [Integer] :page The page of results to return.
|
52
|
+
# @option opts [Integer] :limit The amount of results to return. The maximum is 1000
|
51
53
|
# @return [Prices]
|
52
54
|
describe 'get_prices test' do
|
53
55
|
it 'should work' do
|
@@ -72,6 +74,8 @@ describe 'PricesApi' do
|
|
72
74
|
# @option opts [String] :provider_id Query by Provider to list all Products across all Services for a Provider. e.g. aws
|
73
75
|
# @option opts [String] :service_id Query by Service to list all Products for a specific provider service. e.g. aws-ec2
|
74
76
|
# @option opts [String] :name Query by name of the Product to see a list of products which match that name. e.g. m5a.16xlarge
|
77
|
+
# @option opts [Integer] :page The page of results to return.
|
78
|
+
# @option opts [Integer] :limit The amount of results to return. The maximum is 1000
|
75
79
|
# @return [Products]
|
76
80
|
describe 'get_products test' do
|
77
81
|
it 'should work' do
|
@@ -82,6 +86,8 @@ describe 'PricesApi' do
|
|
82
86
|
# unit tests for get_providers
|
83
87
|
# Providers are cloud infrastructure and service providers from which all cloud prices are derived. You can think of example Providers as being AWS, GCP, Cloudflare or Datadog. Currently, Vantage only supports a single provider of AWS but over time more will be added. Use this endpoint to retrieve a provider id for other API calls.
|
84
88
|
# @param [Hash] opts the optional parameters
|
89
|
+
# @option opts [Integer] :page The page of results to return.
|
90
|
+
# @option opts [Integer] :limit The amount of results to return. The maximum is 1000
|
85
91
|
# @return [Providers]
|
86
92
|
describe 'get_providers test' do
|
87
93
|
it 'should work' do
|
@@ -93,6 +99,8 @@ describe 'PricesApi' do
|
|
93
99
|
# Return all Services. Examples of Services are EC2 for AWS. This endpoint will return all Services by default but you have the ability to filter Services by Provider using the optional query parameter documented below.
|
94
100
|
# @param [Hash] opts the optional parameters
|
95
101
|
# @option opts [String] :provider_id Query services for a specific provider. e.g. aws
|
102
|
+
# @option opts [Integer] :page The page of results to return.
|
103
|
+
# @option opts [Integer] :limit The amount of results to return. The maximum is 1000
|
96
104
|
# @return [Services]
|
97
105
|
describe 'get_services test' do
|
98
106
|
it 'should work' do
|
data/spec/api_client_spec.rb
CHANGED
data/spec/configuration_spec.rb
CHANGED
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#Vantage
|
3
|
+
|
4
|
+
#Vantage API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@vantage.sh
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Vantage::Cost
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Cost' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = Vantage::Cost.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Cost' do
|
31
|
+
it 'should create an instance of Cost' do
|
32
|
+
expect(@instance).to be_instance_of(Vantage::Cost)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "accrued_at"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "amount"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "provider"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "service"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
=begin
|
2
|
+
#Vantage
|
3
|
+
|
4
|
+
#Vantage API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@vantage.sh
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Vantage::Costs
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Costs' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = Vantage::Costs.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Costs' do
|
31
|
+
it 'should create an instance of Costs' do
|
32
|
+
expect(@instance).to be_instance_of(Vantage::Costs)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "links"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "total"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "currency"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "costs"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
end
|
data/spec/models/price_spec.rb
CHANGED
data/spec/models/prices_spec.rb
CHANGED
data/spec/models/product_spec.rb
CHANGED
@@ -0,0 +1,71 @@
|
|
1
|
+
=begin
|
2
|
+
#Vantage
|
3
|
+
|
4
|
+
#Vantage API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@vantage.sh
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Vantage::Report
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Report' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = Vantage::Report.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Report' do
|
31
|
+
it 'should create an instance of Report' do
|
32
|
+
expect(@instance).to be_instance_of(Vantage::Report)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "id"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "title"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
describe 'test attribute "earliest_cost_date"' do
|
48
|
+
it 'should work' do
|
49
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
describe 'test attribute "latest_cost_date"' do
|
54
|
+
it 'should work' do
|
55
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
describe 'test attribute "created_at"' do
|
60
|
+
it 'should work' do
|
61
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
65
|
+
describe 'test attribute "workspace"' do
|
66
|
+
it 'should work' do
|
67
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
=begin
|
2
|
+
#Vantage
|
3
|
+
|
4
|
+
#Vantage API
|
5
|
+
|
6
|
+
OpenAPI spec version: 1.0.0
|
7
|
+
Contact: support@vantage.sh
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
9
|
+
Swagger Codegen version: 2.4.21
|
10
|
+
|
11
|
+
=end
|
12
|
+
|
13
|
+
require 'spec_helper'
|
14
|
+
require 'json'
|
15
|
+
require 'date'
|
16
|
+
|
17
|
+
# Unit tests for Vantage::Reports
|
18
|
+
# Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen)
|
19
|
+
# Please update as you see appropriate
|
20
|
+
describe 'Reports' do
|
21
|
+
before do
|
22
|
+
# run before each test
|
23
|
+
@instance = Vantage::Reports.new
|
24
|
+
end
|
25
|
+
|
26
|
+
after do
|
27
|
+
# run after each test
|
28
|
+
end
|
29
|
+
|
30
|
+
describe 'test an instance of Reports' do
|
31
|
+
it 'should create an instance of Reports' do
|
32
|
+
expect(@instance).to be_instance_of(Vantage::Reports)
|
33
|
+
end
|
34
|
+
end
|
35
|
+
describe 'test attribute "links"' do
|
36
|
+
it 'should work' do
|
37
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
describe 'test attribute "reports"' do
|
42
|
+
it 'should work' do
|
43
|
+
# assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
data/spec/models/service_spec.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
Binary file
|
data/vantage-client.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vantage-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.1.0.beta.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- ''
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -221,6 +221,9 @@ files:
|
|
221
221
|
- Gemfile.lock
|
222
222
|
- README.md
|
223
223
|
- Rakefile
|
224
|
+
- docs/Cost.md
|
225
|
+
- docs/Costs.md
|
226
|
+
- docs/CostsApi.md
|
224
227
|
- docs/PingApi.md
|
225
228
|
- docs/Price.md
|
226
229
|
- docs/Prices.md
|
@@ -229,37 +232,51 @@ files:
|
|
229
232
|
- docs/Products.md
|
230
233
|
- docs/Provider.md
|
231
234
|
- docs/Providers.md
|
235
|
+
- docs/Report.md
|
236
|
+
- docs/Reports.md
|
232
237
|
- docs/Service.md
|
233
238
|
- docs/Services.md
|
234
239
|
- git_push.sh
|
235
240
|
- lib/vantage-client.rb
|
241
|
+
- lib/vantage-client/api/costs_api.rb
|
236
242
|
- lib/vantage-client/api/ping_api.rb
|
237
243
|
- lib/vantage-client/api/prices_api.rb
|
238
244
|
- lib/vantage-client/api_client.rb
|
239
245
|
- lib/vantage-client/api_error.rb
|
240
246
|
- lib/vantage-client/configuration.rb
|
247
|
+
- lib/vantage-client/models/cost.rb
|
248
|
+
- lib/vantage-client/models/costs.rb
|
241
249
|
- lib/vantage-client/models/price.rb
|
242
250
|
- lib/vantage-client/models/prices.rb
|
243
251
|
- lib/vantage-client/models/product.rb
|
244
252
|
- lib/vantage-client/models/products.rb
|
245
253
|
- lib/vantage-client/models/provider.rb
|
246
254
|
- lib/vantage-client/models/providers.rb
|
255
|
+
- lib/vantage-client/models/report.rb
|
256
|
+
- lib/vantage-client/models/reports.rb
|
247
257
|
- lib/vantage-client/models/service.rb
|
248
258
|
- lib/vantage-client/models/services.rb
|
249
259
|
- lib/vantage-client/version.rb
|
260
|
+
- spec/.DS_Store
|
261
|
+
- spec/api/costs_api_spec.rb
|
250
262
|
- spec/api/ping_api_spec.rb
|
251
263
|
- spec/api/prices_api_spec.rb
|
252
264
|
- spec/api_client_spec.rb
|
253
265
|
- spec/configuration_spec.rb
|
266
|
+
- spec/models/cost_spec.rb
|
267
|
+
- spec/models/costs_spec.rb
|
254
268
|
- spec/models/price_spec.rb
|
255
269
|
- spec/models/prices_spec.rb
|
256
270
|
- spec/models/product_spec.rb
|
257
271
|
- spec/models/products_spec.rb
|
258
272
|
- spec/models/provider_spec.rb
|
259
273
|
- spec/models/providers_spec.rb
|
274
|
+
- spec/models/report_spec.rb
|
275
|
+
- spec/models/reports_spec.rb
|
260
276
|
- spec/models/service_spec.rb
|
261
277
|
- spec/models/services_spec.rb
|
262
278
|
- spec/spec_helper.rb
|
279
|
+
- vantage-client-0.1.0.beta.1.gem
|
263
280
|
- vantage-client.gemspec
|
264
281
|
homepage: https://vantage.sh
|
265
282
|
licenses:
|
@@ -276,9 +293,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
276
293
|
version: '1.9'
|
277
294
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
278
295
|
requirements:
|
279
|
-
- - "
|
296
|
+
- - ">"
|
280
297
|
- !ruby/object:Gem::Version
|
281
|
-
version:
|
298
|
+
version: 1.3.1
|
282
299
|
requirements: []
|
283
300
|
rubygems_version: 3.2.3
|
284
301
|
signing_key:
|
@@ -286,15 +303,20 @@ specification_version: 4
|
|
286
303
|
summary: Vantage API Client
|
287
304
|
test_files:
|
288
305
|
- spec/api/ping_api_spec.rb
|
306
|
+
- spec/api/costs_api_spec.rb
|
289
307
|
- spec/api/prices_api_spec.rb
|
290
308
|
- spec/api_client_spec.rb
|
291
309
|
- spec/configuration_spec.rb
|
310
|
+
- spec/models/report_spec.rb
|
311
|
+
- spec/models/costs_spec.rb
|
292
312
|
- spec/models/product_spec.rb
|
313
|
+
- spec/models/cost_spec.rb
|
293
314
|
- spec/models/prices_spec.rb
|
294
315
|
- spec/models/providers_spec.rb
|
295
316
|
- spec/models/service_spec.rb
|
296
317
|
- spec/models/products_spec.rb
|
297
318
|
- spec/models/price_spec.rb
|
319
|
+
- spec/models/reports_spec.rb
|
298
320
|
- spec/models/provider_spec.rb
|
299
321
|
- spec/models/services_spec.rb
|
300
322
|
- spec/spec_helper.rb
|