-
Notifications
You must be signed in to change notification settings - Fork 603
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: useless path template methods removed
Co-authored-by: Alexander Fenster <[email protected]>
- Loading branch information
1 parent
98caa74
commit 45cdbcd
Showing
18 changed files
with
10,406 additions
and
10,318 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,12 +1,14 @@ | ||
**/*.log | ||
**/node_modules | ||
.coverage | ||
coverage | ||
.nyc_output | ||
docs/ | ||
out/ | ||
build/ | ||
system-test/secrets.js | ||
system-test/*key.json | ||
*.lock | ||
**/package-lock.json | ||
.DS_Store | ||
package-lock.json | ||
__pycache__ |
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 |
---|---|---|
|
@@ -93,13 +93,14 @@ message SearchResourcesRequest { | |
// search all the supported asset types. | ||
repeated string asset_types = 3 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. The page size for search result pagination. Returned results may be fewer | ||
// than requested. The value of this field is capped at 2000. If set to the | ||
// zero value, server will pick an appropriate default. | ||
// Optional. The page size for search result pagination. Page size is capped at 500 even | ||
// if a larger value is given. If set to zero, server will pick an appropriate | ||
// default. Returned results may be fewer than requested. When this happens, | ||
// there could be more results as long as `next_page_token` is returned. | ||
int32 page_size = 4 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. If present, then retrieve the next batch of results from the preceding call | ||
// to this method. `page_token` must be the value of `next_page_token` from | ||
// to this method. `page_token` must be the value of `next_page_token` from | ||
// the previous response. The values of all other method parameters, must be | ||
// identical to those in the previous call. | ||
string page_token = 5 [(google.api.field_behavior) = OPTIONAL]; | ||
|
@@ -131,9 +132,10 @@ message SearchIamPoliciesRequest { | |
// * "policy:([email protected] viewer)" | ||
string query = 1 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. The page size for search result pagination. Returned results may be fewer | ||
// than requested. The maximum is 2000. If set to the zero value, the server | ||
// will pick an appropriate default. | ||
// Optional. The page size for search result pagination. Page size is capped at 500 even | ||
// if a larger value is given. If set to zero, server will pick an appropriate | ||
// default. Returned results may be fewer than requested. When this happens, | ||
// there could be more results as long as `next_page_token` is returned. | ||
int32 page_size = 2 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. If present, retrieve the next batch of results from the preceding call to | ||
|
@@ -171,9 +173,10 @@ message SearchAllResourcesRequest { | |
// search all the supported asset types. | ||
repeated string asset_types = 3 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. The page size for search result pagination. Returned results may be fewer | ||
// than requested. The value of this field is capped at 2000. If set to the | ||
// zero value, server will pick an appropriate default. | ||
// Optional. The page size for search result pagination. Page size is capped at 500 even | ||
// if a larger value is given. If set to zero, server will pick an appropriate | ||
// default. Returned results may be fewer than requested. When this happens, | ||
// there could be more results as long as `next_page_token` is returned. | ||
int32 page_size = 4 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. If present, then retrieve the next batch of results from the preceding call | ||
|
@@ -209,9 +212,10 @@ message SearchAllIamPoliciesRequest { | |
// * "policy:([email protected] viewer)" | ||
string query = 2 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. The page size for search result pagination. Returned results may be fewer | ||
// than requested. The maximum is 2000. If set to the zero value, the server | ||
// will pick an appropriate default. | ||
// Optional. The page size for search result pagination. Page size is capped at 500 even | ||
// if a larger value is given. If set to zero, server will pick an appropriate | ||
// default. Returned results may be fewer than requested. When this happens, | ||
// there could be more results as long as `next_page_token` is returned. | ||
int32 page_size = 3 [(google.api.field_behavior) = OPTIONAL]; | ||
|
||
// Optional. If present, retrieve the next batch of results from the preceding call to | ||
|
4,392 changes: 2,196 additions & 2,196 deletions
4,392
packages/google-cloud-asset/protos/protos.d.ts
Large diffs are not rendered by default.
Oops, something went wrong.
15,356 changes: 7,678 additions & 7,678 deletions
15,356
packages/google-cloud-asset/protos/protos.js
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.