You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apex.apache.org by th...@apache.org on 2016/03/03 00:46:37 UTC

incubator-apex-core git commit: Remove Gateway stuff from config package.

Repository: incubator-apex-core
Updated Branches:
  refs/heads/APEXCORE-293 d42f9accf -> 1ca3d5715


Remove Gateway stuff from config package.


Project: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/commit/1ca3d571
Tree: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/tree/1ca3d571
Diff: http://git-wip-us.apache.org/repos/asf/incubator-apex-core/diff/1ca3d571

Branch: refs/heads/APEXCORE-293
Commit: 1ca3d571569060e6f48c9dc4d59f30f9c3ca53ed
Parents: d42f9ac
Author: Thomas Weise <th...@datatorrent.com>
Authored: Wed Mar 2 15:46:23 2016 -0800
Committer: Thomas Weise <th...@datatorrent.com>
Committed: Wed Mar 2 15:46:23 2016 -0800

----------------------------------------------------------------------
 docs/configuration_packages.md | 50 -------------------------------------
 1 file changed, 50 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-apex-core/blob/1ca3d571/docs/configuration_packages.md
----------------------------------------------------------------------
diff --git a/docs/configuration_packages.md b/docs/configuration_packages.md
index 7c8541e..0f1b950 100644
--- a/docs/configuration_packages.md
+++ b/docs/configuration_packages.md
@@ -163,53 +163,3 @@ files
 
 This command expects both the application package and the configuration package to be in the local file system.
 
-
-
-# Related REST API 
-
-### POST /ws/v2/configPackages
-
-Payload: Raw content of configuration package zip
-
-Function: Creates or replace a configuration package zip file in HDFS
-
-Curl example:
-
-    $ curl -XPOST -T DTConfig-{name}.jar http://{yourhost:port}/ws/v2/configPackages
-
-### GET /ws/v2/configPackages?appPackageName=...&appPackageVersion=... 
-
-All query parameters are optional
-
-Function: Returns the configuration packages that the user is authorized to use and that are compatible with the specified appPackageName, appPackageVersion and appName. 
-
-### GET /ws/v2/configPackages/``<user>``?appPackageName=...&appPackageVersion=... 
-
-All query parameters are optional
-
-Function: Returns the configuration packages under the specified user and that are compatible with the specified appPackageName, appPackageVersion and appName.
-
-### GET /ws/v2/configPackages/```<user>```/```<name>``` 
-
-Function: Returns the information of the specified configuration package
-
-### GET /ws/v2/configPackages/```<user>```/```<name>```/download 
-
-Function: Returns the raw config package file
-
-Curl example:
-
-```sh
-$ curl http://{yourhost:port}/ws/v2/configPackages/{user}/{name}/download \> DTConfig-xyz.jar
-$ unzip -t DTConfig-xyz.jar
-```
-
-### POST /ws/v2/appPackages/```<user>```/```<app-pkg-name>```/```<app-pkg-version>```/applications/{app-name}/launch?configPackage=```<user>```/```<confpkgname>```
-
-Function: Launches the app package with the specified configuration package stored in HDFS.
-
-Curl example:
-
-```sh
-$ curl -XPOST -d ’{}’ http://{yourhost:port}/ws/v2/appPackages/{user}/{app-pkg-name}/{app-pkg-version}/applications/{app-name}/launch?configPackage={user}/{confpkgname}
-```