File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export class FunctionsApiClient {
105
105
} ) ;
106
106
}
107
107
108
- private getUrl ( resourceName : utils . ParsedResource , UrlFormat : string ) : Promise < string > {
108
+ private getUrl ( resourceName : utils . ParsedResource , urlFormat : string ) : Promise < string > {
109
109
let { locationId } = resourceName ;
110
110
const { projectId, resourceId } = resourceName ;
111
111
if ( typeof locationId === 'undefined' || ! validator . isNonEmptyString ( locationId ) ) {
@@ -127,7 +127,7 @@ export class FunctionsApiClient {
127
127
// Formats a string of form 'project/{projectId}/{api}' and replaces
128
128
// with corresponding arguments {projectId: '1234', api: 'resource'}
129
129
// and returns output: 'project/1234/resource'.
130
- return utils . formatString ( UrlFormat , urlParams ) ;
130
+ return utils . formatString ( urlFormat , urlParams ) ;
131
131
} ) ;
132
132
}
133
133
You can’t perform that action at this time.
0 commit comments