
com.azure.resourcemanager.eventgrid.fluent.models.TopicInner 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.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.core.management.Resource;
import com.azure.core.management.SystemData;
import com.azure.resourcemanager.eventgrid.models.DataResidencyBoundary;
import com.azure.resourcemanager.eventgrid.models.EventTypeInfo;
import com.azure.resourcemanager.eventgrid.models.ExtendedLocation;
import com.azure.resourcemanager.eventgrid.models.IdentityInfo;
import com.azure.resourcemanager.eventgrid.models.InboundIpRule;
import com.azure.resourcemanager.eventgrid.models.InputSchema;
import com.azure.resourcemanager.eventgrid.models.InputSchemaMapping;
import com.azure.resourcemanager.eventgrid.models.PublicNetworkAccess;
import com.azure.resourcemanager.eventgrid.models.ResourceKind;
import com.azure.resourcemanager.eventgrid.models.ResourceSku;
import com.azure.resourcemanager.eventgrid.models.TlsVersion;
import com.azure.resourcemanager.eventgrid.models.TopicProvisioningState;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Map;
/**
* EventGrid Topic.
*/
@Fluent
public final class TopicInner extends Resource {
/*
* Properties of the topic.
*/
@JsonProperty(value = "properties")
private TopicProperties innerProperties;
/*
* The Sku pricing tier for the topic.
*/
@JsonProperty(value = "sku")
private ResourceSku sku;
/*
* Identity information for the resource.
*/
@JsonProperty(value = "identity")
private IdentityInfo identity;
/*
* Kind of the resource.
*/
@JsonProperty(value = "kind")
private ResourceKind kind;
/*
* Extended location of the resource.
*/
@JsonProperty(value = "extendedLocation")
private ExtendedLocation extendedLocation;
/*
* The system metadata relating to Topic resource.
*/
@JsonProperty(value = "systemData", access = JsonProperty.Access.WRITE_ONLY)
private SystemData systemData;
/**
* Creates an instance of TopicInner class.
*/
public TopicInner() {
}
/**
* Get the innerProperties property: Properties of the topic.
*
* @return the innerProperties value.
*/
private TopicProperties innerProperties() {
return this.innerProperties;
}
/**
* Get the sku property: The Sku pricing tier for the topic.
*
* @return the sku value.
*/
public ResourceSku sku() {
return this.sku;
}
/**
* Set the sku property: The Sku pricing tier for the topic.
*
* @param sku the sku value to set.
* @return the TopicInner object itself.
*/
public TopicInner withSku(ResourceSku sku) {
this.sku = sku;
return this;
}
/**
* Get the identity property: Identity information for the resource.
*
* @return the identity value.
*/
public IdentityInfo identity() {
return this.identity;
}
/**
* Set the identity property: Identity information for the resource.
*
* @param identity the identity value to set.
* @return the TopicInner object itself.
*/
public TopicInner withIdentity(IdentityInfo identity) {
this.identity = identity;
return this;
}
/**
* Get the kind property: Kind of the resource.
*
* @return the kind value.
*/
public ResourceKind kind() {
return this.kind;
}
/**
* Set the kind property: Kind of the resource.
*
* @param kind the kind value to set.
* @return the TopicInner object itself.
*/
public TopicInner withKind(ResourceKind kind) {
this.kind = kind;
return this;
}
/**
* Get the extendedLocation property: Extended location of the resource.
*
* @return the extendedLocation value.
*/
public ExtendedLocation extendedLocation() {
return this.extendedLocation;
}
/**
* Set the extendedLocation property: Extended location of the resource.
*
* @param extendedLocation the extendedLocation value to set.
* @return the TopicInner object itself.
*/
public TopicInner withExtendedLocation(ExtendedLocation extendedLocation) {
this.extendedLocation = extendedLocation;
return this;
}
/**
* Get the systemData property: The system metadata relating to Topic resource.
*
* @return the systemData value.
*/
public SystemData systemData() {
return this.systemData;
}
/**
* {@inheritDoc}
*/
@Override
public TopicInner withLocation(String location) {
super.withLocation(location);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public TopicInner withTags(Map tags) {
super.withTags(tags);
return this;
}
/**
* Get the privateEndpointConnections property: List of private endpoint connections.
*
* @return the privateEndpointConnections value.
*/
public List privateEndpointConnections() {
return this.innerProperties() == null ? null : this.innerProperties().privateEndpointConnections();
}
/**
* Get the provisioningState property: Provisioning state of the topic.
*
* @return the provisioningState value.
*/
public TopicProvisioningState provisioningState() {
return this.innerProperties() == null ? null : this.innerProperties().provisioningState();
}
/**
* Get the endpoint property: Endpoint for the topic.
*
* @return the endpoint value.
*/
public String endpoint() {
return this.innerProperties() == null ? null : this.innerProperties().endpoint();
}
/**
* Get the eventTypeInfo property: Event Type Information for the user topic. This information is provided by the
* publisher and can be used by the
* subscriber to view different types of events that are published.
*
* @return the eventTypeInfo value.
*/
public EventTypeInfo eventTypeInfo() {
return this.innerProperties() == null ? null : this.innerProperties().eventTypeInfo();
}
/**
* Set the eventTypeInfo property: Event Type Information for the user topic. This information is provided by the
* publisher and can be used by the
* subscriber to view different types of events that are published.
*
* @param eventTypeInfo the eventTypeInfo value to set.
* @return the TopicInner object itself.
*/
public TopicInner withEventTypeInfo(EventTypeInfo eventTypeInfo) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withEventTypeInfo(eventTypeInfo);
return this;
}
/**
* Get the minimumTlsVersionAllowed property: Minimum TLS version of the publisher allowed to publish to this topic.
*
* @return the minimumTlsVersionAllowed value.
*/
public TlsVersion minimumTlsVersionAllowed() {
return this.innerProperties() == null ? null : this.innerProperties().minimumTlsVersionAllowed();
}
/**
* Set the minimumTlsVersionAllowed property: Minimum TLS version of the publisher allowed to publish to this topic.
*
* @param minimumTlsVersionAllowed the minimumTlsVersionAllowed value to set.
* @return the TopicInner object itself.
*/
public TopicInner withMinimumTlsVersionAllowed(TlsVersion minimumTlsVersionAllowed) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withMinimumTlsVersionAllowed(minimumTlsVersionAllowed);
return this;
}
/**
* Get the inputSchema property: This determines the format that Event Grid should expect for incoming events
* published to the topic.
*
* @return the inputSchema value.
*/
public InputSchema inputSchema() {
return this.innerProperties() == null ? null : this.innerProperties().inputSchema();
}
/**
* Set the inputSchema property: This determines the format that Event Grid should expect for incoming events
* published to the topic.
*
* @param inputSchema the inputSchema value to set.
* @return the TopicInner object itself.
*/
public TopicInner withInputSchema(InputSchema inputSchema) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withInputSchema(inputSchema);
return this;
}
/**
* Get the inputSchemaMapping property: This enables publishing using custom event schemas. An InputSchemaMapping
* can be specified to map various properties of a source schema to various required properties of the
* EventGridEvent schema.
*
* @return the inputSchemaMapping value.
*/
public InputSchemaMapping inputSchemaMapping() {
return this.innerProperties() == null ? null : this.innerProperties().inputSchemaMapping();
}
/**
* Set the inputSchemaMapping property: This enables publishing using custom event schemas. An InputSchemaMapping
* can be specified to map various properties of a source schema to various required properties of the
* EventGridEvent schema.
*
* @param inputSchemaMapping the inputSchemaMapping value to set.
* @return the TopicInner object itself.
*/
public TopicInner withInputSchemaMapping(InputSchemaMapping inputSchemaMapping) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withInputSchemaMapping(inputSchemaMapping);
return this;
}
/**
* Get the metricResourceId property: Metric resource id for the topic.
*
* @return the metricResourceId value.
*/
public String metricResourceId() {
return this.innerProperties() == null ? null : this.innerProperties().metricResourceId();
}
/**
* Get the publicNetworkAccess property: This determines if traffic is allowed over public network. By default it is
* enabled.
* You can further restrict to specific IPs by configuring <seealso
* cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.TopicProperties.InboundIpRules" />.
*
* @return the publicNetworkAccess value.
*/
public PublicNetworkAccess publicNetworkAccess() {
return this.innerProperties() == null ? null : this.innerProperties().publicNetworkAccess();
}
/**
* Set the publicNetworkAccess property: This determines if traffic is allowed over public network. By default it is
* enabled.
* You can further restrict to specific IPs by configuring <seealso
* cref="P:Microsoft.Azure.Events.ResourceProvider.Common.Contracts.TopicProperties.InboundIpRules" />.
*
* @param publicNetworkAccess the publicNetworkAccess value to set.
* @return the TopicInner object itself.
*/
public TopicInner withPublicNetworkAccess(PublicNetworkAccess publicNetworkAccess) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withPublicNetworkAccess(publicNetworkAccess);
return this;
}
/**
* Get the inboundIpRules property: This can be used to restrict traffic from specific IPs instead of all IPs. Note:
* These are considered only if PublicNetworkAccess is enabled.
*
* @return the inboundIpRules value.
*/
public List inboundIpRules() {
return this.innerProperties() == null ? null : this.innerProperties().inboundIpRules();
}
/**
* Set the inboundIpRules property: This can be used to restrict traffic from specific IPs instead of all IPs. Note:
* These are considered only if PublicNetworkAccess is enabled.
*
* @param inboundIpRules the inboundIpRules value to set.
* @return the TopicInner object itself.
*/
public TopicInner withInboundIpRules(List inboundIpRules) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withInboundIpRules(inboundIpRules);
return this;
}
/**
* Get the disableLocalAuth property: This boolean is used to enable or disable local auth. Default value is false.
* When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to
* the topic.
*
* @return the disableLocalAuth value.
*/
public Boolean disableLocalAuth() {
return this.innerProperties() == null ? null : this.innerProperties().disableLocalAuth();
}
/**
* Set the disableLocalAuth property: This boolean is used to enable or disable local auth. Default value is false.
* When the property is set to true, only AAD token will be used to authenticate if user is allowed to publish to
* the topic.
*
* @param disableLocalAuth the disableLocalAuth value to set.
* @return the TopicInner object itself.
*/
public TopicInner withDisableLocalAuth(Boolean disableLocalAuth) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withDisableLocalAuth(disableLocalAuth);
return this;
}
/**
* Get the dataResidencyBoundary property: Data Residency Boundary of the resource.
*
* @return the dataResidencyBoundary value.
*/
public DataResidencyBoundary dataResidencyBoundary() {
return this.innerProperties() == null ? null : this.innerProperties().dataResidencyBoundary();
}
/**
* Set the dataResidencyBoundary property: Data Residency Boundary of the resource.
*
* @param dataResidencyBoundary the dataResidencyBoundary value to set.
* @return the TopicInner object itself.
*/
public TopicInner withDataResidencyBoundary(DataResidencyBoundary dataResidencyBoundary) {
if (this.innerProperties() == null) {
this.innerProperties = new TopicProperties();
}
this.innerProperties().withDataResidencyBoundary(dataResidencyBoundary);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
if (innerProperties() != null) {
innerProperties().validate();
}
if (sku() != null) {
sku().validate();
}
if (identity() != null) {
identity().validate();
}
if (extendedLocation() != null) {
extendedLocation().validate();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy