topological_inventory-ingress_api-client 1.0.3 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/docs/Vm.md +2 -0
- data/docs/VmAllOf.md +2 -0
- data/lib/topological_inventory-ingress_api-client/models/vm.rb +11 -1
- data/lib/topological_inventory-ingress_api-client/models/vm_all_of.rb +11 -1
- data/lib/topological_inventory-ingress_api-client/version.rb +1 -1
- metadata +193 -196
- data/Gemfile.lock +0 -98
- data/bundler.d/.gitkeep +0 -0
- data/bundler.d/Gemfile.dev.rb +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 49fa1c09c5edeebc5f29b2023e6544975dff6870a0ecbd8c15fe8a5a9257f18c
|
4
|
+
data.tar.gz: 218599160c029e269f5e445f0352244ec438e994ac52c0fb49f1bd6efe7ab53e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e7856cb70e27e30f6f7da193873cf25ae1ebe4f44960ce8781dbc1ad2ae945755f92411f56c450e612bb3f4b8a1e5a87ea6ccb0d56e68ebd9471e2cfbf059a4a
|
7
|
+
data.tar.gz: 24424a7f6591e8be63d40d9eeea06b6a93ba687c57e40c2afb8435add2f8cbf5e2a53f29ab8868c5285993107a37739d64af89a5a25ccad38eaf52736f55e62d
|
data/docs/Vm.md
CHANGED
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**description** | **String** | | [optional]
|
10
10
|
**extra** | [**Object**](.md) | | [optional]
|
11
11
|
**flavor** | [**FlavorReference**](FlavorReference.md) | | [optional]
|
12
|
+
**guest_info** | **String** | | [optional]
|
12
13
|
**host** | [**HostReference**](HostReference.md) | | [optional]
|
13
14
|
**host_inventory_uuid** | **String** | UUID of the host in host inventory | [optional]
|
14
15
|
**hostname** | **String** | | [optional]
|
@@ -35,6 +36,7 @@ instance = TopologicalInventoryIngressApiClient::Vm.new(archived_at: null,
|
|
35
36
|
description: null,
|
36
37
|
extra: null,
|
37
38
|
flavor: null,
|
39
|
+
guest_info: null,
|
38
40
|
host: null,
|
39
41
|
host_inventory_uuid: 82729f49-ed4e-4fc6-9ca1-b0ffee063874,
|
40
42
|
hostname: null,
|
data/docs/VmAllOf.md
CHANGED
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
|
|
9
9
|
**description** | **String** | | [optional]
|
10
10
|
**extra** | [**Object**](.md) | | [optional]
|
11
11
|
**flavor** | [**FlavorReference**](FlavorReference.md) | | [optional]
|
12
|
+
**guest_info** | **String** | | [optional]
|
12
13
|
**host** | [**HostReference**](HostReference.md) | | [optional]
|
13
14
|
**host_inventory_uuid** | **String** | UUID of the host in host inventory | [optional]
|
14
15
|
**hostname** | **String** | | [optional]
|
@@ -35,6 +36,7 @@ instance = TopologicalInventoryIngressApiClient::VmAllOf.new(archived_at: null,
|
|
35
36
|
description: null,
|
36
37
|
extra: null,
|
37
38
|
flavor: null,
|
39
|
+
guest_info: null,
|
38
40
|
host: null,
|
39
41
|
host_inventory_uuid: 82729f49-ed4e-4fc6-9ca1-b0ffee063874,
|
40
42
|
hostname: null,
|
@@ -24,6 +24,8 @@ module TopologicalInventoryIngressApiClient
|
|
24
24
|
|
25
25
|
attr_accessor :flavor
|
26
26
|
|
27
|
+
attr_accessor :guest_info
|
28
|
+
|
27
29
|
attr_accessor :host
|
28
30
|
|
29
31
|
# UUID of the host in host inventory
|
@@ -64,6 +66,7 @@ module TopologicalInventoryIngressApiClient
|
|
64
66
|
:'description' => :'description',
|
65
67
|
:'extra' => :'extra',
|
66
68
|
:'flavor' => :'flavor',
|
69
|
+
:'guest_info' => :'guest_info',
|
67
70
|
:'host' => :'host',
|
68
71
|
:'host_inventory_uuid' => :'host_inventory_uuid',
|
69
72
|
:'hostname' => :'hostname',
|
@@ -90,6 +93,7 @@ module TopologicalInventoryIngressApiClient
|
|
90
93
|
:'description' => :'String',
|
91
94
|
:'extra' => :'Object',
|
92
95
|
:'flavor' => :'FlavorReference',
|
96
|
+
:'guest_info' => :'String',
|
93
97
|
:'host' => :'HostReference',
|
94
98
|
:'host_inventory_uuid' => :'String',
|
95
99
|
:'hostname' => :'String',
|
@@ -116,6 +120,7 @@ module TopologicalInventoryIngressApiClient
|
|
116
120
|
:'description',
|
117
121
|
:'extra',
|
118
122
|
:'flavor',
|
123
|
+
:'guest_info',
|
119
124
|
:'host',
|
120
125
|
:'host_inventory_uuid',
|
121
126
|
:'hostname',
|
@@ -176,6 +181,10 @@ module TopologicalInventoryIngressApiClient
|
|
176
181
|
self.flavor = attributes[:'flavor']
|
177
182
|
end
|
178
183
|
|
184
|
+
if attributes.key?(:'guest_info')
|
185
|
+
self.guest_info = attributes[:'guest_info']
|
186
|
+
end
|
187
|
+
|
179
188
|
if attributes.key?(:'host')
|
180
189
|
self.host = attributes[:'host']
|
181
190
|
end
|
@@ -267,6 +276,7 @@ module TopologicalInventoryIngressApiClient
|
|
267
276
|
description == o.description &&
|
268
277
|
extra == o.extra &&
|
269
278
|
flavor == o.flavor &&
|
279
|
+
guest_info == o.guest_info &&
|
270
280
|
host == o.host &&
|
271
281
|
host_inventory_uuid == o.host_inventory_uuid &&
|
272
282
|
hostname == o.hostname &&
|
@@ -293,7 +303,7 @@ module TopologicalInventoryIngressApiClient
|
|
293
303
|
# Calculates hash code according to all attributes.
|
294
304
|
# @return [Integer] Hash code
|
295
305
|
def hash
|
296
|
-
[archived_at, cpus, description, extra, flavor, host, host_inventory_uuid, hostname, mac_addresses, memory, name, orchestration_stack, power_state, resource_timestamp, source_created_at, source_deleted_at, source_ref, source_region, subscription, uid_ems].hash
|
306
|
+
[archived_at, cpus, description, extra, flavor, guest_info, host, host_inventory_uuid, hostname, mac_addresses, memory, name, orchestration_stack, power_state, resource_timestamp, source_created_at, source_deleted_at, source_ref, source_region, subscription, uid_ems].hash
|
297
307
|
end
|
298
308
|
|
299
309
|
# Builds the object from hash
|
@@ -24,6 +24,8 @@ module TopologicalInventoryIngressApiClient
|
|
24
24
|
|
25
25
|
attr_accessor :flavor
|
26
26
|
|
27
|
+
attr_accessor :guest_info
|
28
|
+
|
27
29
|
attr_accessor :host
|
28
30
|
|
29
31
|
# UUID of the host in host inventory
|
@@ -64,6 +66,7 @@ module TopologicalInventoryIngressApiClient
|
|
64
66
|
:'description' => :'description',
|
65
67
|
:'extra' => :'extra',
|
66
68
|
:'flavor' => :'flavor',
|
69
|
+
:'guest_info' => :'guest_info',
|
67
70
|
:'host' => :'host',
|
68
71
|
:'host_inventory_uuid' => :'host_inventory_uuid',
|
69
72
|
:'hostname' => :'hostname',
|
@@ -90,6 +93,7 @@ module TopologicalInventoryIngressApiClient
|
|
90
93
|
:'description' => :'String',
|
91
94
|
:'extra' => :'Object',
|
92
95
|
:'flavor' => :'FlavorReference',
|
96
|
+
:'guest_info' => :'String',
|
93
97
|
:'host' => :'HostReference',
|
94
98
|
:'host_inventory_uuid' => :'String',
|
95
99
|
:'hostname' => :'String',
|
@@ -116,6 +120,7 @@ module TopologicalInventoryIngressApiClient
|
|
116
120
|
:'description',
|
117
121
|
:'extra',
|
118
122
|
:'flavor',
|
123
|
+
:'guest_info',
|
119
124
|
:'host',
|
120
125
|
:'host_inventory_uuid',
|
121
126
|
:'hostname',
|
@@ -168,6 +173,10 @@ module TopologicalInventoryIngressApiClient
|
|
168
173
|
self.flavor = attributes[:'flavor']
|
169
174
|
end
|
170
175
|
|
176
|
+
if attributes.key?(:'guest_info')
|
177
|
+
self.guest_info = attributes[:'guest_info']
|
178
|
+
end
|
179
|
+
|
171
180
|
if attributes.key?(:'host')
|
172
181
|
self.host = attributes[:'host']
|
173
182
|
end
|
@@ -259,6 +268,7 @@ module TopologicalInventoryIngressApiClient
|
|
259
268
|
description == o.description &&
|
260
269
|
extra == o.extra &&
|
261
270
|
flavor == o.flavor &&
|
271
|
+
guest_info == o.guest_info &&
|
262
272
|
host == o.host &&
|
263
273
|
host_inventory_uuid == o.host_inventory_uuid &&
|
264
274
|
hostname == o.hostname &&
|
@@ -285,7 +295,7 @@ module TopologicalInventoryIngressApiClient
|
|
285
295
|
# Calculates hash code according to all attributes.
|
286
296
|
# @return [Integer] Hash code
|
287
297
|
def hash
|
288
|
-
[archived_at, cpus, description, extra, flavor, host, host_inventory_uuid, hostname, mac_addresses, memory, name, orchestration_stack, power_state, resource_timestamp, source_created_at, source_deleted_at, source_ref, source_region, subscription, uid_ems].hash
|
298
|
+
[archived_at, cpus, description, extra, flavor, guest_info, host, host_inventory_uuid, hostname, mac_addresses, memory, name, orchestration_stack, power_state, resource_timestamp, source_created_at, source_deleted_at, source_ref, source_region, subscription, uid_ems].hash
|
289
299
|
end
|
290
300
|
|
291
301
|
# Builds the object from hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: topological_inventory-ingress_api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenAPI-Generator
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2021-01-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -199,12 +199,9 @@ extra_rdoc_files: []
|
|
199
199
|
files:
|
200
200
|
- CHANGELOG.md
|
201
201
|
- Gemfile
|
202
|
-
- Gemfile.lock
|
203
202
|
- LICENSE.txt
|
204
203
|
- README.md
|
205
204
|
- Rakefile
|
206
|
-
- bundler.d/.gitkeep
|
207
|
-
- bundler.d/Gemfile.dev.rb
|
208
205
|
- docs/Cluster.md
|
209
206
|
- docs/ClusterAllOf.md
|
210
207
|
- docs/ClusterReference.md
|
@@ -882,7 +879,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
882
879
|
- !ruby/object:Gem::Version
|
883
880
|
version: '0'
|
884
881
|
requirements: []
|
885
|
-
rubygems_version: 3.0.
|
882
|
+
rubygems_version: 3.0.3
|
886
883
|
signing_key:
|
887
884
|
specification_version: 4
|
888
885
|
summary: Topological Inventory Ingress API Ruby Gem
|
@@ -890,219 +887,219 @@ test_files:
|
|
890
887
|
- spec/api/default_api_spec.rb
|
891
888
|
- spec/api_client_spec.rb
|
892
889
|
- spec/configuration_spec.rb
|
893
|
-
- spec/models/
|
894
|
-
- spec/models/
|
895
|
-
- spec/models/
|
896
|
-
- spec/models/
|
897
|
-
- spec/models/
|
898
|
-
- spec/models/security_group_all_of_spec.rb
|
899
|
-
- spec/models/source_region_reference_spec.rb
|
900
|
-
- spec/models/inventory_collection_datastore_tag_spec.rb
|
890
|
+
- spec/models/inventory_collection_service_inventory_spec.rb
|
891
|
+
- spec/models/cluster_tag_all_of_spec.rb
|
892
|
+
- spec/models/inventory_collection_service_instance_node_spec.rb
|
893
|
+
- spec/models/inventory_collection_service_instance_service_credential_spec.rb
|
894
|
+
- spec/models/container_node_tag_spec.rb
|
901
895
|
- spec/models/network_reference_spec.rb
|
902
|
-
- spec/models/
|
896
|
+
- spec/models/service_instance_node_service_credential_all_of_spec.rb
|
897
|
+
- spec/models/inventory_collection_subscription_spec.rb
|
903
898
|
- spec/models/datastore_mount_spec.rb
|
904
|
-
- spec/models/
|
905
|
-
- spec/models/service_inventory_all_of_spec.rb
|
906
|
-
- spec/models/datastore_all_of_spec.rb
|
907
|
-
- spec/models/inventory_collection_service_instance_node_service_credential_spec.rb
|
908
|
-
- spec/models/service_offering_tag_all_of_spec.rb
|
909
|
-
- spec/models/container_node_tag_spec.rb
|
910
|
-
- spec/models/service_instance_node_reference_spec.rb
|
911
|
-
- spec/models/inventory_collection_network_adapter_tag_spec.rb
|
912
|
-
- spec/models/inventory_collection_source_region_spec.rb
|
913
|
-
- spec/models/service_offering_node_all_of_spec.rb
|
914
|
-
- spec/models/cluster_tag_spec.rb
|
915
|
-
- spec/models/subscription_reference_spec.rb
|
916
|
-
- spec/models/inventory_collection_volume_attachment_spec.rb
|
917
|
-
- spec/models/cross_link_vm_reference_reference_spec.rb
|
918
|
-
- spec/models/container_node_reference_by_name_reference_spec.rb
|
919
|
-
- spec/models/container_image_tag_all_of_spec.rb
|
920
|
-
- spec/models/inventory_collection_cluster_tag_spec.rb
|
921
|
-
- spec/models/container_resource_quota_spec.rb
|
922
|
-
- spec/models/service_offering_tag_spec.rb
|
923
|
-
- spec/models/inventory_collection_flavor_spec.rb
|
924
|
-
- spec/models/cluster_reference_reference_spec.rb
|
925
|
-
- spec/models/service_inventory_reference_spec.rb
|
899
|
+
- spec/models/source_region_reference_spec.rb
|
926
900
|
- spec/models/container_node_reference_spec.rb
|
927
|
-
- spec/models/
|
928
|
-
- spec/models/
|
929
|
-
- spec/models/
|
930
|
-
- spec/models/
|
931
|
-
- spec/models/
|
932
|
-
- spec/models/
|
933
|
-
- spec/models/
|
934
|
-
- spec/models/
|
935
|
-
- spec/models/
|
936
|
-
- spec/models/
|
937
|
-
- spec/models/
|
938
|
-
- spec/models/
|
939
|
-
- spec/models/inventory_collection_container_template_tag_spec.rb
|
940
|
-
- spec/models/container_template_all_of_spec.rb
|
941
|
-
- spec/models/inventory_collection_service_credential_type_spec.rb
|
942
|
-
- spec/models/inventory_collection_service_offering_node_service_credential_spec.rb
|
943
|
-
- spec/models/service_plan_all_of_spec.rb
|
944
|
-
- spec/models/service_instance_node_service_credential_spec.rb
|
945
|
-
- spec/models/vm_security_group_all_of_spec.rb
|
946
|
-
- spec/models/security_group_tag_all_of_spec.rb
|
901
|
+
- spec/models/cluster_reference_reference_spec.rb
|
902
|
+
- spec/models/service_credential_type_all_of_spec.rb
|
903
|
+
- spec/models/subnet_reference_spec.rb
|
904
|
+
- spec/models/reservation_tag_spec.rb
|
905
|
+
- spec/models/inventory_collection_cluster_tag_spec.rb
|
906
|
+
- spec/models/container_group_tag_all_of_spec.rb
|
907
|
+
- spec/models/subscription_spec.rb
|
908
|
+
- spec/models/inventory_collection_network_tag_spec.rb
|
909
|
+
- spec/models/flavor_reference_spec.rb
|
910
|
+
- spec/models/inventory_collection_volume_spec.rb
|
911
|
+
- spec/models/service_instance_all_of_spec.rb
|
912
|
+
- spec/models/service_offering_service_credential_all_of_spec.rb
|
947
913
|
- spec/models/service_credential_all_of_spec.rb
|
948
|
-
- spec/models/
|
949
|
-
- spec/models/
|
950
|
-
- spec/models/container_image_all_of_spec.rb
|
914
|
+
- spec/models/security_group_tag_spec.rb
|
915
|
+
- spec/models/inventory_collection_network_spec.rb
|
951
916
|
- spec/models/container_resource_quota_all_of_spec.rb
|
952
|
-
- spec/models/
|
953
|
-
- spec/models/
|
954
|
-
- spec/models/
|
955
|
-
- spec/models/
|
956
|
-
- spec/models/
|
957
|
-
- spec/models/
|
958
|
-
- spec/models/inventory_collection_volume_type_spec.rb
|
959
|
-
- spec/models/tag_spec.rb
|
960
|
-
- spec/models/service_credential_type_reference_spec.rb
|
961
|
-
- spec/models/inventory_collection_datastore_spec.rb
|
962
|
-
- spec/models/flavor_spec.rb
|
963
|
-
- spec/models/ipaddress_tag_all_of_spec.rb
|
964
|
-
- spec/models/service_instance_spec.rb
|
965
|
-
- spec/models/network_adapter_reference_spec.rb
|
966
|
-
- spec/models/container_template_tag_spec.rb
|
967
|
-
- spec/models/reservation_tag_all_of_spec.rb
|
968
|
-
- spec/models/inventory_collection_service_inventory_tag_spec.rb
|
969
|
-
- spec/models/container_project_reference_by_name_spec.rb
|
970
|
-
- spec/models/container_image_tag_spec.rb
|
971
|
-
- spec/models/service_inventory_tag_spec.rb
|
972
|
-
- spec/models/service_offering_node_service_credential_spec.rb
|
973
|
-
- spec/models/orchestration_stack_spec.rb
|
974
|
-
- spec/models/container_image_reference_spec.rb
|
975
|
-
- spec/models/container_template_spec.rb
|
917
|
+
- spec/models/subnet_all_of_spec.rb
|
918
|
+
- spec/models/volume_reference_spec.rb
|
919
|
+
- spec/models/subscription_reference_spec.rb
|
920
|
+
- spec/models/subnet_spec.rb
|
921
|
+
- spec/models/network_all_of_spec.rb
|
922
|
+
- spec/models/datastore_reference_spec.rb
|
976
923
|
- spec/models/datastore_reference_reference_spec.rb
|
924
|
+
- spec/models/container_group_tag_spec.rb
|
925
|
+
- spec/models/inventory_collection_container_project_tag_spec.rb
|
926
|
+
- spec/models/inventory_collection_host_tag_spec.rb
|
927
|
+
- spec/models/network_adapter_spec.rb
|
928
|
+
- spec/models/inventory_collection_datastore_mount_spec.rb
|
929
|
+
- spec/models/service_inventory_tag_all_of_spec.rb
|
977
930
|
- spec/models/inventory_collection_service_offering_spec.rb
|
978
|
-
- spec/models/
|
979
|
-
- spec/models/
|
980
|
-
- spec/models/
|
981
|
-
- spec/models/
|
931
|
+
- spec/models/vm_tag_all_of_spec.rb
|
932
|
+
- spec/models/service_offering_node_service_credential_spec.rb
|
933
|
+
- spec/models/inventory_collection_container_node_spec.rb
|
934
|
+
- spec/models/inventory_collection_vm_spec.rb
|
982
935
|
- spec/models/inventory_collection_service_offering_service_credential_spec.rb
|
983
|
-
- spec/models/
|
984
|
-
- spec/models/
|
985
|
-
- spec/models/
|
986
|
-
- spec/models/
|
987
|
-
- spec/models/
|
988
|
-
- spec/models/volume_attachment_spec.rb
|
989
|
-
- spec/models/inventory_collection_ipaddress_tag_spec.rb
|
990
|
-
- spec/models/network_adapter_all_of_spec.rb
|
991
|
-
- spec/models/inventory_collection_container_group_tag_spec.rb
|
992
|
-
- spec/models/service_offering_icon_all_of_spec.rb
|
993
|
-
- spec/models/volume_reference_spec.rb
|
994
|
-
- spec/models/service_offering_icon_spec.rb
|
995
|
-
- spec/models/vm_tag_spec.rb
|
936
|
+
- spec/models/service_offering_icon_reference_spec.rb
|
937
|
+
- spec/models/inventory_collection_container_resource_quota_spec.rb
|
938
|
+
- spec/models/inventory_collection_service_plan_spec.rb
|
939
|
+
- spec/models/vm_security_group_spec.rb
|
940
|
+
- spec/models/cluster_spec.rb
|
996
941
|
- spec/models/vm_spec.rb
|
997
|
-
- spec/models/
|
998
|
-
- spec/models/
|
942
|
+
- spec/models/inventory_collection_service_offering_node_service_credential_spec.rb
|
943
|
+
- spec/models/orchestration_stack_all_of_spec.rb
|
944
|
+
- spec/models/inventory_collection_container_group_spec.rb
|
945
|
+
- spec/models/network_adapter_tag_spec.rb
|
946
|
+
- spec/models/tag_spec.rb
|
999
947
|
- spec/models/inventory_collection_host_spec.rb
|
1000
|
-
- spec/models/
|
1001
|
-
- spec/models/
|
1002
|
-
- spec/models/
|
1003
|
-
- spec/models/
|
1004
|
-
- spec/models/
|
1005
|
-
- spec/models/
|
948
|
+
- spec/models/orchestration_stack_spec.rb
|
949
|
+
- spec/models/inventory_collection_service_instance_node_service_credential_spec.rb
|
950
|
+
- spec/models/service_offering_node_all_of_spec.rb
|
951
|
+
- spec/models/inventory_collection_network_adapter_spec.rb
|
952
|
+
- spec/models/volume_type_reference_spec.rb
|
953
|
+
- spec/models/service_instance_node_service_credential_spec.rb
|
954
|
+
- spec/models/host_tag_all_of_spec.rb
|
955
|
+
- spec/models/ipaddress_spec.rb
|
956
|
+
- spec/models/service_instance_service_credential_all_of_spec.rb
|
1006
957
|
- spec/models/network_spec.rb
|
1007
|
-
- spec/models/inventory_object_lazy_spec.rb
|
1008
|
-
- spec/models/service_offering_service_credential_spec.rb
|
1009
|
-
- spec/models/inventory_collection_reservation_tag_spec.rb
|
1010
|
-
- spec/models/container_project_reference_spec.rb
|
1011
|
-
- spec/models/inventory_collection_service_offering_tag_spec.rb
|
1012
958
|
- spec/models/tag_reference_spec.rb
|
1013
|
-
- spec/models/
|
1014
|
-
- spec/models/
|
959
|
+
- spec/models/reservation_spec.rb
|
960
|
+
- spec/models/inventory_collection_container_group_tag_spec.rb
|
961
|
+
- spec/models/inventory_collection_service_offering_node_spec.rb
|
962
|
+
- spec/models/security_group_reference_spec.rb
|
963
|
+
- spec/models/container_project_all_of_spec.rb
|
964
|
+
- spec/models/inventory_collection_service_instance_spec.rb
|
965
|
+
- spec/models/service_instance_reference_spec.rb
|
966
|
+
- spec/models/datastore_all_of_spec.rb
|
967
|
+
- spec/models/network_adapter_all_of_spec.rb
|
968
|
+
- spec/models/flavor_all_of_spec.rb
|
969
|
+
- spec/models/container_resource_quota_spec.rb
|
970
|
+
- spec/models/container_node_reference_by_name_reference_spec.rb
|
971
|
+
- spec/models/volume_attachment_spec.rb
|
972
|
+
- spec/models/subnet_tag_all_of_spec.rb
|
973
|
+
- spec/models/inventory_collection_volume_type_spec.rb
|
974
|
+
- spec/models/network_tag_all_of_spec.rb
|
975
|
+
- spec/models/host_all_of_spec.rb
|
976
|
+
- spec/models/service_offering_node_spec.rb
|
977
|
+
- spec/models/volume_type_spec.rb
|
978
|
+
- spec/models/inventory_collection_service_credential_type_spec.rb
|
979
|
+
- spec/models/flavor_reference_reference_spec.rb
|
980
|
+
- spec/models/service_inventory_tag_spec.rb
|
981
|
+
- spec/models/service_offering_icon_all_of_spec.rb
|
982
|
+
- spec/models/service_inventory_all_of_spec.rb
|
983
|
+
- spec/models/container_group_spec.rb
|
984
|
+
- spec/models/cluster_tag_spec.rb
|
985
|
+
- spec/models/inventory_spec.rb
|
986
|
+
- spec/models/tag_all_of_spec.rb
|
987
|
+
- spec/models/service_instance_node_spec.rb
|
1015
988
|
- spec/models/inventory_collection_vm_security_group_spec.rb
|
1016
|
-
- spec/models/
|
1017
|
-
- spec/models/
|
1018
|
-
- spec/models/
|
1019
|
-
- spec/models/
|
989
|
+
- spec/models/inventory_collection_flavor_spec.rb
|
990
|
+
- spec/models/security_group_all_of_spec.rb
|
991
|
+
- spec/models/container_image_tag_all_of_spec.rb
|
992
|
+
- spec/models/cluster_reference_spec.rb
|
993
|
+
- spec/models/service_inventory_reference_spec.rb
|
994
|
+
- spec/models/service_offering_reference_spec.rb
|
1020
995
|
- spec/models/volume_all_of_spec.rb
|
1021
|
-
- spec/models/
|
1022
|
-
- spec/models/
|
1023
|
-
- spec/models/
|
1024
|
-
- spec/models/
|
996
|
+
- spec/models/volume_attachment_all_of_spec.rb
|
997
|
+
- spec/models/inventory_collection_security_group_spec.rb
|
998
|
+
- spec/models/inventory_collection_subnet_tag_spec.rb
|
999
|
+
- spec/models/cross_link_vm_reference_reference_spec.rb
|
1000
|
+
- spec/models/service_credential_spec.rb
|
1025
1001
|
- spec/models/service_instance_service_credential_spec.rb
|
1026
|
-
- spec/models/
|
1002
|
+
- spec/models/inventory_collection_cluster_spec.rb
|
1027
1003
|
- spec/models/inventory_collection_service_credential_spec.rb
|
1028
|
-
- spec/models/
|
1029
|
-
- spec/models/
|
1030
|
-
- spec/models/
|
1031
|
-
- spec/models/
|
1032
|
-
- spec/models/
|
1033
|
-
- spec/models/
|
1034
|
-
- spec/models/
|
1035
|
-
- spec/models/
|
1036
|
-
- spec/models/inventory_collection_container_resource_quota_spec.rb
|
1037
|
-
- spec/models/service_instance_all_of_spec.rb
|
1038
|
-
- spec/models/network_adapter_tag_spec.rb
|
1039
|
-
- spec/models/service_instance_reference_spec.rb
|
1040
|
-
- spec/models/container_image_spec.rb
|
1041
|
-
- spec/models/cluster_all_of_spec.rb
|
1042
|
-
- spec/models/subscription_spec.rb
|
1043
|
-
- spec/models/network_tag_all_of_spec.rb
|
1044
|
-
- spec/models/datastore_tag_all_of_spec.rb
|
1045
|
-
- spec/models/container_node_reference_by_name_spec.rb
|
1004
|
+
- spec/models/container_spec.rb
|
1005
|
+
- spec/models/service_offering_service_credential_spec.rb
|
1006
|
+
- spec/models/vm_all_of_spec.rb
|
1007
|
+
- spec/models/inventory_collection_container_project_spec.rb
|
1008
|
+
- spec/models/inventory_collection_service_offering_tag_spec.rb
|
1009
|
+
- spec/models/container_node_spec.rb
|
1010
|
+
- spec/models/schema_spec.rb
|
1011
|
+
- spec/models/container_template_all_of_spec.rb
|
1046
1012
|
- spec/models/inventory_collection_ipaddress_spec.rb
|
1013
|
+
- spec/models/inventory_collection_container_spec.rb
|
1047
1014
|
- spec/models/ipaddress_tag_spec.rb
|
1048
|
-
- spec/models/
|
1049
|
-
- spec/models/
|
1050
|
-
- spec/models/
|
1051
|
-
- spec/models/
|
1052
|
-
- spec/models/
|
1053
|
-
- spec/models/
|
1015
|
+
- spec/models/service_inventory_spec.rb
|
1016
|
+
- spec/models/ipaddress_all_of_spec.rb
|
1017
|
+
- spec/models/inventory_collection_container_image_spec.rb
|
1018
|
+
- spec/models/container_template_tag_spec.rb
|
1019
|
+
- spec/models/container_node_reference_by_name_spec.rb
|
1020
|
+
- spec/models/service_credential_type_reference_spec.rb
|
1021
|
+
- spec/models/inventory_object_lazy_spec.rb
|
1022
|
+
- spec/models/vm_tag_spec.rb
|
1023
|
+
- spec/models/network_adapter_reference_spec.rb
|
1024
|
+
- spec/models/reservation_reference_spec.rb
|
1025
|
+
- spec/models/container_template_reference_spec.rb
|
1026
|
+
- spec/models/service_offering_tag_all_of_spec.rb
|
1027
|
+
- spec/models/container_node_all_of_spec.rb
|
1028
|
+
- spec/models/datastore_tag_spec.rb
|
1054
1029
|
- spec/models/subnet_tag_spec.rb
|
1055
|
-
- spec/models/reservation_all_of_spec.rb
|
1056
|
-
- spec/models/vm_security_group_spec.rb
|
1057
|
-
- spec/models/flavor_all_of_spec.rb
|
1058
|
-
- spec/models/subnet_tag_all_of_spec.rb
|
1059
|
-
- spec/models/inventory_collection_host_tag_spec.rb
|
1060
|
-
- spec/models/inventory_collection_container_node_spec.rb
|
1061
|
-
- spec/models/inventory_collection_orchestration_stack_spec.rb
|
1062
|
-
- spec/models/ipaddress_reference_spec.rb
|
1063
|
-
- spec/models/container_group_all_of_spec.rb
|
1064
|
-
- spec/models/service_credential_type_all_of_spec.rb
|
1065
|
-
- spec/models/service_offering_icon_reference_spec.rb
|
1066
|
-
- spec/models/inventory_collection_container_image_tag_spec.rb
|
1067
|
-
- spec/models/vm_reference_spec.rb
|
1068
|
-
- spec/models/service_credential_type_spec.rb
|
1069
|
-
- spec/models/orchestration_stack_reference_spec.rb
|
1070
1030
|
- spec/models/source_region_spec.rb
|
1071
|
-
- spec/models/
|
1072
|
-
- spec/models/
|
1073
|
-
- spec/models/
|
1074
|
-
- spec/models/
|
1075
|
-
- spec/models/
|
1031
|
+
- spec/models/container_project_spec.rb
|
1032
|
+
- spec/models/host_reference_spec.rb
|
1033
|
+
- spec/models/service_offering_node_reference_spec.rb
|
1034
|
+
- spec/models/inventory_collection_spec.rb
|
1035
|
+
- spec/models/container_image_reference_spec.rb
|
1036
|
+
- spec/models/container_node_tag_all_of_spec.rb
|
1037
|
+
- spec/models/inventory_collection_container_template_tag_spec.rb
|
1076
1038
|
- spec/models/container_template_tag_all_of_spec.rb
|
1077
|
-
- spec/models/
|
1078
|
-
- spec/models/
|
1079
|
-
- spec/models/flavor_reference_spec.rb
|
1039
|
+
- spec/models/ipaddress_reference_spec.rb
|
1040
|
+
- spec/models/service_instance_spec.rb
|
1080
1041
|
- spec/models/service_offering_node_service_credential_all_of_spec.rb
|
1081
|
-
- spec/models/
|
1082
|
-
- spec/models/
|
1083
|
-
- spec/models/
|
1084
|
-
- spec/models/
|
1085
|
-
- spec/models/
|
1086
|
-
- spec/models/
|
1087
|
-
- spec/models/
|
1088
|
-
- spec/models/
|
1089
|
-
- spec/models/
|
1090
|
-
- spec/models/
|
1091
|
-
- spec/models/
|
1092
|
-
- spec/models/
|
1093
|
-
- spec/models/
|
1094
|
-
- spec/models/
|
1042
|
+
- spec/models/orchestration_stack_reference_spec.rb
|
1043
|
+
- spec/models/inventory_collection_datastore_tag_spec.rb
|
1044
|
+
- spec/models/host_spec.rb
|
1045
|
+
- spec/models/inventory_collection_container_template_spec.rb
|
1046
|
+
- spec/models/inventory_collection_ipaddress_tag_spec.rb
|
1047
|
+
- spec/models/volume_spec.rb
|
1048
|
+
- spec/models/container_image_all_of_spec.rb
|
1049
|
+
- spec/models/cross_link_vm_reference_spec.rb
|
1050
|
+
- spec/models/security_group_tag_all_of_spec.rb
|
1051
|
+
- spec/models/inventory_collection_datastore_spec.rb
|
1052
|
+
- spec/models/container_project_reference_by_name_spec.rb
|
1053
|
+
- spec/models/service_credential_reference_spec.rb
|
1054
|
+
- spec/models/container_all_of_spec.rb
|
1055
|
+
- spec/models/datastore_mount_all_of_spec.rb
|
1056
|
+
- spec/models/container_project_tag_spec.rb
|
1057
|
+
- spec/models/datastore_spec.rb
|
1058
|
+
- spec/models/service_offering_all_of_spec.rb
|
1059
|
+
- spec/models/tag_reference_reference_spec.rb
|
1060
|
+
- spec/models/inventory_collection_container_image_tag_spec.rb
|
1095
1061
|
- spec/models/network_tag_spec.rb
|
1096
|
-
- spec/models/
|
1097
|
-
- spec/models/
|
1098
|
-
- spec/models/cluster_spec.rb
|
1099
|
-
- spec/models/network_all_of_spec.rb
|
1100
|
-
- spec/models/volume_attachment_all_of_spec.rb
|
1062
|
+
- spec/models/ipaddress_tag_all_of_spec.rb
|
1063
|
+
- spec/models/inventory_collection_volume_attachment_spec.rb
|
1101
1064
|
- spec/models/service_instance_node_all_of_spec.rb
|
1065
|
+
- spec/models/inventory_collection_security_group_tag_spec.rb
|
1066
|
+
- spec/models/reservation_tag_all_of_spec.rb
|
1067
|
+
- spec/models/container_project_reference_spec.rb
|
1068
|
+
- spec/models/flavor_spec.rb
|
1069
|
+
- spec/models/service_plan_all_of_spec.rb
|
1070
|
+
- spec/models/container_group_reference_spec.rb
|
1071
|
+
- spec/models/container_image_tag_spec.rb
|
1072
|
+
- spec/models/service_offering_spec.rb
|
1073
|
+
- spec/models/service_plan_spec.rb
|
1074
|
+
- spec/models/container_template_spec.rb
|
1075
|
+
- spec/models/datastore_tag_all_of_spec.rb
|
1102
1076
|
- spec/models/inventory_collection_reservation_spec.rb
|
1103
|
-
- spec/models/
|
1104
|
-
- spec/models/
|
1105
|
-
- spec/models/
|
1106
|
-
- spec/models/
|
1107
|
-
- spec/models/
|
1077
|
+
- spec/models/service_instance_node_reference_spec.rb
|
1078
|
+
- spec/models/reservation_all_of_spec.rb
|
1079
|
+
- spec/models/inventory_collection_source_region_spec.rb
|
1080
|
+
- spec/models/container_image_spec.rb
|
1081
|
+
- spec/models/cluster_all_of_spec.rb
|
1082
|
+
- spec/models/vm_reference_spec.rb
|
1083
|
+
- spec/models/network_adapter_tag_all_of_spec.rb
|
1084
|
+
- spec/models/inventory_collection_vm_tag_spec.rb
|
1085
|
+
- spec/models/inventory_collection_reservation_tag_spec.rb
|
1086
|
+
- spec/models/inventory_collection_network_adapter_tag_spec.rb
|
1087
|
+
- spec/models/security_group_spec.rb
|
1088
|
+
- spec/models/inventory_collection_tag_spec.rb
|
1089
|
+
- spec/models/service_credential_type_spec.rb
|
1090
|
+
- spec/models/container_group_all_of_spec.rb
|
1091
|
+
- spec/models/inventory_collection_orchestration_stack_spec.rb
|
1092
|
+
- spec/models/host_tag_spec.rb
|
1093
|
+
- spec/models/inventory_collection_container_node_tag_spec.rb
|
1094
|
+
- spec/models/container_project_tag_all_of_spec.rb
|
1095
|
+
- spec/models/inventory_collection_subnet_spec.rb
|
1096
|
+
- spec/models/vm_security_group_all_of_spec.rb
|
1097
|
+
- spec/models/volume_type_all_of_spec.rb
|
1098
|
+
- spec/models/service_offering_icon_spec.rb
|
1099
|
+
- spec/models/service_plan_reference_spec.rb
|
1100
|
+
- spec/models/source_region_all_of_spec.rb
|
1101
|
+
- spec/models/subscription_all_of_spec.rb
|
1102
|
+
- spec/models/inventory_collection_service_inventory_tag_spec.rb
|
1103
|
+
- spec/models/inventory_collection_service_offering_icon_spec.rb
|
1104
|
+
- spec/models/service_offering_tag_spec.rb
|
1108
1105
|
- spec/spec_helper.rb
|
data/Gemfile.lock
DELETED
@@ -1,98 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
topological_inventory-ingress_api-client (1.0.3)
|
5
|
-
json (~> 2.1, >= 2.1.0)
|
6
|
-
typhoeus (~> 1.0, >= 1.0.1)
|
7
|
-
|
8
|
-
GEM
|
9
|
-
remote: https://rubygems.org/
|
10
|
-
specs:
|
11
|
-
ZenTest (4.12.0)
|
12
|
-
addressable (2.7.0)
|
13
|
-
public_suffix (>= 2.0.2, < 5.0)
|
14
|
-
ast (2.4.0)
|
15
|
-
autotest (4.4.6)
|
16
|
-
ZenTest (>= 4.4.1)
|
17
|
-
autotest-fsevent (0.2.17)
|
18
|
-
sys-uname
|
19
|
-
autotest-growl (0.2.16)
|
20
|
-
autotest-rails-pure (4.1.2)
|
21
|
-
byebug (11.1.1)
|
22
|
-
coderay (1.1.2)
|
23
|
-
crack (0.4.3)
|
24
|
-
safe_yaml (~> 1.0.0)
|
25
|
-
diff-lcs (1.3)
|
26
|
-
ethon (0.12.0)
|
27
|
-
ffi (>= 1.3.0)
|
28
|
-
ffi (1.12.2)
|
29
|
-
hashdiff (1.0.1)
|
30
|
-
jaro_winkler (1.5.4)
|
31
|
-
json (2.3.0)
|
32
|
-
method_source (1.0.0)
|
33
|
-
parallel (1.19.1)
|
34
|
-
parser (2.7.1.0)
|
35
|
-
ast (~> 2.4.0)
|
36
|
-
pry (0.13.1)
|
37
|
-
coderay (~> 1.1)
|
38
|
-
method_source (~> 1.0)
|
39
|
-
pry-byebug (3.9.0)
|
40
|
-
byebug (~> 11.0)
|
41
|
-
pry (~> 0.13.0)
|
42
|
-
psych (3.1.0)
|
43
|
-
public_suffix (4.0.4)
|
44
|
-
rainbow (3.0.0)
|
45
|
-
rake (12.0.0)
|
46
|
-
rspec (3.9.0)
|
47
|
-
rspec-core (~> 3.9.0)
|
48
|
-
rspec-expectations (~> 3.9.0)
|
49
|
-
rspec-mocks (~> 3.9.0)
|
50
|
-
rspec-core (3.9.1)
|
51
|
-
rspec-support (~> 3.9.1)
|
52
|
-
rspec-expectations (3.9.1)
|
53
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
-
rspec-support (~> 3.9.0)
|
55
|
-
rspec-mocks (3.9.1)
|
56
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
57
|
-
rspec-support (~> 3.9.0)
|
58
|
-
rspec-support (3.9.2)
|
59
|
-
rubocop (0.66.0)
|
60
|
-
jaro_winkler (~> 1.5.1)
|
61
|
-
parallel (~> 1.10)
|
62
|
-
parser (>= 2.5, != 2.5.1.1)
|
63
|
-
psych (>= 3.1.0)
|
64
|
-
rainbow (>= 2.2.2, < 4.0)
|
65
|
-
ruby-progressbar (~> 1.7)
|
66
|
-
unicode-display_width (>= 1.4.0, < 1.6)
|
67
|
-
ruby-progressbar (1.10.1)
|
68
|
-
safe_yaml (1.0.5)
|
69
|
-
sys-uname (1.2.1)
|
70
|
-
ffi (>= 1.0.0)
|
71
|
-
typhoeus (1.3.1)
|
72
|
-
ethon (>= 0.9.0)
|
73
|
-
unicode-display_width (1.5.0)
|
74
|
-
vcr (3.0.3)
|
75
|
-
webmock (1.24.6)
|
76
|
-
addressable (>= 2.3.6)
|
77
|
-
crack (>= 0.3.2)
|
78
|
-
hashdiff
|
79
|
-
|
80
|
-
PLATFORMS
|
81
|
-
ruby
|
82
|
-
x86_64-darwin-18
|
83
|
-
|
84
|
-
DEPENDENCIES
|
85
|
-
autotest (~> 4.4, >= 4.4.6)
|
86
|
-
autotest-fsevent (~> 0.2, >= 0.2.12)
|
87
|
-
autotest-growl (~> 0.2, >= 0.2.16)
|
88
|
-
autotest-rails-pure (~> 4.1, >= 4.1.2)
|
89
|
-
pry-byebug
|
90
|
-
rake (~> 12.0.0)
|
91
|
-
rspec (~> 3.6, >= 3.6.0)
|
92
|
-
rubocop (~> 0.66.0)
|
93
|
-
topological_inventory-ingress_api-client!
|
94
|
-
vcr (~> 3.0, >= 3.0.1)
|
95
|
-
webmock (~> 1.24, >= 1.24.3)
|
96
|
-
|
97
|
-
BUNDLED WITH
|
98
|
-
2.1.4
|
data/bundler.d/.gitkeep
DELETED
File without changes
|
data/bundler.d/Gemfile.dev.rb
DELETED
File without changes
|