Class BetaCloudConfig.Builder
-
- All Implemented Interfaces:
public final class BetaCloudConfig.BuilderA builder for BetaCloudConfig.
-
-
Method Summary
-
-
Method Detail
-
networking
final BetaCloudConfig.Builder networking(BetaCloudConfig.Networking networking)
Network configuration policy.
-
networking
final BetaCloudConfig.Builder networking(JsonField<BetaCloudConfig.Networking> networking)
Sets Builder.networking to an arbitrary JSON value.
You should usually call Builder.networking with a well-typed Networking value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
networking
final BetaCloudConfig.Builder networking(BetaUnrestrictedNetwork unrestricted)
Alias for calling networking with
Networking.ofUnrestricted(unrestricted).
-
networking
final BetaCloudConfig.Builder networking(BetaLimitedNetwork limited)
Alias for calling networking with
Networking.ofLimited(limited).
-
packages
final BetaCloudConfig.Builder packages(BetaPackages packages)
Package manager configuration.
-
packages
final BetaCloudConfig.Builder packages(JsonField<BetaPackages> packages)
Sets Builder.packages to an arbitrary JSON value.
You should usually call Builder.packages with a well-typed BetaPackages value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
type
final BetaCloudConfig.Builder type(JsonValue type)
Sets the field to an arbitrary JSON value.
It is usually unnecessary to call this method because the field defaults to the following:
JsonValue.from("cloud")This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final BetaCloudConfig.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final BetaCloudConfig.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final BetaCloudConfig.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final BetaCloudConfig.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final BetaCloudConfig.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final BetaCloudConfig build()
Returns an immutable instance of BetaCloudConfig.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.networking() .packages()
-
-
-
-