com.azure.resourcemanager.timeseriesinsights.fluent.models.EventHubEventSourceResourceProperties Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-timeseriesinsights Show documentation
Show all versions of azure-resourcemanager-timeseriesinsights Show documentation
This package contains Microsoft Azure SDK for TimeSeriesInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Time Series Insights client. Package tag package-2020-05-15.
The 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.timeseriesinsights.fluent.models;
import com.azure.core.annotation.Fluent;
import com.azure.resourcemanager.timeseriesinsights.models.EventHubEventSourceCommonProperties;
import com.azure.resourcemanager.timeseriesinsights.models.IngressStartAtType;
import com.azure.resourcemanager.timeseriesinsights.models.LocalTimestamp;
/** Properties of the EventHub event source resource. */
@Fluent
public final class EventHubEventSourceResourceProperties extends EventHubEventSourceCommonProperties {
/** Creates an instance of EventHubEventSourceResourceProperties class. */
public EventHubEventSourceResourceProperties() {
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withServiceBusNamespace(String serviceBusNamespace) {
super.withServiceBusNamespace(serviceBusNamespace);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withEventHubName(String eventHubName) {
super.withEventHubName(eventHubName);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withConsumerGroupName(String consumerGroupName) {
super.withConsumerGroupName(consumerGroupName);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withKeyName(String keyName) {
super.withKeyName(keyName);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withEventSourceResourceId(String eventSourceResourceId) {
super.withEventSourceResourceId(eventSourceResourceId);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withTimestampPropertyName(String timestampPropertyName) {
super.withTimestampPropertyName(timestampPropertyName);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withLocalTimestamp(LocalTimestamp localTimestamp) {
super.withLocalTimestamp(localTimestamp);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withType(IngressStartAtType type) {
super.withType(type);
return this;
}
/** {@inheritDoc} */
@Override
public EventHubEventSourceResourceProperties withTime(String time) {
super.withTime(time);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
super.validate();
}
}