Class Pagerduty.Builder
-
- All Implemented Interfaces:
public final class Pagerduty.BuilderA builder for Pagerduty.
-
-
Method Summary
-
-
Method Detail
-
eventAction
final Pagerduty.Builder eventAction(String eventAction)
-
eventAction
final Pagerduty.Builder eventAction(Optional<String> eventAction)
Alias for calling Builder.eventAction with
eventAction.orElse(null).
-
eventAction
final Pagerduty.Builder eventAction(JsonField<String> eventAction)
Sets Builder.eventAction to an arbitrary JSON value.
You should usually call Builder.eventAction with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
routingKey
final Pagerduty.Builder routingKey(String routingKey)
-
routingKey
final Pagerduty.Builder routingKey(Optional<String> routingKey)
Alias for calling Builder.routingKey with
routingKey.orElse(null).
-
routingKey
final Pagerduty.Builder routingKey(JsonField<String> routingKey)
Sets Builder.routingKey to an arbitrary JSON value.
You should usually call Builder.routingKey with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
severity
final Pagerduty.Builder severity(String severity)
-
severity
final Pagerduty.Builder severity(Optional<String> severity)
Alias for calling Builder.severity with
severity.orElse(null).
-
severity
final Pagerduty.Builder severity(JsonField<String> severity)
Sets Builder.severity to an arbitrary JSON value.
You should usually call Builder.severity with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
source
final Pagerduty.Builder source(String source)
-
source
final Pagerduty.Builder source(Optional<String> source)
Alias for calling Builder.source with
source.orElse(null).
-
source
final Pagerduty.Builder source(JsonField<String> source)
Sets Builder.source to an arbitrary JSON value.
You should usually call Builder.source with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final Pagerduty.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final Pagerduty.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final Pagerduty.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final Pagerduty.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final Pagerduty.Builder removeAllAdditionalProperties(Set<String> keys)
-
-
-
-