@@ -426,8 +426,8 @@ export class JobsV1Beta3Client {
426426 options . otherArgs . headers = options . otherArgs . headers || { } ;
427427 options . otherArgs . headers [ 'x-goog-request-params' ] =
428428 this . _gaxModule . routingHeader . fromParams ( {
429- project_id : request . projectId || '' ,
430- location : request . location || '' ,
429+ project_id : request . projectId ?? '' ,
430+ location : request . location ?? '' ,
431431 } ) ;
432432 this . initialize ( ) ;
433433 return this . innerApiCalls . createJob ( request , options , callback ) ;
@@ -524,9 +524,9 @@ export class JobsV1Beta3Client {
524524 options . otherArgs . headers = options . otherArgs . headers || { } ;
525525 options . otherArgs . headers [ 'x-goog-request-params' ] =
526526 this . _gaxModule . routingHeader . fromParams ( {
527- project_id : request . projectId || '' ,
528- location : request . location || '' ,
529- job_id : request . jobId || '' ,
527+ project_id : request . projectId ?? '' ,
528+ location : request . location ?? '' ,
529+ job_id : request . jobId ?? '' ,
530530 } ) ;
531531 this . initialize ( ) ;
532532 return this . innerApiCalls . getJob ( request , options , callback ) ;
@@ -624,9 +624,9 @@ export class JobsV1Beta3Client {
624624 options . otherArgs . headers = options . otherArgs . headers || { } ;
625625 options . otherArgs . headers [ 'x-goog-request-params' ] =
626626 this . _gaxModule . routingHeader . fromParams ( {
627- project_id : request . projectId || '' ,
628- location : request . location || '' ,
629- job_id : request . jobId || '' ,
627+ project_id : request . projectId ?? '' ,
628+ location : request . location ?? '' ,
629+ job_id : request . jobId ?? '' ,
630630 } ) ;
631631 this . initialize ( ) ;
632632 return this . innerApiCalls . updateJob ( request , options , callback ) ;
@@ -800,9 +800,9 @@ export class JobsV1Beta3Client {
800800 options . otherArgs . headers = options . otherArgs . headers || { } ;
801801 options . otherArgs . headers [ 'x-goog-request-params' ] =
802802 this . _gaxModule . routingHeader . fromParams ( {
803- project_id : request . projectId || '' ,
804- location : request . location || '' ,
805- job_id : request . jobId || '' ,
803+ project_id : request . projectId ?? '' ,
804+ location : request . location ?? '' ,
805+ job_id : request . jobId ?? '' ,
806806 } ) ;
807807 this . initialize ( ) ;
808808 return this . innerApiCalls . snapshotJob ( request , options , callback ) ;
@@ -912,8 +912,8 @@ export class JobsV1Beta3Client {
912912 options . otherArgs . headers = options . otherArgs . headers || { } ;
913913 options . otherArgs . headers [ 'x-goog-request-params' ] =
914914 this . _gaxModule . routingHeader . fromParams ( {
915- project_id : request . projectId || '' ,
916- location : request . location || '' ,
915+ project_id : request . projectId ?? '' ,
916+ location : request . location ?? '' ,
917917 } ) ;
918918 this . initialize ( ) ;
919919 return this . innerApiCalls . listJobs ( request , options , callback ) ;
@@ -963,8 +963,8 @@ export class JobsV1Beta3Client {
963963 options . otherArgs . headers = options . otherArgs . headers || { } ;
964964 options . otherArgs . headers [ 'x-goog-request-params' ] =
965965 this . _gaxModule . routingHeader . fromParams ( {
966- project_id : request . projectId || '' ,
967- location : request . location || '' ,
966+ project_id : request . projectId ?? '' ,
967+ location : request . location ?? '' ,
968968 } ) ;
969969 const defaultCallSettings = this . _defaults [ 'listJobs' ] ;
970970 const callSettings = defaultCallSettings . merge ( options ) ;
@@ -1023,8 +1023,8 @@ export class JobsV1Beta3Client {
10231023 options . otherArgs . headers = options . otherArgs . headers || { } ;
10241024 options . otherArgs . headers [ 'x-goog-request-params' ] =
10251025 this . _gaxModule . routingHeader . fromParams ( {
1026- project_id : request . projectId || '' ,
1027- location : request . location || '' ,
1026+ project_id : request . projectId ?? '' ,
1027+ location : request . location ?? '' ,
10281028 } ) ;
10291029 const defaultCallSettings = this . _defaults [ 'listJobs' ] ;
10301030 const callSettings = defaultCallSettings . merge ( options ) ;
@@ -1132,7 +1132,7 @@ export class JobsV1Beta3Client {
11321132 options . otherArgs . headers = options . otherArgs . headers || { } ;
11331133 options . otherArgs . headers [ 'x-goog-request-params' ] =
11341134 this . _gaxModule . routingHeader . fromParams ( {
1135- project_id : request . projectId || '' ,
1135+ project_id : request . projectId ?? '' ,
11361136 } ) ;
11371137 this . initialize ( ) ;
11381138 return this . innerApiCalls . aggregatedListJobs ( request , options , callback ) ;
@@ -1182,7 +1182,7 @@ export class JobsV1Beta3Client {
11821182 options . otherArgs . headers = options . otherArgs . headers || { } ;
11831183 options . otherArgs . headers [ 'x-goog-request-params' ] =
11841184 this . _gaxModule . routingHeader . fromParams ( {
1185- project_id : request . projectId || '' ,
1185+ project_id : request . projectId ?? '' ,
11861186 } ) ;
11871187 const defaultCallSettings = this . _defaults [ 'aggregatedListJobs' ] ;
11881188 const callSettings = defaultCallSettings . merge ( options ) ;
@@ -1241,7 +1241,7 @@ export class JobsV1Beta3Client {
12411241 options . otherArgs . headers = options . otherArgs . headers || { } ;
12421242 options . otherArgs . headers [ 'x-goog-request-params' ] =
12431243 this . _gaxModule . routingHeader . fromParams ( {
1244- project_id : request . projectId || '' ,
1244+ project_id : request . projectId ?? '' ,
12451245 } ) ;
12461246 const defaultCallSettings = this . _defaults [ 'aggregatedListJobs' ] ;
12471247 const callSettings = defaultCallSettings . merge ( options ) ;
0 commit comments