Skip to content

Commit

Permalink
feat(release): Update SDK to use API generated on 2024-11-12 (#51)
Browse files Browse the repository at this point in the history
Signed-off-by: Ujjwal Kumar <[email protected]>
  • Loading branch information
ujjwal-ibm authored Nov 14, 2024
1 parent 800a042 commit 7ec83d4
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions examples/vpc.v1.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ describe('VpcV1', () => {

const params = {
id: data.vpcId,
name: 'my-vpc-modified',
name: 'my-vpc-updated',
};

const response = await vpcService.updateVpc(params);
Expand Down Expand Up @@ -642,7 +642,7 @@ describe('VpcV1', () => {
const params = {
vpcId: data.vpcId,
id: data.vpcRoutingTableId,
name: 'my-routing-table-modified',
name: 'my-routing-table-updated',
};

const response = await vpcService.updateVpcRoutingTable(params);
Expand Down Expand Up @@ -6694,7 +6694,7 @@ describe('VpcV1', () => {

const response = await vpcService.updateIkePolicy({
id: data.ikePolicyId,
name: 'my-ike-policy-modified',
name: 'my-ike-policy-updated',
dhGroup: 15,
});

Expand Down Expand Up @@ -8799,7 +8799,7 @@ describe('VpcV1', () => {

const params = {
id: data.endpointGatewayId,
name: 'my-endpoint-gateway-modified'
name: 'my-endpoint-gateway-updated'
};

const response = await vpcService.updateEndpointGateway(params);
Expand Down

0 comments on commit 7ec83d4

Please sign in to comment.