@@ -745,6 +745,7 @@ public void getTargetTest() throws Exception {
745745 .setUpdateTime (Timestamp .newBuilder ().build ())
746746 .setEtag ("etag3123477" )
747747 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
748+ .putAllDeployParameters (new HashMap <String , String >())
748749 .build ();
749750 mockService .addResponse (expectedResponse );
750751
@@ -799,6 +800,7 @@ public void getTargetTest2() throws Exception {
799800 .setUpdateTime (Timestamp .newBuilder ().build ())
800801 .setEtag ("etag3123477" )
801802 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
803+ .putAllDeployParameters (new HashMap <String , String >())
802804 .build ();
803805 mockService .addResponse (expectedResponse );
804806
@@ -853,6 +855,7 @@ public void createTargetTest() throws Exception {
853855 .setUpdateTime (Timestamp .newBuilder ().build ())
854856 .setEtag ("etag3123477" )
855857 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
858+ .putAllDeployParameters (new HashMap <String , String >())
856859 .build ();
857860 Operation resultOperation =
858861 Operation .newBuilder ()
@@ -916,6 +919,7 @@ public void createTargetTest2() throws Exception {
916919 .setUpdateTime (Timestamp .newBuilder ().build ())
917920 .setEtag ("etag3123477" )
918921 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
922+ .putAllDeployParameters (new HashMap <String , String >())
919923 .build ();
920924 Operation resultOperation =
921925 Operation .newBuilder ()
@@ -979,6 +983,7 @@ public void updateTargetTest() throws Exception {
979983 .setUpdateTime (Timestamp .newBuilder ().build ())
980984 .setEtag ("etag3123477" )
981985 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
986+ .putAllDeployParameters (new HashMap <String , String >())
982987 .build ();
983988 Operation resultOperation =
984989 Operation .newBuilder ()
@@ -1001,6 +1006,7 @@ public void updateTargetTest() throws Exception {
10011006 .setUpdateTime (Timestamp .newBuilder ().build ())
10021007 .setEtag ("etag3123477" )
10031008 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
1009+ .putAllDeployParameters (new HashMap <String , String >())
10041010 .build ();
10051011 FieldMask updateMask = FieldMask .newBuilder ().build ();
10061012
@@ -1043,6 +1049,7 @@ public void updateTargetExceptionTest() throws Exception {
10431049 .setUpdateTime (Timestamp .newBuilder ().build ())
10441050 .setEtag ("etag3123477" )
10451051 .addAllExecutionConfigs (new ArrayList <ExecutionConfig >())
1052+ .putAllDeployParameters (new HashMap <String , String >())
10461053 .build ();
10471054 FieldMask updateMask = FieldMask .newBuilder ().build ();
10481055 client .updateTargetAsync (target , updateMask ).get ();
@@ -1270,6 +1277,7 @@ public void getReleaseTest() throws Exception {
12701277 .putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
12711278 .putAllTargetRenders (new HashMap <String , Release .TargetRender >())
12721279 .setCondition (Release .ReleaseCondition .newBuilder ().build ())
1280+ .putAllDeployParameters (new HashMap <String , String >())
12731281 .build ();
12741282 mockService .addResponse (expectedResponse );
12751283
@@ -1336,6 +1344,7 @@ public void getReleaseTest2() throws Exception {
13361344 .putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
13371345 .putAllTargetRenders (new HashMap <String , Release .TargetRender >())
13381346 .setCondition (Release .ReleaseCondition .newBuilder ().build ())
1347+ .putAllDeployParameters (new HashMap <String , String >())
13391348 .build ();
13401349 mockService .addResponse (expectedResponse );
13411350
@@ -1402,6 +1411,7 @@ public void createReleaseTest() throws Exception {
14021411 .putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
14031412 .putAllTargetRenders (new HashMap <String , Release .TargetRender >())
14041413 .setCondition (Release .ReleaseCondition .newBuilder ().build ())
1414+ .putAllDeployParameters (new HashMap <String , String >())
14051415 .build ();
14061416 Operation resultOperation =
14071417 Operation .newBuilder ()
@@ -1477,6 +1487,7 @@ public void createReleaseTest2() throws Exception {
14771487 .putAllTargetArtifacts (new HashMap <String , TargetArtifact >())
14781488 .putAllTargetRenders (new HashMap <String , Release .TargetRender >())
14791489 .setCondition (Release .ReleaseCondition .newBuilder ().build ())
1490+ .putAllDeployParameters (new HashMap <String , String >())
14801491 .build ();
14811492 Operation resultOperation =
14821493 Operation .newBuilder ()
0 commit comments