Class UpdateApplicationDetails.Builder
- java.lang.Object
-
- com.oracle.bmc.functions.model.UpdateApplicationDetails.Builder
-
- Enclosing class:
- UpdateApplicationDetails
public static class UpdateApplicationDetails.Builder extends Object
-
-
Constructor Summary
Constructors Constructor Description Builder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description UpdateApplicationDetails
build()
UpdateApplicationDetails.Builder
config(Map<String,String> config)
Application configuration.UpdateApplicationDetails.Builder
copy(UpdateApplicationDetails model)
UpdateApplicationDetails.Builder
definedTags(Map<String,Map<String,Object>> definedTags)
Defined tags for this resource.UpdateApplicationDetails.Builder
freeformTags(Map<String,String> freeformTags)
Free-form tags for this resource.UpdateApplicationDetails.Builder
imagePolicyConfig(ImagePolicyConfig imagePolicyConfig)
UpdateApplicationDetails.Builder
networkSecurityGroupIds(List<String> networkSecurityGroupIds)
The OCIDs of the Network Security Groups to add the application to.UpdateApplicationDetails.Builder
syslogUrl(String syslogUrl)
A syslog URL to which to send all function logs.UpdateApplicationDetails.Builder
traceConfig(ApplicationTraceConfig traceConfig)
-
-
-
Method Detail
-
config
public UpdateApplicationDetails.Builder config(Map<String,String> config)
Application configuration.These values are passed on to the function as environment variables, functions may override application configuration. Keys must be ASCII strings consisting solely of letters, digits, and the ‘_’ (underscore) character, and must not begin with a digit. Values should be limited to printable unicode characters.
Example: {"MY_FUNCTION_CONFIG": "ConfVal"}
The maximum size for all configuration keys and values is limited to 4KB. This is measured as the sum of octets necessary to represent each key and value in UTF-8.
- Parameters:
config
- the value to set- Returns:
- this builder
-
networkSecurityGroupIds
public UpdateApplicationDetails.Builder networkSecurityGroupIds(List<String> networkSecurityGroupIds)
The OCIDs of the Network Security Groups to add the application to.- Parameters:
networkSecurityGroupIds
- the value to set- Returns:
- this builder
-
syslogUrl
public UpdateApplicationDetails.Builder syslogUrl(String syslogUrl)
A syslog URL to which to send all function logs.Supports tcp, udp, and tcp+tls. The syslog URL must be reachable from all of the subnets configured for the application. Note: If you enable the OCI Logging service for this application, the syslogUrl value is ignored. Function logs are sent to the OCI Logging service, and not to the syslog URL.
Example: tcp://logserver.myserver:1234
- Parameters:
syslogUrl
- the value to set- Returns:
- this builder
-
traceConfig
public UpdateApplicationDetails.Builder traceConfig(ApplicationTraceConfig traceConfig)
-
freeformTags
public UpdateApplicationDetails.Builder freeformTags(Map<String,String> freeformTags)
Free-form tags for this resource.Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}
- Parameters:
freeformTags
- the value to set- Returns:
- this builder
-
definedTags
public UpdateApplicationDetails.Builder definedTags(Map<String,Map<String,Object>> definedTags)
Defined tags for this resource.Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}
- Parameters:
definedTags
- the value to set- Returns:
- this builder
-
imagePolicyConfig
public UpdateApplicationDetails.Builder imagePolicyConfig(ImagePolicyConfig imagePolicyConfig)
-
build
public UpdateApplicationDetails build()
-
copy
public UpdateApplicationDetails.Builder copy(UpdateApplicationDetails model)
-
-