Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
fix: useless path template methods removed
Browse files Browse the repository at this point in the history
Co-authored-by: Alexander Fenster <github@fenster.name>
  • Loading branch information
yoshi-automation and alexander-fenster authored Feb 10, 2020
1 parent a607875 commit af1c939
Show file tree
Hide file tree
Showing 18 changed files with 10,406 additions and 10,318 deletions.
4 changes: 3 additions & 1 deletion .gitignore
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__
30 changes: 17 additions & 13 deletions protos/google/cloud/asset/v1p1beta1/asset_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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];
Expand Down Expand Up @@ -131,9 +132,10 @@ message SearchIamPoliciesRequest {
// * "policy:(myuser@mydomain.com 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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -209,9 +212,10 @@ message SearchAllIamPoliciesRequest {
// * "policy:(myuser@mydomain.com 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
Expand Down
4,392 changes: 2,196 additions & 2,196 deletions protos/protos.d.ts

Large diffs are not rendered by default.

15,356 changes: 7,678 additions & 7,678 deletions protos/protos.js

Large diffs are not rendered by default.

Loading

0 comments on commit af1c939

Please sign in to comment.