Skip to content
This repository was archived by the owner on Oct 29, 2023. It is now read-only.

Commit 7293840

Browse files
gguussJon Wayne Parrott
authored and
Jon Wayne Parrott
committed
Removes API key because discovery is now public [(#1140)](GoogleCloudPlatform/python-docs-samples#1140)
1 parent 0ad6027 commit 7293840

File tree

3 files changed

+114
-129
lines changed

3 files changed

+114
-129
lines changed

samples/api-client/manager/README.rst

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,13 @@ To run this sample:
5959
6060
$ python manager.py
6161
62-
usage: manager.py [-h] --pubsub_topic PUBSUB_TOPIC [--api_key API_KEY]
63-
[--project_id PROJECT_ID]
62+
usage: manager.py [-h] --pubsub_topic PUBSUB_TOPIC [--project_id PROJECT_ID]
6463
[--ec_public_key_file EC_PUBLIC_KEY_FILE]
6564
[--rsa_certificate_file RSA_CERTIFICATE_FILE]
6665
[--cloud_region CLOUD_REGION]
6766
[--service_account_json SERVICE_ACCOUNT_JSON]
6867
[--registry_id REGISTRY_ID] [--device_id DEVICE_ID]
69-
{create-es256,create-registry,create-rsa256,create-topic,create-unauth,delete-device,delete-registry,get,get-registry,list,list-registries,patch-es256,patch-rs256}
68+
{create-es256,create-registry,create-rsa256,create-topic,create-unauth,delete-device,delete-registry,get,get-registry,get-state,list,list-registries,patch-es256,patch-rs256}
7069
...
7170
7271
Example of using the Google Cloud IoT Core device manager to administer
@@ -77,14 +76,13 @@ To run this sample:
7776
python manager.py \
7877
--project_id=my-project-id \
7978
--pubsub_topic=projects/my-project-id/topics/my-topic-id \
80-
--api_key=YOUR_API_KEY \
8179
--ec_public_key_file=../ec_public.pem \
8280
--rsa_certificate_file=../rsa_cert.pem \
8381
--service_account_json=$HOME/service_account.json
8482
list
8583
8684
positional arguments:
87-
{create-es256,create-registry,create-rsa256,create-topic,create-unauth,delete-device,delete-registry,get,get-registry,list,list-registries,patch-es256,patch-rs256}
85+
{create-es256,create-registry,create-rsa256,create-topic,create-unauth,delete-device,delete-registry,get,get-registry,get-state,list,list-registries,patch-es256,patch-rs256}
8886
create-es256 Create a new device with the given id, using ES256 for
8987
authentication.
9088
create-registry Gets or creates a device registry.
@@ -96,7 +94,8 @@ To run this sample:
9694
delete-device Delete the device with the given id.
9795
delete-registry Deletes the specified registry.
9896
get Retrieve the device with the given id.
99-
get-registry Retrieve the device with the given id.
97+
get-registry Retrieves a device registry.
98+
get-state Retrieve a device's state blobs.
10099
list List all devices in the registry.
101100
list-registries List all registries in the project.
102101
patch-es256 Patch the device to add an ES256 public key to the
@@ -109,7 +108,6 @@ To run this sample:
109108
--pubsub_topic PUBSUB_TOPIC
110109
Google Cloud Pub/Sub topic. Format is
111110
projects/project_id/topics/topic-id
112-
--api_key API_KEY Your API key.
113111
--project_id PROJECT_ID
114112
GCP cloud project name.
115113
--ec_public_key_file EC_PUBLIC_KEY_FILE

0 commit comments

Comments
 (0)