-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for history endpoint (#15)
- Loading branch information
Showing
13 changed files
with
94 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
...ient/src/main/java/org/azbuilder/api/client/model/organization/workspace/HistoryData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.azbuilder.api.client.model.organization.workspace; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
public class HistoryData { | ||
List<Resource> data; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
.../src/main/java/org/azbuilder/api/client/model/organization/workspace/history/History.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package org.azbuilder.api.client.model.organization.workspace.history; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class History extends Resource { | ||
HistoryAttributes attributes; | ||
Relationships relationships; | ||
} |
14 changes: 14 additions & 0 deletions
14
...java/org/azbuilder/api/client/model/organization/workspace/history/HistoryAttributes.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package org.azbuilder.api.client.model.organization.workspace.history; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class HistoryAttributes { | ||
private String createdBy; | ||
private String createdDate; | ||
private String output; | ||
private String updatedBy; | ||
private String updatedDate; | ||
} |
10 changes: 10 additions & 0 deletions
10
...in/java/org/azbuilder/api/client/model/organization/workspace/history/HistoryRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package org.azbuilder.api.client.model.organization.workspace.history; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class HistoryRequest { | ||
History data; | ||
} |
11 changes: 11 additions & 0 deletions
11
...ain/java/org/azbuilder/api/client/model/organization/workspace/history/Relationships.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.azbuilder.api.client.model.organization.workspace.history; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.organization.workspace.variable.WorkspaceData; | ||
|
||
@Getter | ||
@Setter | ||
public class Relationships { | ||
WorkspaceData workspace; | ||
} |
11 changes: 11 additions & 0 deletions
11
...ain/java/org/azbuilder/api/client/model/organization/workspace/history/WorkspaceData.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.azbuilder.api.client.model.organization.workspace.history; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class WorkspaceData { | ||
Resource data; | ||
} |