@@ -745,6 +745,7 @@ public void getTargetTest() throws Exception {
745
745
.setUpdateTime (Timestamp .newBuilder ().build ())
746
746
.setEtag ("etag3123477" )
747
747
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
748
+ .putAllDeployParameters (new HashMap <String , String >())
748
749
.build ();
749
750
mockService .addResponse (expectedResponse );
750
751
@@ -799,6 +800,7 @@ public void getTargetTest2() throws Exception {
799
800
.setUpdateTime (Timestamp .newBuilder ().build ())
800
801
.setEtag ("etag3123477" )
801
802
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
803
+ .putAllDeployParameters (new HashMap <String , String >())
802
804
.build ();
803
805
mockService .addResponse (expectedResponse );
804
806
@@ -853,6 +855,7 @@ public void createTargetTest() throws Exception {
853
855
.setUpdateTime (Timestamp .newBuilder ().build ())
854
856
.setEtag ("etag3123477" )
855
857
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
858
+ .putAllDeployParameters (new HashMap <String , String >())
856
859
.build ();
857
860
Operation resultOperation =
858
861
Operation .newBuilder ()
@@ -916,6 +919,7 @@ public void createTargetTest2() throws Exception {
916
919
.setUpdateTime (Timestamp .newBuilder ().build ())
917
920
.setEtag ("etag3123477" )
918
921
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
922
+ .putAllDeployParameters (new HashMap <String , String >())
919
923
.build ();
920
924
Operation resultOperation =
921
925
Operation .newBuilder ()
@@ -979,6 +983,7 @@ public void updateTargetTest() throws Exception {
979
983
.setUpdateTime (Timestamp .newBuilder ().build ())
980
984
.setEtag ("etag3123477" )
981
985
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
986
+ .putAllDeployParameters (new HashMap <String , String >())
982
987
.build ();
983
988
Operation resultOperation =
984
989
Operation .newBuilder ()
@@ -1001,6 +1006,7 @@ public void updateTargetTest() throws Exception {
1001
1006
.setUpdateTime (Timestamp .newBuilder ().build ())
1002
1007
.setEtag ("etag3123477" )
1003
1008
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
1009
+ .putAllDeployParameters (new HashMap <String , String >())
1004
1010
.build ();
1005
1011
FieldMask updateMask = FieldMask .newBuilder ().build ();
1006
1012
@@ -1043,6 +1049,7 @@ public void updateTargetExceptionTest() throws Exception {
1043
1049
.setUpdateTime (Timestamp .newBuilder ().build ())
1044
1050
.setEtag ("etag3123477" )
1045
1051
.addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
1052
+ .putAllDeployParameters (new HashMap <String , String >())
1046
1053
.build ();
1047
1054
FieldMask updateMask = FieldMask .newBuilder ().build ();
1048
1055
client .updateTargetAsync (target , updateMask ).get ();
@@ -1270,6 +1277,7 @@ public void getReleaseTest() throws Exception {
1270
1277
.putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
1271
1278
.putAllTargetRenders (new HashMap <String , Release .TargetRender >())
1272
1279
.setCondition (Release .ReleaseCondition .newBuilder ().build ())
1280
+ .putAllDeployParameters (new HashMap <String , String >())
1273
1281
.build ();
1274
1282
mockService .addResponse (expectedResponse );
1275
1283
@@ -1336,6 +1344,7 @@ public void getReleaseTest2() throws Exception {
1336
1344
.putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
1337
1345
.putAllTargetRenders (new HashMap <String , Release .TargetRender >())
1338
1346
.setCondition (Release .ReleaseCondition .newBuilder ().build ())
1347
+ .putAllDeployParameters (new HashMap <String , String >())
1339
1348
.build ();
1340
1349
mockService .addResponse (expectedResponse );
1341
1350
@@ -1402,6 +1411,7 @@ public void createReleaseTest() throws Exception {
1402
1411
.putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
1403
1412
.putAllTargetRenders (new HashMap <String , Release .TargetRender >())
1404
1413
.setCondition (Release .ReleaseCondition .newBuilder ().build ())
1414
+ .putAllDeployParameters (new HashMap <String , String >())
1405
1415
.build ();
1406
1416
Operation resultOperation =
1407
1417
Operation .newBuilder ()
@@ -1477,6 +1487,7 @@ public void createReleaseTest2() throws Exception {
1477
1487
.putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
1478
1488
.putAllTargetRenders (new HashMap <String , Release .TargetRender >())
1479
1489
.setCondition (Release .ReleaseCondition .newBuilder ().build ())
1490
+ .putAllDeployParameters (new HashMap <String , String >())
1480
1491
.build ();
1481
1492
Operation resultOperation =
1482
1493
Operation .newBuilder ()
0 commit comments