Skip to content

Commit 24e116e

Browse files
authored
Remove samples that have moved elsewhere. (GoogleCloudPlatform#504)
1 parent 14d6460 commit 24e116e

26 files changed

+22
-2497
lines changed

README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ View the [Cloud Datastore Node.js samples][datastore_samples].
253253
[Cloud Storage][storage_docs] allows world-wide storage and retrieval of any
254254
amount of data at any time.
255255

256-
View the [Cloud Storage Node.js samples][storage_samples].
256+
View the [Cloud Storage JSON API Node.js Client samples][storage_samples].
257257

258258
[storage_docs]: https://cloud.google.com/storage/docs/
259259
[storage_samples]: https://github.com/googleapis/nodejs-storage/tree/master/samples
@@ -299,7 +299,7 @@ understanding technologies to developers, including sentiment analysis, entity
299299
recognition, and syntax analysis. This API is part of the larger Cloud Machine
300300
Learning API.
301301

302-
View the [Cloud Natural Language API Node.js samples][language_samples].
302+
View the [Cloud Natural Language API Node.js Client samples][language_samples].
303303

304304
[language_docs]: https://cloud.google.com/natural-language/docs/
305305
[language_samples]: language
@@ -364,10 +364,10 @@ View the [Stackdriver Debugger Node.js sample][debugger_sample].
364364
monitor, and alert on log data and events from Google Cloud Platform and Amazon
365365
Web Services.
366366

367-
View the [Stackdriver Logging Node.js samples][logging_samples].
367+
View the [Stackdriver Logging API Node.js Client samples][logging_samples].
368368

369369
[logging_docs]: https://cloud.google.com/logging/docs/
370-
[logging_samples]: logging
370+
[logging_samples]: https://github.com/googleapis/nodejs-logging/tree/master/samples
371371

372372
#### Stackdriver Monitoring
373373

@@ -376,10 +376,10 @@ from Google Cloud Platform, Amazon Web Services (AWS), hosted uptime probes,
376376
application instrumentation, and a variety of common application components
377377
including Cassandra, Nginx, Apache Web Server, Elasticsearch and many others.
378378

379-
View the [Stackdriver Monitoring Node.js samples][monitoring_samples].
379+
View the [Stackdriver Monitoring API Node.js Client samples][monitoring_samples].
380380

381381
[monitoring_docs]: https://cloud.google.com/monitoring/docs/
382-
[monitoring_samples]: monitoring
382+
[monitoring_samples]: https://github.com/googleapis/nodejs-monitoring/tree/master/samples
383383

384384
#### Stackdriver Trace
385385

@@ -403,10 +403,10 @@ anywhere in the world. Read more about [Google Cloud DNS][dns_docs].
403403

404404
[dns_docs]: https://cloud.google.com/dns/docs
405405

406-
View the [Google Cloud DNS Node.js sample][dns_sample].
406+
View the [Google Cloud DNS API Node.js Client samples][dns_samples].
407407

408408
[dns_docs]: https://cloud.google.com/dns/docs/
409-
[dns_sample]: dns
409+
[dns_samples]: https://github.com/googleapis/nodejs-dns/tree/master/samples
410410

411411
### Identity and Security
412412

circle.yml

-3
Original file line numberDiff line numberDiff line change
@@ -93,16 +93,13 @@ deployment:
9393
- node scripts/build "datastore"
9494
- node scripts/build "debugger"
9595
- node scripts/build "dlp"
96-
- node scripts/build "dns"
9796
- node scripts/build "endpoints/getting-started"
9897
# TODO(ace-n): Get this working again
9998
# - node scripts/build "endpoints/getting-started-grpc"
10099
- node scripts/build "error-reporting"
101100
- node scripts/build "iot/manager"
102101
- node scripts/build "kms"
103102
- node scripts/build "language/slackbot"
104-
- node scripts/build "logging"
105-
- node scripts/build "monitoring"
106103
- node scripts/build "prediction"
107104
- node scripts/build "pubsub"
108105
- node scripts/build "resource"

dns/README.md

+4-67
Original file line numberDiff line numberDiff line change
@@ -1,68 +1,5 @@
1-
<img src="https://avatars2.githubusercontent.com/u/2810941?v=3&s=96" alt="Google Cloud Platform logo" title="Google Cloud Platform" align="right" height="96" width="96"/>
1+
Samples for the [Google Cloud DNS API Node.js Client][client] have moved
2+
to [github.com/googleapis/nodejs-dns/tree/master/samples/][samples].
23

3-
# Google Cloud DNS Node.js Samples
4-
5-
[![Build](https://storage.googleapis.com/cloud-docs-samples-badges/GoogleCloudPlatform/nodejs-docs-samples/nodejs-docs-samples-dns.svg)]()
6-
7-
[Cloud DNS](https://cloud.google.com/dns/docs/) allows you to publish your domain names using Google&#x27;s infrastructure for production-quality, high-volume DNS services. Google&#x27;s global network of anycast name servers provide reliable, low-latency authoritative name lookups for your domains from anywhere in the world.
8-
9-
## Table of Contents
10-
11-
* [Setup](#setup)
12-
* [Samples](#samples)
13-
* [Zones](#zones)
14-
* [Running the tests](#running-the-tests)
15-
16-
## Setup
17-
18-
1. Read [Prerequisites][prereq] and [How to run a sample][run] first.
19-
1. Install dependencies:
20-
21-
With **npm**:
22-
23-
npm install
24-
25-
With **yarn**:
26-
27-
yarn install
28-
29-
[prereq]: ../README.md#prerequisites
30-
[run]: ../README.md#how-to-run-a-sample
31-
32-
## Samples
33-
34-
### Zones
35-
36-
View the [documentation][zones_0_docs] or the [source code][zones_0_code].
37-
38-
__Usage:__ `node zones.js --help`
39-
40-
```
41-
Commands:
42-
list Lists all zones in the current project.
43-
44-
Options:
45-
--help Show help [boolean]
46-
47-
Examples:
48-
node zones.js list Lists all zones in the current project.
49-
50-
For more information, see https://cloud.google.com/dns/docs
51-
```
52-
53-
[zones_0_docs]: https://cloud.google.com/dns/docs
54-
[zones_0_code]: zones.js
55-
56-
## Running the tests
57-
58-
1. Set the **GCLOUD_PROJECT** and **GOOGLE_APPLICATION_CREDENTIALS** environment variables.
59-
60-
1. Run the tests:
61-
62-
With **npm**:
63-
64-
npm test
65-
66-
With **yarn**:
67-
68-
yarn test
4+
[client]: https://github.com/googleapis/nodejs-dns
5+
[samples]: https://github.com/googleapis/nodejs-dns/tree/master/samples

dns/package.json

-43
This file was deleted.

dns/quickstart.js

-38
This file was deleted.

dns/system-test/quickstart.test.js

-74
This file was deleted.

dns/system-test/zones.test.js

-48
This file was deleted.

0 commit comments

Comments
 (0)