-
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.
Merge pull request #6 from AzBuilder/provider-support
Provider support
- Loading branch information
Showing
22 changed files
with
232 additions
and
7 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
api-client/src/main/java/org/azbuilder/api/client/model/organization/ProviderData.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; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
public class ProviderData { | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,5 @@ public class Relationships { | |
JobData job; | ||
ModuleData module; | ||
WorkspaceData workspace; | ||
ProviderData provider; | ||
} |
11 changes: 11 additions & 0 deletions
11
.../src/main/java/org/azbuilder/api/client/model/organization/provider/OrganizationData.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.provider; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class OrganizationData { | ||
Resource data; | ||
} |
12 changes: 12 additions & 0 deletions
12
api-client/src/main/java/org/azbuilder/api/client/model/organization/provider/Provider.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.provider; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class Provider extends Resource { | ||
ProviderAttributes attributes; | ||
Relationships relationships; | ||
} |
11 changes: 11 additions & 0 deletions
11
...rc/main/java/org/azbuilder/api/client/model/organization/provider/ProviderAttributes.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.provider; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class ProviderAttributes { | ||
private String name; | ||
private String description; | ||
} |
11 changes: 11 additions & 0 deletions
11
...ent/src/main/java/org/azbuilder/api/client/model/organization/provider/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.provider; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class Relationships { | ||
OrganizationData organization; | ||
VersionData version; | ||
} |
13 changes: 13 additions & 0 deletions
13
...lient/src/main/java/org/azbuilder/api/client/model/organization/provider/VersionData.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.provider; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
public class VersionData { | ||
List<Resource> data; | ||
} |
13 changes: 13 additions & 0 deletions
13
.../src/main/java/org/azbuilder/api/client/model/organization/provider/version/FileData.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.provider.version; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
import java.util.List; | ||
|
||
@Getter | ||
@Setter | ||
public class FileData { | ||
List<Resource> data; | ||
} |
11 changes: 11 additions & 0 deletions
11
.../main/java/org/azbuilder/api/client/model/organization/provider/version/ProviderData.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.provider.version; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class ProviderData { | ||
Resource data; | ||
} |
11 changes: 11 additions & 0 deletions
11
...main/java/org/azbuilder/api/client/model/organization/provider/version/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.provider.version; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class Relationships { | ||
FileData file; | ||
ProviderData provider; | ||
} |
12 changes: 12 additions & 0 deletions
12
...t/src/main/java/org/azbuilder/api/client/model/organization/provider/version/Version.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.provider.version; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class Version extends Resource { | ||
VersionAttributes attributes; | ||
Relationships relationships; | ||
} |
11 changes: 11 additions & 0 deletions
11
.../java/org/azbuilder/api/client/model/organization/provider/version/VersionAttributes.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.provider.version; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class VersionAttributes { | ||
private String versionNumber; | ||
private String protocols; | ||
} |
12 changes: 12 additions & 0 deletions
12
...src/main/java/org/azbuilder/api/client/model/organization/provider/version/file/File.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.provider.version.file; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class File extends Resource { | ||
FileAttributes attributes; | ||
Relationships relationships; | ||
} |
21 changes: 21 additions & 0 deletions
21
...ava/org/azbuilder/api/client/model/organization/provider/version/file/FileAttributes.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,21 @@ | ||
package org.azbuilder.api.client.model.organization.provider.version.file; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class FileAttributes { | ||
private String os; | ||
private String arch; | ||
private String filename; | ||
private String downloadUrl; | ||
private String shasumsUrl; | ||
private String shasumsSignatureUrl; | ||
private String shasum; | ||
private String keyId; | ||
private String asciiArmor; | ||
private String trustSignature; | ||
private String source; | ||
private String sourceUrl; | ||
} |
10 changes: 10 additions & 0 deletions
10
...java/org/azbuilder/api/client/model/organization/provider/version/file/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,10 @@ | ||
package org.azbuilder.api.client.model.organization.provider.version.file; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
|
||
@Getter | ||
@Setter | ||
public class Relationships { | ||
VersionData version; | ||
} |
11 changes: 11 additions & 0 deletions
11
...n/java/org/azbuilder/api/client/model/organization/provider/version/file/VersionData.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.provider.version.file; | ||
|
||
import lombok.Getter; | ||
import lombok.Setter; | ||
import org.azbuilder.api.client.model.generic.Resource; | ||
|
||
@Getter | ||
@Setter | ||
public class VersionData { | ||
Resource data; | ||
} |