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

com.azure.resourcemanager.eventgrid.models.TopicSpacesListResult Maven / Gradle / Ivy

Go to download

This package contains Microsoft Azure SDK for EventGrid Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Azure EventGrid Management Client. Package tag package-2021-10-preview.

There is a newer version: 1.2.0-beta.7
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.eventgrid.models;

import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.eventgrid.fluent.models.TopicSpaceInner;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;

/**
 * Result of the List Topic Space operation.
 */
@Fluent
public final class TopicSpacesListResult {
    /*
     * A collection of Topic Space.
     */
    @JsonProperty(value = "value")
    private List value;

    /*
     * A link for the next page of Topic Space.
     */
    @JsonProperty(value = "nextLink")
    private String nextLink;

    /**
     * Creates an instance of TopicSpacesListResult class.
     */
    public TopicSpacesListResult() {
    }

    /**
     * Get the value property: A collection of Topic Space.
     * 
     * @return the value value.
     */
    public List value() {
        return this.value;
    }

    /**
     * Set the value property: A collection of Topic Space.
     * 
     * @param value the value value to set.
     * @return the TopicSpacesListResult object itself.
     */
    public TopicSpacesListResult withValue(List value) {
        this.value = value;
        return this;
    }

    /**
     * Get the nextLink property: A link for the next page of Topic Space.
     * 
     * @return the nextLink value.
     */
    public String nextLink() {
        return this.nextLink;
    }

    /**
     * Set the nextLink property: A link for the next page of Topic Space.
     * 
     * @param nextLink the nextLink value to set.
     * @return the TopicSpacesListResult object itself.
     */
    public TopicSpacesListResult 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 - 2025 Weber Informatics LLC | Privacy Policy