Skip to content

Commit

Permalink
Add Storage quickstart sample.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmdobry committed Oct 7, 2016
1 parent 6e64eb1 commit 826f591
Show file tree
Hide file tree
Showing 6 changed files with 99 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,17 @@ public class QuickstartSample {
public static void main(String... args) throws Exception {
// Instantiates a client
BigQuery bigquery = BigQueryOptions.defaultInstance().service();

// The name for the new dataset
String datasetName = "my_new_dataset";

// Prepares a new dataset
Dataset dataset = null;
DatasetInfo datasetInfo = DatasetInfo.builder(datasetName).build();
// Creates the new dataset

// Creates the dataset
dataset = bigquery.create(datasetInfo);

System.out.printf("Dataset %s created.%n", dataset.datasetId().dataset());
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,22 @@ public class QuickstartSample {
public static void main(String... args) throws Exception {
// Instantiates a client
Datastore datastore = DatastoreOptions.defaultInstance().service();

// The kind for the new entity
String kind = "Task";
// The name/ID for the new entity
String name = "sampletask1";
// The Cloud Datastore key for the new entity
Key taskKey = datastore.newKeyFactory().kind(kind).newKey(name);

// Prepares the new entity
Entity task = Entity.builder(taskKey)
.set("description", "Buy milk")
.build();

// Saves the entity
datastore.put(task);

System.out.printf("Saved %s: %s%n", task.key().name(), task.getString("description"));
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,13 @@ public class QuickstartSample {
public static void main(String... args) throws Exception {
// Instantiates a client
PubSub pubsub = PubSubOptions.defaultInstance().service();

// The name for the new topic
String topicName = "my-new-topic";

// Creates the new topic
Topic topic = pubsub.create(TopicInfo.of(topicName));

System.out.printf("Topic %s created.%n", topic.name());
}
}
Expand Down
43 changes: 43 additions & 0 deletions storage/cloud-client/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<!--
Copyright 2016 Google Inc. All Rights Reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<project>
<modelVersion>4.0.0</modelVersion>
<groupId>come.example.storage</groupId>
<artifactId>storage-google-cloud-samples</artifactId>
<packaging>jar</packaging>

<!-- Parent defines config for testing & linting. -->
<parent>
<artifactId>doc-samples</artifactId>
<groupId>com.google.cloud</groupId>
<version>1.0.0</version>
<relativePath>../..</relativePath>
</parent>

<properties>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>google-cloud-storage</artifactId>
<version>0.4.0</version>
</dependency>
</dependencies>
</project>
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
/*
Copyright 2016, Google, Inc.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package com.example.storage;

// [START storage_quickstart]
// Imports the Google Cloud client library
import com.google.cloud.storage.Storage;
import com.google.cloud.storage.StorageOptions;
import com.google.cloud.storage.Bucket;
import com.google.cloud.storage.BucketInfo;

public class QuickstartSample {
public static void main(String... args) throws Exception {
// Instantiates a client
Storage storage = StorageOptions.defaultInstance().service();

// The name for the new bucket
String bucketName = "my-new-bucket";

// Creates the new bucket
Bucket bucket = storage.create(BucketInfo.of(bucketName));

System.out.printf("Bucket %s created.%n", bucket.name());
}
}
// [END storage_quickstart]
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@ public class QuickstartSample {
public static void main(String... args) throws Exception {
// Instantiates a client
Translate translate = TranslateOptions.builder().apiKey("YOUR_API_KEY").build().service();

// The text to translate
String text = "Hello, world!";

// Translates some text into Russian
Translation translation = translate.translate(
text,
TranslateOption.sourceLanguage("en"),
TranslateOption.targetLanguage("ru")
);

System.out.printf("Text: %s%n", text);
System.out.printf("Translation: %s%n", translation.translatedText());
}
Expand Down

0 comments on commit 826f591

Please sign in to comment.