IoT Core Service, gRPC: RegistryService.ListPasswords
Written by
Updated at November 26, 2024
Retrieves the list of passwords for the specified registry.
gRPC request
rpc ListPasswords (ListRegistryPasswordsRequest) returns (ListRegistryPasswordsResponse)
ListRegistryPasswordsRequest
{
"registry_id": "string"
}
Field |
Description |
registry_id |
string Required field. ID of the registry to list passwords in. To get a registry ID make a RegistryService.List request. |
ListRegistryPasswordsResponse
{
"passwords": [
{
"registry_id": "string",
"id": "string",
"created_at": "google.protobuf.Timestamp"
}
]
}
Field |
Description |
passwords[] |
List of passwords for the specified registry. |
RegistryPassword
A registry password.
Field |
Description |
registry_id |
string ID of the registry that the password belongs to. |
id |
string ID of the password. |
created_at |
Creation timestamp. |