Skip to content

Commit 5e371b9

Browse files
docs: fix docstring formatting (googleapis#673)
- [ ] Regenerate this pull request now. Committer: @parthea PiperOrigin-RevId: 409547707 Source-Link: googleapis/googleapis@45a2c07 Source-Link: https://github.com/googleapis/googleapis-gen/commit/99869d7abffb7791a07b214ea3c5f2cc003ec0b0 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiOTk4NjlkN2FiZmZiNzc5MWEwN2IyMTRlYTNjNWYyY2MwMDNlYzBiMCJ9
1 parent c07eaef commit 5e371b9

File tree

4 files changed

+22
-2
lines changed

4 files changed

+22
-2
lines changed

java-resourcemanager/google-cloud-resourcemanager/src/main/java/com/google/cloud/resourcemanager/v3/ProjectsClient.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -461,14 +461,14 @@ public final UnaryCallable<ListProjectsRequest, ListProjectsResponse> listProjec
461461
* &#42;key&#42; is the name of a label) | Filters by label name. | ```
462462
* <p>Search expressions are case insensitive.
463463
* <p>Some examples queries:
464-
* <p>| Query | Description |
464+
* <p>``` | Query | Description |
465465
* |------------------|-----------------------------------------------------| | name:how&#42;
466466
* | The project's name starts with "how". | | name:Howl | The project's name is `Howl` or
467467
* `howl`. | | name:HOWL | Equivalent to above. | | NAME:howl | Equivalent to above. | |
468468
* labels.color:&#42; | The project has the label `color`. | | labels.color:red | The
469469
* project's label `color` has the value `red`. | | labels.color:red&amp;nbsp;labels.size:big
470470
* | The project's label `color` has the value `red` and its label `size` has the value `big`.
471-
* |
471+
* | ```
472472
* <p>If no query is specified, the call will return projects for which the user has the
473473
* `resourcemanager.projects.get` permission.
474474
* @throws com.google.api.gax.rpc.ApiException if the remote call fails

java-resourcemanager/proto-google-cloud-resourcemanager-v3/src/main/java/com/google/cloud/resourcemanager/v3/SearchProjectsRequest.java

+14
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
152152
* ```
153153
* Search expressions are case insensitive.
154154
* Some examples queries:
155+
* ```
155156
* | Query | Description |
156157
* |------------------|-----------------------------------------------------|
157158
* | name:how* | The project's name starts with "how". |
@@ -162,6 +163,7 @@ public static final com.google.protobuf.Descriptors.Descriptor getDescriptor() {
162163
* | labels.color:red | The project's label `color` has the value `red`. |
163164
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
164165
* the value `red` and its label `size` has the value `big`. |
166+
* ```
165167
* If no query is specified, the call will return projects for which the user
166168
* has the `resourcemanager.projects.get` permission.
167169
* </pre>
@@ -206,6 +208,7 @@ public java.lang.String getQuery() {
206208
* ```
207209
* Search expressions are case insensitive.
208210
* Some examples queries:
211+
* ```
209212
* | Query | Description |
210213
* |------------------|-----------------------------------------------------|
211214
* | name:how* | The project's name starts with "how". |
@@ -216,6 +219,7 @@ public java.lang.String getQuery() {
216219
* | labels.color:red | The project's label `color` has the value `red`. |
217220
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
218221
* the value `red` and its label `size` has the value `big`. |
222+
* ```
219223
* If no query is specified, the call will return projects for which the user
220224
* has the `resourcemanager.projects.get` permission.
221225
* </pre>
@@ -687,6 +691,7 @@ public Builder mergeFrom(
687691
* ```
688692
* Search expressions are case insensitive.
689693
* Some examples queries:
694+
* ```
690695
* | Query | Description |
691696
* |------------------|-----------------------------------------------------|
692697
* | name:how* | The project's name starts with "how". |
@@ -697,6 +702,7 @@ public Builder mergeFrom(
697702
* | labels.color:red | The project's label `color` has the value `red`. |
698703
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
699704
* the value `red` and its label `size` has the value `big`. |
705+
* ```
700706
* If no query is specified, the call will return projects for which the user
701707
* has the `resourcemanager.projects.get` permission.
702708
* </pre>
@@ -740,6 +746,7 @@ public java.lang.String getQuery() {
740746
* ```
741747
* Search expressions are case insensitive.
742748
* Some examples queries:
749+
* ```
743750
* | Query | Description |
744751
* |------------------|-----------------------------------------------------|
745752
* | name:how* | The project's name starts with "how". |
@@ -750,6 +757,7 @@ public java.lang.String getQuery() {
750757
* | labels.color:red | The project's label `color` has the value `red`. |
751758
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
752759
* the value `red` and its label `size` has the value `big`. |
760+
* ```
753761
* If no query is specified, the call will return projects for which the user
754762
* has the `resourcemanager.projects.get` permission.
755763
* </pre>
@@ -793,6 +801,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
793801
* ```
794802
* Search expressions are case insensitive.
795803
* Some examples queries:
804+
* ```
796805
* | Query | Description |
797806
* |------------------|-----------------------------------------------------|
798807
* | name:how* | The project's name starts with "how". |
@@ -803,6 +812,7 @@ public com.google.protobuf.ByteString getQueryBytes() {
803812
* | labels.color:red | The project's label `color` has the value `red`. |
804813
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
805814
* the value `red` and its label `size` has the value `big`. |
815+
* ```
806816
* If no query is specified, the call will return projects for which the user
807817
* has the `resourcemanager.projects.get` permission.
808818
* </pre>
@@ -845,6 +855,7 @@ public Builder setQuery(java.lang.String value) {
845855
* ```
846856
* Search expressions are case insensitive.
847857
* Some examples queries:
858+
* ```
848859
* | Query | Description |
849860
* |------------------|-----------------------------------------------------|
850861
* | name:how* | The project's name starts with "how". |
@@ -855,6 +866,7 @@ public Builder setQuery(java.lang.String value) {
855866
* | labels.color:red | The project's label `color` has the value `red`. |
856867
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
857868
* the value `red` and its label `size` has the value `big`. |
869+
* ```
858870
* If no query is specified, the call will return projects for which the user
859871
* has the `resourcemanager.projects.get` permission.
860872
* </pre>
@@ -893,6 +905,7 @@ public Builder clearQuery() {
893905
* ```
894906
* Search expressions are case insensitive.
895907
* Some examples queries:
908+
* ```
896909
* | Query | Description |
897910
* |------------------|-----------------------------------------------------|
898911
* | name:how* | The project's name starts with "how". |
@@ -903,6 +916,7 @@ public Builder clearQuery() {
903916
* | labels.color:red | The project's label `color` has the value `red`. |
904917
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
905918
* the value `red` and its label `size` has the value `big`. |
919+
* ```
906920
* If no query is specified, the call will return projects for which the user
907921
* has the `resourcemanager.projects.get` permission.
908922
* </pre>

java-resourcemanager/proto-google-cloud-resourcemanager-v3/src/main/java/com/google/cloud/resourcemanager/v3/SearchProjectsRequestOrBuilder.java

+4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ public interface SearchProjectsRequestOrBuilder
4747
* ```
4848
* Search expressions are case insensitive.
4949
* Some examples queries:
50+
* ```
5051
* | Query | Description |
5152
* |------------------|-----------------------------------------------------|
5253
* | name:how* | The project's name starts with "how". |
@@ -57,6 +58,7 @@ public interface SearchProjectsRequestOrBuilder
5758
* | labels.color:red | The project's label `color` has the value `red`. |
5859
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
5960
* the value `red` and its label `size` has the value `big`. |
61+
* ```
6062
* If no query is specified, the call will return projects for which the user
6163
* has the `resourcemanager.projects.get` permission.
6264
* </pre>
@@ -90,6 +92,7 @@ public interface SearchProjectsRequestOrBuilder
9092
* ```
9193
* Search expressions are case insensitive.
9294
* Some examples queries:
95+
* ```
9396
* | Query | Description |
9497
* |------------------|-----------------------------------------------------|
9598
* | name:how* | The project's name starts with "how". |
@@ -100,6 +103,7 @@ public interface SearchProjectsRequestOrBuilder
100103
* | labels.color:red | The project's label `color` has the value `red`. |
101104
* | labels.color:red&amp;nbsp;labels.size:big | The project's label `color` has
102105
* the value `red` and its label `size` has the value `big`. |
106+
* ```
103107
* If no query is specified, the call will return projects for which the user
104108
* has the `resourcemanager.projects.get` permission.
105109
* </pre>

java-resourcemanager/proto-google-cloud-resourcemanager-v3/src/main/proto/google/cloud/resourcemanager/v3/projects.proto

+2
Original file line numberDiff line numberDiff line change
@@ -466,6 +466,7 @@ message SearchProjectsRequest {
466466
//
467467
// Some examples queries:
468468
//
469+
// ```
469470
// | Query | Description |
470471
// |------------------|-----------------------------------------------------|
471472
// | name:how* | The project's name starts with "how". |
@@ -476,6 +477,7 @@ message SearchProjectsRequest {
476477
// | labels.color:red | The project's label `color` has the value `red`. |
477478
// | labels.color:red&nbsp;labels.size:big | The project's label `color` has
478479
// the value `red` and its label `size` has the value `big`. |
480+
// ```
479481
//
480482
// If no query is specified, the call will return projects for which the user
481483
// has the `resourcemanager.projects.get` permission.

0 commit comments

Comments
 (0)