Key with single parent

Make a key with a single parent.

Explore further

For detailed documentation that includes this code sample, see the following:

Code sample

C#

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode C# API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  Key 
  
 rootKey 
  
 = 
  
 _db 
 . 
 CreateKeyFactory 
 ( 
 "TaskList" 
 ). 
 CreateKey 
 ( 
 "default" 
 ); 
 Key 
  
 key 
  
 = 
  
 new 
  
 KeyFactory 
 ( 
 rootKey 
 , 
  
 "Task" 
 ). 
 CreateKey 
 ( 
 "sampleTask" 
 ); 
 

Go

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Go API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  parentKey 
  
 := 
  
 datastore 
 . 
 NameKey 
 ( 
 "TaskList" 
 , 
  
 "default" 
 , 
  
 nil 
 ) 
 taskKey 
  
 := 
  
 datastore 
 . 
 NameKey 
 ( 
 "Task" 
 , 
  
 "sampleTask" 
 , 
  
 parentKey 
 ) 
 

Java

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Java API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  Key 
  
 taskKey 
  
 = 
  
 datastore 
  
 . 
 newKeyFactory 
 () 
  
 . 
 addAncestors 
 ( 
 PathElement 
 . 
 of 
 ( 
 "TaskList" 
 , 
  
 "default" 
 )) 
  
 . 
 setKind 
 ( 
 "Task" 
 ) 
  
 . 
 newKey 
 ( 
 "sampleTask" 
 ); 
 

Node.js

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Node.js API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  const 
  
 taskKey 
  
 = 
  
 datastore 
 . 
 key 
 ([ 
  
 'TaskList' 
 , 
  
 'default' 
 , 
  
 'Task' 
 , 
  
 'sampleTask' 
 , 
 ]); 
 

PHP

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode PHP API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  $taskKey = $datastore->key('TaskList', 'default') 
 ->pathElement('Task', 'sampleTask'); 
 

Python

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Python API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  from 
  
 google.cloud 
  
 import 
  datastore 
 
 # For help authenticating your client, visit 
 # https://cloud.google.com/docs/authentication/getting-started 
 client 
 = 
  datastore 
 
 . 
  Client 
 
 () 
 key 
 = 
 client 
 . 
  key 
 
 ( 
 "TaskList" 
 , 
 "default" 
 , 
 "Task" 
 , 
 "sampleTask" 
 ) 
 # Alternatively 
 parent_key 
 = 
 client 
 . 
  key 
 
 ( 
 "TaskList" 
 , 
 "default" 
 ) 
 key 
 = 
 client 
 . 
  key 
 
 ( 
 "Task" 
 , 
 "sampleTask" 
 , 
 parent 
 = 
 parent_key 
 ) 
 

Ruby

To learn how to install and use the client library for Datastore mode, see Datastore mode client libraries . For more information, see the Datastore mode Ruby API reference documentation .

To authenticate to Datastore mode, set up Application Default Credentials. For more information, see Set up authentication for a local development environment .

  # task_list_name = "default" 
 # task_name = "sampleTask" 
 task_key 
  
 = 
  
 datastore 
 . 
 key 
  
 [[ 
 "TaskList" 
 , 
  
 task_list_name 
 ] 
 , 
  
 [ 
 "Task" 
 , 
  
 task_name 
 ]] 
 

What's next

To search and filter code samples for other Google Cloud products, see the Google Cloud sample browser .

Create a Mobile Website
View Site in Mobile | Classic
Share by: