megam_api 0.34 → 0.35

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
  SHA1:
3
- metadata.gz: 48d98b440aacee89bf589b95006d1319f8714a39
4
- data.tar.gz: c1fcfa07672d7b294a1532b86d648145d1b568e0
3
+ metadata.gz: aae6629f953f8f7bd92fac453843fb32cbe38af2
4
+ data.tar.gz: f0d6668fed5fd78cea8101d41248d4664697ad22
5
5
  SHA512:
6
- metadata.gz: dab2ba21f6079e255f61e626e525a88fb091ce203192b93971fc4bf11cda36092e3ae8d743b30f022c267e24cf444f7c913ff795062ec7e73fe6c17041f0150b
7
- data.tar.gz: f88093b0d63464417b3d9f6a803c0af334cf45b57aacf72b647467a08092596aa59881a09771382864ea4f109e0568844511e1cccc7c2be883a405e21e49ceb2
6
+ metadata.gz: 2337896a7037f7488409e38574cd5b25591bad2d2a2c19b453992ea4c1b6aec9e3428edebe2241f64b2a4aec05028ee8d670fe99b1943867a7de46bfc22d3e66
7
+ data.tar.gz: b64275323798bfa8e5e60311ce1f9bad7076e7553561898084c6bcde7cbb911fd6af14916927ca6cc1638b9834a2dfb7a8a6d3eff92a4c3dcd1f138e4781db67
@@ -1,5 +1,5 @@
1
1
  module Megam
2
2
  class API
3
- VERSION = "0.34"
3
+ VERSION = "0.35"
4
4
  end
5
5
  end
@@ -36,6 +36,7 @@ module Megam
36
36
  @z = nil
37
37
  @wires = []
38
38
  @service_inputs = nil
39
+ @ci_id = nil
39
40
  @dbname = nil
40
41
  @dbpassword = nil
41
42
  @external_management_resource = nil
@@ -208,6 +209,14 @@ module Megam
208
209
  @service_inputs
209
210
  end
210
211
  end
212
+
213
+ def ci_id(arg=nil)
214
+ if arg != nil
215
+ @ci_id = arg
216
+ else
217
+ @ci_id
218
+ end
219
+ end
211
220
 
212
221
  def dbname(arg=nil)
213
222
  if arg != nil
@@ -377,6 +386,7 @@ module Megam
377
386
  asm.inputs[:source] = inp["source"] if inp && inp.has_key?("source")
378
387
  asm.inputs[:design_inputs] = inp["design_inputs"] if inp && inp.has_key?("design_inputs")
379
388
  asm.inputs[:service_inputs] = inp["service_inputs"] if inp && inp.has_key?("service_inputs")
389
+ asm.inputs[:ci_id] = inp["ci_id"] if inp && inp.has_key?("ci_id")
380
390
  # ind = inp["design_inputs"]
381
391
  # asm.inputs["design_inputs"][:did] = ind["did"] if ind && ind.has_key?("did")
382
392
  # asm.inputs[:design_inputs][:x] = ind["x"] if ind && ind.has_key?("x")
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: megam_api
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.34'
4
+ version: '0.35'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rajthilak, Kishorekumar Neelamegam, Thomas Alrin, Yeshwanth Kumar, Subash Sethurajan
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-18 00:00:00.000000000 Z
11
+ date: 2015-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: excon
@@ -227,4 +227,21 @@ rubygems_version: 2.4.6
227
227
  signing_key:
228
228
  specification_version: 4
229
229
  summary: Ruby Client for the Megam
230
- test_files: []
230
+ test_files:
231
+ - test/test_accounts.rb
232
+ - test/test_app_requests.rb
233
+ - test/test_assemblies.rb
234
+ - test/test_assembly.rb
235
+ - test/test_cloudtoolsettings.rb
236
+ - test/test_components.rb
237
+ - test/test_csars.rb
238
+ - test/test_domains.rb
239
+ - test/test_helper.rb
240
+ - test/test_login.rb
241
+ - test/test_logs.rb
242
+ - test/test_marketplaceaddons.rb
243
+ - test/test_marketplaces.rb
244
+ - test/test_organizations.rb
245
+ - test/test_predefclouds.rb
246
+ - test/test_requests.rb
247
+ - test/test_sshkeys.rb