Skip to content

Commit 3c89e62

Browse files
author
BitsAdmin
committed
Merge branch 'vefaas-Java-2024-06-06-online-759-2024_11_07_11_26_33' into 'integration_2024-11-14_582008940034'
feat: [development task] vefaas-759-Java (852009) See merge request iaasng/volcengine-java-sdk!291
2 parents 0d15853 + cee845c commit 3c89e62

File tree

1 file changed

+24
-1
lines changed

1 file changed

+24
-1
lines changed

volcengine-java-sdk-vefaas/src/main/java/com/volcengine/vefaas/model/ItemForListFunctionsOutput.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ public class ItemForListFunctionsOutput {
4444
@SerializedName("CodeSizeLimit")
4545
private Integer codeSizeLimit = null;
4646

47+
@SerializedName("Command")
48+
private String command = null;
49+
4750
@SerializedName("CreationTime")
4851
private String creationTime = null;
4952

@@ -149,6 +152,24 @@ public void setCodeSizeLimit(Integer codeSizeLimit) {
149152
this.codeSizeLimit = codeSizeLimit;
150153
}
151154

155+
public ItemForListFunctionsOutput command(String command) {
156+
this.command = command;
157+
return this;
158+
}
159+
160+
/**
161+
* Get command
162+
* @return command
163+
**/
164+
@Schema(description = "")
165+
public String getCommand() {
166+
return command;
167+
}
168+
169+
public void setCommand(String command) {
170+
this.command = command;
171+
}
172+
152173
public ItemForListFunctionsOutput creationTime(String creationTime) {
153174
this.creationTime = creationTime;
154175
return this;
@@ -597,6 +618,7 @@ public boolean equals(java.lang.Object o) {
597618
ItemForListFunctionsOutput itemForListFunctionsOutput = (ItemForListFunctionsOutput) o;
598619
return Objects.equals(this.codeSize, itemForListFunctionsOutput.codeSize) &&
599620
Objects.equals(this.codeSizeLimit, itemForListFunctionsOutput.codeSizeLimit) &&
621+
Objects.equals(this.command, itemForListFunctionsOutput.command) &&
600622
Objects.equals(this.creationTime, itemForListFunctionsOutput.creationTime) &&
601623
Objects.equals(this.description, itemForListFunctionsOutput.description) &&
602624
Objects.equals(this.envs, itemForListFunctionsOutput.envs) &&
@@ -624,7 +646,7 @@ public boolean equals(java.lang.Object o) {
624646

625647
@Override
626648
public int hashCode() {
627-
return Objects.hash(codeSize, codeSizeLimit, creationTime, description, envs, exclusiveMode, id, initializerSec, instanceType, lastUpdateTime, maxConcurrency, memoryMB, name, nasStorage, owner, projectName, requestTimeout, runtime, sourceLocation, sourceType, tags, tlsConfig, tosMountConfig, triggersCount, vpcConfig);
649+
return Objects.hash(codeSize, codeSizeLimit, command, creationTime, description, envs, exclusiveMode, id, initializerSec, instanceType, lastUpdateTime, maxConcurrency, memoryMB, name, nasStorage, owner, projectName, requestTimeout, runtime, sourceLocation, sourceType, tags, tlsConfig, tosMountConfig, triggersCount, vpcConfig);
628650
}
629651

630652

@@ -635,6 +657,7 @@ public String toString() {
635657

636658
sb.append(" codeSize: ").append(toIndentedString(codeSize)).append("\n");
637659
sb.append(" codeSizeLimit: ").append(toIndentedString(codeSizeLimit)).append("\n");
660+
sb.append(" command: ").append(toIndentedString(command)).append("\n");
638661
sb.append(" creationTime: ").append(toIndentedString(creationTime)).append("\n");
639662
sb.append(" description: ").append(toIndentedString(description)).append("\n");
640663
sb.append(" envs: ").append(toIndentedString(envs)).append("\n");

0 commit comments

Comments
 (0)