public static interface DhcpConfiguration.Builder extends SdkPojo, CopyableBuilder<DhcpConfiguration.Builder,DhcpConfiguration>
Modifier and Type | Method and Description |
---|---|
DhcpConfiguration.Builder |
key(String key)
The name of a DHCP option.
|
DhcpConfiguration.Builder |
values(AttributeValue... values)
One or more values for the DHCP option.
|
DhcpConfiguration.Builder |
values(Collection<AttributeValue> values)
One or more values for the DHCP option.
|
DhcpConfiguration.Builder |
values(Consumer<AttributeValue.Builder>... values)
One or more values for the DHCP option.
|
equalsBySdkFields, sdkFields
copy
applyMutation, build
DhcpConfiguration.Builder key(String key)
The name of a DHCP option.
key
- The name of a DHCP option.DhcpConfiguration.Builder values(Collection<AttributeValue> values)
One or more values for the DHCP option.
values
- One or more values for the DHCP option.DhcpConfiguration.Builder values(AttributeValue... values)
One or more values for the DHCP option.
values
- One or more values for the DHCP option.DhcpConfiguration.Builder values(Consumer<AttributeValue.Builder>... values)
One or more values for the DHCP option.
This is a convenience that creates an instance of theList.Builder
avoiding the need
to create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and
its result is passed to #values(List)
.values
- a consumer that will call methods on List.Builder
#values(List)
Copyright © 2020. All rights reserved.