Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce HTTP 1.1/JSON support for GAPIC clients #857

Merged
merged 21 commits into from
Jan 22, 2018
Merged
Show file tree
Hide file tree
Changes from 18 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,13 @@
"require": {
"php": ">=5.5",
"rize/uri-template": "~0.3",
"google/auth": "~0.9|^1.0",
"guzzlehttp/guzzle": "^5.3|^6.0",
"guzzlehttp/psr7": "^1.2",
"monolog/monolog": "~1",
"psr/http-message": "1.0.*",
"ramsey/uuid": "~3",
"google/proto-client": "^0.30.0",
"google/gax": "^0.29"
"google/gax": "dev-json-transport"

This comment was marked as spam.

This comment was marked as spam.

},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0",
Expand Down
8 changes: 4 additions & 4 deletions src/Bigtable/Admin/V2/BigtableInstanceAdminClient.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/*
* Copyright 2017, Google LLC All rights reserved.
* Copyright 2018 Google LLC

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* https://www.apache.org/licenses/LICENSE-2.0

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

This comment was marked as spam.

*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -21,8 +21,8 @@
* https://github.com/google/googleapis/blob/master/google/bigtable/admin/v2/bigtable_instance_admin.proto
* and updates to that file get reflected here through a refresh process.
*
* EXPERIMENTAL: this client library class has not yet been declared GA (1.0). This means that
* even though we intent the surface to be stable, we may make backwards incompatible changes
* EXPERIMENTAL: This client library class has not yet been declared GA (1.0). This means that
* even though we intend the surface to be stable, we may make backwards incompatible changes
* if necessary.
*
* @experimental
Expand Down
8 changes: 4 additions & 4 deletions src/Bigtable/Admin/V2/BigtableTableAdminClient.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php
/*
* Copyright 2017, Google LLC All rights reserved.
* Copyright 2018 Google LLC

This comment was marked as spam.

*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
Expand All @@ -21,8 +21,8 @@
* https://github.com/google/googleapis/blob/master/google/bigtable/admin/v2/bigtable_table_admin.proto
* and updates to that file get reflected here through a refresh process.
*
* EXPERIMENTAL: this client library class has not yet been declared GA (1.0). This means that
* even though we intent the surface to be stable, we may make backwards incompatible changes
* EXPERIMENTAL: This client library class has not yet been declared GA (1.0). This means that
* even though we intend the surface to be stable, we may make backwards incompatible changes
* if necessary.
*
* @experimental
Expand Down
Loading