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

com.azure.resourcemanager.timeseriesinsights.fluent.models.IoTHubEventSourceCreationProperties Maven / Gradle / Ivy

Go to download

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.core.util.logging.ClientLogger;
import com.azure.resourcemanager.timeseriesinsights.models.IngressStartAtType;
import com.azure.resourcemanager.timeseriesinsights.models.IoTHubEventSourceCommonProperties;
import com.azure.resourcemanager.timeseriesinsights.models.LocalTimestamp;
import com.fasterxml.jackson.annotation.JsonProperty;

/** Properties of the IoTHub event source that are required on create or update requests. */
@Fluent
public final class IoTHubEventSourceCreationProperties extends IoTHubEventSourceCommonProperties {
    /*
     * The value of the Shared Access Policy key that grants the Time Series Insights service read access to the iot
     * hub. This property is not shown in event source responses.
     */
    @JsonProperty(value = "sharedAccessKey", required = true)
    private String sharedAccessKey;

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

    /**
     * Get the sharedAccessKey property: The value of the Shared Access Policy key that grants the Time Series Insights
     * service read access to the iot hub. This property is not shown in event source responses.
     *
     * @return the sharedAccessKey value.
     */
    public String sharedAccessKey() {
        return this.sharedAccessKey;
    }

    /**
     * Set the sharedAccessKey property: The value of the Shared Access Policy key that grants the Time Series Insights
     * service read access to the iot hub. This property is not shown in event source responses.
     *
     * @param sharedAccessKey the sharedAccessKey value to set.
     * @return the IoTHubEventSourceCreationProperties object itself.
     */
    public IoTHubEventSourceCreationProperties withSharedAccessKey(String sharedAccessKey) {
        this.sharedAccessKey = sharedAccessKey;
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withIotHubName(String iotHubName) {
        super.withIotHubName(iotHubName);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withConsumerGroupName(String consumerGroupName) {
        super.withConsumerGroupName(consumerGroupName);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withKeyName(String keyName) {
        super.withKeyName(keyName);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withEventSourceResourceId(String eventSourceResourceId) {
        super.withEventSourceResourceId(eventSourceResourceId);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withTimestampPropertyName(String timestampPropertyName) {
        super.withTimestampPropertyName(timestampPropertyName);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withLocalTimestamp(LocalTimestamp localTimestamp) {
        super.withLocalTimestamp(localTimestamp);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties withType(IngressStartAtType type) {
        super.withType(type);
        return this;
    }

    /** {@inheritDoc} */
    @Override
    public IoTHubEventSourceCreationProperties 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();
        if (sharedAccessKey() == null) {
            throw LOGGER
                .logExceptionAsError(
                    new IllegalArgumentException(
                        "Missing required property sharedAccessKey in model IoTHubEventSourceCreationProperties"));
        }
    }

    private static final ClientLogger LOGGER = new ClientLogger(IoTHubEventSourceCreationProperties.class);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy