Skip to content

Commit

Permalink
chore: test changes for FRIDGE-1605
Browse files Browse the repository at this point in the history
  • Loading branch information
tiwarishubham635 committed Sep 19, 2024
1 parent 6033208 commit 2faa1d2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/rest/serverless/v1/service/environment/deployment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,8 @@ import { isValidPathParam } from "../../../../../base/utility";
export interface DeploymentListInstanceCreateOptions {
/** The SID of the Build for the Deployment. */
buildSid?: string;
/** Whether the Deployment is a plugin. */
isPlugin?: boolean;
}
/**
* Options to pass to each
Expand Down Expand Up @@ -426,6 +428,8 @@ export function DeploymentListInstance(
let data: any = {};

if (params["buildSid"] !== undefined) data["BuildSid"] = params["buildSid"];
if (params["isPlugin"] !== undefined)
data["IsPlugin"] = serialize.bool(params["isPlugin"]);

const headers: any = {};
headers["Content-Type"] = "application/x-www-form-urlencoded";
Expand Down

0 comments on commit 2faa1d2

Please sign in to comment.