Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kaczyns committed Apr 9, 2020
1 parent 45e2049 commit 5d0bf62
Show file tree
Hide file tree
Showing 4 changed files with 60 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ In your pom.xml:
<dependency>
<groupId>io.kabanero</groupId>
<artifactId>operator-java-bindings</artifactId>
<version>0.6.1</version>
<version>0.8.0</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>io.kabanero</groupId>
<artifactId>operator-java-bindings</artifactId>
<version>0.8.0-SNAPSHOT</version>
<version>0.8.0</version>
<packaging>jar</packaging>

<name>operator-java-bindings</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* InstanceStackConfig defines the customization entries for a set of stacks.
*/
@ApiModel(description = "InstanceStackConfig defines the customization entries for a set of stacks.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-02-20T17:26:32.414Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-04-09T20:30:27.638Z[Etc/UTC]")
public class KabaneroSpecStacks {
public static final String SERIALIZED_NAME_PIPELINES = "pipelines";
@SerializedName(SERIALIZED_NAME_PIPELINES)
Expand All @@ -37,6 +37,10 @@ public class KabaneroSpecStacks {
@SerializedName(SERIALIZED_NAME_REPOSITORIES)
private List<KabaneroSpecStacksRepositories> repositories = null;

public static final String SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION = "skipRegistryCertVerification";
@SerializedName(SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION)
private Boolean skipRegistryCertVerification;


public KabaneroSpecStacks pipelines(List<KabaneroSpecStacksPipelines> pipelines) {

Expand Down Expand Up @@ -100,6 +104,29 @@ public void setRepositories(List<KabaneroSpecStacksRepositories> repositories) {
}


public KabaneroSpecStacks skipRegistryCertVerification(Boolean skipRegistryCertVerification) {

this.skipRegistryCertVerification = skipRegistryCertVerification;
return this;
}

/**
* Get skipRegistryCertVerification
* @return skipRegistryCertVerification
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public Boolean getSkipRegistryCertVerification() {
return skipRegistryCertVerification;
}


public void setSkipRegistryCertVerification(Boolean skipRegistryCertVerification) {
this.skipRegistryCertVerification = skipRegistryCertVerification;
}


@Override
public boolean equals(java.lang.Object o) {
return EqualsBuilder.reflectionEquals(this, o);
Expand All @@ -117,6 +144,7 @@ public String toString() {
sb.append("class KabaneroSpecStacks {\n");
sb.append(" pipelines: ").append(toIndentedString(pipelines)).append("\n");
sb.append(" repositories: ").append(toIndentedString(repositories)).append("\n");
sb.append(" skipRegistryCertVerification: ").append(toIndentedString(skipRegistryCertVerification)).append("\n");
sb.append("}");
return sb.toString();
}
Expand Down
30 changes: 29 additions & 1 deletion src/main/java/io/kabanero/v1alpha2/models/StackSpecVersions.java
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
* StackVersion defines the desired composition of a specific stack version.
*/
@ApiModel(description = "StackVersion defines the desired composition of a specific stack version.")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-02-20T17:26:32.414Z[Etc/UTC]")
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen", date = "2020-04-09T20:30:27.638Z[Etc/UTC]")
public class StackSpecVersions {
public static final String SERIALIZED_NAME_DESIRED_STATE = "desiredState";
@SerializedName(SERIALIZED_NAME_DESIRED_STATE)
Expand All @@ -45,6 +45,10 @@ public class StackSpecVersions {
@SerializedName(SERIALIZED_NAME_SKIP_CERT_VERIFICATION)
private Boolean skipCertVerification;

public static final String SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION = "skipRegistryCertVerification";
@SerializedName(SERIALIZED_NAME_SKIP_REGISTRY_CERT_VERIFICATION)
private Boolean skipRegistryCertVerification;

public static final String SERIALIZED_NAME_VERSION = "version";
@SerializedName(SERIALIZED_NAME_VERSION)
private String version;
Expand Down Expand Up @@ -158,6 +162,29 @@ public void setSkipCertVerification(Boolean skipCertVerification) {
}


public StackSpecVersions skipRegistryCertVerification(Boolean skipRegistryCertVerification) {

this.skipRegistryCertVerification = skipRegistryCertVerification;
return this;
}

/**
* Get skipRegistryCertVerification
* @return skipRegistryCertVerification
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "")

public Boolean getSkipRegistryCertVerification() {
return skipRegistryCertVerification;
}


public void setSkipRegistryCertVerification(Boolean skipRegistryCertVerification) {
this.skipRegistryCertVerification = skipRegistryCertVerification;
}


public StackSpecVersions version(String version) {

this.version = version;
Expand Down Expand Up @@ -200,6 +227,7 @@ public String toString() {
sb.append(" images: ").append(toIndentedString(images)).append("\n");
sb.append(" pipelines: ").append(toIndentedString(pipelines)).append("\n");
sb.append(" skipCertVerification: ").append(toIndentedString(skipCertVerification)).append("\n");
sb.append(" skipRegistryCertVerification: ").append(toIndentedString(skipRegistryCertVerification)).append("\n");
sb.append(" version: ").append(toIndentedString(version)).append("\n");
sb.append("}");
return sb.toString();
Expand Down

0 comments on commit 5d0bf62

Please sign in to comment.