
com.azure.resourcemanager.eventgrid.models.UpdateTopicsConfigurationInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-eventgrid Show documentation
Show all versions of azure-resourcemanager-eventgrid Show documentation
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.
// 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.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
/**
* Properties of the topics configuration info of a namespace.
*/
@Fluent
public final class UpdateTopicsConfigurationInfo {
/*
* Custom domain info for topics configuration.
*/
@JsonProperty(value = "customDomains")
private List customDomains;
/**
* Creates an instance of UpdateTopicsConfigurationInfo class.
*/
public UpdateTopicsConfigurationInfo() {
}
/**
* Get the customDomains property: Custom domain info for topics configuration.
*
* @return the customDomains value.
*/
public List customDomains() {
return this.customDomains;
}
/**
* Set the customDomains property: Custom domain info for topics configuration.
*
* @param customDomains the customDomains value to set.
* @return the UpdateTopicsConfigurationInfo object itself.
*/
public UpdateTopicsConfigurationInfo withCustomDomains(List customDomains) {
this.customDomains = customDomains;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (customDomains() != null) {
customDomains().forEach(e -> e.validate());
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy