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

com.microsoft.azure.eventgrid.models.EventHubCaptureFileCreatedEventData Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
/**
 * Copyright (c) Microsoft Corporation. All rights reserved.
 * Licensed under the MIT License. See License.txt in the project root for
 * license information.
 *
 * Code generated by Microsoft (R) AutoRest Code Generator.
 */

package com.microsoft.azure.eventgrid.models;

import org.joda.time.DateTime;
import com.fasterxml.jackson.annotation.JsonProperty;

/**
 * Schema of the Data property of an EventGridEvent for an
 * Microsoft.EventHub.CaptureFileCreated event.
 */
public class EventHubCaptureFileCreatedEventData {
    /**
     * The path to the capture file.
     */
    @JsonProperty(value = "fileurl")
    private String fileurl;

    /**
     * The file type of the capture file.
     */
    @JsonProperty(value = "fileType")
    private String fileType;

    /**
     * The shard ID.
     */
    @JsonProperty(value = "partitionId")
    private String partitionId;

    /**
     * The file size.
     */
    @JsonProperty(value = "sizeInBytes")
    private Integer sizeInBytes;

    /**
     * The number of events in the file.
     */
    @JsonProperty(value = "eventCount")
    private Integer eventCount;

    /**
     * The smallest sequence number from the queue.
     */
    @JsonProperty(value = "firstSequenceNumber")
    private Integer firstSequenceNumber;

    /**
     * The last sequence number from the queue.
     */
    @JsonProperty(value = "lastSequenceNumber")
    private Integer lastSequenceNumber;

    /**
     * The first time from the queue.
     */
    @JsonProperty(value = "firstEnqueueTime")
    private DateTime firstEnqueueTime;

    /**
     * The last time from the queue.
     */
    @JsonProperty(value = "lastEnqueueTime")
    private DateTime lastEnqueueTime;

    /**
     * Get the path to the capture file.
     *
     * @return the fileurl value
     */
    public String fileurl() {
        return this.fileurl;
    }

    /**
     * Set the path to the capture file.
     *
     * @param fileurl the fileurl value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withFileurl(String fileurl) {
        this.fileurl = fileurl;
        return this;
    }

    /**
     * Get the file type of the capture file.
     *
     * @return the fileType value
     */
    public String fileType() {
        return this.fileType;
    }

    /**
     * Set the file type of the capture file.
     *
     * @param fileType the fileType value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withFileType(String fileType) {
        this.fileType = fileType;
        return this;
    }

    /**
     * Get the shard ID.
     *
     * @return the partitionId value
     */
    public String partitionId() {
        return this.partitionId;
    }

    /**
     * Set the shard ID.
     *
     * @param partitionId the partitionId value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withPartitionId(String partitionId) {
        this.partitionId = partitionId;
        return this;
    }

    /**
     * Get the file size.
     *
     * @return the sizeInBytes value
     */
    public Integer sizeInBytes() {
        return this.sizeInBytes;
    }

    /**
     * Set the file size.
     *
     * @param sizeInBytes the sizeInBytes value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withSizeInBytes(Integer sizeInBytes) {
        this.sizeInBytes = sizeInBytes;
        return this;
    }

    /**
     * Get the number of events in the file.
     *
     * @return the eventCount value
     */
    public Integer eventCount() {
        return this.eventCount;
    }

    /**
     * Set the number of events in the file.
     *
     * @param eventCount the eventCount value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withEventCount(Integer eventCount) {
        this.eventCount = eventCount;
        return this;
    }

    /**
     * Get the smallest sequence number from the queue.
     *
     * @return the firstSequenceNumber value
     */
    public Integer firstSequenceNumber() {
        return this.firstSequenceNumber;
    }

    /**
     * Set the smallest sequence number from the queue.
     *
     * @param firstSequenceNumber the firstSequenceNumber value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withFirstSequenceNumber(Integer firstSequenceNumber) {
        this.firstSequenceNumber = firstSequenceNumber;
        return this;
    }

    /**
     * Get the last sequence number from the queue.
     *
     * @return the lastSequenceNumber value
     */
    public Integer lastSequenceNumber() {
        return this.lastSequenceNumber;
    }

    /**
     * Set the last sequence number from the queue.
     *
     * @param lastSequenceNumber the lastSequenceNumber value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withLastSequenceNumber(Integer lastSequenceNumber) {
        this.lastSequenceNumber = lastSequenceNumber;
        return this;
    }

    /**
     * Get the first time from the queue.
     *
     * @return the firstEnqueueTime value
     */
    public DateTime firstEnqueueTime() {
        return this.firstEnqueueTime;
    }

    /**
     * Set the first time from the queue.
     *
     * @param firstEnqueueTime the firstEnqueueTime value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withFirstEnqueueTime(DateTime firstEnqueueTime) {
        this.firstEnqueueTime = firstEnqueueTime;
        return this;
    }

    /**
     * Get the last time from the queue.
     *
     * @return the lastEnqueueTime value
     */
    public DateTime lastEnqueueTime() {
        return this.lastEnqueueTime;
    }

    /**
     * Set the last time from the queue.
     *
     * @param lastEnqueueTime the lastEnqueueTime value to set
     * @return the EventHubCaptureFileCreatedEventData object itself.
     */
    public EventHubCaptureFileCreatedEventData withLastEnqueueTime(DateTime lastEnqueueTime) {
        this.lastEnqueueTime = lastEnqueueTime;
        return this;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy