From e18a1d1131bed1ce355f9e91811a68b0799ca696 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Tue, 22 Jun 2021 20:20:32 +0000 Subject: [PATCH] fix: make request optional in all cases (#290) ... chore: update gapic-generator-ruby to the latest commit chore: release gapic-generator-typescript 1.5.0 Committer: @miraleung PiperOrigin-RevId: 380641501 Source-Link: https://github.com/googleapis/googleapis/commit/076f7e9f0b258bdb54338895d7251b202e8f0de3 Source-Link: https://github.com/googleapis/googleapis-gen/commit/27e4c88b4048e5f56508d4e1aa417d60a3380892 --- src/v1/recaptcha_enterprise_service_client.ts | 28 +++++++++---------- ...tcha_enterprise_service_v1_beta1_client.ts | 28 +++++++++---------- 2 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/v1/recaptcha_enterprise_service_client.ts b/src/v1/recaptcha_enterprise_service_client.ts index f2f96b2..b5e3832 100644 --- a/src/v1/recaptcha_enterprise_service_client.ts +++ b/src/v1/recaptcha_enterprise_service_client.ts @@ -313,7 +313,7 @@ export class RecaptchaEnterpriseServiceClient { // -- Service calls -- // ------------------- createAssessment( - request: protos.google.cloud.recaptchaenterprise.v1.ICreateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.ICreateAssessmentRequest, options?: CallOptions ): Promise< [ @@ -367,7 +367,7 @@ export class RecaptchaEnterpriseServiceClient { * const [response] = await client.createAssessment(request); */ createAssessment( - request: protos.google.cloud.recaptchaenterprise.v1.ICreateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.ICreateAssessmentRequest, optionsOrCallback?: | CallOptions | Callback< @@ -413,7 +413,7 @@ export class RecaptchaEnterpriseServiceClient { return this.innerApiCalls.createAssessment(request, options, callback); } annotateAssessment( - request: protos.google.cloud.recaptchaenterprise.v1.IAnnotateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IAnnotateAssessmentRequest, options?: CallOptions ): Promise< [ @@ -468,7 +468,7 @@ export class RecaptchaEnterpriseServiceClient { * const [response] = await client.annotateAssessment(request); */ annotateAssessment( - request: protos.google.cloud.recaptchaenterprise.v1.IAnnotateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IAnnotateAssessmentRequest, optionsOrCallback?: | CallOptions | Callback< @@ -514,7 +514,7 @@ export class RecaptchaEnterpriseServiceClient { return this.innerApiCalls.annotateAssessment(request, options, callback); } createKey( - request: protos.google.cloud.recaptchaenterprise.v1.ICreateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.ICreateKeyRequest, options?: CallOptions ): Promise< [ @@ -565,7 +565,7 @@ export class RecaptchaEnterpriseServiceClient { * const [response] = await client.createKey(request); */ createKey( - request: protos.google.cloud.recaptchaenterprise.v1.ICreateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.ICreateKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -608,7 +608,7 @@ export class RecaptchaEnterpriseServiceClient { return this.innerApiCalls.createKey(request, options, callback); } getKey( - request: protos.google.cloud.recaptchaenterprise.v1.IGetKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IGetKeyRequest, options?: CallOptions ): Promise< [ @@ -657,7 +657,7 @@ export class RecaptchaEnterpriseServiceClient { * const [response] = await client.getKey(request); */ getKey( - request: protos.google.cloud.recaptchaenterprise.v1.IGetKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IGetKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -700,7 +700,7 @@ export class RecaptchaEnterpriseServiceClient { return this.innerApiCalls.getKey(request, options, callback); } updateKey( - request: protos.google.cloud.recaptchaenterprise.v1.IUpdateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IUpdateKeyRequest, options?: CallOptions ): Promise< [ @@ -751,7 +751,7 @@ export class RecaptchaEnterpriseServiceClient { * const [response] = await client.updateKey(request); */ updateKey( - request: protos.google.cloud.recaptchaenterprise.v1.IUpdateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IUpdateKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -794,7 +794,7 @@ export class RecaptchaEnterpriseServiceClient { return this.innerApiCalls.updateKey(request, options, callback); } deleteKey( - request: protos.google.cloud.recaptchaenterprise.v1.IDeleteKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IDeleteKeyRequest, options?: CallOptions ): Promise< [ @@ -843,7 +843,7 @@ export class RecaptchaEnterpriseServiceClient { * const [response] = await client.deleteKey(request); */ deleteKey( - request: protos.google.cloud.recaptchaenterprise.v1.IDeleteKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IDeleteKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -887,7 +887,7 @@ export class RecaptchaEnterpriseServiceClient { } listKeys( - request: protos.google.cloud.recaptchaenterprise.v1.IListKeysRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IListKeysRequest, options?: CallOptions ): Promise< [ @@ -945,7 +945,7 @@ export class RecaptchaEnterpriseServiceClient { * for more details and examples. */ listKeys( - request: protos.google.cloud.recaptchaenterprise.v1.IListKeysRequest, + request?: protos.google.cloud.recaptchaenterprise.v1.IListKeysRequest, optionsOrCallback?: | CallOptions | PaginationCallback< diff --git a/src/v1beta1/recaptcha_enterprise_service_v1_beta1_client.ts b/src/v1beta1/recaptcha_enterprise_service_v1_beta1_client.ts index 7d3bd29..318dc5a 100644 --- a/src/v1beta1/recaptcha_enterprise_service_v1_beta1_client.ts +++ b/src/v1beta1/recaptcha_enterprise_service_v1_beta1_client.ts @@ -313,7 +313,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { // -- Service calls -- // ------------------- createAssessment( - request: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateAssessmentRequest, options?: CallOptions ): Promise< [ @@ -367,7 +367,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * const [response] = await client.createAssessment(request); */ createAssessment( - request: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateAssessmentRequest, optionsOrCallback?: | CallOptions | Callback< @@ -413,7 +413,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { return this.innerApiCalls.createAssessment(request, options, callback); } annotateAssessment( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IAnnotateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IAnnotateAssessmentRequest, options?: CallOptions ): Promise< [ @@ -468,7 +468,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * const [response] = await client.annotateAssessment(request); */ annotateAssessment( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IAnnotateAssessmentRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IAnnotateAssessmentRequest, optionsOrCallback?: | CallOptions | Callback< @@ -514,7 +514,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { return this.innerApiCalls.annotateAssessment(request, options, callback); } createKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateKeyRequest, options?: CallOptions ): Promise< [ @@ -568,7 +568,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * const [response] = await client.createKey(request); */ createKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.ICreateKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -614,7 +614,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { return this.innerApiCalls.createKey(request, options, callback); } getKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IGetKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IGetKeyRequest, options?: CallOptions ): Promise< [ @@ -666,7 +666,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * const [response] = await client.getKey(request); */ getKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IGetKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IGetKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -712,7 +712,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { return this.innerApiCalls.getKey(request, options, callback); } updateKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IUpdateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IUpdateKeyRequest, options?: CallOptions ): Promise< [ @@ -766,7 +766,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * const [response] = await client.updateKey(request); */ updateKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IUpdateKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IUpdateKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -812,7 +812,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { return this.innerApiCalls.updateKey(request, options, callback); } deleteKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IDeleteKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IDeleteKeyRequest, options?: CallOptions ): Promise< [ @@ -864,7 +864,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * const [response] = await client.deleteKey(request); */ deleteKey( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IDeleteKeyRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IDeleteKeyRequest, optionsOrCallback?: | CallOptions | Callback< @@ -911,7 +911,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { } listKeys( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IListKeysRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IListKeysRequest, options?: CallOptions ): Promise< [ @@ -969,7 +969,7 @@ export class RecaptchaEnterpriseServiceV1Beta1Client { * for more details and examples. */ listKeys( - request: protos.google.cloud.recaptchaenterprise.v1beta1.IListKeysRequest, + request?: protos.google.cloud.recaptchaenterprise.v1beta1.IListKeysRequest, optionsOrCallback?: | CallOptions | PaginationCallback<