@@ -2143,15 +2143,15 @@ export class CloudCostManagementApiResponseProcessor {
21432143 */
21442144 public async getBudget (
21452145 response : ResponseContext
2146- ) : Promise < BudgetValidationRequest > {
2146+ ) : Promise < BudgetWithEntries > {
21472147 const contentType = ObjectSerializer . normalizeMediaType (
21482148 response . headers [ "content-type" ]
21492149 ) ;
21502150 if ( response . httpStatusCode === 200 ) {
2151- const body : BudgetValidationRequest = ObjectSerializer . deserialize (
2151+ const body : BudgetWithEntries = ObjectSerializer . deserialize (
21522152 ObjectSerializer . parse ( await response . body . text ( ) , contentType ) ,
2153- "BudgetValidationRequest "
2154- ) as BudgetValidationRequest ;
2153+ "BudgetWithEntries "
2154+ ) as BudgetWithEntries ;
21552155 return body ;
21562156 }
21572157 if ( response . httpStatusCode === 429 ) {
@@ -2177,11 +2177,11 @@ export class CloudCostManagementApiResponseProcessor {
21772177
21782178 // Work around for missing responses in specification, e.g. for petstore.yaml
21792179 if ( response . httpStatusCode >= 200 && response . httpStatusCode <= 299 ) {
2180- const body : BudgetValidationRequest = ObjectSerializer . deserialize (
2180+ const body : BudgetWithEntries = ObjectSerializer . deserialize (
21812181 ObjectSerializer . parse ( await response . body . text ( ) , contentType ) ,
2182- "BudgetValidationRequest " ,
2182+ "BudgetWithEntries " ,
21832183 ""
2184- ) as BudgetValidationRequest ;
2184+ ) as BudgetWithEntries ;
21852185 return body ;
21862186 }
21872187
@@ -4224,7 +4224,7 @@ export class CloudCostManagementApi {
42244224 public getBudget (
42254225 param : CloudCostManagementApiGetBudgetRequest ,
42264226 options ?: Configuration
4227- ) : Promise < BudgetValidationRequest > {
4227+ ) : Promise < BudgetWithEntries > {
42284228 const requestContextPromise = this . requestFactory . getBudget (
42294229 param . budgetId ,
42304230 options
0 commit comments