-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce HTTP 1.1/JSON support for GAPIC clients (#857)
* refresh gapics with json-transport updates * cs fix * regenerate with fix for server streaming calls * update spanner async delete call * gapic refresh * refresh gapics * refresh gapics * refresh gapics * gapic refresh * gapic refresh * removes grpc-extension constants in favor of native ones * fixes tests for Grpc connections * gapic refresh * add trace/oslogin * refresh gapics * readd partial veneer * gapic refresh * remove auth dependency, as it is already required by GAX * rely on proto-client-php ^0.31 * use correct copyright year * pin to gax 0.30
- Loading branch information
Showing
8 changed files
with
309 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
return [ | ||
'interfaces' => [ | ||
'google.devtools.clouddebugger.v2.Controller2' => [ | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
<?php | ||
|
||
return [ | ||
'interfaces' => [ | ||
'google.devtools.clouddebugger.v2.Controller2' => [ | ||
'RegisterDebuggee' => [ | ||
'method' => 'post', | ||
'uriTemplate' => '/v2/controller/debuggees/register', | ||
'body' => '*', | ||
], | ||
'ListActiveBreakpoints' => [ | ||
'method' => 'get', | ||
'uriTemplate' => '/v2/controller/debuggees/{debuggee_id}/breakpoints', | ||
'placeholders' => [ | ||
'debuggee_id' => [ | ||
'getters' => [ | ||
'getDebuggeeId', | ||
], | ||
], | ||
], | ||
], | ||
'UpdateActiveBreakpoint' => [ | ||
'method' => 'put', | ||
'uriTemplate' => '/v2/controller/debuggees/{debuggee_id}/breakpoints/{breakpoint.id}', | ||
'body' => '*', | ||
'placeholders' => [ | ||
'debuggee_id' => [ | ||
'getters' => [ | ||
'getDebuggeeId', | ||
], | ||
], | ||
'breakpoint.id' => [ | ||
'getters' => [ | ||
'getBreakpoint', | ||
'getId', | ||
], | ||
], | ||
], | ||
], | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?php | ||
|
||
return [ | ||
'interfaces' => [ | ||
'google.devtools.clouddebugger.v2.Debugger2' => [ | ||
], | ||
], | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<?php | ||
|
||
return [ | ||
'interfaces' => [ | ||
'google.devtools.clouddebugger.v2.Debugger2' => [ | ||
'SetBreakpoint' => [ | ||
'method' => 'post', | ||
'uriTemplate' => '/v2/debugger/debuggees/{debuggee_id}/breakpoints/set', | ||
'body' => 'breakpoint', | ||
'placeholders' => [ | ||
'debuggee_id' => [ | ||
'getters' => [ | ||
'getDebuggeeId', | ||
], | ||
], | ||
], | ||
], | ||
'GetBreakpoint' => [ | ||
'method' => 'get', | ||
'uriTemplate' => '/v2/debugger/debuggees/{debuggee_id}/breakpoints/{breakpoint_id}', | ||
'placeholders' => [ | ||
'debuggee_id' => [ | ||
'getters' => [ | ||
'getDebuggeeId', | ||
], | ||
], | ||
'breakpoint_id' => [ | ||
'getters' => [ | ||
'getBreakpointId', | ||
], | ||
], | ||
], | ||
], | ||
'DeleteBreakpoint' => [ | ||
'method' => 'delete', | ||
'uriTemplate' => '/v2/debugger/debuggees/{debuggee_id}/breakpoints/{breakpoint_id}', | ||
'placeholders' => [ | ||
'debuggee_id' => [ | ||
'getters' => [ | ||
'getDebuggeeId', | ||
], | ||
], | ||
'breakpoint_id' => [ | ||
'getters' => [ | ||
'getBreakpointId', | ||
], | ||
], | ||
], | ||
], | ||
'ListBreakpoints' => [ | ||
'method' => 'get', | ||
'uriTemplate' => '/v2/debugger/debuggees/{debuggee_id}/breakpoints', | ||
'placeholders' => [ | ||
'debuggee_id' => [ | ||
'getters' => [ | ||
'getDebuggeeId', | ||
], | ||
], | ||
], | ||
], | ||
'ListDebuggees' => [ | ||
'method' => 'get', | ||
'uriTemplate' => '/v2/debugger/debuggees', | ||
], | ||
], | ||
], | ||
]; |