polytrix 0.0.1 → 0.1.0.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -2
- data/.rspec +1 -6
- data/.rubocop-todo.yml +19 -0
- data/.rubocop.yml +10 -0
- data/.travis.yml +11 -0
- data/Gemfile +0 -16
- data/README.md +119 -28
- data/Rakefile +18 -123
- data/bin/polytrix +5 -0
- data/doc-src/_markdown.md +5 -0
- data/doc-src/default_bootstrap.md +13 -0
- data/docs/influences.md +28 -0
- data/docs/samples/code2doc/java/HelloWorld.md +13 -0
- data/docs/samples/code2doc/java/Quine.md +33 -0
- data/docs/samples/code2doc/python/hello_world.md +3 -0
- data/docs/samples/code2doc/python/quine.md +4 -0
- data/docs/samples/code2doc/ruby/hello_world.md +7 -0
- data/features/execution.feature +67 -0
- data/features/fixtures/configs/empty.yml +12 -0
- data/features/fixtures/configs/hello_world.yml +10 -0
- data/features/fixtures/spec/polytrix_merge.rb +5 -0
- data/features/fixtures/spec/polytrix_spec.rb +10 -0
- data/features/reporting.feature +140 -0
- data/features/step_definitions/sdk_steps.rb +12 -0
- data/features/support/env.rb +8 -0
- data/lib/polytrix/challenge.rb +20 -7
- data/lib/polytrix/challenge_runner.rb +9 -44
- data/lib/polytrix/cli/add.rb +67 -0
- data/lib/polytrix/cli/report.rb +88 -0
- data/lib/polytrix/cli/reports/hash_reporter.rb +30 -0
- data/lib/polytrix/cli/reports/json_reporter.rb +14 -0
- data/lib/polytrix/cli/reports/markdown_reporter.rb +23 -0
- data/lib/polytrix/cli/reports/yaml_reporter.rb +14 -0
- data/lib/polytrix/cli.rb +158 -0
- data/lib/polytrix/configuration.rb +65 -4
- data/lib/polytrix/core/file_system_helper.rb +75 -0
- data/lib/polytrix/core/implementor.rb +31 -3
- data/lib/polytrix/documentation/code_segmenter.rb +168 -0
- data/lib/polytrix/documentation/comment_styles.rb +87 -0
- data/lib/polytrix/documentation/helpers/code_helper.rb +85 -0
- data/lib/polytrix/documentation/view_helper.rb +21 -0
- data/lib/polytrix/documentation_generator.rb +59 -10
- data/lib/polytrix/executor.rb +89 -0
- data/lib/polytrix/logger.rb +17 -0
- data/lib/polytrix/manifest.rb +64 -7
- data/lib/polytrix/result.rb +16 -2
- data/lib/polytrix/rspec/documentation_formatter.rb +41 -16
- data/lib/polytrix/rspec/yaml_report.rb +51 -0
- data/lib/polytrix/rspec.rb +32 -53
- data/lib/polytrix/runners/middleware/feature_executor.rb +4 -3
- data/lib/polytrix/runners/middleware/setup_env_vars.rb +6 -4
- data/lib/polytrix/validation.rb +20 -0
- data/lib/polytrix/validations.rb +23 -0
- data/lib/polytrix/validator.rb +20 -0
- data/lib/polytrix/validator_registry.rb +34 -0
- data/lib/polytrix/version.rb +1 -1
- data/lib/polytrix.rb +125 -22
- data/polytrix.gemspec +7 -2
- data/polytrix.rb +6 -0
- data/polytrix_tests.yml +20 -0
- data/resources/code_sample.tt +2 -0
- data/samples/.gitignore +2 -0
- data/samples/_markdown.md +5 -0
- data/samples/default_bootstrap.rb +14 -0
- data/samples/polytrix.rb +28 -0
- data/samples/polytrix_cli.sh +7 -0
- data/samples/polytrix_tests.yml +10 -0
- data/{sdks/fog → samples}/scripts/bootstrap +0 -2
- data/samples/scripts/wrapper +7 -0
- data/samples/sdks/custom/polytrix.yml +2 -0
- data/samples/sdks/java/.gitignore +2 -0
- data/samples/sdks/java/build.gradle +14 -0
- data/samples/sdks/java/challenges/HelloWorld.java +10 -0
- data/samples/sdks/java/challenges/Quine.java +31 -0
- data/samples/sdks/java/code_sample.tt +11 -0
- data/samples/sdks/java/scripts/bootstrap +2 -0
- data/samples/sdks/java/scripts/wrapper +8 -0
- data/samples/sdks/python/challenges/hello_world.py +2 -0
- data/samples/sdks/python/challenges/quine.py +2 -0
- data/{sdks/pkgcloud → samples/sdks/python}/scripts/wrapper +1 -1
- data/samples/sdks/ruby/challenges/hello_world.rb +4 -0
- data/scripts/bootstrap +1 -9
- data/scripts/wrapper +7 -0
- data/spec/fabricators/challenge_fabricator.rb +17 -0
- data/spec/fabricators/manifest_fabricator.rb +50 -0
- data/spec/fabricators/validator_fabricator.rb +12 -0
- data/spec/fixtures/{polytrix.yml → polytrix_tests.yml} +0 -0
- data/spec/fixtures/src-doc/_scenario.md.erb +1 -0
- data/spec/polytrix/challenge_runner_spec.rb +3 -3
- data/spec/polytrix/challenge_spec.rb +3 -4
- data/spec/polytrix/cli_spec.rb +39 -0
- data/spec/polytrix/configuration_spec.rb +45 -1
- data/spec/polytrix/documentation/helpers/code_helper_spec.rb +120 -0
- data/spec/polytrix/documentation_generator_spec.rb +41 -20
- data/spec/polytrix/file_finder_spec.rb +4 -3
- data/spec/polytrix/implementor_spec.rb +33 -0
- data/spec/polytrix/manifest_spec.rb +32 -14
- data/spec/polytrix/middleware/feature_executor_spec.rb +1 -1
- data/spec/polytrix/result_spec.rb +49 -0
- data/spec/polytrix/validations_spec.rb +16 -0
- data/spec/polytrix/validator_registry_spec.rb +39 -0
- data/spec/polytrix/validator_spec.rb +63 -0
- data/spec/polytrix_spec.rb +33 -7
- data/spec/spec_helper.rb +14 -1
- data/spec/thor_spy.rb +64 -0
- metadata +177 -160
- data/.rspec_parallel +0 -10
- data/Vagrantfile +0 -41
- data/features/0_identity_spec.rb +0 -40
- data/features/1_cloud_files_spec.rb +0 -48
- data/features/2_servers_spec.rb +0 -19
- data/features/features_helper.rb +0 -46
- data/features/helpers/cloudfiles_helper.rb +0 -31
- data/features/helpers/pacto_helper.rb +0 -33
- data/features/helpers/teardown_helper.rb +0 -49
- data/features/pacto/extensions/loaders/api_blueprint_loader.rb +0 -63
- data/features/pacto/extensions/loaders/simple_loader.rb +0 -55
- data/features/pacto/extensions/loaders/yaml_or_json_loader.rb +0 -17
- data/features/pacto/extensions/matchers.rb +0 -38
- data/features/phase2/feature_coverage_report.rb +0 -109
- data/features/phase2/run_all_features.rb +0 -14
- data/features/static_site/fixtures/index.html +0 -6
- data/lib/polytrix/challenge_builder.rb +0 -16
- data/lib/polytrix/core/file_finder.rb +0 -43
- data/lib/polytrix/core/result_tracker.rb +0 -25
- data/lib/polytrix/runners/middleware/pacto.rb +0 -59
- data/packer/.gitignore +0 -3
- data/packer/Berksfile +0 -15
- data/packer/Gemfile +0 -5
- data/packer/Vagrantfile +0 -128
- data/packer/cookbooks/drg/metadata.rb +0 -27
- data/packer/cookbooks/drg/recipes/admins.rb +0 -22
- data/packer/cookbooks/drg/recipes/default.rb +0 -9
- data/packer/cookbooks/drg/recipes/dotnet.rb +0 -4
- data/packer/cookbooks/drg/recipes/golang.rb +0 -4
- data/packer/cookbooks/drg/recipes/java.rb +0 -5
- data/packer/cookbooks/drg/recipes/php.rb +0 -10
- data/packer/cookbooks/drg/recipes/ruby.rb +0 -29
- data/packer/cookbooks/drg/recipes/system.rb +0 -13
- data/packer/create_box.sh +0 -10
- data/packer/http/preseed.cfg +0 -87
- data/packer/packer.json +0 -91
- data/packer/scripts/root_setup.sh +0 -37
- data/packer/scripts/setup.sh +0 -32
- data/pacto/config/pacto_server.rb +0 -40
- data/pacto/contracts/dfw.servers.api.rackspacecloud.com/v2/account_id/extensions.json +0 -64
- data/pacto/contracts/dfw.servers.api.rackspacecloud.com/v2/account_id/flavors/id.json +0 -100
- data/pacto/contracts/dfw.servers.api.rackspacecloud.com/v2/account_id/images/id.json +0 -176
- data/pacto/contracts/dfw.servers.api.rackspacecloud.com/v2/account_id/servers/id.json +0 -189
- data/pacto/contracts/dfw.servers.api.rackspacecloud.com/v2/account_id/servers.json +0 -63
- data/pacto/contracts/dns.api.rackspacecloud.com/v1.0/_tenant_id/domains.json +0 -62
- data/pacto/contracts/identity.api.rackspacecloud.com/v2.0/tokens.json +0 -192
- data/pacto/contracts/monitoring.api.rackspacecloud.com/v1.0/_tenant_id/account.json +0 -39
- data/pacto/contracts/ord.autoscale.api.rackspacecloud.com/v1.0/_tenant_id/groups.json +0 -38
- data/pacto/contracts/ord.blockstorage.api.rackspacecloud.com/v1/_tenant_id/volumes.json +0 -30
- data/pacto/contracts/ord.databases.api.rackspacecloud.com/v1.0/_tenant_id/instances.json +0 -30
- data/pacto/contracts/ord.loadbalancers.api.rackspacecloud.com/v1.0/_tenant_id/loadbalancers.json +0 -114
- data/pacto/contracts/ord.queues.api.rackspacecloud.com/v1/_tenant_id/queues.json +0 -13
- data/pacto/contracts/ord.servers.api.rackspacecloud.com/v2/_tenant_id/os-networksv2.json +0 -46
- data/pacto/contracts/ord.servers.api.rackspacecloud.com/v2/_tenant_id/servers/detail.json +0 -230
- data/pacto/contracts/storage101.dfw1.clouddrive.com/v1/mosso_account/container/object.json +0 -15
- data/pacto/contracts/storage101.dfw1.clouddrive.com/v1/mosso_account.json +0 -43
- data/pacto/contracts/storage101.ord1.clouddrive.com/v1/_mosso_id.json +0 -44
- data/pacto/pacto_server.rb +0 -100
- data/pacto/rackspace_uri_map.yaml +0 -229
- data/scripts/cibuild +0 -4
- data/sdks/fog/.gitignore +0 -1
- data/sdks/fog/Gemfile +0 -5
- data/sdks/fog/challenges/all_connections.rb +0 -45
- data/sdks/fog/challenges/authenticate_token.rb +0 -15
- data/sdks/fog/challenges/cdn_enable_container.rb +0 -20
- data/sdks/fog/challenges/create_a_container.rb +0 -17
- data/sdks/fog/challenges/create_server.rb +0 -36
- data/sdks/fog/challenges/get_object_metadata.rb +0 -13
- data/sdks/fog/challenges/list_containers.rb +0 -10
- data/sdks/fog/challenges/provision_scalable_webapp.rb +0 -30
- data/sdks/fog/challenges/upload_folder.rb +0 -25
- data/sdks/fog/scripts/bootstrap.ps1 +0 -1
- data/sdks/fog/scripts/wrapper +0 -2
- data/sdks/fog/scripts/wrapper.ps1 +0 -1
- data/sdks/gophercloud/.gitignore +0 -2
- data/sdks/gophercloud/challenges/authenticate_token.go +0 -23
- data/sdks/gophercloud/scripts/bootstrap +0 -6
- data/sdks/gophercloud/scripts/wrapper +0 -10
- data/sdks/jclouds/.gitignore +0 -1
- data/sdks/jclouds/challenges/AuthenticateToken.java +0 -115
- data/sdks/jclouds/pom.xml +0 -34
- data/sdks/jclouds/scripts/bootstrap +0 -3
- data/sdks/jclouds/scripts/wrapper +0 -7
- data/sdks/openstack.net/.gitignore +0 -4
- data/sdks/openstack.net/.nuget/Microsoft.Build.dll +0 -0
- data/sdks/openstack.net/.nuget/NuGet.Config +0 -6
- data/sdks/openstack.net/.nuget/NuGet.exe +0 -0
- data/sdks/openstack.net/.nuget/NuGet.targets +0 -136
- data/sdks/openstack.net/Challenge.cs +0 -10
- data/sdks/openstack.net/RunChallenge.cs +0 -19
- data/sdks/openstack.net/challenges/AuthenticateToken.cs +0 -24
- data/sdks/openstack.net/challenges/Weird.cs +0 -133
- data/sdks/openstack.net/openstack.net.csproj +0 -58
- data/sdks/openstack.net/openstack.net.sln +0 -27
- data/sdks/openstack.net/openstack.net.userprefs +0 -8
- data/sdks/openstack.net/packages.config +0 -6
- data/sdks/openstack.net/scripts/bootstrap +0 -2
- data/sdks/openstack.net/scripts/bootstrap.ps1 +0 -2
- data/sdks/openstack.net/scripts/wrapper +0 -7
- data/sdks/openstack.net/scripts/wrapper.ps1 +0 -1
- data/sdks/php-opencloud/.gitignore +0 -4
- data/sdks/php-opencloud/challenges/all_connections.php +0 -64
- data/sdks/php-opencloud/challenges/authenticate_token.php +0 -14
- data/sdks/php-opencloud/challenges/create_server.php +0 -39
- data/sdks/php-opencloud/challenges/get_object_metadata.php +0 -19
- data/sdks/php-opencloud/composer.json +0 -5
- data/sdks/php-opencloud/scripts/bootstrap +0 -4
- data/sdks/php-opencloud/scripts/bootstrap.ps1 +0 -2
- data/sdks/php-opencloud/scripts/wrapper +0 -2
- data/sdks/php-opencloud/scripts/wrapper.ps1 +0 -1
- data/sdks/pkgcloud/.gitignore +0 -1
- data/sdks/pkgcloud/challenges/authenticate_token.js +0 -17
- data/sdks/pkgcloud/challenges/get_object_metadata.js +0 -18
- data/sdks/pkgcloud/scripts/bootstrap +0 -2
- data/sdks/pkgcloud/scripts/bootstrap.ps1 +0 -1
- data/sdks/pkgcloud/scripts/wrapper.ps1 +0 -1
- data/sdks/pyrax/.gitignore +0 -2
- data/sdks/pyrax/challenges/all_connections.py +0 -61
- data/sdks/pyrax/challenges/authenticate_token.py +0 -17
- data/sdks/pyrax/challenges/cdn_enable_container.py +0 -22
- data/sdks/pyrax/challenges/create_a_container.py +0 -21
- data/sdks/pyrax/challenges/create_server.py +0 -35
- data/sdks/pyrax/challenges/get_object_metadata.py +0 -17
- data/sdks/pyrax/challenges/upload_folder.py +0 -32
- data/sdks/pyrax/requirements.txt +0 -21
- data/sdks/pyrax/scripts/bootstrap +0 -9
- data/sdks/pyrax/scripts/bootstrap.ps1 +0 -7
- data/sdks/pyrax/scripts/wrapper +0 -3
- data/sdks/pyrax/scripts/wrapper.ps1 +0 -2
- data/spec/polytrix/challenge_builder_spec.rb +0 -16
- data/spec/rspec_spec.rb +0 -17
@@ -1,62 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "get",
|
6
|
-
"path": "/v1.0/:tenant_id/domains"
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"headers": {
|
10
|
-
"Content-Type": "application/json"
|
11
|
-
},
|
12
|
-
"status": 200,
|
13
|
-
"body": {
|
14
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
15
|
-
"description": "Generated from https://dns.api.rackspacecloud.com/v1.0/:tenant_id/domains with shasum c68ac566c135580d93f8a7043b5fa7794655356b",
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"domains": {
|
20
|
-
"type": "array",
|
21
|
-
"required": true,
|
22
|
-
"minItems": 1,
|
23
|
-
"uniqueItems": true,
|
24
|
-
"items": {
|
25
|
-
"type": "object",
|
26
|
-
"required": true,
|
27
|
-
"properties": {
|
28
|
-
"name": {
|
29
|
-
"type": "string",
|
30
|
-
"required": true
|
31
|
-
},
|
32
|
-
"id": {
|
33
|
-
"type": "integer",
|
34
|
-
"required": true
|
35
|
-
},
|
36
|
-
"accountId": {
|
37
|
-
"type": "integer",
|
38
|
-
"required": true
|
39
|
-
},
|
40
|
-
"emailAddress": {
|
41
|
-
"type": "string",
|
42
|
-
"required": true
|
43
|
-
},
|
44
|
-
"updated": {
|
45
|
-
"type": "string",
|
46
|
-
"required": true
|
47
|
-
},
|
48
|
-
"created": {
|
49
|
-
"type": "string",
|
50
|
-
"required": true
|
51
|
-
}
|
52
|
-
}
|
53
|
-
}
|
54
|
-
},
|
55
|
-
"totalEntries": {
|
56
|
-
"type": "integer",
|
57
|
-
"required": true
|
58
|
-
}
|
59
|
-
}
|
60
|
-
}
|
61
|
-
}
|
62
|
-
}
|
@@ -1,192 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "post",
|
6
|
-
"params": {
|
7
|
-
},
|
8
|
-
"path": "/v2.0/tokens",
|
9
|
-
"body": {
|
10
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
11
|
-
"description": "Generated from pacto with shasum b5ec82bb381eac4a445c35bbfbfcc324135a742c",
|
12
|
-
"type": "object",
|
13
|
-
"required": true,
|
14
|
-
"properties": {
|
15
|
-
"auth": {
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"RAX-KSKEY:apiKeyCredentials": {
|
20
|
-
"type": "object",
|
21
|
-
"required": true,
|
22
|
-
"properties": {
|
23
|
-
"username": {
|
24
|
-
"type": "string",
|
25
|
-
"required": true
|
26
|
-
},
|
27
|
-
"apiKey": {
|
28
|
-
"type": "string",
|
29
|
-
"required": true
|
30
|
-
}
|
31
|
-
}
|
32
|
-
}
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
36
|
-
}
|
37
|
-
},
|
38
|
-
"response": {
|
39
|
-
"headers": {
|
40
|
-
"Content-Type": "application/json",
|
41
|
-
"Vary": "Accept, Accept-Encoding, X-Auth-Token",
|
42
|
-
"Front-End-Https": "on"
|
43
|
-
},
|
44
|
-
"status": 200,
|
45
|
-
"body": {
|
46
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
47
|
-
"description": "Generated from vcr with shasum 08229587d646a34b98537922185383935c77205a",
|
48
|
-
"type": "object",
|
49
|
-
"required": true,
|
50
|
-
"properties": {
|
51
|
-
"access": {
|
52
|
-
"type": "object",
|
53
|
-
"required": true,
|
54
|
-
"properties": {
|
55
|
-
"token": {
|
56
|
-
"type": "object",
|
57
|
-
"required": true,
|
58
|
-
"properties": {
|
59
|
-
"id": {
|
60
|
-
"type": "string",
|
61
|
-
"required": true
|
62
|
-
},
|
63
|
-
"expires": {
|
64
|
-
"type": "string",
|
65
|
-
"required": true
|
66
|
-
},
|
67
|
-
"tenant": {
|
68
|
-
"type": "object",
|
69
|
-
"required": true,
|
70
|
-
"properties": {
|
71
|
-
"id": {
|
72
|
-
"type": "string",
|
73
|
-
"required": true
|
74
|
-
},
|
75
|
-
"name": {
|
76
|
-
"type": "string",
|
77
|
-
"required": true
|
78
|
-
}
|
79
|
-
}
|
80
|
-
},
|
81
|
-
"RAX-AUTH:authenticatedBy": {
|
82
|
-
"type": "array",
|
83
|
-
"required": true,
|
84
|
-
"minItems": 1,
|
85
|
-
"uniqueItems": true,
|
86
|
-
"items": {
|
87
|
-
"type": "string",
|
88
|
-
"required": false
|
89
|
-
}
|
90
|
-
}
|
91
|
-
}
|
92
|
-
},
|
93
|
-
"serviceCatalog": {
|
94
|
-
"type": "array",
|
95
|
-
"required": true,
|
96
|
-
"minItems": 1,
|
97
|
-
"uniqueItems": true,
|
98
|
-
"items": {
|
99
|
-
"type": "object",
|
100
|
-
"required": true,
|
101
|
-
"properties": {
|
102
|
-
"name": {
|
103
|
-
"type": "string",
|
104
|
-
"required": true
|
105
|
-
},
|
106
|
-
"endpoints": {
|
107
|
-
"type": "array",
|
108
|
-
"required": true,
|
109
|
-
"minItems": 1,
|
110
|
-
"uniqueItems": true,
|
111
|
-
"items": {
|
112
|
-
"type": "object",
|
113
|
-
"required": true,
|
114
|
-
"properties": {
|
115
|
-
"region": {
|
116
|
-
"type": "string",
|
117
|
-
"required": false
|
118
|
-
},
|
119
|
-
"tenantId": {
|
120
|
-
"type": "string",
|
121
|
-
"required": true
|
122
|
-
},
|
123
|
-
"publicURL": {
|
124
|
-
"type": "string",
|
125
|
-
"required": true
|
126
|
-
},
|
127
|
-
"internalURL": {
|
128
|
-
"type": "string",
|
129
|
-
"required": false
|
130
|
-
}
|
131
|
-
}
|
132
|
-
}
|
133
|
-
},
|
134
|
-
"type": {
|
135
|
-
"type": "string",
|
136
|
-
"required": true
|
137
|
-
}
|
138
|
-
}
|
139
|
-
}
|
140
|
-
},
|
141
|
-
"user": {
|
142
|
-
"type": "object",
|
143
|
-
"required": true,
|
144
|
-
"properties": {
|
145
|
-
"id": {
|
146
|
-
"type": "string",
|
147
|
-
"required": true
|
148
|
-
},
|
149
|
-
"roles": {
|
150
|
-
"type": "array",
|
151
|
-
"required": true,
|
152
|
-
"minItems": 1,
|
153
|
-
"uniqueItems": true,
|
154
|
-
"items": {
|
155
|
-
"type": "object",
|
156
|
-
"required": true,
|
157
|
-
"properties": {
|
158
|
-
"tenantId": {
|
159
|
-
"type": "string",
|
160
|
-
"required": false
|
161
|
-
},
|
162
|
-
"id": {
|
163
|
-
"type": "string",
|
164
|
-
"required": true
|
165
|
-
},
|
166
|
-
"description": {
|
167
|
-
"type": "string",
|
168
|
-
"required": true
|
169
|
-
},
|
170
|
-
"name": {
|
171
|
-
"type": "string",
|
172
|
-
"required": true
|
173
|
-
}
|
174
|
-
}
|
175
|
-
}
|
176
|
-
},
|
177
|
-
"name": {
|
178
|
-
"type": "string",
|
179
|
-
"required": true
|
180
|
-
},
|
181
|
-
"RAX-AUTH:defaultRegion": {
|
182
|
-
"type": "string",
|
183
|
-
"required": true
|
184
|
-
}
|
185
|
-
}
|
186
|
-
}
|
187
|
-
}
|
188
|
-
}
|
189
|
-
}
|
190
|
-
}
|
191
|
-
}
|
192
|
-
}
|
@@ -1,39 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
"Accept-Encoding": "gzip, deflate"
|
5
|
-
},
|
6
|
-
"method": "get",
|
7
|
-
"path": "/v1.0/:tenant_id/account"
|
8
|
-
},
|
9
|
-
"response": {
|
10
|
-
"headers": {
|
11
|
-
"Content-Type": "application/json; charset=UTF-8",
|
12
|
-
"Vary": "Accept-Encoding",
|
13
|
-
"Content-Encoding": "gzip"
|
14
|
-
},
|
15
|
-
"status": 200,
|
16
|
-
"body": {
|
17
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
18
|
-
"description": "Generated from https://monitoring.api.rackspacecloud.com/v1.0/:tenant_id/account with shasum 289752c74aff6826c35115a6393b6eb4e0bb553d",
|
19
|
-
"type": "object",
|
20
|
-
"required": true,
|
21
|
-
"properties": {
|
22
|
-
"id": {
|
23
|
-
"type": "string",
|
24
|
-
"required": true
|
25
|
-
},
|
26
|
-
"metadata": {
|
27
|
-
"type": "object",
|
28
|
-
"required": true,
|
29
|
-
"properties": {
|
30
|
-
}
|
31
|
-
},
|
32
|
-
"webhook_token": {
|
33
|
-
"type": "string",
|
34
|
-
"required": true
|
35
|
-
}
|
36
|
-
}
|
37
|
-
}
|
38
|
-
}
|
39
|
-
}
|
@@ -1,38 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "get",
|
6
|
-
"path": "/v1.0/:tenant_id/groups"
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"headers": {
|
10
|
-
"Content-Type": "application/json"
|
11
|
-
},
|
12
|
-
"status": 200,
|
13
|
-
"body": {
|
14
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
15
|
-
"description": "Generated from https://ord.autoscale.api.rackspacecloud.com/v1.0/:tenant_id/groups with shasum 3b9a4e76e4b1bd055860d0de1ded4f9d303a98dc",
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"groups_links": {
|
20
|
-
"type": "array",
|
21
|
-
"required": true,
|
22
|
-
"minItems": 0,
|
23
|
-
"uniqueItems": true,
|
24
|
-
"items": {
|
25
|
-
}
|
26
|
-
},
|
27
|
-
"groups": {
|
28
|
-
"type": "array",
|
29
|
-
"required": true,
|
30
|
-
"minItems": 0,
|
31
|
-
"uniqueItems": true,
|
32
|
-
"items": {
|
33
|
-
}
|
34
|
-
}
|
35
|
-
}
|
36
|
-
}
|
37
|
-
}
|
38
|
-
}
|
@@ -1,30 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "get",
|
6
|
-
"path": "/v1/:tenant_id/volumes"
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"headers": {
|
10
|
-
"Content-Type": "application/json"
|
11
|
-
},
|
12
|
-
"status": 200,
|
13
|
-
"body": {
|
14
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
15
|
-
"description": "Generated from https://ord.blockstorage.api.rackspacecloud.com/v1/:tenant_id/volumes with shasum bbb7a47a64c28f974dbcab579b68b70f2919734a",
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"volumes": {
|
20
|
-
"type": "array",
|
21
|
-
"required": true,
|
22
|
-
"minItems": 0,
|
23
|
-
"uniqueItems": true,
|
24
|
-
"items": {
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
@@ -1,30 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "get",
|
6
|
-
"path": "/v1.0/:tenant_id/instances"
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"headers": {
|
10
|
-
"Content-Type": "application/json"
|
11
|
-
},
|
12
|
-
"status": 200,
|
13
|
-
"body": {
|
14
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
15
|
-
"description": "Generated from https://ord.databases.api.rackspacecloud.com/v1.0/:tenant_id/instances with shasum b6ddf7e003abfd1b01e6137cadf30d50ee00b5d2",
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"instances": {
|
20
|
-
"type": "array",
|
21
|
-
"required": true,
|
22
|
-
"minItems": 0,
|
23
|
-
"uniqueItems": true,
|
24
|
-
"items": {
|
25
|
-
}
|
26
|
-
}
|
27
|
-
}
|
28
|
-
}
|
29
|
-
}
|
30
|
-
}
|
data/pacto/contracts/ord.loadbalancers.api.rackspacecloud.com/v1.0/_tenant_id/loadbalancers.json
DELETED
@@ -1,114 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "get",
|
6
|
-
"path": "/v1.0/:tenant_id/loadbalancers"
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"headers": {
|
10
|
-
"Content-Type": "application/json"
|
11
|
-
},
|
12
|
-
"status": 200,
|
13
|
-
"body": {
|
14
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
15
|
-
"description": "Generated from https://ord.loadbalancers.api.rackspacecloud.com/v1.0/:tenant_id/loadbalancers with shasum 20251c7e274236b680c1994d77dfc2e069ff1c21",
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"loadBalancers": {
|
20
|
-
"type": "array",
|
21
|
-
"required": true,
|
22
|
-
"minItems": 1,
|
23
|
-
"uniqueItems": true,
|
24
|
-
"items": {
|
25
|
-
"type": "object",
|
26
|
-
"required": true,
|
27
|
-
"properties": {
|
28
|
-
"name": {
|
29
|
-
"type": "string",
|
30
|
-
"required": true
|
31
|
-
},
|
32
|
-
"id": {
|
33
|
-
"type": "integer",
|
34
|
-
"required": true
|
35
|
-
},
|
36
|
-
"protocol": {
|
37
|
-
"type": "string",
|
38
|
-
"required": true
|
39
|
-
},
|
40
|
-
"port": {
|
41
|
-
"type": "integer",
|
42
|
-
"required": true
|
43
|
-
},
|
44
|
-
"algorithm": {
|
45
|
-
"type": "string",
|
46
|
-
"required": true
|
47
|
-
},
|
48
|
-
"status": {
|
49
|
-
"type": "string",
|
50
|
-
"required": true
|
51
|
-
},
|
52
|
-
"timeout": {
|
53
|
-
"type": "integer",
|
54
|
-
"required": true
|
55
|
-
},
|
56
|
-
"created": {
|
57
|
-
"type": "object",
|
58
|
-
"required": true,
|
59
|
-
"properties": {
|
60
|
-
"time": {
|
61
|
-
"type": "string",
|
62
|
-
"required": true
|
63
|
-
}
|
64
|
-
}
|
65
|
-
},
|
66
|
-
"virtualIps": {
|
67
|
-
"type": "array",
|
68
|
-
"required": true,
|
69
|
-
"minItems": 1,
|
70
|
-
"uniqueItems": true,
|
71
|
-
"items": {
|
72
|
-
"type": "object",
|
73
|
-
"required": true,
|
74
|
-
"properties": {
|
75
|
-
"address": {
|
76
|
-
"type": "string",
|
77
|
-
"required": true
|
78
|
-
},
|
79
|
-
"id": {
|
80
|
-
"type": "integer",
|
81
|
-
"required": true
|
82
|
-
},
|
83
|
-
"type": {
|
84
|
-
"type": "string",
|
85
|
-
"required": true
|
86
|
-
},
|
87
|
-
"ipVersion": {
|
88
|
-
"type": "string",
|
89
|
-
"required": true
|
90
|
-
}
|
91
|
-
}
|
92
|
-
}
|
93
|
-
},
|
94
|
-
"updated": {
|
95
|
-
"type": "object",
|
96
|
-
"required": true,
|
97
|
-
"properties": {
|
98
|
-
"time": {
|
99
|
-
"type": "string",
|
100
|
-
"required": true
|
101
|
-
}
|
102
|
-
}
|
103
|
-
},
|
104
|
-
"nodeCount": {
|
105
|
-
"type": "integer",
|
106
|
-
"required": true
|
107
|
-
}
|
108
|
-
}
|
109
|
-
}
|
110
|
-
}
|
111
|
-
}
|
112
|
-
}
|
113
|
-
}
|
114
|
-
}
|
@@ -1,46 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"request": {
|
3
|
-
"headers": {
|
4
|
-
},
|
5
|
-
"method": "get",
|
6
|
-
"path": "/v2/:tenant_id/os-networksv2"
|
7
|
-
},
|
8
|
-
"response": {
|
9
|
-
"headers": {
|
10
|
-
"Content-Type": "application/json"
|
11
|
-
},
|
12
|
-
"status": 200,
|
13
|
-
"body": {
|
14
|
-
"$schema": "http://json-schema.org/draft-03/schema#",
|
15
|
-
"description": "Generated from https://ord.servers.api.rackspacecloud.com/v2/:tenant_id/os-networksv2 with shasum ef5650d153090855ea761c121171df3bfec67c9d",
|
16
|
-
"type": "object",
|
17
|
-
"required": true,
|
18
|
-
"properties": {
|
19
|
-
"networks": {
|
20
|
-
"type": "array",
|
21
|
-
"required": true,
|
22
|
-
"minItems": 1,
|
23
|
-
"uniqueItems": true,
|
24
|
-
"items": {
|
25
|
-
"type": "object",
|
26
|
-
"required": true,
|
27
|
-
"properties": {
|
28
|
-
"cidr": {
|
29
|
-
"type": "string",
|
30
|
-
"required": false
|
31
|
-
},
|
32
|
-
"id": {
|
33
|
-
"type": "string",
|
34
|
-
"required": true
|
35
|
-
},
|
36
|
-
"label": {
|
37
|
-
"type": "string",
|
38
|
-
"required": true
|
39
|
-
}
|
40
|
-
}
|
41
|
-
}
|
42
|
-
}
|
43
|
-
}
|
44
|
-
}
|
45
|
-
}
|
46
|
-
}
|