public class ListTapesResult extends Object implements Serializable, Cloneable
A JSON object containing the following fields:
Constructor and Description |
---|
ListTapesResult() |
Modifier and Type | Method and Description |
---|---|
ListTapesResult |
clone() |
boolean |
equals(Object obj) |
String |
getMarker()
A string that indicates the position at which to begin returning the next
list of tapes.
|
List<TapeInfo> |
getTapeInfos() |
int |
hashCode() |
void |
setMarker(String marker)
A string that indicates the position at which to begin returning the next
list of tapes.
|
void |
setTapeInfos(Collection<TapeInfo> tapeInfos) |
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListTapesResult |
withMarker(String marker)
A string that indicates the position at which to begin returning the next
list of tapes.
|
ListTapesResult |
withTapeInfos(Collection<TapeInfo> tapeInfos) |
ListTapesResult |
withTapeInfos(TapeInfo... tapeInfos)
NOTE: This method appends the values to the existing list (if
any).
|
public void setTapeInfos(Collection<TapeInfo> tapeInfos)
tapeInfos
- public ListTapesResult withTapeInfos(TapeInfo... tapeInfos)
NOTE: This method appends the values to the existing list (if
any). Use setTapeInfos(java.util.Collection)
or
withTapeInfos(java.util.Collection)
if you want to override the
existing values.
tapeInfos
- public ListTapesResult withTapeInfos(Collection<TapeInfo> tapeInfos)
tapeInfos
- public void setMarker(String marker)
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
marker
- A string that indicates the position at which to begin returning
the next list of tapes. Use the marker in your next request to
continue pagination of tapes. If there are no more tapes to list,
this element does not appear in the response body.public String getMarker()
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
public ListTapesResult withMarker(String marker)
A string that indicates the position at which to begin returning the next list of tapes. Use the marker in your next request to continue pagination of tapes. If there are no more tapes to list, this element does not appear in the response body.
marker
- A string that indicates the position at which to begin returning
the next list of tapes. Use the marker in your next request to
continue pagination of tapes. If there are no more tapes to list,
this element does not appear in the response body.public String toString()
toString
in class Object
Object.toString()
public ListTapesResult clone()
Copyright © 2018. All rights reserved.