-
Notifications
You must be signed in to change notification settings - Fork 78
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(samples): add storage_grpc_quickstart and storage_grpc_quickstar…
…t_dp samples
- Loading branch information
1 parent
4b53ebc
commit 6d89c3f
Showing
3 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
samples/snippets/src/main/java/com/example/storage/QuickstartGrpcDpSample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright 2023 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_grpc_quickstart_dp] | ||
// Imports the Google Cloud client library | ||
import com.google.cloud.storage.Bucket; | ||
import com.google.cloud.storage.BucketInfo; | ||
import com.google.cloud.storage.Storage; | ||
import com.google.cloud.storage.StorageOptions; | ||
|
||
public class QuickstartGrpcDpSample { | ||
public static void main(String... args) throws Exception { | ||
|
||
StorageOptions options = StorageOptions.grpc().setAttemptDirectPath(true).build(); | ||
|
||
// Instantiates a client in a try-with-resource to automatically cleanup underlying resources | ||
try (Storage storage = options.getService()) { | ||
// The name for the new bucket | ||
String bucketName = args[0]; // "my-new-bucket"; | ||
|
||
// Creates the new bucket | ||
Bucket bucket = storage.create(BucketInfo.of(bucketName)); | ||
|
||
System.out.printf("Bucket %s created.%n", bucket.getName()); | ||
} | ||
} | ||
} | ||
// [END storage_grpc_quickstart_dp] |
43 changes: 43 additions & 0 deletions
43
samples/snippets/src/main/java/com/example/storage/QuickstartGrpcSample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright 2023 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_grpc_quickstart] | ||
// Imports the Google Cloud client library | ||
import com.google.cloud.storage.Bucket; | ||
import com.google.cloud.storage.BucketInfo; | ||
import com.google.cloud.storage.Storage; | ||
import com.google.cloud.storage.StorageOptions; | ||
|
||
public class QuickstartGrpcSample { | ||
public static void main(String... args) throws Exception { | ||
|
||
StorageOptions options = StorageOptions.grpc().build(); | ||
|
||
// Instantiates a client in a try-with-resource to automatically cleanup underlying resources | ||
try (Storage storage = options.getService()) { | ||
// The name for the new bucket | ||
String bucketName = args[0]; // "my-new-bucket"; | ||
|
||
// Creates the new bucket | ||
Bucket bucket = storage.create(BucketInfo.of(bucketName)); | ||
|
||
System.out.printf("Bucket %s created.%n", bucket.getName()); | ||
} | ||
} | ||
} | ||
// [END storage_grpc_quickstart] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters