Skip to content

Commit 6da5257

Browse files
committed
Updating to latest 5.0 API
1 parent a60d24a commit 6da5257

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

ds3/models/suspectBlobPool.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,5 @@ type SuspectBlobPool struct {
1919
DateWritten string
2020
Id string
2121
LastAccessed string
22-
ObsoletionId *string
2322
PoolId string
2423
}

ds3/models/suspectBlobPoolParser.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ func (suspectBlobPool *SuspectBlobPool) parse(xmlNode *XmlNode, aggErr *Aggregat
3030
suspectBlobPool.Id = parseString(child.Content)
3131
case "LastAccessed":
3232
suspectBlobPool.LastAccessed = parseString(child.Content)
33-
case "ObsoletionId":
34-
suspectBlobPool.ObsoletionId = parseNullableString(child.Content)
3533
case "PoolId":
3634
suspectBlobPool.PoolId = parseString(child.Content)
3735
default:

ds3/models/suspectBlobTape.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ package models
1616
type SuspectBlobTape struct {
1717
BlobId string
1818
Id string
19-
ObsoletionId *string
2019
OrderIndex int
2120
TapeId string
2221
}

ds3/models/suspectBlobTapeParser.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ func (suspectBlobTape *SuspectBlobTape) parse(xmlNode *XmlNode, aggErr *Aggregat
2424
suspectBlobTape.BlobId = parseString(child.Content)
2525
case "Id":
2626
suspectBlobTape.Id = parseString(child.Content)
27-
case "ObsoletionId":
28-
suspectBlobTape.ObsoletionId = parseNullableString(child.Content)
2927
case "OrderIndex":
3028
suspectBlobTape.OrderIndex = parseInt(child.Content, aggErr)
3129
case "TapeId":

0 commit comments

Comments
 (0)