Class ShareSnapshotInfo
java.lang.Object
com.azure.storage.file.share.models.ShareSnapshotInfo
Contains information about a snapshot of a Share in the storage File service.
-
Constructor Summary
ConstructorsConstructorDescriptionShareSnapshotInfo
(String snapshot, String eTag, OffsetDateTime lastModified) Creates an instance of snapshot information for a specific Share. -
Method Summary
Modifier and TypeMethodDescriptiongetETag()
Gets the entity tag that corresponds to the snapshot.Gets the last time the share was modified if the snapshot was created without metadata, otherwise this is the time that the snapshot was created.Gets the identifier of the snapshot.
-
Constructor Details
-
ShareSnapshotInfo
Creates an instance of snapshot information for a specific Share.- Parameters:
snapshot
- Identifier for the snapshoteTag
- Entity tag that corresponds to the snapshotlastModified
- Last time the Share was modified if the snapshot was created without metadata, if the snapshot was created with metadata then it will be the time the snapshot was created
-
-
Method Details
-
getSnapshot
Gets the identifier of the snapshot.- Returns:
- the identifier of the snapshot
-
getETag
Gets the entity tag that corresponds to the snapshot.- Returns:
- the entity tag that corresponds to the snapshot
-
getLastModified
Gets the last time the share was modified if the snapshot was created without metadata, otherwise this is the time that the snapshot was created.- Returns:
- the last time the share was modified if the snapshot was created without metadata, otherwise this is the time that the snapshot was created.
-