Class Function.FunctionData.Code.Data.Inline.Builder
-
- All Implemented Interfaces:
public final class Function.FunctionData.Code.Data.Inline.BuilderA builder for Inline.
-
-
Method Summary
-
-
Method Detail
-
code
final Function.FunctionData.Code.Data.Inline.Builder code(String code)
-
code
final Function.FunctionData.Code.Data.Inline.Builder code(JsonField<String> code)
Sets Builder.code to an arbitrary JSON value.
You should usually call Builder.code with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
runtimeContext
final Function.FunctionData.Code.Data.Inline.Builder runtimeContext(Function.FunctionData.Code.Data.Inline.RuntimeContext runtimeContext)
-
runtimeContext
final Function.FunctionData.Code.Data.Inline.Builder runtimeContext(JsonField<Function.FunctionData.Code.Data.Inline.RuntimeContext> runtimeContext)
Sets Builder.runtimeContext to an arbitrary JSON value.
You should usually call Builder.runtimeContext with a well-typed RuntimeContext value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final Function.FunctionData.Code.Data.Inline.Builder type(Function.FunctionData.Code.Data.Inline.Type type)
-
type
final Function.FunctionData.Code.Data.Inline.Builder type(JsonField<Function.FunctionData.Code.Data.Inline.Type> type)
Sets Builder.type to an arbitrary JSON value.
You should usually call Builder.type with a well-typed Type value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final Function.FunctionData.Code.Data.Inline.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final Function.FunctionData.Code.Data.Inline.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final Function.FunctionData.Code.Data.Inline.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final Function.FunctionData.Code.Data.Inline.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final Function.FunctionData.Code.Data.Inline.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final Function.FunctionData.Code.Data.Inline build()
Returns an immutable instance of Inline.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.code() .runtimeContext() .type()
-
-
-
-