| /external/google-cloud-java/google-cloud-examples/src/main/java/com/google/cloud/examples/datastore/snippets/ |
| D | TransactionSnippets.java | 23 package com.google.cloud.examples.datastore.snippets; 26 import com.google.cloud.datastore.Datastore; 27 import com.google.cloud.datastore.DatastoreException; 28 import com.google.cloud.datastore.Entity; 29 import com.google.cloud.datastore.FullEntity; 30 import com.google.cloud.datastore.IncompleteKey; 31 import com.google.cloud.datastore.Key; 32 import com.google.cloud.datastore.KeyFactory; 33 import com.google.cloud.datastore.Query; 34 import com.google.cloud.datastore.QueryResults; [all …]
|
| D | DatastoreSnippets.java | 19 * This file is referenced in Datastore's javadoc. Any change to this file should be reflected in 20 * Datastore's javadoc. 23 package com.google.cloud.examples.datastore.snippets; 25 import com.google.cloud.datastore.Batch; 26 import com.google.cloud.datastore.Datastore; 27 import com.google.cloud.datastore.Datastore.TransactionCallable; 28 import com.google.cloud.datastore.DatastoreException; 29 import com.google.cloud.datastore.DatastoreReaderWriter; 30 import com.google.cloud.datastore.Entity; 31 import com.google.cloud.datastore.IncompleteKey; [all …]
|
| D | AddEntitiesAndRunQuery.java | 23 package com.google.cloud.examples.datastore.snippets; 25 import com.google.cloud.datastore.Datastore; 26 import com.google.cloud.datastore.DatastoreOptions; 27 import com.google.cloud.datastore.Entity; 28 import com.google.cloud.datastore.Key; 29 import com.google.cloud.datastore.KeyFactory; 30 import com.google.cloud.datastore.Query; 31 import com.google.cloud.datastore.QueryResults; 32 import com.google.cloud.datastore.StructuredQuery.PropertyFilter; 35 * A snippet for Google Cloud Datastore showing how to create and get entities. The snippet also [all …]
|
| D | QuerySnippets.java | 23 package com.google.cloud.examples.datastore.snippets; 25 import com.google.cloud.datastore.Datastore; 26 import com.google.cloud.datastore.Entity; 27 import com.google.cloud.datastore.Key; 28 import com.google.cloud.datastore.ProjectionEntity; 29 import com.google.cloud.datastore.Query; 30 import com.google.cloud.datastore.QueryResults; 35 private final Datastore datastore; field in QuerySnippets 37 public QuerySnippets(Datastore datastore) { in QuerySnippets() argument 38 this.datastore = datastore; in QuerySnippets() [all …]
|
| D | UpdateEntity.java | 23 package com.google.cloud.examples.datastore.snippets; 26 import com.google.cloud.datastore.Datastore; 27 import com.google.cloud.datastore.DatastoreOptions; 28 import com.google.cloud.datastore.Entity; 29 import com.google.cloud.datastore.Key; 30 import com.google.cloud.datastore.KeyFactory; 32 /** A snippet for Google Cloud Datastore showing how to get an entity and update it if it exists. */ 36 Datastore datastore = DatastoreOptions.getDefaultInstance().getService(); in main() local 37 KeyFactory keyFactory = datastore.newKeyFactory().setKind("keyKind"); in main() 39 Entity entity = datastore.get(key); in main() [all …]
|
| D | CreateEntity.java | 23 package com.google.cloud.examples.datastore.snippets; 26 import com.google.cloud.datastore.Datastore; 27 import com.google.cloud.datastore.DatastoreOptions; 28 import com.google.cloud.datastore.Entity; 29 import com.google.cloud.datastore.Key; 30 import com.google.cloud.datastore.KeyFactory; 32 /** A snippet for Google Cloud Datastore showing how to create an entity. */ 36 Datastore datastore = DatastoreOptions.getDefaultInstance().getService(); in main() local 37 KeyFactory keyFactory = datastore.newKeyFactory().setKind("keyKind"); in main() 45 datastore.put(entity); in main()
|
| /external/google-cloud-java/google-cloud-examples/src/test/java/com/google/cloud/examples/datastore/snippets/ |
| D | ITTransactionSnippets.java | 17 package com.google.cloud.examples.datastore.snippets; 24 import com.google.cloud.datastore.Datastore; 25 import com.google.cloud.datastore.DatastoreOptions; 26 import com.google.cloud.datastore.Entity; 27 import com.google.cloud.datastore.Key; 28 import com.google.cloud.datastore.PathElement; 29 import com.google.cloud.datastore.Transaction; 41 private static Datastore datastore; field in ITTransactionSnippets 55 Key key = datastore.newKeyFactory().setKind(kind).newKey(keyName); in registerKey() 62 datastore = DatastoreOptions.getDefaultInstance().getService(); in beforeClass() [all …]
|
| D | ITQuerySnippets.java | 17 package com.google.cloud.examples.datastore.snippets; 19 import com.google.cloud.datastore.Datastore; 20 import com.google.cloud.datastore.DatastoreOptions; 21 import com.google.cloud.datastore.Entity; 22 import com.google.cloud.datastore.Key; 23 import com.google.cloud.datastore.ProjectionEntity; 24 import com.google.cloud.datastore.QueryResults; 38 private static Datastore datastore; field in ITQuerySnippets 54 datastore = DatastoreOptions.getDefaultInstance().getService(); in beforeClass() 55 Key key1 = Key.newBuilder(datastore.getOptions().getProjectId(), KIND, "key1").build(); in beforeClass() [all …]
|
| /external/googleapis/google/datastore/v1beta3/ |
| D | datastore.proto | 17 package google.datastore.v1beta3; 20 import "google/datastore/v1beta3/entity.proto"; 21 import "google/datastore/v1beta3/query.proto"; 23 option csharp_namespace = "Google.Cloud.Datastore.V1Beta3"; 24 option go_package = "google.golang.org/genproto/googleapis/datastore/v1beta3;datastore"; 27 option java_package = "com.google.datastore.v1beta3"; 28 option php_namespace = "Google\\Cloud\\Datastore\\V1beta3"; 29 option ruby_package = "Google::Cloud::Datastore::V1beta3"; 38 service Datastore { service 91 // Datastore. [all …]
|
| /external/googleapis/google/datastore/v1/ |
| D | datastore.proto | 17 package google.datastore.v1; 23 import "google/datastore/v1/aggregation_result.proto"; 24 import "google/datastore/v1/entity.proto"; 25 import "google/datastore/v1/query.proto"; 26 import "google/datastore/v1/query_profile.proto"; 29 option csharp_namespace = "Google.Cloud.Datastore.V1"; 30 option go_package = "google.golang.org/genproto/googleapis/datastore/v1;datastore"; 33 option java_package = "com.google.datastore.v1"; 34 option php_namespace = "Google\\Cloud\\Datastore\\V1"; 35 option ruby_package = "Google::Cloud::Datastore::V1"; [all …]
|
| D | datastore_grpc_service_config.json | 6 "service": "google.datastore.v1.Datastore", 10 "service": "google.datastore.v1.Datastore", 14 "service": "google.datastore.v1.Datastore", 18 "service": "google.datastore.v1.Datastore", 33 "service": "google.datastore.v1.Datastore", 37 "service": "google.datastore.v1.Datastore", 41 "service": "google.datastore.v1.Datastore", 45 "service": "google.datastore.v1.Datastore",
|
| /external/googleapis/google/cloud/discoveryengine/v1beta/ |
| D | data_store_service.proto | 39 // [DataStore][google.cloud.discoveryengine.v1beta.DataStore] configuration. 45 // Creates a [DataStore][google.cloud.discoveryengine.v1beta.DataStore]. 47 // DataStore is for storing 64 response_type: "google.cloud.discoveryengine.v1beta.DataStore" 69 // Gets a [DataStore][google.cloud.discoveryengine.v1beta.DataStore]. 70 rpc GetDataStore(GetDataStoreRequest) returns (DataStore) { 80 // Lists all the [DataStore][google.cloud.discoveryengine.v1beta.DataStore]s 92 // Deletes a [DataStore][google.cloud.discoveryengine.v1beta.DataStore]. 108 // Updates a [DataStore][google.cloud.discoveryengine.v1beta.DataStore] 109 rpc UpdateDataStore(UpdateDataStoreRequest) returns (DataStore) { [all …]
|
| /external/googleapis/google/cloud/discoveryengine/v1/ |
| D | data_store_service.proto | 38 // Service for managing [DataStore][google.cloud.discoveryengine.v1.DataStore] 45 // Creates a [DataStore][google.cloud.discoveryengine.v1.DataStore]. 47 // DataStore is for storing 64 response_type: "google.cloud.discoveryengine.v1.DataStore" 69 // Gets a [DataStore][google.cloud.discoveryengine.v1.DataStore]. 70 rpc GetDataStore(GetDataStoreRequest) returns (DataStore) { 80 // Lists all the [DataStore][google.cloud.discoveryengine.v1.DataStore]s 92 // Deletes a [DataStore][google.cloud.discoveryengine.v1.DataStore]. 108 // Updates a [DataStore][google.cloud.discoveryengine.v1.DataStore] 109 rpc UpdateDataStore(UpdateDataStoreRequest) returns (DataStore) { [all …]
|
| /external/googleapis/google/cloud/discoveryengine/v1alpha/ |
| D | data_store_service.proto | 40 // [DataStore][google.cloud.discoveryengine.v1alpha.DataStore] configuration. 46 // Creates a [DataStore][google.cloud.discoveryengine.v1alpha.DataStore]. 48 // DataStore is for storing 65 response_type: "google.cloud.discoveryengine.v1alpha.DataStore" 70 // Gets a [DataStore][google.cloud.discoveryengine.v1alpha.DataStore]. 71 rpc GetDataStore(GetDataStoreRequest) returns (DataStore) { 81 // Lists all the [DataStore][google.cloud.discoveryengine.v1alpha.DataStore]s 93 // Deletes a [DataStore][google.cloud.discoveryengine.v1alpha.DataStore]. 109 // Updates a [DataStore][google.cloud.discoveryengine.v1alpha.DataStore] 110 rpc UpdateDataStore(UpdateDataStoreRequest) returns (DataStore) { [all …]
|
| /external/googleapis/google/datastore/admin/v1/ |
| D | datastore_admin.proto | 17 package google.datastore.admin.v1; 22 import "google/datastore/admin/v1/index.proto"; 23 import "google/datastore/admin/v1/migration.proto"; 27 option csharp_namespace = "Google.Cloud.Datastore.Admin.V1"; 28 option go_package = "cloud.google.com/go/datastore/admin/apiv1/adminpb;adminpb"; 31 option java_package = "com.google.datastore.admin.v1"; 32 option php_namespace = "Google\\Cloud\\Datastore\\Admin\\V1"; 33 option ruby_package = "Google::Cloud::Datastore::Admin::V1"; 35 // Google Cloud Datastore Admin API 37 // The Datastore Admin API provides several admin services for Cloud Datastore. [all …]
|
| D | datastore_v1.yaml | 3 name: datastore.googleapis.com 4 title: Cloud Datastore API 7 - name: google.datastore.admin.v1.DatastoreAdmin 11 - name: google.datastore.admin.v1.DatastoreFirestoreMigrationMetadata 12 - name: google.datastore.admin.v1.ExportEntitiesMetadata 13 - name: google.datastore.admin.v1.ExportEntitiesResponse 14 - name: google.datastore.admin.v1.ImportEntitiesMetadata 15 - name: google.datastore.admin.v1.IndexOperationMetadata 16 - name: google.datastore.admin.v1.MigrationProgressEvent 17 - name: google.datastore.admin.v1.MigrationStateEvent [all …]
|
| /external/python/google-api-python-client/docs/dyn/ |
| D | apigee_v1.organizations.analytics.datastores.html | 82 <p class="firstline">Create a Datastore for an org</p> 85 <p class="firstline">Delete a Datastore from an org.</p> 88 <p class="firstline">Get a Datastore</p> 94 <p class="firstline">Test if Datastore configuration is correct. This includes checking if credenti… 97 <p class="firstline">Update a Datastore</p> 106 <pre>Create a Datastore for an org 114 …"createTime": "A String", # Output only. Datastore create time, in millisecond… 115 "datastoreConfig": { # Configuration detail for datastore # Datastore Configurations. 119 … "projectId": "A String", # Required. GCP project in which the datastore exists 123 …"lastUpdateTime": "A String", # Output only. Datastore last update time, in mi… [all …]
|
| /external/google-cloud-java/java-discoveryengine/proto-google-cloud-discoveryengine-v1beta/src/main/java/com/google/cloud/discoveryengine/v1beta/ |
| D | DataStoreName.java | 45 private final String dataStore; field in DataStoreName 52 dataStore = null; in DataStoreName() 59 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in DataStoreName() 68 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in DataStoreName() 81 return dataStore; in getDataStore() 107 public static DataStoreName of(String project, String location, String dataStore) { in of() argument 108 return newBuilder().setProject(project).setLocation(location).setDataStore(dataStore).build(); in of() 113 String project, String location, String dataStore) { in ofProjectLocationDataStoreName() argument 114 return newBuilder().setProject(project).setLocation(location).setDataStore(dataStore).build(); in ofProjectLocationDataStoreName() 119 String project, String location, String collection, String dataStore) { in ofProjectLocationCollectionDataStoreName() argument [all …]
|
| D | ServingConfigName.java | 45 private final String dataStore; field in ServingConfigName 53 dataStore = null; in ServingConfigName() 61 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in ServingConfigName() 71 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in ServingConfigName() 85 return dataStore; in getDataStore() 116 String project, String location, String dataStore, String servingConfig) { in of() argument 120 .setDataStore(dataStore) in of() 127 String project, String location, String dataStore, String servingConfig) { in ofProjectLocationDataStoreServingConfigName() argument 131 .setDataStore(dataStore) in ofProjectLocationDataStoreServingConfigName() 138 String project, String location, String collection, String dataStore, String servingConfig) { in ofProjectLocationCollectionDataStoreServingConfigName() argument [all …]
|
| D | SchemaName.java | 45 private final String dataStore; field in SchemaName 53 dataStore = null; in SchemaName() 61 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in SchemaName() 71 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in SchemaName() 85 return dataStore; in getDataStore() 115 public static SchemaName of(String project, String location, String dataStore, String schema) { in of() argument 119 .setDataStore(dataStore) in of() 126 String project, String location, String dataStore, String schema) { in ofProjectLocationDataStoreSchemaName() argument 130 .setDataStore(dataStore) in ofProjectLocationDataStoreSchemaName() 137 String project, String location, String collection, String dataStore, String schema) { in ofProjectLocationCollectionDataStoreSchemaName() argument [all …]
|
| D | BranchName.java | 45 private final String dataStore; field in BranchName 53 dataStore = null; in BranchName() 61 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in BranchName() 71 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in BranchName() 85 return dataStore; in getDataStore() 115 public static BranchName of(String project, String location, String dataStore, String branch) { in of() argument 119 .setDataStore(dataStore) in of() 126 String project, String location, String dataStore, String branch) { in ofProjectLocationDataStoreBranchName() argument 130 .setDataStore(dataStore) in ofProjectLocationDataStoreBranchName() 137 String project, String location, String collection, String dataStore, String branch) { in ofProjectLocationCollectionDataStoreBranchName() argument [all …]
|
| D | DocumentName.java | 45 private final String dataStore; field in DocumentName 54 dataStore = null; in DocumentName() 63 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in DocumentName() 74 dataStore = Preconditions.checkNotNull(builder.getDataStore()); in DocumentName() 89 return dataStore; in getDataStore() 124 String project, String location, String dataStore, String branch, String document) { in of() argument 128 .setDataStore(dataStore) in of() 136 String project, String location, String dataStore, String branch, String document) { in ofProjectLocationDataStoreBranchDocumentName() argument 140 .setDataStore(dataStore) in ofProjectLocationDataStoreBranchDocumentName() 151 String dataStore, in ofProjectLocationCollectionDataStoreBranchDocumentName() argument [all …]
|
| /external/googleapis/google/datastore/admin/v1beta1/ |
| D | datastore_admin.proto | 17 package google.datastore.admin.v1beta1; 23 option csharp_namespace = "Google.Cloud.Datastore.Admin.V1Beta1"; 24 option go_package = "google.golang.org/genproto/googleapis/datastore/admin/v1beta1;admin"; 27 option java_package = "com.google.datastore.admin.v1beta1"; 28 option ruby_package = "Google::Cloud::Datastore::Admin::V1beta1"; 30 // Google Cloud Datastore Admin API 32 // The Datastore Admin API provides several admin services for Cloud Datastore. 37 // Project, namespace, kind, and entity as defined in the Google Cloud Datastore 54 // Exported data may be imported into Cloud Datastore for any Google Cloud 82 // Exports a copy of all or a subset of entities from Google Cloud Datastore [all …]
|
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
| D | datastore.v1beta1.json | 8 "https://www.googleapis.com/auth/datastore": { 9 "description": "View and manage your Google Cloud Datastore data" 15 "baseUrl": "https://datastore.googleapis.com/", 19 "documentationLink": "https://cloud.google.com/datastore/", 25 "id": "datastore:v1beta1", 27 "mtlsRootUrl": "https://datastore.mtls.googleapis.com/", 28 "name": "datastore", 113 …"description": "Exports a copy of all or a subset of entities from Google Cloud Datastore to anoth… 116 "id": "datastore.projects.export", 137 "https://www.googleapis.com/auth/datastore" [all …]
|
| /external/googleapis/google/datastore/admin/ |
| D | BUILD.bazel | 2 # google-cloud-datastore-admin. 16 # Generates a Ruby wrapper client for datastore admin. 21 srcs = ["//google/datastore/admin/v1:admin_proto_with_info"], 23 "ruby-cloud-gem-name=google-cloud-datastore-admin", 24 "ruby-cloud-env-prefix=DATASTORE", 26 "ruby-cloud-product-url=https://cloud.google.com/datastore", 27 "ruby-cloud-api-id=datastore.googleapis.com", 28 "ruby-cloud-api-shortname=datastore", 30 …ruby_cloud_description = "Firestore in Datastore mode is a NoSQL document database built for autom… 31 ruby_cloud_title = "Firestore in Datastore mode Admin", [all …]
|