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

Commit 29a2f1a

Browse files
committed
Regenerated library to pick up latest schema changes
1 parent 45e0ae5 commit 29a2f1a

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

codegenerator/model/model-data.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -897,9 +897,9 @@ Properties
897897
SourceURL = 'http://schemas.taskcluster.net/auth/v1/azure-table-access-response.json#/properties/sas'
898898
Required = '[sas expiry]'
899899
Schema = 'http://json-schema.org/draft-04/schema#'
900-
Title = 'Azure Shared-Access-Signature Response'
900+
Title = 'Azure Table Shared-Access-Signature Response'
901901
Type = 'object'
902-
TypeName = 'AzureSharedAccessSignatureResponse'
902+
TypeName = 'Var'
903903
SourceURL = 'http://schemas.taskcluster.net/auth/v1/azure-table-access-response.json#'
904904

905905

src/main/java/org/mozilla/taskcluster/client/auth/Auth.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ public CallSummary<EmptyPayload, AzureListAccountResponse1> azureTables(String a
405405
*
406406
* @see "[Get Shared-Access-Signature for Azure Table API Documentation](https://docs.taskcluster.net/reference/platform/auth/api-docs#azureTableSAS)"
407407
*/
408-
public CallSummary<EmptyPayload, AzureSharedAccessSignatureResponse> azureTableSAS(String account, String table, String level) throws APICallFailure {
409-
return apiCall(null, "GET", "/azure/" + uriEncode(account) + "/table/" + uriEncode(table) + "/" + uriEncode(level), AzureSharedAccessSignatureResponse.class);
408+
public CallSummary<EmptyPayload, Var> azureTableSAS(String account, String table, String level) throws APICallFailure {
409+
return apiCall(null, "GET", "/azure/" + uriEncode(account) + "/table/" + uriEncode(table) + "/" + uriEncode(level), Var.class);
410410
}
411411

412412
/**
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* See http://schemas.taskcluster.net/auth/v1/azure-table-access-response.json#
1010
*/
11-
public class AzureSharedAccessSignatureResponse {
11+
public class Var {
1212

1313
/**
1414
* Date and time of when the Shared-Access-Signature expires.

0 commit comments

Comments
 (0)