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

Commit

Permalink
feat: turns on self-signed JWT feature flag (#561)
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 392067151
Source-Link: googleapis/googleapis@06345f7
Source-Link: googleapis/googleapis-gen@95882b3
  • Loading branch information
gcf-owl-bot[bot] committed Sep 7, 2021
1 parent b949ba9 commit 9fde4fe
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/v2/cloud_tasks_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ export class CloudTasksClient {
// Save the auth object to the client, for use by other methods.
this.auth = this._gaxGrpc.auth as gax.GoogleAuth;

// Set useJWTAccessWithScope on the auth object.
this.auth.useJWTAccessWithScope = true;

// Set defaultServicePath on the auth object.
this.auth.defaultServicePath = staticMembers.servicePath;

// Set the default scopes in auth client if needed.
if (servicePath === staticMembers.servicePath) {
this.auth.defaultScopes = staticMembers.scopes;
Expand Down
6 changes: 6 additions & 0 deletions src/v2beta2/cloud_tasks_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ export class CloudTasksClient {
// Save the auth object to the client, for use by other methods.
this.auth = this._gaxGrpc.auth as gax.GoogleAuth;

// Set useJWTAccessWithScope on the auth object.
this.auth.useJWTAccessWithScope = true;

// Set defaultServicePath on the auth object.
this.auth.defaultServicePath = staticMembers.servicePath;

// Set the default scopes in auth client if needed.
if (servicePath === staticMembers.servicePath) {
this.auth.defaultScopes = staticMembers.scopes;
Expand Down
6 changes: 6 additions & 0 deletions src/v2beta3/cloud_tasks_client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,12 @@ export class CloudTasksClient {
// Save the auth object to the client, for use by other methods.
this.auth = this._gaxGrpc.auth as gax.GoogleAuth;

// Set useJWTAccessWithScope on the auth object.
this.auth.useJWTAccessWithScope = true;

// Set defaultServicePath on the auth object.
this.auth.defaultServicePath = staticMembers.servicePath;

// Set the default scopes in auth client if needed.
if (servicePath === staticMembers.servicePath) {
this.auth.defaultScopes = staticMembers.scopes;
Expand Down

0 comments on commit 9fde4fe

Please sign in to comment.