Getting information about registries
To find out the ID
or NAME
of a registry, get a list of registries in a folder.
Getting a list of registries in a folder
- In the management console, select the folder where you want to get a list of registries.
- Select the Yandex IoT Core.
- The Registries page shows the list of registries.
If you don't have the Yandex.Cloud command line interface yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameter.
Get a list of registries in the folder:
yc iot registry list
Result:
+----------------------+-------------+
| ID | NAME |
+----------------------+-------------+
| b91ki3851hab9m0l68je | my-registry |
+----------------------+-------------+
You can get a list of registries using the list API method.
Getting detailed information about a registry
You can access the registry using the ID
or NAME
parameters from the previous item.
- In the management console, select the folder where the registry is located.
- Select the Yandex IoT Core.
- Select the registry.
- The Overview page shows the registry details.
If you don't have the Yandex.Cloud command line interface yet, install and initialize it.
The folder specified in the CLI profile is used by default. You can specify a different folder using the --folder-name
or --folder-id
parameter.
Get detailed information about the registry:
yc iot registry get <registry name>
Result:
id: b91ki3851hab9m0l68je
folder_id: aoek49ghmknnpj1ll45e
created_at: "2019-05-28T11:29:42.420Z"
name: my-registry
You can get detailed information about a registry using the get API method.