Skip to content

Commit

Permalink
generated: update model classes with the annotated getter
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Nuri <[email protected]>
  • Loading branch information
manusa committed Jun 27, 2024
1 parent 89b8dec commit 413f8f9
Show file tree
Hide file tree
Showing 1,999 changed files with 959 additions and 13,426 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -103,52 +103,42 @@ public ACMEAuthorization(List<ACMEChallenge> challenges, String identifier, Stri
this.wildcard = wildcard;
}

@JsonProperty("challenges")
public List<ACMEChallenge> getChallenges() {
return challenges;
}

@JsonProperty("challenges")
public void setChallenges(List<ACMEChallenge> challenges) {
this.challenges = challenges;
}

@JsonProperty("identifier")
public String getIdentifier() {
return identifier;
}

@JsonProperty("identifier")
public void setIdentifier(String identifier) {
this.identifier = identifier;
}

@JsonProperty("initialState")
public String getInitialState() {
return initialState;
}

@JsonProperty("initialState")
public void setInitialState(String initialState) {
this.initialState = initialState;
}

@JsonProperty("url")
public String getUrl() {
return url;
}

@JsonProperty("url")
public void setUrl(String url) {
this.url = url;
}

@JsonProperty("wildcard")
public Boolean getWildcard() {
return wildcard;
}

@JsonProperty("wildcard")
public void setWildcard(Boolean wildcard) {
this.wildcard = wildcard;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,32 +92,26 @@ public ACMEChallenge(String token, String type, String url) {
this.url = url;
}

@JsonProperty("token")
public String getToken() {
return token;
}

@JsonProperty("token")
public void setToken(String token) {
this.token = token;
}

@JsonProperty("type")
public String getType() {
return type;
}

@JsonProperty("type")
public void setType(String type) {
this.type = type;
}

@JsonProperty("url")
public String getUrl() {
return url;
}

@JsonProperty("url")
public void setUrl(String url) {
this.url = url;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,32 +92,26 @@ public ACMEChallengeSolver(ACMEChallengeSolverDNS01 dns01, ACMEChallengeSolverHT
this.selector = selector;
}

@JsonProperty("dns01")
public ACMEChallengeSolverDNS01 getDns01() {
return dns01;
}

@JsonProperty("dns01")
public void setDns01(ACMEChallengeSolverDNS01 dns01) {
this.dns01 = dns01;
}

@JsonProperty("http01")
public ACMEChallengeSolverHTTP01 getHttp01() {
return http01;
}

@JsonProperty("http01")
public void setHttp01(ACMEChallengeSolverHTTP01 http01) {
this.http01 = http01;
}

@JsonProperty("selector")
public CertificateDNSNameSelector getSelector() {
return selector;
}

@JsonProperty("selector")
public void setSelector(CertificateDNSNameSelector selector) {
this.selector = selector;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,102 +120,82 @@ public ACMEChallengeSolverDNS01(ACMEIssuerDNS01ProviderAcmeDNS acmeDNS, ACMEIssu
this.webhook = webhook;
}

@JsonProperty("acmeDNS")
public ACMEIssuerDNS01ProviderAcmeDNS getAcmeDNS() {
return acmeDNS;
}

@JsonProperty("acmeDNS")
public void setAcmeDNS(ACMEIssuerDNS01ProviderAcmeDNS acmeDNS) {
this.acmeDNS = acmeDNS;
}

@JsonProperty("akamai")
public ACMEIssuerDNS01ProviderAkamai getAkamai() {
return akamai;
}

@JsonProperty("akamai")
public void setAkamai(ACMEIssuerDNS01ProviderAkamai akamai) {
this.akamai = akamai;
}

@JsonProperty("azureDNS")
public ACMEIssuerDNS01ProviderAzureDNS getAzureDNS() {
return azureDNS;
}

@JsonProperty("azureDNS")
public void setAzureDNS(ACMEIssuerDNS01ProviderAzureDNS azureDNS) {
this.azureDNS = azureDNS;
}

@JsonProperty("cloudDNS")
public ACMEIssuerDNS01ProviderCloudDNS getCloudDNS() {
return cloudDNS;
}

@JsonProperty("cloudDNS")
public void setCloudDNS(ACMEIssuerDNS01ProviderCloudDNS cloudDNS) {
this.cloudDNS = cloudDNS;
}

@JsonProperty("cloudflare")
public ACMEIssuerDNS01ProviderCloudflare getCloudflare() {
return cloudflare;
}

@JsonProperty("cloudflare")
public void setCloudflare(ACMEIssuerDNS01ProviderCloudflare cloudflare) {
this.cloudflare = cloudflare;
}

@JsonProperty("cnameStrategy")
public String getCnameStrategy() {
return cnameStrategy;
}

@JsonProperty("cnameStrategy")
public void setCnameStrategy(String cnameStrategy) {
this.cnameStrategy = cnameStrategy;
}

@JsonProperty("digitalocean")
public ACMEIssuerDNS01ProviderDigitalOcean getDigitalocean() {
return digitalocean;
}

@JsonProperty("digitalocean")
public void setDigitalocean(ACMEIssuerDNS01ProviderDigitalOcean digitalocean) {
this.digitalocean = digitalocean;
}

@JsonProperty("rfc2136")
public ACMEIssuerDNS01ProviderRFC2136 getRfc2136() {
return rfc2136;
}

@JsonProperty("rfc2136")
public void setRfc2136(ACMEIssuerDNS01ProviderRFC2136 rfc2136) {
this.rfc2136 = rfc2136;
}

@JsonProperty("route53")
public ACMEIssuerDNS01ProviderRoute53 getRoute53() {
return route53;
}

@JsonProperty("route53")
public void setRoute53(ACMEIssuerDNS01ProviderRoute53 route53) {
this.route53 = route53;
}

@JsonProperty("webhook")
public ACMEIssuerDNS01ProviderWebhook getWebhook() {
return webhook;
}

@JsonProperty("webhook")
public void setWebhook(ACMEIssuerDNS01ProviderWebhook webhook) {
this.webhook = webhook;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,22 +88,18 @@ public ACMEChallengeSolverHTTP01(ACMEChallengeSolverHTTP01GatewayHTTPRoute gatew
this.ingress = ingress;
}

@JsonProperty("gatewayHTTPRoute")
public ACMEChallengeSolverHTTP01GatewayHTTPRoute getGatewayHTTPRoute() {
return gatewayHTTPRoute;
}

@JsonProperty("gatewayHTTPRoute")
public void setGatewayHTTPRoute(ACMEChallengeSolverHTTP01GatewayHTTPRoute gatewayHTTPRoute) {
this.gatewayHTTPRoute = gatewayHTTPRoute;
}

@JsonProperty("ingress")
public ACMEChallengeSolverHTTP01Ingress getIngress() {
return ingress;
}

@JsonProperty("ingress")
public void setIngress(ACMEChallengeSolverHTTP01Ingress ingress) {
this.ingress = ingress;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,32 +97,26 @@ public ACMEChallengeSolverHTTP01GatewayHTTPRoute(Map<String, String> labels, Lis
this.serviceType = serviceType;
}

@JsonProperty("labels")
public Map<String, String> getLabels() {
return labels;
}

@JsonProperty("labels")
public void setLabels(Map<String, String> labels) {
this.labels = labels;
}

@JsonProperty("parentRefs")
public List<ParentReference> getParentRefs() {
return parentRefs;
}

@JsonProperty("parentRefs")
public void setParentRefs(List<ParentReference> parentRefs) {
this.parentRefs = parentRefs;
}

@JsonProperty("serviceType")
public java.lang.String getServiceType() {
return serviceType;
}

@JsonProperty("serviceType")
public void setServiceType(java.lang.String serviceType) {
this.serviceType = serviceType;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,62 +104,50 @@ public ACMEChallengeSolverHTTP01Ingress(String className, String ingressClassNam
this.serviceType = serviceType;
}

@JsonProperty("class")
public String getClassName() {
return className;
}

@JsonProperty("class")
public void setClassName(String className) {
this.className = className;
}

@JsonProperty("ingressClassName")
public String getIngressClassName() {
return ingressClassName;
}

@JsonProperty("ingressClassName")
public void setIngressClassName(String ingressClassName) {
this.ingressClassName = ingressClassName;
}

@JsonProperty("ingressTemplate")
public ACMEChallengeSolverHTTP01IngressTemplate getIngressTemplate() {
return ingressTemplate;
}

@JsonProperty("ingressTemplate")
public void setIngressTemplate(ACMEChallengeSolverHTTP01IngressTemplate ingressTemplate) {
this.ingressTemplate = ingressTemplate;
}

@JsonProperty("name")
public java.lang.String getName() {
return name;
}

@JsonProperty("name")
public void setName(java.lang.String name) {
this.name = name;
}

@JsonProperty("podTemplate")
public ACMEChallengeSolverHTTP01IngressPodTemplate getPodTemplate() {
return podTemplate;
}

@JsonProperty("podTemplate")
public void setPodTemplate(ACMEChallengeSolverHTTP01IngressPodTemplate podTemplate) {
this.podTemplate = podTemplate;
}

@JsonProperty("serviceType")
public java.lang.String getServiceType() {
return serviceType;
}

@JsonProperty("serviceType")
public void setServiceType(java.lang.String serviceType) {
this.serviceType = serviceType;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,18 @@ public ACMEChallengeSolverHTTP01IngressObjectMeta(Map<String, String> annotation
this.labels = labels;
}

@JsonProperty("annotations")
public Map<String, String> getAnnotations() {
return annotations;
}

@JsonProperty("annotations")
public void setAnnotations(Map<String, String> annotations) {
this.annotations = annotations;
}

@JsonProperty("labels")
public Map<String, String> getLabels() {
return labels;
}

@JsonProperty("labels")
public void setLabels(Map<String, String> labels) {
this.labels = labels;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -90,22 +90,18 @@ public ACMEChallengeSolverHTTP01IngressPodObjectMeta(Map<String, String> annotat
this.labels = labels;
}

@JsonProperty("annotations")
public Map<String, String> getAnnotations() {
return annotations;
}

@JsonProperty("annotations")
public void setAnnotations(Map<String, String> annotations) {
this.annotations = annotations;
}

@JsonProperty("labels")
public Map<String, String> getLabels() {
return labels;
}

@JsonProperty("labels")
public void setLabels(Map<String, String> labels) {
this.labels = labels;
}
Expand Down
Loading

0 comments on commit 413f8f9

Please sign in to comment.