com.azure.messaging.eventgrid.systemevents.StorageBlobRenamedEventData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.messaging.eventgrid.systemevents;
import com.azure.core.annotation.Fluent;
import com.fasterxml.jackson.annotation.JsonProperty;
/** Schema of the Data property of an EventGridEvent for a Microsoft.Storage.BlobRenamed event. */
@Fluent
public final class StorageBlobRenamedEventData {
/*
* The name of the API/operation that triggered this event.
*/
@JsonProperty(value = "api")
private String api;
/*
* A request id provided by the client of the storage API operation that triggered this event.
*/
@JsonProperty(value = "clientRequestId")
private String clientRequestId;
/*
* The request id generated by the storage service for the storage API operation that triggered this event.
*/
@JsonProperty(value = "requestId")
private String requestId;
/*
* The path to the blob that was renamed.
*/
@JsonProperty(value = "sourceUrl")
private String sourceUrl;
/*
* The new path to the blob after the rename operation.
*/
@JsonProperty(value = "destinationUrl")
private String destinationUrl;
/*
* An opaque string value representing the logical sequence of events for any particular blob name. Users can use
* standard string comparison to understand the relative sequence of two events on the same blob name.
*/
@JsonProperty(value = "sequencer")
private String sequencer;
/*
* The identity of the requester that triggered this event.
*/
@JsonProperty(value = "identity")
private String identity;
/*
* For service use only. Diagnostic data occasionally included by the Azure Storage service. This property should
* be ignored by event consumers.
*/
@JsonProperty(value = "storageDiagnostics")
private Object storageDiagnostics;
/** Creates an instance of StorageBlobRenamedEventData class. */
public StorageBlobRenamedEventData() {}
/**
* Get the api property: The name of the API/operation that triggered this event.
*
* @return the api value.
*/
public String getApi() {
return this.api;
}
/**
* Set the api property: The name of the API/operation that triggered this event.
*
* @param api the api value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setApi(String api) {
this.api = api;
return this;
}
/**
* Get the clientRequestId property: A request id provided by the client of the storage API operation that triggered
* this event.
*
* @return the clientRequestId value.
*/
public String getClientRequestId() {
return this.clientRequestId;
}
/**
* Set the clientRequestId property: A request id provided by the client of the storage API operation that triggered
* this event.
*
* @param clientRequestId the clientRequestId value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setClientRequestId(String clientRequestId) {
this.clientRequestId = clientRequestId;
return this;
}
/**
* Get the requestId property: The request id generated by the storage service for the storage API operation that
* triggered this event.
*
* @return the requestId value.
*/
public String getRequestId() {
return this.requestId;
}
/**
* Set the requestId property: The request id generated by the storage service for the storage API operation that
* triggered this event.
*
* @param requestId the requestId value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Get the sourceUrl property: The path to the blob that was renamed.
*
* @return the sourceUrl value.
*/
public String getSourceUrl() {
return this.sourceUrl;
}
/**
* Set the sourceUrl property: The path to the blob that was renamed.
*
* @param sourceUrl the sourceUrl value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setSourceUrl(String sourceUrl) {
this.sourceUrl = sourceUrl;
return this;
}
/**
* Get the destinationUrl property: The new path to the blob after the rename operation.
*
* @return the destinationUrl value.
*/
public String getDestinationUrl() {
return this.destinationUrl;
}
/**
* Set the destinationUrl property: The new path to the blob after the rename operation.
*
* @param destinationUrl the destinationUrl value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setDestinationUrl(String destinationUrl) {
this.destinationUrl = destinationUrl;
return this;
}
/**
* Get the sequencer property: An opaque string value representing the logical sequence of events for any particular
* blob name. Users can use standard string comparison to understand the relative sequence of two events on the same
* blob name.
*
* @return the sequencer value.
*/
public String getSequencer() {
return this.sequencer;
}
/**
* Set the sequencer property: An opaque string value representing the logical sequence of events for any particular
* blob name. Users can use standard string comparison to understand the relative sequence of two events on the same
* blob name.
*
* @param sequencer the sequencer value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setSequencer(String sequencer) {
this.sequencer = sequencer;
return this;
}
/**
* Get the identity property: The identity of the requester that triggered this event.
*
* @return the identity value.
*/
public String getIdentity() {
return this.identity;
}
/**
* Set the identity property: The identity of the requester that triggered this event.
*
* @param identity the identity value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setIdentity(String identity) {
this.identity = identity;
return this;
}
/**
* Get the storageDiagnostics property: For service use only. Diagnostic data occasionally included by the Azure
* Storage service. This property should be ignored by event consumers.
*
* @return the storageDiagnostics value.
*/
public Object getStorageDiagnostics() {
return this.storageDiagnostics;
}
/**
* Set the storageDiagnostics property: For service use only. Diagnostic data occasionally included by the Azure
* Storage service. This property should be ignored by event consumers.
*
* @param storageDiagnostics the storageDiagnostics value to set.
* @return the StorageBlobRenamedEventData object itself.
*/
public StorageBlobRenamedEventData setStorageDiagnostics(Object storageDiagnostics) {
this.storageDiagnostics = storageDiagnostics;
return this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy