Skip to content
This repository was archived by the owner on Aug 28, 2019. It is now read-only.

Commit 5e4129b

Browse files
committed
Regenerated library to pick up latest schema changes
1 parent 8352e53 commit 5e4129b

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

codegenerator/model/model-data.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11737,6 +11737,20 @@ Entry 4 =
1173711737
Entry Title = 'Ping Server'
1173811738
Entry Description = 'Respond without doing anything. This endpoint is used to check that
1173911739
the service is up.'
11740+
Entry 5 =
11741+
Entry Type = 'function'
11742+
Entry Method = 'get'
11743+
Entry Route = '/ping'
11744+
Entry Args = '[]'
11745+
Entry Query = '[]'
11746+
Entry Name = 'ping'
11747+
Entry Stability = 'stable'
11748+
Entry Scopes = '[]'
11749+
Entry Input = ''
11750+
Entry Output = ''
11751+
Entry Title = 'Ping Server'
11752+
Entry Description = 'Respond without doing anything.
11753+
This endpoint is used to check that the service is up.'
1174011754

1174111755

1174211756
http://schemas.taskcluster.net/secrets/v1/secret-list.json#

src/main/java/org/mozilla/taskcluster/client/secrets/Secrets.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,14 @@ public CallSummary<EmptyPayload, SecretsList> list() throws APICallFailure {
112112
public CallSummary<EmptyPayload, EmptyPayload> ping() throws APICallFailure {
113113
return apiCall(null, "GET", "/ping", EmptyPayload.class);
114114
}
115+
116+
/**
117+
* Respond without doing anything.
118+
* This endpoint is used to check that the service is up.
119+
*
120+
* @see "[Ping Server API Documentation](https://docs.taskcluster.net/reference/core/secrets/api-docs#ping)"
121+
*/
122+
public CallSummary<EmptyPayload, EmptyPayload> ping1() throws APICallFailure {
123+
return apiCall(null, "GET", "/ping", EmptyPayload.class);
124+
}
115125
}

0 commit comments

Comments
 (0)