@@ -61,6 +61,7 @@ public void setInstanceLoginInfo(InstanceLoginInfo instanceLoginInfo) {
61
61
putQueryParameter ("InstanceLoginInfo.ExpireTime" , instanceLoginInfo .getExpireTime ());
62
62
putQueryParameter ("InstanceLoginInfo.Certificate" , instanceLoginInfo .getCertificate ());
63
63
putQueryParameter ("InstanceLoginInfo.AuthenticationType" , instanceLoginInfo .getAuthenticationType ());
64
+ putQueryParameter ("InstanceLoginInfo.DockerExec" , instanceLoginInfo .getDockerExec ());
64
65
putQueryParameter ("InstanceLoginInfo.Protocol" , instanceLoginInfo .getBizProtocol ());
65
66
putQueryParameter ("InstanceLoginInfo.Password" , instanceLoginInfo .getPassword ());
66
67
putQueryParameter ("InstanceLoginInfo.InstanceId" , instanceLoginInfo .getInstanceId ());
@@ -97,6 +98,7 @@ public void setInstanceLoginInfo(InstanceLoginInfo instanceLoginInfo) {
97
98
putQueryParameter ("InstanceLoginInfo.Options.NotificationRetryLimit" , instanceLoginInfo .getOptions ().getNotificationRetryLimit ());
98
99
}
99
100
putQueryParameter ("InstanceLoginInfo.InstanceType" , instanceLoginInfo .getInstanceType ());
101
+ putQueryParameter ("InstanceLoginInfo.DockerContainerName" , instanceLoginInfo .getDockerContainerName ());
100
102
putQueryParameter ("InstanceLoginInfo.PassPhrase" , instanceLoginInfo .getPassPhrase ());
101
103
putQueryParameter ("InstanceLoginInfo.DurationSeconds" , instanceLoginInfo .getDurationSeconds ());
102
104
putQueryParameter ("InstanceLoginInfo.NetworkAccessMode" , instanceLoginInfo .getNetworkAccessMode ());
@@ -158,6 +160,8 @@ public static class InstanceLoginInfo {
158
160
159
161
private String authenticationType ;
160
162
163
+ private String dockerExec ;
164
+
161
165
private String protocol ;
162
166
163
167
private String password ;
@@ -176,6 +180,8 @@ public static class InstanceLoginInfo {
176
180
177
181
private String instanceType ;
178
182
183
+ private String dockerContainerName ;
184
+
179
185
private String passPhrase ;
180
186
181
187
private Long durationSeconds ;
@@ -208,6 +214,14 @@ public void setAuthenticationType(String authenticationType) {
208
214
this .authenticationType = authenticationType ;
209
215
}
210
216
217
+ public String getDockerExec () {
218
+ return this .dockerExec ;
219
+ }
220
+
221
+ public void setDockerExec (String dockerExec ) {
222
+ this .dockerExec = dockerExec ;
223
+ }
224
+
211
225
public String getBizProtocol () {
212
226
return this .protocol ;
213
227
}
@@ -280,6 +294,14 @@ public void setInstanceType(String instanceType) {
280
294
this .instanceType = instanceType ;
281
295
}
282
296
297
+ public String getDockerContainerName () {
298
+ return this .dockerContainerName ;
299
+ }
300
+
301
+ public void setDockerContainerName (String dockerContainerName ) {
302
+ this .dockerContainerName = dockerContainerName ;
303
+ }
304
+
283
305
public String getPassPhrase () {
284
306
return this .passPhrase ;
285
307
}
0 commit comments