Skip to content

Commit

Permalink
Add Debugger to manifest and README, bigtable to README (#823)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpedrie authored Dec 29, 2017
1 parent bacb634 commit cbbebb5
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 0 deletions.
59 changes: 59 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ This client supports the following Google Cloud Platform services at a [General
This client supports the following Google Cloud Platform services at a [Beta](#versioning) quality level:

* [Cloud Firestore](#cloud-firestore-beta) (Beta)
* [Google Bigtable](#google-bigtable-beta) (Beta)
* [Google BigQuery](#google-bigquery-beta) (Beta)
* [Google Cloud Container](#google-cloud-container-beta) (Beta)
* [Google Cloud Dataproc](#google-cloud-dataproc-beta) (Beta)
Expand All @@ -30,6 +31,7 @@ This client supports the following Google Cloud Platform services at a [Beta](#v

This client supports the following Google Cloud Platform services at an [Alpha](#versioning) quality level:
* [Google Cloud Speech](#google-cloud-speech-alpha) (Alpha)
* [Google Stackdriver Debugger](#google-stackdriver-debugger-alpha) (Alpha)
* [Google Stackdriver Trace](#google-stackdriver-trace-alpha) (Alpha)
* [Google Cloud BigQuery Data Transfer](#google-cloud-bigquerydatatransfer-alpha) (Alpha)

Expand Down Expand Up @@ -361,6 +363,40 @@ Cloud Firestore can be installed separately by requiring the `google/cloud-fires
$ composer require google/cloud-firestore
```

## Google Bigtable (Beta)

- [API Documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/latest/bigtable/readme)
- [Official Documentation](https://cloud.google.com/bigtable/docs)

#### Preview

```php
require 'vendor/autoload.php';

use Google\Cloud\Bigtable\V2\BigtableClient;

$bigtableClient = new BigtableClient();
$formattedTableName = $bigtableClient->tableName('[PROJECT]', '[INSTANCE]', '[TABLE]');

try {
$stream = $bigtableClient->readRows($formattedTableName);
foreach ($stream->readAll() as $element) {
// doSomethingWith($element);
}
} finally {
$bigtableClient->close();
}
```

#### google/cloud-bigtable

Google Bigtable can be installed separately by requiring the `google/cloud-bigtable` composer package:

```
$ composer require google/cloud-bigtable
```


## Google BigQuery (Beta)

- [API Documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/latest/bigquery/bigqueryclient)
Expand Down Expand Up @@ -859,6 +895,29 @@ Google Cloud Speech can be installed separately by requiring the `google/cloud-s
$ composer require google/cloud-speech
```

## Google Stackdriver Debugger (Alpha)

- [API Documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/latest/debugger/debuggerclient)
- [Official Documentation](https://cloud.google.com/debugger/docs)

#### Preview

```php
use Google\Cloud\Debugger\DebuggerClient;

$debugger = new DebuggerClient();
$debuggee = $debugger->debugee();
$debuggee->register();
```

#### google/cloud-debugger

Stackdriver Debugger can be installed separately by requiring the `google/cloud-debugger` composer package:

```
$ composer require google/cloud-debugger
```

## Google Stackdriver Trace (Alpha)

- [API Documentation](http://googlecloudplatform.github.io/google-cloud-php/#/docs/latest/trace/traceclient)
Expand Down
8 changes: 8 additions & 0 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,14 @@
"master"
]
},
{
"id": "cloud-debugger",
"name": "google/cloud-debugger",
"defaultService": "debugger/debuggerclient",
"versions": [
"master"
]
},
{
"id": "cloud-dlp",
"name": "google/cloud-dlp",
Expand Down

0 comments on commit cbbebb5

Please sign in to comment.