aws_clim 1.0.7 → 1.0.9

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e806d4cc4516f8998e6804f3da5dd798577d467c4c27b2c9e4bb4fc5821f9ba4
4
- data.tar.gz: 5a5f85616e610a6080c85fe660b19fd5581a7d2a1120043a731fbede9df792cc
3
+ metadata.gz: 1aa25c093256eba1d7b758bc4911266c5725085401bdf9c8f87db08ad59d9d07
4
+ data.tar.gz: 8049a22e1d7297059dd44fc7484c7be6ec635c21cb4e977d029623b9594d4d41
5
5
  SHA512:
6
- metadata.gz: ae33869ec35a7d1b5558f745b76fec9cfc2bead6f305055b499a98851bdba9506ebb047b535f6a836e452f5785467cb42c77c88335474e78763debba8209c8c2
7
- data.tar.gz: e2e7ebf6d371e49f8f7571b8e454bb904444379b630b410c7dc574cc4f430557db4fe03fa6c7baad3f584ad3539a3b9680189a0b583c1f61b2532b39a5c1397d
6
+ metadata.gz: 9bc65ab9c4be6c94c47ac7d1ce2e63711b05024fa8b069a7bde2cd5be32f87d82c9a7b616686a5c1a2929a4b6863aa3175c042d721ae09e5520bf66345a2e3d3
7
+ data.tar.gz: 25c0f83b975be4aec94f8c1c22fcabaacc095d575fb3b56b4819d05dd25d8297072d230ecce9d4e8f5c10b293c8d1e5193175869a51895a14fb49612c63bd5b6
data/README.md CHANGED
@@ -65,6 +65,10 @@ result.error?
65
65
  result.data
66
66
  ```
67
67
 
68
+ ## Warning
69
+
70
+ As AwsClim rely on aws cli executable, some services can be unavailable depending of your version.
71
+
68
72
  ## License
69
73
 
70
74
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,3 +1,3 @@
1
1
  module AwsClim
2
- VERSION = "1.0.7"
2
+ VERSION = "1.0.9"
3
3
  end
data/lib/aws_clim.rb CHANGED
@@ -8,6 +8,7 @@ class AwsClim
8
8
  @global_options = global_options
9
9
  end
10
10
 
11
+ # https://docs.aws.amazon.com/cli/latest/reference/
11
12
  SERVICES = %w(
12
13
  accessanalyzer
13
14
  account
@@ -337,6 +338,17 @@ class AwsClim
337
338
  execute(service_name, ps)
338
339
  end
339
340
 
341
+ define_method "#{service_name.gsub('-', '_')}!" do |*ps|
342
+ result = execute(service_name, ps)
343
+
344
+ if result.error?
345
+ puts result.data
346
+ exit 1
347
+ end
348
+
349
+ result
350
+ end
351
+
340
352
  define_method "#{service_name.gsub('-', '_')}_help" do
341
353
  execute(service_name, 'help').data
342
354
  end
@@ -377,7 +389,9 @@ class AwsClim
377
389
 
378
390
  def format_option(option)
379
391
  if option.is_a?(Array)
380
- "--#{option[0]}=\"#{option[1]}\""
392
+ name, value = option
393
+
394
+ "--#{name}=\"#{value.gsub('"', '\\"')}\""
381
395
  elsif option.is_a?(Hash)
382
396
  format_options(option.to_a)
383
397
  else
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws_clim
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.7
4
+ version: 1.0.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew S Aguiar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-18 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: wraps aws cli in a very small and flexible ruby class
14
14
  email: