Class RoutingStrategyReplaceRequest.Builder
-
- All Implemented Interfaces:
public final class RoutingStrategyReplaceRequest.BuilderA builder for RoutingStrategyReplaceRequest.
-
-
Method Summary
-
-
Method Detail
-
name
final RoutingStrategyReplaceRequest.Builder name(String name)
Human-readable name for the routing strategy.
-
name
final RoutingStrategyReplaceRequest.Builder name(JsonField<String> name)
Sets Builder.name to an arbitrary JSON value.
You should usually call Builder.name with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
routing
final RoutingStrategyReplaceRequest.Builder routing(MessageRouting routing)
Routing tree defining channel selection method and order.
-
routing
final RoutingStrategyReplaceRequest.Builder routing(JsonField<MessageRouting> routing)
Sets Builder.routing to an arbitrary JSON value.
You should usually call Builder.routing with a well-typed MessageRouting value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
channels
final RoutingStrategyReplaceRequest.Builder channels(MessageChannels channels)
Per-channel delivery configuration. Omit to clear.
-
channels
final RoutingStrategyReplaceRequest.Builder channels(Optional<MessageChannels> channels)
Alias for calling Builder.channels with
channels.orElse(null).
-
channels
final RoutingStrategyReplaceRequest.Builder channels(JsonField<MessageChannels> channels)
Sets Builder.channels to an arbitrary JSON value.
You should usually call Builder.channels with a well-typed MessageChannels value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
description
final RoutingStrategyReplaceRequest.Builder description(String description)
Optional description. Omit or null to clear.
-
description
final RoutingStrategyReplaceRequest.Builder description(Optional<String> description)
Alias for calling Builder.description with
description.orElse(null).
-
description
final RoutingStrategyReplaceRequest.Builder description(JsonField<String> description)
Sets Builder.description to an arbitrary JSON value.
You should usually call Builder.description with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
providers
final RoutingStrategyReplaceRequest.Builder providers(MessageProviders providers)
Per-provider delivery configuration. Omit to clear.
-
providers
final RoutingStrategyReplaceRequest.Builder providers(Optional<MessageProviders> providers)
Alias for calling Builder.providers with
providers.orElse(null).
-
providers
final RoutingStrategyReplaceRequest.Builder providers(JsonField<MessageProviders> providers)
Sets Builder.providers to an arbitrary JSON value.
You should usually call Builder.providers with a well-typed MessageProviders value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
tags
final RoutingStrategyReplaceRequest.Builder tags(List<String> tags)
Optional tags. Omit or null to clear.
-
tags
final RoutingStrategyReplaceRequest.Builder tags(Optional<List<String>> tags)
Alias for calling Builder.tags with
tags.orElse(null).
-
tags
final RoutingStrategyReplaceRequest.Builder tags(JsonField<List<String>> tags)
Sets Builder.tags to an arbitrary JSON value.
You should usually call Builder.tags with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addTag
final RoutingStrategyReplaceRequest.Builder addTag(String tag)
-
additionalProperties
final RoutingStrategyReplaceRequest.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final RoutingStrategyReplaceRequest.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final RoutingStrategyReplaceRequest.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final RoutingStrategyReplaceRequest.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final RoutingStrategyReplaceRequest.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final RoutingStrategyReplaceRequest build()
Returns an immutable instance of RoutingStrategyReplaceRequest.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.name() .routing()
-
-
-
-