io.streamthoughts.jikkou.kafka.collections.V1KafkaClientQuotaList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jikkou-provider-kafka Show documentation
Show all versions of jikkou-provider-kafka Show documentation
Integration between Apache Kafka and Jikkou
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright (c) The original authors
*
* Licensed under the Apache Software License version 2.0, available at http://www.apache.org/licenses/LICENSE-2.0
*/
package io.streamthoughts.jikkou.kafka.collections;
import io.streamthoughts.jikkou.core.annotation.ApiVersion;
import io.streamthoughts.jikkou.core.annotation.Kind;
import io.streamthoughts.jikkou.core.models.DefaultResourceListObject;
import io.streamthoughts.jikkou.core.models.ObjectMeta;
import io.streamthoughts.jikkou.kafka.models.V1KafkaClientQuota;
import java.beans.ConstructorProperties;
import java.util.List;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
@ApiVersion("kafka.jikkou.io/v1beta2")
@Kind("KafkaClientQuotaList")
public class V1KafkaClientQuotaList extends DefaultResourceListObject {
/**
* Creates a new {@link V1KafkaClientQuotaList} instance.
*
* @param kind The resource Kind.
* @param apiVersion The resource API Version.
* @param metadata The resource metadata.
* @param items The items.
*/
@ConstructorProperties({
"kind",
"apiVersion",
"metadata",
"items"
})
public V1KafkaClientQuotaList(@Nullable String kind,
@Nullable String apiVersion,
@Nullable ObjectMeta metadata,
@NotNull List extends V1KafkaClientQuota> items) {
super(kind, apiVersion, metadata, items);
}
/**
* Creates a new {@link V1KafkaClientQuotaList} instance.
*
* @param items The items.
*/
public V1KafkaClientQuotaList(List extends V1KafkaClientQuota> items) {
super(items);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy