wavefront-cli 7.1.0 → 7.2.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/HISTORY.md +6 -0
- data/lib/wavefront-cli/cloudintegration.rb +12 -0
- data/lib/wavefront-cli/commands/cloudintegration.rb +4 -1
- data/lib/wavefront-cli/display/cloudintegration.rb +12 -0
- data/lib/wavefront-cli/exception_handler.rb +2 -0
- data/lib/wavefront-cli/version.rb +1 -1
- data/spec/wavefront-cli/cloudintegration_spec.rb +19 -6
- data/wavefront-cli.gemspec +1 -1
- metadata +4 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65a2455065fbd4b69b42718f7789e4c01cb5245a0015ea7d2977b96581ad0b83
|
4
|
+
data.tar.gz: 2c01e8464589c804271a97dba24a19a62b3f4a1dba9af588216f1d0b911c9ec9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 392ea65a15b94665c5255da837abcaf3a8b69d38db9b675652c5c824627b3436b4b802174283bcdda6d2f95150cb3fce0a21de2dfcb449c64a0a73259d16357b
|
7
|
+
data.tar.gz: f55ffa3998170ee1a3d98f55cdefa9cd27d2f84e39f3c2fcbe3ffb649bcb34eeb96e93e1a486f4edfa030244e4640e3777865eef6f6119380dec7ff273637041
|
data/HISTORY.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 7.2.0 (2020-08-12)
|
4
|
+
* Add `cloudintegration awsid generate` command.
|
5
|
+
* Add `cloudintegration awsid delete <external_id>` command.
|
6
|
+
* Add `cloudintegration awsid validate <external_id>` command.
|
7
|
+
* Require 5.1.x of [the SDK](https://github.com/snltd/wavefront-sdk).
|
8
|
+
|
3
9
|
## 7.1.0 (2020-08-07)
|
4
10
|
* Remove `user` command. (Breaking change.)
|
5
11
|
* Add `account` command.
|
@@ -22,5 +22,17 @@ module WavefrontCli
|
|
22
22
|
def do_disable
|
23
23
|
wf.disable(options[:'<id>'])
|
24
24
|
end
|
25
|
+
|
26
|
+
def do_awsid_generate
|
27
|
+
wf.create_aws_external_id
|
28
|
+
end
|
29
|
+
|
30
|
+
def do_awsid_delete
|
31
|
+
wf.delete_aws_external_id(options[:'<external_id>'])
|
32
|
+
end
|
33
|
+
|
34
|
+
def do_awsid_confirm
|
35
|
+
wf.confirm_aws_external_id(options[:'<external_id>'])
|
36
|
+
end
|
25
37
|
end
|
26
38
|
end
|
@@ -26,7 +26,10 @@ class WavefrontCommandCloudintegration < WavefrontCommandBase
|
|
26
26
|
"disable #{CMN} <id>",
|
27
27
|
"dump #{CMN}",
|
28
28
|
"import #{CMN} [-uU] <file>",
|
29
|
-
"search #{CMN} [-al] [-o offset] [-L limit] [-O fields] <condition>..."
|
29
|
+
"search #{CMN} [-al] [-o offset] [-L limit] [-O fields] <condition>...",
|
30
|
+
"awsid #{CMN} generate",
|
31
|
+
"awsid #{CMN} delete <external_id>",
|
32
|
+
"awsid #{CMN} confirm <external_id>"]
|
30
33
|
end
|
31
34
|
|
32
35
|
def _options
|
@@ -25,5 +25,17 @@ module WavefrontDisplay
|
|
25
25
|
def do_disable
|
26
26
|
puts "Disabled '#{options[:'<id>']}'."
|
27
27
|
end
|
28
|
+
|
29
|
+
def do_awsid_generate
|
30
|
+
puts data
|
31
|
+
end
|
32
|
+
|
33
|
+
def do_awsid_delete
|
34
|
+
puts "Deleted external ID '#{options[:'<external_id>']}'."
|
35
|
+
end
|
36
|
+
|
37
|
+
def do_awsid_confirm
|
38
|
+
puts "'#{data}' is a registered external ID."
|
39
|
+
end
|
28
40
|
end
|
29
41
|
end
|
@@ -31,6 +31,8 @@ module WavefrontCli
|
|
31
31
|
abort "'#{exception}' is not a valid user group ID."
|
32
32
|
when Wavefront::Exception::InvalidAccountId
|
33
33
|
abort "'#{exception}' is not a valid system or user account ID."
|
34
|
+
when Wavefront::Exception::InvalidAwsExternalId
|
35
|
+
abort "'#{exception}' is not a valid AWS external ID."
|
34
36
|
when Wavefront::Exception::InvalidRoleId
|
35
37
|
abort "'#{exception}' is not a valid role ID."
|
36
38
|
when Wavefront::Exception::InvalidApiTokenId
|
@@ -7,12 +7,11 @@ require_relative '../../lib/wavefront-cli/cloudintegration'
|
|
7
7
|
# Ensure 'cloudintegration' commands produce the correct API calls.
|
8
8
|
#
|
9
9
|
class CloudIntegrationEndToEndTest < EndToEndTest
|
10
|
-
include WavefrontCliTest::DeleteUndelete
|
11
|
-
include WavefrontCliTest::Describe
|
12
|
-
include WavefrontCliTest::Dump
|
13
|
-
include WavefrontCliTest::List
|
14
|
-
# include WavefrontCliTest::
|
15
|
-
include WavefrontCliTest::Search
|
10
|
+
# include WavefrontCliTest::DeleteUndelete
|
11
|
+
# include WavefrontCliTest::Describe
|
12
|
+
# include WavefrontCliTest::Dump
|
13
|
+
# include WavefrontCliTest::List
|
14
|
+
# include WavefrontCliTest::Search
|
16
15
|
|
17
16
|
def test_enable
|
18
17
|
assert_repeated_output("Enabled '#{id}'.") do
|
@@ -46,6 +45,20 @@ class CloudIntegrationEndToEndTest < EndToEndTest
|
|
46
45
|
'body: null')
|
47
46
|
end
|
48
47
|
|
48
|
+
def test_aws_id_generate
|
49
|
+
# assert_repeated_output("Disabled '#{id}'.") do
|
50
|
+
# assert_cmd_posts("disable #{id}",
|
51
|
+
# "/api/v2/cloudintegration/#{id}/disable")
|
52
|
+
# end
|
53
|
+
|
54
|
+
assert_abort_on_missing_creds('awsid generate')
|
55
|
+
|
56
|
+
assert_noop('awsid generate',
|
57
|
+
'uri: POST https://default.wavefront.com/api/v2/' \
|
58
|
+
'cloudintegration/awsExternalId',
|
59
|
+
'body: null')
|
60
|
+
end
|
61
|
+
|
49
62
|
private
|
50
63
|
|
51
64
|
def id
|
data/wavefront-cli.gemspec
CHANGED
@@ -26,7 +26,7 @@ Gem::Specification.new do |gem|
|
|
26
26
|
|
27
27
|
gem.add_runtime_dependency 'docopt', '~> 0.6.0'
|
28
28
|
gem.add_runtime_dependency 'inifile', '~> 3.0'
|
29
|
-
gem.add_runtime_dependency 'wavefront-sdk', '~> 5.
|
29
|
+
gem.add_runtime_dependency 'wavefront-sdk', '~> 5.1'
|
30
30
|
|
31
31
|
gem.add_development_dependency 'minitest', '~> 5.11', '>= 5.11.0'
|
32
32
|
gem.add_development_dependency 'rake', '~> 13.0'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wavefront-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.
|
4
|
+
version: 7.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Fisher
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-08-
|
11
|
+
date: 2020-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: docopt
|
@@ -44,20 +44,14 @@ dependencies:
|
|
44
44
|
requirements:
|
45
45
|
- - "~>"
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '5.
|
48
|
-
- - ">="
|
49
|
-
- !ruby/object:Gem::Version
|
50
|
-
version: 5.0.1
|
47
|
+
version: '5.1'
|
51
48
|
type: :runtime
|
52
49
|
prerelease: false
|
53
50
|
version_requirements: !ruby/object:Gem::Requirement
|
54
51
|
requirements:
|
55
52
|
- - "~>"
|
56
53
|
- !ruby/object:Gem::Version
|
57
|
-
version: '5.
|
58
|
-
- - ">="
|
59
|
-
- !ruby/object:Gem::Version
|
60
|
-
version: 5.0.1
|
54
|
+
version: '5.1'
|
61
55
|
- !ruby/object:Gem::Dependency
|
62
56
|
name: minitest
|
63
57
|
requirement: !ruby/object:Gem::Requirement
|