@@ -540,7 +540,9 @@ describe('TransitGatewayApisV1', () => {
540540 transitGatewayId : transitGatewayId ,
541541 } ;
542542
543- const listTransitGatewayConnectionsResult = transitGatewayApisService . listTransitGatewayConnections ( params ) ;
543+ const listTransitGatewayConnectionsResult = transitGatewayApisService . listTransitGatewayConnections (
544+ params
545+ ) ;
544546
545547 // all methods should return a Promise
546548 expectToBePromise ( listTransitGatewayConnectionsResult ) ;
@@ -618,7 +620,8 @@ describe('TransitGatewayApisV1', () => {
618620 const localTunnelIp = '192.168.129.2' ;
619621 const name = 'Transit_Service_BWTN_SJ_DL' ;
620622 const networkAccountId = '28e4d90ac7504be694471ee66e70d0d5' ;
621- const networkId = 'crn:v1:bluemix:public:is:us-south:a/123456::vpc:4727d842-f94f-4a2d-824a-9bc9b02c523b' ;
623+ const networkId =
624+ 'crn:v1:bluemix:public:is:us-south:a/123456::vpc:4727d842-f94f-4a2d-824a-9bc9b02c523b' ;
622625 const remoteBgpAsn = '65010' ;
623626 const remoteGatewayIp = '10.242.63.12' ;
624627 const remoteTunnelIp = '192.168.129.1' ;
@@ -638,7 +641,9 @@ describe('TransitGatewayApisV1', () => {
638641 zone : zone ,
639642 } ;
640643
641- const createTransitGatewayConnectionResult = transitGatewayApisService . createTransitGatewayConnection ( params ) ;
644+ const createTransitGatewayConnectionResult = transitGatewayApisService . createTransitGatewayConnection (
645+ params
646+ ) ;
642647
643648 // all methods should return a Promise
644649 expectToBePromise ( createTransitGatewayConnectionResult ) ;
@@ -722,7 +727,9 @@ describe('TransitGatewayApisV1', () => {
722727 id : id ,
723728 } ;
724729
725- const deleteTransitGatewayConnectionResult = transitGatewayApisService . deleteTransitGatewayConnection ( params ) ;
730+ const deleteTransitGatewayConnectionResult = transitGatewayApisService . deleteTransitGatewayConnection (
731+ params
732+ ) ;
726733
727734 // all methods should return a Promise
728735 expectToBePromise ( deleteTransitGatewayConnectionResult ) ;
@@ -732,7 +739,11 @@ describe('TransitGatewayApisV1', () => {
732739
733740 const options = getOptions ( createRequestMock ) ;
734741
735- checkUrlAndMethod ( options , '/transit_gateways/{transit_gateway_id}/connections/{id}' , 'DELETE' ) ;
742+ checkUrlAndMethod (
743+ options ,
744+ '/transit_gateways/{transit_gateway_id}/connections/{id}' ,
745+ 'DELETE'
746+ ) ;
736747 const expectedAccept = undefined ;
737748 const expectedContentType = undefined ;
738749 checkMediaHeaders ( createRequestMock , expectedAccept , expectedContentType ) ;
@@ -796,7 +807,9 @@ describe('TransitGatewayApisV1', () => {
796807 id : id ,
797808 } ;
798809
799- const getTransitGatewayConnectionResult = transitGatewayApisService . getTransitGatewayConnection ( params ) ;
810+ const getTransitGatewayConnectionResult = transitGatewayApisService . getTransitGatewayConnection (
811+ params
812+ ) ;
800813
801814 // all methods should return a Promise
802815 expectToBePromise ( getTransitGatewayConnectionResult ) ;
@@ -806,7 +819,11 @@ describe('TransitGatewayApisV1', () => {
806819
807820 const options = getOptions ( createRequestMock ) ;
808821
809- checkUrlAndMethod ( options , '/transit_gateways/{transit_gateway_id}/connections/{id}' , 'GET' ) ;
822+ checkUrlAndMethod (
823+ options ,
824+ '/transit_gateways/{transit_gateway_id}/connections/{id}' ,
825+ 'GET'
826+ ) ;
810827 const expectedAccept = 'application/json' ;
811828 const expectedContentType = undefined ;
812829 checkMediaHeaders ( createRequestMock , expectedAccept , expectedContentType ) ;
@@ -872,7 +889,9 @@ describe('TransitGatewayApisV1', () => {
872889 name : name ,
873890 } ;
874891
875- const updateTransitGatewayConnectionResult = transitGatewayApisService . updateTransitGatewayConnection ( params ) ;
892+ const updateTransitGatewayConnectionResult = transitGatewayApisService . updateTransitGatewayConnection (
893+ params
894+ ) ;
876895
877896 // all methods should return a Promise
878897 expectToBePromise ( updateTransitGatewayConnectionResult ) ;
@@ -882,7 +901,11 @@ describe('TransitGatewayApisV1', () => {
882901
883902 const options = getOptions ( createRequestMock ) ;
884903
885- checkUrlAndMethod ( options , '/transit_gateways/{transit_gateway_id}/connections/{id}' , 'PATCH' ) ;
904+ checkUrlAndMethod (
905+ options ,
906+ '/transit_gateways/{transit_gateway_id}/connections/{id}' ,
907+ 'PATCH'
908+ ) ;
886909 const expectedAccept = 'application/json' ;
887910 const expectedContentType = 'application/json' ;
888911 checkMediaHeaders ( createRequestMock , expectedAccept , expectedContentType ) ;
@@ -949,7 +972,9 @@ describe('TransitGatewayApisV1', () => {
949972 action : action ,
950973 } ;
951974
952- const createTransitGatewayConnectionActionsResult = transitGatewayApisService . createTransitGatewayConnectionActions ( params ) ;
975+ const createTransitGatewayConnectionActionsResult = transitGatewayApisService . createTransitGatewayConnectionActions (
976+ params
977+ ) ;
953978
954979 // all methods should return a Promise
955980 expectToBePromise ( createTransitGatewayConnectionActionsResult ) ;
@@ -959,7 +984,11 @@ describe('TransitGatewayApisV1', () => {
959984
960985 const options = getOptions ( createRequestMock ) ;
961986
962- checkUrlAndMethod ( options , '/transit_gateways/{transit_gateway_id}/connections/{id}/actions' , 'POST' ) ;
987+ checkUrlAndMethod (
988+ options ,
989+ '/transit_gateways/{transit_gateway_id}/connections/{id}/actions' ,
990+ 'POST'
991+ ) ;
963992 const expectedAccept = undefined ;
964993 const expectedContentType = 'application/json' ;
965994 checkMediaHeaders ( createRequestMock , expectedAccept , expectedContentType ) ;
0 commit comments