public class FunctionEnvironmentVariable extends AbstractModel
header, skipSign
Constructor and Description |
---|
FunctionEnvironmentVariable() |
FunctionEnvironmentVariable(FunctionEnvironmentVariable source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getKey()
Get Variable name, which should be unique and can only contain uppercase and lowercase letters, digits, and special characters including at signs (@), periods (.), hyphens (-), and underscores (_).
|
String |
getType()
Get Variable type.
|
String |
getValue()
Get Variable value.
|
void |
setKey(String Key)
Set Variable name, which should be unique and can only contain uppercase and lowercase letters, digits, and special characters including at signs (@), periods (.), hyphens (-), and underscores (_).
|
void |
setType(String Type)
Set Variable type.
|
void |
setValue(String Value)
Set Variable value.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, GetHeader, getMultipartRequestParams, getSkipSign, set, SetHeader, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, setSkipSign, toJsonString
public FunctionEnvironmentVariable()
public FunctionEnvironmentVariable(FunctionEnvironmentVariable source)
public String getKey()
public void setKey(String Key)
Key
- Variable name, which should be unique and can only contain uppercase and lowercase letters, digits, and special characters including at signs (@), periods (.), hyphens (-), and underscores (_). Its maximum size is 64 bytes.public String getValue()
public void setValue(String Value)
Value
- Variable value. Its maximum size is 5000 bytes. The default value is empty.public String getType()
public void setType(String Type)
Type
- Variable type. Valid values:
Copyright © 2024. All rights reserved.