From ae90a50b28eb531743329e4c06ecdb9b7ece71c6 Mon Sep 17 00:00:00 2001 From: yoshi-automation Date: Mon, 3 Aug 2020 04:29:03 -0700 Subject: [PATCH] feat(accessapproval): update the API #### accessapproval:v1 The following keys were added: - schemas.DismissDecision.properties.implicit.description - schemas.DismissDecision.properties.implicit.type --- discovery/accessapproval-v1.json | 6 +++++- src/apis/accessapproval/v1.ts | 4 ++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/discovery/accessapproval-v1.json b/discovery/accessapproval-v1.json index a967cb9a000..33077ede9a8 100644 --- a/discovery/accessapproval-v1.json +++ b/discovery/accessapproval-v1.json @@ -754,7 +754,7 @@ } } }, - "revision": "20200708", + "revision": "20200726", "rootUrl": "https://accessapproval.googleapis.com/", "schemas": { "AccessApprovalSettings": { @@ -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" diff --git a/src/apis/accessapproval/v1.ts b/src/apis/accessapproval/v1.ts index 4e3cea07006..c7c72452dba 100644 --- a/src/apis/accessapproval/v1.ts +++ b/src/apis/accessapproval/v1.ts @@ -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 `{}`.