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

First Bigtable gapic gen for php #731

Merged
merged 24 commits into from
Nov 17, 2017
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ac4f403
first bigtable gapic gen for php
andreamlin Nov 8, 2017
6253bb6
adding bigtable admin
andreamlin Nov 8, 2017
0fa5425
ran PHPCBF to format php files; added first draft of Bigtable/compos…
andreamlin Nov 9, 2017
f61e2a2
copied over bigtable from api-client-staging after regening using php…
andreamlin Nov 9, 2017
dd33390
adding docs/contents/cloud-bigtable.json
andreamlin Nov 15, 2017
1ad4c0a
spacing in composer.json
andreamlin Nov 15, 2017
cecb09e
adding bigtable VERSION and in composer.json
andreamlin Nov 15, 2017
8025d1c
updated manifest.json with bigtable and to master
andreamlin Nov 15, 2017
8d9eef1
adding readme for bigtable
andreamlin Nov 15, 2017
059955b
use master's version of non-bigtable things
andreamlin Nov 15, 2017
9fd184e
update to master
andreamlin Nov 15, 2017
5a25d63
update tests/ to master
andreamlin Nov 15, 2017
3b9c49c
update to master
andreamlin Nov 15, 2017
9998161
update to master
andreamlin Nov 15, 2017
935615f
update to master
andreamlin Nov 15, 2017
3af9252
new line
andreamlin Nov 15, 2017
ab909dc
Merge branch 'master' into php_bigtable
andreamlin Nov 15, 2017
54690dd
Merge branch 'master' into php_bigtable
andreamlin Nov 15, 2017
9535fc7
bump version to master's proto-client (0.26)
andreamlin Nov 15, 2017
c7c0c59
removed extraneous comma in cloud-bigtable.json
andreamlin Nov 15, 2017
3f7250e
Merge branch 'php_bigtable' of github.com:andreamlin/google-cloud-php…
andreamlin Nov 15, 2017
6ff1c62
manifest.json: bigtable/readme
andreamlin Nov 17, 2017
6a95a5a
added readme
andreamlin Nov 17, 2017
b9691ae
updating json files
andreamlin Nov 17, 2017
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
2 changes: 2 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"google cloud platform",
"google cloud",
"cloud",
"bigtable",
"bigquery",
"big query",
"datastore",
Expand Down Expand Up @@ -63,6 +64,7 @@
"phpseclib/phpseclib": "^2"
},
"replace": {
"google/cloud-bigtable": "0.1.0",
"google/cloud-bigquery": "0.3.1",
"google/cloud-core": "1.12.1",
"google/cloud-datastore": "1.0.3",
Expand Down
25 changes: 25 additions & 0 deletions docs/contents/cloud-bigtable.json
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/bigtableclient"

This comment was marked as spam.

This comment was marked as spam.

}, {
"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"
}]
}]
}
9 changes: 9 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,15 @@
"master"
]
},
{
"id": "cloud-bigtable",
"name": "google/cloud-bigtable",
"defaultService": "bigtable/bigtableclient",

This comment was marked as spam.

This comment was marked as spam.

"versions": [
"v0.1.0",
"master"
]
},
{
"id": "cloud-bigquery",
"name": "google/cloud-bigquery",
Expand Down
41 changes: 41 additions & 0 deletions src/Bigtable/Admin/V2/BigtableInstanceAdminClient.php
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.
}
41 changes: 41 additions & 0 deletions src/Bigtable/Admin/V2/BigtableTableAdminClient.php
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.
}
Loading