All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.eventhubs.models.ClusterListResult Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure EventHubs Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt

There is a newer version: 2.45.0
Show newest version
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.eventhubs.models;

import com.azure.core.annotation.Fluent;
import com.azure.core.util.logging.ClientLogger;
import com.azure.resourcemanager.eventhubs.fluent.models.ClusterInner;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/** The response of the List Event Hubs Clusters operation. */
@Fluent
public final class ClusterListResult {
    @JsonIgnore private final ClientLogger logger = new ClientLogger(ClusterListResult.class);

    /*
     * The Event Hubs Clusters present in the List Event Hubs operation
     * results.
     */
    @JsonProperty(value = "value")
    private List value;

    /*
     * Link to the next set of results. Empty unless the value parameter
     * contains an incomplete list of Event Hubs Clusters.
     */
    @JsonProperty(value = "nextLink")
    private String nextLink;

    /**
     * Get the value property: The Event Hubs Clusters present in the List Event Hubs operation results.
     *
     * @return the value value.
     */
    public List value() {
        return this.value;
    }

    /**
     * Set the value property: The Event Hubs Clusters present in the List Event Hubs operation results.
     *
     * @param value the value value to set.
     * @return the ClusterListResult object itself.
     */
    public ClusterListResult withValue(List value) {
        this.value = value;
        return this;
    }

    /**
     * Get the nextLink property: Link to the next set of results. Empty unless the value parameter contains an
     * incomplete list of Event Hubs Clusters.
     *
     * @return the nextLink value.
     */
    public String nextLink() {
        return this.nextLink;
    }

    /**
     * Set the nextLink property: Link to the next set of results. Empty unless the value parameter contains an
     * incomplete list of Event Hubs Clusters.
     *
     * @param nextLink the nextLink value to set.
     * @return the ClusterListResult object itself.
     */
    public ClusterListResult withNextLink(String nextLink) {
        this.nextLink = nextLink;
        return this;
    }

    /**
     * Validates the instance.
     *
     * @throws IllegalArgumentException thrown if the instance is not valid.
     */
    public void validate() {
        if (value() != null) {
            value().forEach(e -> e.validate());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy