io.vertx.kotlin.ext.consul.Node.kt Maven / Gradle / Ivy
/*
* Copyright 2019 Red Hat, Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package io.vertx.kotlin.ext.consul
import io.vertx.ext.consul.Node
/**
* A function providing a DSL for building [io.vertx.ext.consul.Node] objects.
*
*
* @param id Set node id
* @param name Set node name
* @param address Set node address
* @param lanAddress Set node lan address
* @param wanAddress Set node wan address
* @param datacenter Set node datacenter
* @param nodeMeta Set node meta
*
*
* NOTE: This function has been automatically generated from the [io.vertx.ext.consul.Node original] using Vert.x codegen.
*/
fun nodeOf(
id: String? = null,
name: String? = null,
address: String? = null,
lanAddress: String? = null,
wanAddress: String? = null,
datacenter: String? = null,
nodeMeta: Map? = null): Node = io.vertx.ext.consul.Node().apply {
if (id != null) {
this.setId(id)
}
if (name != null) {
this.setName(name)
}
if (address != null) {
this.setAddress(address)
}
if (lanAddress != null) {
this.setLanAddress(lanAddress)
}
if (wanAddress != null) {
this.setWanAddress(wanAddress)
}
if (datacenter != null) {
this.setDatacenter(datacenter)
}
if (nodeMeta != null) {
this.setNodeMeta(nodeMeta)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy