Class ProviderUpdateParams.Body.Builder
-
- All Implemented Interfaces:
public final class ProviderUpdateParams.Body.BuilderA builder for Body.
-
-
Method Summary
-
-
Method Detail
-
provider
final ProviderUpdateParams.Body.Builder provider(String provider)
The provider key identifying the type.
-
provider
final ProviderUpdateParams.Body.Builder provider(JsonField<String> provider)
Sets Builder.provider to an arbitrary JSON value.
You should usually call Builder.provider with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
alias
final ProviderUpdateParams.Body.Builder alias(String alias)
Updated alias. Omit to clear.
-
alias
final ProviderUpdateParams.Body.Builder alias(JsonField<String> alias)
Sets Builder.alias to an arbitrary JSON value.
You should usually call Builder.alias with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
settings
final ProviderUpdateParams.Body.Builder settings(ProviderUpdateParams.Settings settings)
Provider-specific settings (snake_case keys). Replaces the full settings object — omitted settings fields are removed. Use the catalog endpoint to check required fields.
-
settings
final ProviderUpdateParams.Body.Builder settings(JsonField<ProviderUpdateParams.Settings> settings)
Sets Builder.settings to an arbitrary JSON value.
You should usually call Builder.settings with a well-typed Settings value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
title
final ProviderUpdateParams.Body.Builder title(String title)
Updated display title.
-
title
final ProviderUpdateParams.Body.Builder title(JsonField<String> title)
Sets Builder.title to an arbitrary JSON value.
You should usually call Builder.title 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 ProviderUpdateParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ProviderUpdateParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ProviderUpdateParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ProviderUpdateParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ProviderUpdateParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ProviderUpdateParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.provider()
-
-
-
-