Skip to content

Commit

Permalink
compiles fine
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonydahanne committed Dec 6, 2024
1 parent af92cf8 commit 2a9010f
Show file tree
Hide file tree
Showing 14 changed files with 1 addition and 67 deletions.
6 changes: 0 additions & 6 deletions ci/tcp-routes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,3 @@
path: /product-properties/.cloud_controller.default_quota_memory_limit_mb
value:
value: ((DEFAULT_QUOTA_MEM_MB))
- type: replace
path: /resource-config/compute/instances
value: 4
- type: replace
path: /resource-config/compute/instance_type/id
value: "2xlarge.mem"
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,6 @@ abstract class _ApplicationEntity extends AbstractApplicationEntity {
@Nullable
abstract String getEventsUrl();

@JsonProperty("log_rate_limit")
@Nullable
abstract String getLogRateLimit();

/**
* The package state
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ abstract class _ApplicationInstanceInfo {
@Nullable
abstract Integer getDebugPort();

@JsonProperty("routable")
@Nullable
abstract Boolean getRoutable();

/**
* The details
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,6 @@ abstract class _InstanceStatistics {
@Nullable
abstract Statistics getStatistics();

@JsonProperty("routable")
@Nullable
abstract Boolean getLogRate();
/**
* Routable
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ abstract class _Statistics {
@Nullable
abstract Long getDiskQuota();

@JsonProperty("log_rate_limit")
@Nullable
abstract String getLogRateLimit();

/**
* The application file descriptor quota
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,6 @@ abstract class _SummaryApplicationResponse extends AbstractApplicationEntity {
@Nullable
abstract List<Domain> getAvailableDomains();

@JsonProperty("log_rate_limit")
@Nullable
abstract String getLogRate();
/**
* The detected buildpack
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,6 @@ abstract class _Usage {
@Nullable
abstract Double getCpu();

@JsonProperty("log_rate")
@Nullable
abstract String getLogRate();

/**
* The CPU entitlement
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,6 @@ abstract class _StackEntity {
@Nullable
abstract String getDescription();

@JsonProperty("build_rootfs_image")
@Nullable
abstract String getDescriptioan();

@JsonProperty("run_rootfs_image")
@Nullable
abstract String getDescriptioana();

/**
* The name
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,4 @@ public abstract class Build extends Resource {
@JsonProperty("staging_log_rate_limit_bytes_per_second")
@Nullable
public abstract Integer getStagingLogRateLimitBytesPerSecond();

@JsonProperty("staging_log_rate_limit_bytes_per_second")
@Nullable
public abstract Integer staging_log_rate_limit_bytes_per_second();
}
Original file line number Diff line number Diff line change
Expand Up @@ -63,19 +63,12 @@ public abstract class Process extends Resource {
@JsonProperty("memory_in_mb")
public abstract Integer getMemoryInMb();

@JsonProperty("version")
@Nullable
public abstract String getMemoryInMbs();

/**
* The metadata
*/
@JsonProperty("metadata")
public abstract Metadata getMetadata();

@JsonProperty("log_rate_limit_in_bytes_per_second")
public abstract Integer getMetadataa();

/**
* The relationships
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,6 @@ public abstract class ProcessStatistics {
@Nullable
public abstract Long getDiskQuota();

@JsonProperty("instance_internal_ip")
@Nullable
public abstract String instance_internal_ip();

/**
* The file descriptor quota
*/
Expand All @@ -64,14 +60,6 @@ public abstract class ProcessStatistics {
@Nullable
public abstract Integer getIndex();

@JsonProperty("routable")
@Nullable
public abstract Boolean routable();

@JsonProperty("log_rate_limit")
@Nullable
public abstract Integer log_rate_limit();

/**
* The instance port mappings
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@

package org.cloudfoundry.client.v3.processes;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import org.cloudfoundry.Nullable;
import org.immutables.value.Value;

import java.util.ArrayList;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,6 @@ abstract class _ProcessUsage {
@Nullable
abstract String getTime();

@JsonProperty("log_rate")
@Nullable
abstract Integer log_rate();

/**
* The CPU entitlement
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ private static Map<String, Object> toProcessYaml(ManifestV3Process process) {
putIfPresent(yaml, "health-check-http-endpoint", process.getHealthCheckHttpEndpoint());
putIfPresent(
yaml, "health-check-invocation-timeout", process.getHealthCheckInvocationTimeout());
putIfPresent(yaml, "health-check-type", process.getHealthCheckType());
putIfPresent(yaml, "health-check-type", process.getHealthCheckType().getValue());
putIfPresent(yaml, "readiness-health-check-type", process.getReadinessHealthCheckType());
putIfPresent(
yaml,
Expand All @@ -327,7 +327,6 @@ private static Map<String, Object> toProcessYaml(ManifestV3Process process) {
process.getReadinessHealthCheckInvocationTimeout());
putIfPresent(
yaml, "readiness-health-check-interval", process.getReadinessHealthCheckInterval());
putIfPresent(yaml, "health-check-type", process.getHealthCheckType().getValue());
putIfPresent(yaml, "instances", process.getInstances());
putIfPresent(yaml, "memory", process.getMemory());
putIfPresent(yaml, "timeout", process.getTimeout());
Expand Down

0 comments on commit 2a9010f

Please sign in to comment.