Skip to content

Commit

Permalink
feat(accessapproval): update the API
Browse files Browse the repository at this point in the history
#### accessapproval:v1
The following keys were added:
- schemas.DismissDecision.properties.implicit.description
- schemas.DismissDecision.properties.implicit.type
  • Loading branch information
yoshi-automation authored and sofisl committed Aug 3, 2020
1 parent c7f420d commit ae90a50
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
6 changes: 5 additions & 1 deletion discovery/accessapproval-v1.json
Original file line number Diff line number Diff line change
Expand Up @@ -754,7 +754,7 @@
}
}
},
"revision": "20200708",
"revision": "20200726",
"rootUrl": "https://accessapproval.googleapis.com/",
"schemas": {
"AccessApprovalSettings": {
Expand Down Expand Up @@ -915,6 +915,10 @@
"description": "The time at which the approval request was dismissed.",
"format": "google-datetime",
"type": "string"
},
"implicit": {
"description": "This field will be true if the ApprovalRequest was implcitly dismissed due\nto inaction by the access approval approvers (the request is not acted\non by the approvers before the exiration time).",
"type": "boolean"
}
},
"type": "object"
Expand Down
4 changes: 4 additions & 0 deletions src/apis/accessapproval/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,10 @@ export namespace accessapproval_v1 {
* The time at which the approval request was dismissed.
*/
dismissTime?: string | null;
/**
* This field will be true if the ApprovalRequest was implcitly dismissed due to inaction by the access approval approvers (the request is not acted on by the approvers before the exiration time).
*/
implicit?: boolean | null;
}
/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
Expand Down

0 comments on commit ae90a50

Please sign in to comment.