Search in sources :

Example 11 with ShelfName

use of com.google.example.library.v1.ShelfName in project gapic-generator-java by googleapis.

the class SyncMoveBookBooknameShelfname method syncMoveBookBooknameShelfname.

public static void syncMoveBookBooknameShelfname() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        BookName name = BookName.of("[SHELF]", "[BOOK]");
        ShelfName otherShelfName = ShelfName.of("[SHELF_ID]");
        Book response = libraryServiceClient.moveBook(name, otherShelfName);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book) BookName(com.google.example.library.v1.BookName) ShelfName(com.google.example.library.v1.ShelfName)

Example 12 with ShelfName

use of com.google.example.library.v1.ShelfName in project gapic-generator-java by googleapis.

the class SyncMoveBookStringShelfname method syncMoveBookStringShelfname.

public static void syncMoveBookStringShelfname() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        String name = BookName.of("[SHELF]", "[BOOK]").toString();
        ShelfName otherShelfName = ShelfName.of("[SHELF_ID]");
        Book response = libraryServiceClient.moveBook(name, otherShelfName);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) Book(com.google.example.library.v1.Book) ShelfName(com.google.example.library.v1.ShelfName)

Example 13 with ShelfName

use of com.google.example.library.v1.ShelfName in project gapic-generator-java by googleapis.

the class SyncGetShelfShelfname method syncGetShelfShelfname.

public static void syncGetShelfShelfname() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        ShelfName name = ShelfName.of("[SHELF_ID]");
        Shelf response = libraryServiceClient.getShelf(name);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) ShelfName(com.google.example.library.v1.ShelfName) Shelf(com.google.example.library.v1.Shelf)

Example 14 with ShelfName

use of com.google.example.library.v1.ShelfName in project gapic-generator-java by googleapis.

the class SyncMergeShelvesShelfnameString method syncMergeShelvesShelfnameString.

public static void syncMergeShelvesShelfnameString() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        ShelfName name = ShelfName.of("[SHELF_ID]");
        String otherShelf = ShelfName.of("[SHELF_ID]").toString();
        Shelf response = libraryServiceClient.mergeShelves(name, otherShelf);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) ShelfName(com.google.example.library.v1.ShelfName) Shelf(com.google.example.library.v1.Shelf)

Example 15 with ShelfName

use of com.google.example.library.v1.ShelfName in project gapic-generator-java by googleapis.

the class SyncMergeShelvesStringShelfname method syncMergeShelvesStringShelfname.

public static void syncMergeShelvesStringShelfname() throws Exception {
    // It may require modifications to work in your environment.
    try (LibraryServiceClient libraryServiceClient = LibraryServiceClient.create()) {
        String name = ShelfName.of("[SHELF_ID]").toString();
        ShelfName otherShelf = ShelfName.of("[SHELF_ID]");
        Shelf response = libraryServiceClient.mergeShelves(name, otherShelf);
    }
}
Also used : LibraryServiceClient(com.google.cloud.example.library.v1.LibraryServiceClient) ShelfName(com.google.example.library.v1.ShelfName) Shelf(com.google.example.library.v1.Shelf)

Aggregations

ShelfName (com.google.example.library.v1.ShelfName)26 Test (org.junit.Test)18 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)9 AbstractMessage (com.google.protobuf.AbstractMessage)9 StatusRuntimeException (io.grpc.StatusRuntimeException)9 LibraryServiceClient (com.google.cloud.example.library.v1.LibraryServiceClient)8 Book (com.google.example.library.v1.Book)8 Shelf (com.google.example.library.v1.Shelf)8 BookName (com.google.example.library.v1.BookName)3 MergeShelvesRequest (com.google.example.library.v1.MergeShelvesRequest)3 DeleteShelfRequest (com.google.example.library.v1.DeleteShelfRequest)2 MoveBookRequest (com.google.example.library.v1.MoveBookRequest)2 ListBooksPagedResponse (com.google.cloud.example.library.v1.LibraryServiceClient.ListBooksPagedResponse)1 CreateBookRequest (com.google.example.library.v1.CreateBookRequest)1 GetShelfRequest (com.google.example.library.v1.GetShelfRequest)1 ListBooksRequest (com.google.example.library.v1.ListBooksRequest)1 ListBooksResponse (com.google.example.library.v1.ListBooksResponse)1 Empty (com.google.protobuf.Empty)1