use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.
the class SyncCreateBookStringBook method syncCreateBookStringBook.
public static void syncCreateBookStringBook() throws Exception {
// It may require modifications to work in your environment.
try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
String parent = ShelfName.of("[SHELF_ID]").toString();
Book book = Book.newBuilder().build();
Book response = libraryServiceClient.createBook(parent, book);
}
}
use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.
the class SyncUpdateBookBookFieldmask method syncUpdateBookBookFieldmask.
public static void syncUpdateBookBookFieldmask() throws Exception {
// It may require modifications to work in your environment.
try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
Book book = Book.newBuilder().build();
FieldMask updateMask = FieldMask.newBuilder().build();
Book response = libraryServiceClient.updateBook(book, updateMask);
}
}
use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.
the class LibraryServiceClient method deleteBook.
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Deletes a book. Returns NOT_FOUND if the book does not exist.
*
* <p>Sample code:
*
* <pre>{@code
* // This snippet has been automatically generated for illustrative purposes only.
* // It may require modifications to work in your environment.
* try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
* BookName name = BookName.of("[SHELF]", "[BOOK]");
* libraryServiceClient.deleteBook(name);
* }
* }</pre>
*
* @param name The name of the book to delete.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteBook(BookName name) {
DeleteBookRequest request = DeleteBookRequest.newBuilder().setName(name == null ? null : name.toString()).build();
deleteBook(request);
}
use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.
the class LibraryServiceClient method deleteBook.
// AUTO-GENERATED DOCUMENTATION AND METHOD.
/**
* Deletes a book. Returns NOT_FOUND if the book does not exist.
*
* <p>Sample code:
*
* <pre>{@code
* // This snippet has been automatically generated for illustrative purposes only.
* // It may require modifications to work in your environment.
* try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
* String name = BookName.of("[SHELF]", "[BOOK]").toString();
* libraryServiceClient.deleteBook(name);
* }
* }</pre>
*
* @param name The name of the book to delete.
* @throws com.google.api.gax.rpc.ApiException if the remote call fails
*/
public final void deleteBook(String name) {
DeleteBookRequest request = DeleteBookRequest.newBuilder().setName(name).build();
deleteBook(request);
}
use of com.google.example.library.v1.Book in project gapic-generator-java by googleapis.
the class LibraryServiceClientTest method getBookExceptionTest.
@Test
public void getBookExceptionTest() throws Exception {
StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT);
mockLibraryService.addException(exception);
try {
BookName name = BookName.of("[SHELF]", "[BOOK]");
client.getBook(name);
Assert.fail("No exception raised");
} catch (InvalidArgumentException e) {
// Expected exception.
}
}
Aggregations