-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First Bigtable gapic gen for php (#731)
* first bigtable gapic gen for php * adding bigtable admin * ran PHPCBF to format php files; added first draft of Bigtable/composer.json * copied over bigtable from api-client-staging after regening using php-cs-fixer:2.2.7; ran phpcbf style fixer on result * adding docs/contents/cloud-bigtable.json * spacing in composer.json * adding bigtable VERSION and in composer.json * updated manifest.json with bigtable and to master * adding readme for bigtable * use master's version of non-bigtable things * update to master * update tests/ to master * update to master * update to master * update to master * new line * bump version to master's proto-client (0.26) * removed extraneous comma in cloud-bigtable.json * manifest.json: bigtable/readme * added readme * updating json files
- Loading branch information
1 parent
3f9def8
commit 1820c01
Showing
17 changed files
with
3,449 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{ | ||
"title": "Bigtable", | ||
"pattern": "bigtable\/\\w{1,}", | ||
"services": [{ | ||
"title": "BigtableClient", | ||
"type": "bigtable/readme" | ||
}, { | ||
"title": "v2", | ||
"type": "bigtable/v2/readme", | ||
"patterns": [ | ||
"bigtable/v2/\\w{1,}", | ||
"bigtable/admin/v2/\\w{1,}" | ||
], | ||
"nav": [{ | ||
"title": "BigtableClient", | ||
"type": "bigtable/v2/bigtableclient" | ||
}, { | ||
"title": "BigtableInstanceAdminClient", | ||
"type": "bigtable/admin/v2/bigtableinstanceadminclient" | ||
}, { | ||
"title": "BigtableTableAdminClient", | ||
"type": "bigtable/admin/v2/bigtabletableadminclient" | ||
}] | ||
}] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
<?php | ||
/* | ||
* Copyright 2017, Google LLC All rights reserved. | ||
* | ||
* 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 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* | ||
* GENERATED CODE WARNING | ||
* This file was generated from the file | ||
* 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 beta. This class may change | ||
* more frequently than those which have been declared beta or 1.0, including changes which break | ||
* backwards compatibility. | ||
* | ||
* @experimental | ||
*/ | ||
|
||
namespace Google\Cloud\Bigtable\Admin\V2; | ||
|
||
use Google\Cloud\Bigtable\Admin\V2\Gapic\BigtableInstanceAdminGapicClient; | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
class BigtableInstanceAdminClient extends BigtableInstanceAdminGapicClient | ||
{ | ||
// This class is intentionally empty, and is intended to hold manual additions to the generated {@see BigtableInstanceAdminClientImpl} class. | ||
} |
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,41 @@ | ||
<?php | ||
/* | ||
* Copyright 2017, Google LLC All rights reserved. | ||
* | ||
* 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 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
/* | ||
* GENERATED CODE WARNING | ||
* This file was generated from the file | ||
* 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 beta. This class may change | ||
* more frequently than those which have been declared beta or 1.0, including changes which break | ||
* backwards compatibility. | ||
* | ||
* @experimental | ||
*/ | ||
|
||
namespace Google\Cloud\Bigtable\Admin\V2; | ||
|
||
use Google\Cloud\Bigtable\Admin\V2\Gapic\BigtableTableAdminGapicClient; | ||
|
||
/** | ||
* {@inheritdoc} | ||
*/ | ||
class BigtableTableAdminClient extends BigtableTableAdminGapicClient | ||
{ | ||
// This class is intentionally empty, and is intended to hold manual additions to the generated {@see BigtableTableAdminClientImpl} class. | ||
} |
Oops, something went wrong.