fog-openstack 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/lib/fog/openstack.rb +20 -20
- data/lib/fog/openstack/{baremetal/baremetal.rb → baremetal.rb} +0 -0
- data/lib/fog/openstack/{compute/compute.rb → compute.rb} +0 -0
- data/lib/fog/openstack/compute/requests/evacuate_server.rb +1 -1
- data/lib/fog/openstack/{container_infra/container_infra.rb → container_infra.rb} +0 -0
- data/lib/fog/openstack/{dns/dns.rb → dns.rb} +0 -0
- data/lib/fog/openstack/dns/v1.rb +1 -1
- data/lib/fog/openstack/dns/v2.rb +1 -1
- data/lib/fog/openstack/{event/event.rb → event.rb} +0 -0
- data/lib/fog/openstack/{identity/identity.rb → identity.rb} +0 -0
- data/lib/fog/openstack/identity/v2.rb +1 -1
- data/lib/fog/openstack/identity/v3.rb +1 -1
- data/lib/fog/openstack/{image/image.rb → image.rb} +0 -0
- data/lib/fog/openstack/image/v1.rb +1 -1
- data/lib/fog/openstack/image/v2.rb +1 -1
- data/lib/fog/openstack/{introspection/introspection.rb → introspection.rb} +0 -0
- data/lib/fog/openstack/{key_manager/key_manager.rb → key_manager.rb} +0 -0
- data/lib/fog/openstack/{metering/metering.rb → metering.rb} +0 -0
- data/lib/fog/openstack/{metric/metric.rb → metric.rb} +0 -0
- data/lib/fog/openstack/{monitoring/monitoring.rb → monitoring.rb} +0 -0
- data/lib/fog/openstack/{network/network.rb → network.rb} +0 -0
- data/lib/fog/openstack/{nfv/nfv.rb → nfv.rb} +0 -0
- data/lib/fog/openstack/{orchestration/orchestration.rb → orchestration.rb} +0 -0
- data/lib/fog/openstack/{planning/planning.rb → planning.rb} +0 -3
- data/lib/fog/openstack/{shared_file_system/shared_file_system.rb → shared_file_system.rb} +0 -0
- data/lib/fog/openstack/{storage/storage.rb → storage.rb} +0 -0
- data/lib/fog/openstack/version.rb +1 -1
- data/lib/fog/openstack/{volume/volume.rb → volume.rb} +0 -0
- data/lib/fog/openstack/volume/v1.rb +1 -1
- data/lib/fog/openstack/volume/v2.rb +1 -1
- data/lib/fog/openstack/{workflow/workflow.rb → workflow.rb} +0 -0
- data/lib/fog/openstack/workflow/v2.rb +1 -1
- metadata +23 -23
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 270074b35f68ff30e1fdf308aebfc3c65c7612a0b47ef4086bc8eba90e81caef
|
4
|
+
data.tar.gz: cdcf2622d79d20d4d32712b57c61ae59f565fb200c9207de8e4055962cb0216b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f99c8410def0a380c0ca60c17972e25f276242ec17868a37807ff771178c105b79c32e7404f1a300bff19886aba9b9b0c3766120a7ebb96fad30ce2843dcbf2
|
7
|
+
data.tar.gz: abd0932213deea67ce5d1b7ef79f0dfd20895e9b8ee52f8931732ecd15d8ba1fe42a582829c9dc24f1b1f70e2d09cc69e443ef61c5894a7373eee3e379c218c5
|
data/lib/fog/openstack.rb
CHANGED
@@ -10,27 +10,27 @@ module Fog
|
|
10
10
|
autoload :Core, 'fog/openstack/core'
|
11
11
|
autoload :Errors, 'fog/openstack/errors'
|
12
12
|
|
13
|
-
autoload :Baremetal, 'fog/openstack/baremetal
|
14
|
-
autoload :Compute, 'fog/openstack/compute
|
15
|
-
autoload :ContainerInfra, 'fog/openstack/container_infra
|
16
|
-
autoload :DNS, 'fog/openstack/dns
|
17
|
-
autoload :Event, 'fog/openstack/event
|
18
|
-
autoload :Identity, 'fog/openstack/identity
|
19
|
-
autoload :Image, 'fog/openstack/image
|
20
|
-
autoload :Introspection, 'fog/openstack/introspection
|
21
|
-
autoload :KeyManager, 'fog/openstack/key_manager
|
22
|
-
autoload :Metering, 'fog/openstack/metering
|
23
|
-
autoload :Metric, 'fog/openstack/metric
|
24
|
-
autoload :Monitoring, 'fog/openstack/monitoring
|
25
|
-
autoload :Network, 'fog/openstack/network
|
26
|
-
autoload :NFV, 'fog/openstack/nfv
|
27
|
-
autoload :Orchestration, 'fog/openstack/orchestration
|
13
|
+
autoload :Baremetal, 'fog/openstack/baremetal'
|
14
|
+
autoload :Compute, 'fog/openstack/compute'
|
15
|
+
autoload :ContainerInfra, 'fog/openstack/container_infra'
|
16
|
+
autoload :DNS, 'fog/openstack/dns'
|
17
|
+
autoload :Event, 'fog/openstack/event'
|
18
|
+
autoload :Identity, 'fog/openstack/identity'
|
19
|
+
autoload :Image, 'fog/openstack/image'
|
20
|
+
autoload :Introspection, 'fog/openstack/introspection'
|
21
|
+
autoload :KeyManager, 'fog/openstack/key_manager'
|
22
|
+
autoload :Metering, 'fog/openstack/metering'
|
23
|
+
autoload :Metric, 'fog/openstack/metric'
|
24
|
+
autoload :Monitoring, 'fog/openstack/monitoring'
|
25
|
+
autoload :Network, 'fog/openstack/network'
|
26
|
+
autoload :NFV, 'fog/openstack/nfv'
|
27
|
+
autoload :Orchestration, 'fog/openstack/orchestration'
|
28
28
|
autoload :OrchestrationUtil, 'fog/openstack/orchestration/util/recursive_hot_file_loader'
|
29
|
-
autoload :Planning, 'fog/openstack/planning
|
30
|
-
autoload :SharedFileSystem, 'fog/openstack/shared_file_system
|
31
|
-
autoload :Storage, 'fog/openstack/storage
|
32
|
-
autoload :Workflow, 'fog/openstack/workflow
|
33
|
-
autoload :Volume, 'fog/openstack/volume
|
29
|
+
autoload :Planning, 'fog/openstack/planning'
|
30
|
+
autoload :SharedFileSystem, 'fog/openstack/shared_file_system'
|
31
|
+
autoload :Storage, 'fog/openstack/storage'
|
32
|
+
autoload :Workflow, 'fog/openstack/workflow'
|
33
|
+
autoload :Volume, 'fog/openstack/volume'
|
34
34
|
|
35
35
|
extend Fog::Provider
|
36
36
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/lib/fog/openstack/dns/v1.rb
CHANGED
data/lib/fog/openstack/dns/v2.rb
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
@@ -120,9 +120,6 @@ module Fog
|
|
120
120
|
end
|
121
121
|
|
122
122
|
def self.new(attributes)
|
123
|
-
require 'pry-byebug'
|
124
|
-
binding.pry
|
125
|
-
|
126
123
|
attributes = attributes.dup # Prevent delete from having side effects
|
127
124
|
service = attributes.delete(:service).to_s.downcase.to_sym
|
128
125
|
if services.include?(service)
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fog-openstack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Darby
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-01-
|
11
|
+
date: 2019-01-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fog-core
|
@@ -268,7 +268,7 @@ files:
|
|
268
268
|
- lib/fog/openstack/auth/token.rb
|
269
269
|
- lib/fog/openstack/auth/token/v2.rb
|
270
270
|
- lib/fog/openstack/auth/token/v3.rb
|
271
|
-
- lib/fog/openstack/baremetal
|
271
|
+
- lib/fog/openstack/baremetal.rb
|
272
272
|
- lib/fog/openstack/baremetal/models/chassis.rb
|
273
273
|
- lib/fog/openstack/baremetal/models/chassis_collection.rb
|
274
274
|
- lib/fog/openstack/baremetal/models/driver.rb
|
@@ -302,7 +302,7 @@ files:
|
|
302
302
|
- lib/fog/openstack/baremetal/requests/set_node_power_state.rb
|
303
303
|
- lib/fog/openstack/baremetal/requests/set_node_provision_state.rb
|
304
304
|
- lib/fog/openstack/baremetal/requests/unset_node_maintenance.rb
|
305
|
-
- lib/fog/openstack/compute
|
305
|
+
- lib/fog/openstack/compute.rb
|
306
306
|
- lib/fog/openstack/compute/models/address.rb
|
307
307
|
- lib/fog/openstack/compute/models/addresses.rb
|
308
308
|
- lib/fog/openstack/compute/models/aggregate.rb
|
@@ -476,7 +476,7 @@ files:
|
|
476
476
|
- lib/fog/openstack/compute/requests/update_metadata.rb
|
477
477
|
- lib/fog/openstack/compute/requests/update_quota.rb
|
478
478
|
- lib/fog/openstack/compute/requests/update_server.rb
|
479
|
-
- lib/fog/openstack/container_infra
|
479
|
+
- lib/fog/openstack/container_infra.rb
|
480
480
|
- lib/fog/openstack/container_infra/models/base.rb
|
481
481
|
- lib/fog/openstack/container_infra/models/bay.rb
|
482
482
|
- lib/fog/openstack/container_infra/models/bay_model.rb
|
@@ -511,7 +511,7 @@ files:
|
|
511
511
|
- lib/fog/openstack/container_infra/requests/update_cluster.rb
|
512
512
|
- lib/fog/openstack/container_infra/requests/update_cluster_template.rb
|
513
513
|
- lib/fog/openstack/core.rb
|
514
|
-
- lib/fog/openstack/dns
|
514
|
+
- lib/fog/openstack/dns.rb
|
515
515
|
- lib/fog/openstack/dns/v1.rb
|
516
516
|
- lib/fog/openstack/dns/v1/requests/get_quota.rb
|
517
517
|
- lib/fog/openstack/dns/v1/requests/list_domains.rb
|
@@ -550,12 +550,12 @@ files:
|
|
550
550
|
- lib/fog/openstack/dns/v2/requests/update_zone.rb
|
551
551
|
- lib/fog/openstack/dns/v2/requests/update_zone_transfer_request.rb
|
552
552
|
- lib/fog/openstack/errors.rb
|
553
|
-
- lib/fog/openstack/event
|
553
|
+
- lib/fog/openstack/event.rb
|
554
554
|
- lib/fog/openstack/event/models/event.rb
|
555
555
|
- lib/fog/openstack/event/models/events.rb
|
556
556
|
- lib/fog/openstack/event/requests/get_event.rb
|
557
557
|
- lib/fog/openstack/event/requests/list_events.rb
|
558
|
-
- lib/fog/openstack/identity
|
558
|
+
- lib/fog/openstack/identity.rb
|
559
559
|
- lib/fog/openstack/identity/v2.rb
|
560
560
|
- lib/fog/openstack/identity/v2/models/ec2_credential.rb
|
561
561
|
- lib/fog/openstack/identity/v2/models/ec2_credentials.rb
|
@@ -693,7 +693,7 @@ files:
|
|
693
693
|
- lib/fog/openstack/identity/v3/requests/update_role.rb
|
694
694
|
- lib/fog/openstack/identity/v3/requests/update_service.rb
|
695
695
|
- lib/fog/openstack/identity/v3/requests/update_user.rb
|
696
|
-
- lib/fog/openstack/image
|
696
|
+
- lib/fog/openstack/image.rb
|
697
697
|
- lib/fog/openstack/image/v1.rb
|
698
698
|
- lib/fog/openstack/image/v1/models/image.rb
|
699
699
|
- lib/fog/openstack/image/v1/models/images.rb
|
@@ -732,7 +732,7 @@ files:
|
|
732
732
|
- lib/fog/openstack/image/v2/requests/update_image.rb
|
733
733
|
- lib/fog/openstack/image/v2/requests/update_image_member.rb
|
734
734
|
- lib/fog/openstack/image/v2/requests/upload_image.rb
|
735
|
-
- lib/fog/openstack/introspection
|
735
|
+
- lib/fog/openstack/introspection.rb
|
736
736
|
- lib/fog/openstack/introspection/models/rules.rb
|
737
737
|
- lib/fog/openstack/introspection/models/rules_collection.rb
|
738
738
|
- lib/fog/openstack/introspection/requests/abort_introspection.rb
|
@@ -744,7 +744,7 @@ files:
|
|
744
744
|
- lib/fog/openstack/introspection/requests/get_introspection_details.rb
|
745
745
|
- lib/fog/openstack/introspection/requests/get_rules.rb
|
746
746
|
- lib/fog/openstack/introspection/requests/list_rules.rb
|
747
|
-
- lib/fog/openstack/key_manager
|
747
|
+
- lib/fog/openstack/key_manager.rb
|
748
748
|
- lib/fog/openstack/key_manager/models/acl.rb
|
749
749
|
- lib/fog/openstack/key_manager/models/container.rb
|
750
750
|
- lib/fog/openstack/key_manager/models/containers.rb
|
@@ -768,7 +768,7 @@ files:
|
|
768
768
|
- lib/fog/openstack/key_manager/requests/replace_secret_acl.rb
|
769
769
|
- lib/fog/openstack/key_manager/requests/update_container_acl.rb
|
770
770
|
- lib/fog/openstack/key_manager/requests/update_secret_acl.rb
|
771
|
-
- lib/fog/openstack/metering
|
771
|
+
- lib/fog/openstack/metering.rb
|
772
772
|
- lib/fog/openstack/metering/models/event.rb
|
773
773
|
- lib/fog/openstack/metering/models/events.rb
|
774
774
|
- lib/fog/openstack/metering/models/meter.rb
|
@@ -782,7 +782,7 @@ files:
|
|
782
782
|
- lib/fog/openstack/metering/requests/list_events.rb
|
783
783
|
- lib/fog/openstack/metering/requests/list_meters.rb
|
784
784
|
- lib/fog/openstack/metering/requests/list_resources.rb
|
785
|
-
- lib/fog/openstack/metric
|
785
|
+
- lib/fog/openstack/metric.rb
|
786
786
|
- lib/fog/openstack/metric/models/metric.rb
|
787
787
|
- lib/fog/openstack/metric/models/metrics.rb
|
788
788
|
- lib/fog/openstack/metric/models/resource.rb
|
@@ -796,6 +796,7 @@ files:
|
|
796
796
|
- lib/fog/openstack/models/collection.rb
|
797
797
|
- lib/fog/openstack/models/meta_parent.rb
|
798
798
|
- lib/fog/openstack/models/model.rb
|
799
|
+
- lib/fog/openstack/monitoring.rb
|
799
800
|
- lib/fog/openstack/monitoring/models/alarm.rb
|
800
801
|
- lib/fog/openstack/monitoring/models/alarm_count.rb
|
801
802
|
- lib/fog/openstack/monitoring/models/alarm_counts.rb
|
@@ -814,7 +815,6 @@ files:
|
|
814
815
|
- lib/fog/openstack/monitoring/models/notification_methods.rb
|
815
816
|
- lib/fog/openstack/monitoring/models/statistic.rb
|
816
817
|
- lib/fog/openstack/monitoring/models/statistics.rb
|
817
|
-
- lib/fog/openstack/monitoring/monitoring.rb
|
818
818
|
- lib/fog/openstack/monitoring/requests/create_alarm_definition.rb
|
819
819
|
- lib/fog/openstack/monitoring/requests/create_metric.rb
|
820
820
|
- lib/fog/openstack/monitoring/requests/create_metric_array.rb
|
@@ -843,6 +843,7 @@ files:
|
|
843
843
|
- lib/fog/openstack/monitoring/requests/put_notification_method.rb
|
844
844
|
- lib/fog/openstack/monitoring/requests/update_alarm.rb
|
845
845
|
- lib/fog/openstack/monitoring/requests/update_alarm_definition.rb
|
846
|
+
- lib/fog/openstack/network.rb
|
846
847
|
- lib/fog/openstack/network/models/extension.rb
|
847
848
|
- lib/fog/openstack/network/models/extensions.rb
|
848
849
|
- lib/fog/openstack/network/models/floating_ip.rb
|
@@ -881,7 +882,6 @@ files:
|
|
881
882
|
- lib/fog/openstack/network/models/subnets.rb
|
882
883
|
- lib/fog/openstack/network/models/vpn_service.rb
|
883
884
|
- lib/fog/openstack/network/models/vpn_services.rb
|
884
|
-
- lib/fog/openstack/network/network.rb
|
885
885
|
- lib/fog/openstack/network/requests/add_router_interface.rb
|
886
886
|
- lib/fog/openstack/network/requests/associate_floating_ip.rb
|
887
887
|
- lib/fog/openstack/network/requests/associate_lb_health_monitor.rb
|
@@ -1016,11 +1016,11 @@ files:
|
|
1016
1016
|
- lib/fog/openstack/network/requests/update_subnet.rb
|
1017
1017
|
- lib/fog/openstack/network/requests/update_subnet_pool.rb
|
1018
1018
|
- lib/fog/openstack/network/requests/update_vpn_service.rb
|
1019
|
+
- lib/fog/openstack/nfv.rb
|
1019
1020
|
- lib/fog/openstack/nfv/models/vnf.rb
|
1020
1021
|
- lib/fog/openstack/nfv/models/vnfd.rb
|
1021
1022
|
- lib/fog/openstack/nfv/models/vnfds.rb
|
1022
1023
|
- lib/fog/openstack/nfv/models/vnfs.rb
|
1023
|
-
- lib/fog/openstack/nfv/nfv.rb
|
1024
1024
|
- lib/fog/openstack/nfv/requests/create_vnf.rb
|
1025
1025
|
- lib/fog/openstack/nfv/requests/create_vnfd.rb
|
1026
1026
|
- lib/fog/openstack/nfv/requests/delete_vnf.rb
|
@@ -1030,6 +1030,7 @@ files:
|
|
1030
1030
|
- lib/fog/openstack/nfv/requests/list_vnfds.rb
|
1031
1031
|
- lib/fog/openstack/nfv/requests/list_vnfs.rb
|
1032
1032
|
- lib/fog/openstack/nfv/requests/update_vnf.rb
|
1033
|
+
- lib/fog/openstack/orchestration.rb
|
1033
1034
|
- lib/fog/openstack/orchestration/models/event.rb
|
1034
1035
|
- lib/fog/openstack/orchestration/models/events.rb
|
1035
1036
|
- lib/fog/openstack/orchestration/models/resource.rb
|
@@ -1039,7 +1040,6 @@ files:
|
|
1039
1040
|
- lib/fog/openstack/orchestration/models/stacks.rb
|
1040
1041
|
- lib/fog/openstack/orchestration/models/template.rb
|
1041
1042
|
- lib/fog/openstack/orchestration/models/templates.rb
|
1042
|
-
- lib/fog/openstack/orchestration/orchestration.rb
|
1043
1043
|
- lib/fog/openstack/orchestration/requests/abandon_stack.rb
|
1044
1044
|
- lib/fog/openstack/orchestration/requests/build_info.rb
|
1045
1045
|
- lib/fog/openstack/orchestration/requests/cancel_update.rb
|
@@ -1064,11 +1064,11 @@ files:
|
|
1064
1064
|
- lib/fog/openstack/orchestration/requests/update_stack.rb
|
1065
1065
|
- lib/fog/openstack/orchestration/requests/validate_template.rb
|
1066
1066
|
- lib/fog/openstack/orchestration/util/recursive_hot_file_loader.rb
|
1067
|
+
- lib/fog/openstack/planning.rb
|
1067
1068
|
- lib/fog/openstack/planning/models/plan.rb
|
1068
1069
|
- lib/fog/openstack/planning/models/plans.rb
|
1069
1070
|
- lib/fog/openstack/planning/models/role.rb
|
1070
1071
|
- lib/fog/openstack/planning/models/roles.rb
|
1071
|
-
- lib/fog/openstack/planning/planning.rb
|
1072
1072
|
- lib/fog/openstack/planning/requests/add_role_to_plan.rb
|
1073
1073
|
- lib/fog/openstack/planning/requests/create_plan.rb
|
1074
1074
|
- lib/fog/openstack/planning/requests/delete_plan.rb
|
@@ -1078,6 +1078,7 @@ files:
|
|
1078
1078
|
- lib/fog/openstack/planning/requests/list_roles.rb
|
1079
1079
|
- lib/fog/openstack/planning/requests/patch_plan.rb
|
1080
1080
|
- lib/fog/openstack/planning/requests/remove_role_from_plan.rb
|
1081
|
+
- lib/fog/openstack/shared_file_system.rb
|
1081
1082
|
- lib/fog/openstack/shared_file_system/models/availability_zone.rb
|
1082
1083
|
- lib/fog/openstack/shared_file_system/models/availability_zones.rb
|
1083
1084
|
- lib/fog/openstack/shared_file_system/models/network.rb
|
@@ -1129,7 +1130,7 @@ files:
|
|
1129
1130
|
- lib/fog/openstack/shared_file_system/requests/update_share.rb
|
1130
1131
|
- lib/fog/openstack/shared_file_system/requests/update_share_network.rb
|
1131
1132
|
- lib/fog/openstack/shared_file_system/requests/update_snapshot.rb
|
1132
|
-
- lib/fog/openstack/
|
1133
|
+
- lib/fog/openstack/storage.rb
|
1133
1134
|
- lib/fog/openstack/storage/models/directories.rb
|
1134
1135
|
- lib/fog/openstack/storage/models/directory.rb
|
1135
1136
|
- lib/fog/openstack/storage/models/file.rb
|
@@ -1155,8 +1156,8 @@ files:
|
|
1155
1156
|
- lib/fog/openstack/storage/requests/put_object.rb
|
1156
1157
|
- lib/fog/openstack/storage/requests/put_object_manifest.rb
|
1157
1158
|
- lib/fog/openstack/storage/requests/put_static_obj_manifest.rb
|
1158
|
-
- lib/fog/openstack/storage/storage.rb
|
1159
1159
|
- lib/fog/openstack/version.rb
|
1160
|
+
- lib/fog/openstack/volume.rb
|
1160
1161
|
- lib/fog/openstack/volume/models/availability_zone.rb
|
1161
1162
|
- lib/fog/openstack/volume/models/availability_zones.rb
|
1162
1163
|
- lib/fog/openstack/volume/models/backup.rb
|
@@ -1326,7 +1327,7 @@ files:
|
|
1326
1327
|
- lib/fog/openstack/volume/v2/requests/update_snapshot_metadata.rb
|
1327
1328
|
- lib/fog/openstack/volume/v2/requests/update_volume.rb
|
1328
1329
|
- lib/fog/openstack/volume/v2/requests/update_volume_type.rb
|
1329
|
-
- lib/fog/openstack/
|
1330
|
+
- lib/fog/openstack/workflow.rb
|
1330
1331
|
- lib/fog/openstack/workflow/v2.rb
|
1331
1332
|
- lib/fog/openstack/workflow/v2/requests/create_action.rb
|
1332
1333
|
- lib/fog/openstack/workflow/v2/requests/create_action_execution.rb
|
@@ -1369,7 +1370,6 @@ files:
|
|
1369
1370
|
- lib/fog/openstack/workflow/v2/requests/validate_action.rb
|
1370
1371
|
- lib/fog/openstack/workflow/v2/requests/validate_workbook.rb
|
1371
1372
|
- lib/fog/openstack/workflow/v2/requests/validate_workflow.rb
|
1372
|
-
- lib/fog/openstack/workflow/workflow.rb
|
1373
1373
|
- playbooks/.gitkeep
|
1374
1374
|
- playbooks/fog-openstack-unittest-spec/run.yaml
|
1375
1375
|
- playbooks/fog-openstack-unittest-test/run.yaml
|
@@ -1399,7 +1399,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1399
1399
|
version: '0'
|
1400
1400
|
requirements: []
|
1401
1401
|
rubyforge_project:
|
1402
|
-
rubygems_version: 2.6
|
1402
|
+
rubygems_version: 2.7.6
|
1403
1403
|
signing_key:
|
1404
1404
|
specification_version: 4
|
1405
1405
|
summary: OpenStack fog provider gem
|