You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: update javadocs for Client classes to include table of methods (#2114)
* feat: update javadocs for Client classes to include table of methods and method variants
* fix lint
* update showcase goldens
* remove unnecessary newlines and encapsulate method description within <p> tags
* fix lint
* update showcase goldens
* test remove cache for golden test
* update integration goldens
* adding back in cache
* update integration goldens
* test change to ci
* update ci comment
* update to use linkedhashmap for consistent ordering
* update showcase goldens
* fix lint
* refactor
* refactor
* fix lint and showcase goldens
* update showcase goldens
* include all parameters, not just first one
* include primitive types and update indentation
Copy file name to clipboardexpand all lines: gapic-generator-java/DEVELOPMENT.md
+9
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,8 @@ than the "test" phase.
50
50
To run integration test for gapic-generator-java, run this Bazel command in the
51
51
root of the repository (where you have WORKSPACE file for Bazel.)
52
52
53
+
*Note* Make sure you run `mvn clean install` to gather any changes you have made before updating the integration tests.
54
+
53
55
```sh
54
56
# In the repository root directory
55
57
bazelisk test //... # integration tests
@@ -73,6 +75,13 @@ bazelisk test //... # integration tests
73
75
bazelisk run //test/integration:update_redis
74
76
```
75
77
78
+
- To update all integration tests you can use this command:
79
+
80
+
```sh
81
+
# In the repository root directory
82
+
bazelisk run //test/integration:update_asset && bazelisk run //test/integration:update_credentials && bazelisk run //test/integration:update_iam && bazelisk run //test/integration:update_kms && bazelisk run //test/integration:update_pubsub && bazelisk run //test/integration:update_logging && bazelisk run //test/integration:update_redis && bazelisk run //test/integration:update_storage && bazelisk run //test/integration:update_library && bazelisk run //test/integration:update_compute && bazelisk run //test/integration:update_bigtable && bazelisk run //test/integration:update_apigeeconnect
83
+
```
84
+
76
85
## Running the Plugin under googleapis with local gapic-generator-java
77
86
78
87
For running the Plugin with showcase protos and local gapic-generator-java, see
Copy file name to clipboardexpand all lines: gapic-generator-java/src/main/java/com/google/api/generator/gapic/composer/comment/ServiceClientCommentComposer.java
"<p>\"Flattened\" method variants have converted the fields of the request object into function parameters to enable multiple ways to call the same method.</p>\n";
224
+
StringREQUEST_OBJECT_METHODS =
225
+
"<p>Request object method variants only take one parameter, a request object, which must be constructed before the call.</p>\n";
226
+
StringCALLABLE_METHODS =
227
+
"<p>Callable method variants take no parameters and return an immutable API callable object, which can be used to initiate calls to the service.</p>\n";
228
+
StringASYNC_METHODS =
229
+
"<p>Methods that return long-running operations have \"Async\" method variants that return `OperationFuture`, which is used to track polling of the service.</p>\n";
230
+
231
+
StringBuildertableBuilder = newStringBuilder();
232
+
tableBuilder
233
+
.append("<table>\n")
234
+
.append(" <tr>\n")
235
+
.append(" <th>Method</th>\n")
236
+
.append(" <th>Description</th>\n")
237
+
.append(" <th>Method Variants</th>\n");
238
+
for (MethodAndVariantsmethod : methodAndVariantsList) {
Copy file name to clipboardexpand all lines: gapic-generator-java/src/main/java/com/google/api/generator/gapic/composer/common/AbstractServiceClientClassComposer.java
+71-7
Original file line number
Diff line number
Diff line change
@@ -139,11 +139,10 @@ public GapicClass generate(GapicContext context, Service service) {
0 commit comments