@@ -3544,7 +3544,7 @@ AUTH_REQUEST_HANDLER_TESTS.forEach((handler) => {
3544
3544
3545
3545
if ( handler . supportsTenantManagement ) {
3546
3546
describe ( 'getTenant' , ( ) => {
3547
- const path = '/v2beta1 /projects/project_id/tenants/tenant-id' ;
3547
+ const path = '/v2 /projects/project_id/tenants/tenant-id' ;
3548
3548
const method = 'GET' ;
3549
3549
const tenantId = 'tenant-id' ;
3550
3550
const expectedResult = utils . responseFrom ( {
@@ -3600,7 +3600,7 @@ AUTH_REQUEST_HANDLER_TESTS.forEach((handler) => {
3600
3600
} ) ;
3601
3601
3602
3602
describe ( 'listTenants' , ( ) => {
3603
- const path = '/v2beta1 /projects/project_id/tenants' ;
3603
+ const path = '/v2 /projects/project_id/tenants' ;
3604
3604
const method = 'GET' ;
3605
3605
const nextPageToken = 'PAGE_TOKEN' ;
3606
3606
const maxResults = 500 ;
@@ -3716,7 +3716,7 @@ AUTH_REQUEST_HANDLER_TESTS.forEach((handler) => {
3716
3716
} ) ;
3717
3717
3718
3718
describe ( 'deleteTenant' , ( ) => {
3719
- const path = '/v2beta1 /projects/project_id/tenants/tenant-id' ;
3719
+ const path = '/v2 /projects/project_id/tenants/tenant-id' ;
3720
3720
const method = 'DELETE' ;
3721
3721
const tenantId = 'tenant-id' ;
3722
3722
const expectedResult = utils . responseFrom ( { } ) ;
@@ -3770,7 +3770,7 @@ AUTH_REQUEST_HANDLER_TESTS.forEach((handler) => {
3770
3770
} ) ;
3771
3771
3772
3772
describe ( 'createTenant' , ( ) => {
3773
- const path = '/v2beta1 /projects/project_id/tenants' ;
3773
+ const path = '/v2 /projects/project_id/tenants' ;
3774
3774
const postMethod = 'POST' ;
3775
3775
const tenantOptions : TenantOptions = {
3776
3776
displayName : 'TENANT-DISPLAY-NAME' ,
@@ -3881,7 +3881,7 @@ AUTH_REQUEST_HANDLER_TESTS.forEach((handler) => {
3881
3881
} ) ;
3882
3882
3883
3883
describe ( 'updateTenant' , ( ) => {
3884
- const path = '/v2beta1 /projects/project_id/tenants/tenant-id' ;
3884
+ const path = '/v2 /projects/project_id/tenants/tenant-id' ;
3885
3885
const patchMethod = 'PATCH' ;
3886
3886
const tenantId = 'tenant-id' ;
3887
3887
const tenantOptions = {
0 commit comments