ibm_power_hmc 0.8.2 → 0.8.3
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/.gitignore +0 -0
- data/.rubocop.yml +0 -0
- data/.rubocop_local.yml +0 -0
- data/CHANGELOG.md +0 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/Rakefile +0 -0
- data/ibm_power_hmc.gemspec +0 -0
- data/lib/ibm_power_hmc/connection.rb +0 -0
- data/lib/ibm_power_hmc/job.rb +0 -0
- data/lib/ibm_power_hmc/parser.rb +9 -4
- data/lib/ibm_power_hmc/pcm.rb +0 -0
- data/lib/ibm_power_hmc/version.rb +1 -1
- data/lib/ibm_power_hmc.rb +0 -0
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 90008b33210851e9ac14f556bd7e3b42231f38adcf68b6d5d59eed7e35671678
|
|
4
|
+
data.tar.gz: 6c85e9814f527680bea78f9c90fcc06a8796c949ac458c41074e01d6f44f7b61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ece63d99cccdf86022d907f75be7fe48871c6cac5fd64b5469fb0470fc4a0fe25e586fff16e2cc8ee65799eae8b315ba81b34879f395a7bb7375ae04edb74d61
|
|
7
|
+
data.tar.gz: 767ee9bd259139e97bba680a1edd395da73f5f40ab5ec149574c1538fd4964dd081dc1d272feee5395a8bf2aabeb8b8e5d57b410c5250699f6eef6b19f07f8f9
|
data/.gitignore
CHANGED
|
File without changes
|
data/.rubocop.yml
CHANGED
|
File without changes
|
data/.rubocop_local.yml
CHANGED
|
File without changes
|
data/CHANGELOG.md
CHANGED
|
File without changes
|
data/Gemfile
CHANGED
|
File without changes
|
data/LICENSE
CHANGED
|
File without changes
|
data/README.md
CHANGED
|
File without changes
|
data/Rakefile
CHANGED
|
File without changes
|
data/ibm_power_hmc.gemspec
CHANGED
|
File without changes
|
|
File without changes
|
data/lib/ibm_power_hmc/job.rb
CHANGED
|
File without changes
|
data/lib/ibm_power_hmc/parser.rb
CHANGED
|
@@ -813,10 +813,15 @@ module IbmPowerHmc
|
|
|
813
813
|
|
|
814
814
|
class PartitionTemplate < AbstractRest
|
|
815
815
|
ATTRS = {
|
|
816
|
-
:name
|
|
817
|
-
:description
|
|
818
|
-
:os
|
|
819
|
-
:memory
|
|
816
|
+
:name => "partitionTemplateName",
|
|
817
|
+
:description => "description",
|
|
818
|
+
:os => "logicalPartitionConfig/osVersion",
|
|
819
|
+
:memory => "logicalPartitionConfig/memoryConfiguration/currMemory",
|
|
820
|
+
:dedicated => "logicalPartitionConfig/processorConfiguration/hasDedicatedProcessors",
|
|
821
|
+
:sharing_mode => "logicalPartitionConfig/processorConfiguration/sharingMode",
|
|
822
|
+
:vprocs => "logicalPartitionConfig/processorConfiguration/sharedProcessorConfiguration/desiredVirtualProcessors",
|
|
823
|
+
:proc_units => "logicalPartitionConfig/processorConfiguration/sharedProcessorConfiguration/desiredProcessingUnits",
|
|
824
|
+
:procs => "logicalPartitionConfig/processorConfiguration/dedicatedProcessorConfiguration/desiredProcessors"
|
|
820
825
|
}.freeze
|
|
821
826
|
end
|
|
822
827
|
|
data/lib/ibm_power_hmc/pcm.rb
CHANGED
|
File without changes
|
data/lib/ibm_power_hmc.rb
CHANGED
|
File without changes
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ibm_power_hmc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- IBM Power
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -25,7 +25,7 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '2.1'
|
|
27
27
|
description: A Ruby gem for interacting with the IBM Hardware Management Console (HMC).
|
|
28
|
-
email:
|
|
28
|
+
email:
|
|
29
29
|
executables: []
|
|
30
30
|
extensions: []
|
|
31
31
|
extra_rdoc_files: []
|
|
@@ -55,7 +55,7 @@ metadata:
|
|
|
55
55
|
homepage_uri: http://github.com/IBM/ibm_power_hmc_sdk_ruby
|
|
56
56
|
source_code_uri: http://github.com/IBM/ibm_power_hmc_sdk_ruby
|
|
57
57
|
changelog_uri: http://github.com/IBM/ibm_power_hmc_sdk_ruby/blob/master/CHANGELOG.md
|
|
58
|
-
post_install_message:
|
|
58
|
+
post_install_message:
|
|
59
59
|
rdoc_options: []
|
|
60
60
|
require_paths:
|
|
61
61
|
- lib
|
|
@@ -70,8 +70,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
70
|
- !ruby/object:Gem::Version
|
|
71
71
|
version: '0'
|
|
72
72
|
requirements: []
|
|
73
|
-
rubygems_version: 3.1.
|
|
74
|
-
signing_key:
|
|
73
|
+
rubygems_version: 3.1.4
|
|
74
|
+
signing_key:
|
|
75
75
|
specification_version: 4
|
|
76
76
|
summary: IBM Power HMC Ruby gem.
|
|
77
77
|
test_files: []
|