@@ -2506,14 +2506,14 @@ export class CloudCostManagementApiResponseProcessor {
25062506 */
25072507 public async getBudget (
25082508 response : ResponseContext ,
2509- ) : Promise < BudgetValidationRequest > {
2509+ ) : Promise < BudgetWithEntries > {
25102510 const contentType = normalizeMediaType ( response . headers [ "content-type" ] ) ;
25112511 if ( response . httpStatusCode === 200 ) {
2512- const body : BudgetValidationRequest = deserialize (
2512+ const body : BudgetWithEntries = deserialize (
25132513 parse ( await response . body . text ( ) , contentType ) ,
25142514 TypingInfo ,
2515- "BudgetValidationRequest " ,
2516- ) as BudgetValidationRequest ;
2515+ "BudgetWithEntries " ,
2516+ ) as BudgetWithEntries ;
25172517 return body ;
25182518 }
25192519 if ( response . httpStatusCode === 429 ) {
@@ -2537,12 +2537,12 @@ export class CloudCostManagementApiResponseProcessor {
25372537
25382538 // Work around for missing responses in specification, e.g. for petstore.yaml
25392539 if ( response . httpStatusCode >= 200 && response . httpStatusCode <= 299 ) {
2540- const body : BudgetValidationRequest = deserialize (
2540+ const body : BudgetWithEntries = deserialize (
25412541 parse ( await response . body . text ( ) , contentType ) ,
25422542 TypingInfo ,
2543- "BudgetValidationRequest " ,
2543+ "BudgetWithEntries " ,
25442544 "" ,
2545- ) as BudgetValidationRequest ;
2545+ ) as BudgetWithEntries ;
25462546 return body ;
25472547 }
25482548
@@ -4534,7 +4534,7 @@ export class CloudCostManagementApi {
45344534 public getBudget (
45354535 param : CloudCostManagementApiGetBudgetRequest ,
45364536 options ?: Configuration ,
4537- ) : Promise < BudgetValidationRequest > {
4537+ ) : Promise < BudgetWithEntries > {
45384538 const requestContextPromise = this . requestFactory . getBudget (
45394539 param . budgetId ,
45404540 options ,
0 commit comments