Skip to content

Commit 7bb0534

Browse files
compiles fine
1 parent af92cf8 commit 7bb0534

File tree

29 files changed

+4
-377
lines changed

29 files changed

+4
-377
lines changed

.DS_Store

-8 KB
Binary file not shown.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ bin/
88
.settings/
99
.factorypath
1010
.gradle
11-
.history/
11+
.history/
12+
*.iml

ci/tcp-routes.yml

-6
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,3 @@
2525
path: /product-properties/.cloud_controller.default_quota_memory_limit_mb
2626
value:
2727
value: ((DEFAULT_QUOTA_MEM_MB))
28-
- type: replace
29-
path: /resource-config/compute/instances
30-
value: 4
31-
- type: replace
32-
path: /resource-config/compute/instance_type/id
33-
value: "2xlarge.mem"

cloudfoundry-client-reactor/cloudfoundry-client-reactor.iml

-121
This file was deleted.

cloudfoundry-client/cloudfoundry-client.iml

-6
This file was deleted.

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_ApplicationEntity.java

-4
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ abstract class _ApplicationEntity extends AbstractApplicationEntity {
5858
@Nullable
5959
abstract String getEventsUrl();
6060

61-
@JsonProperty("log_rate_limit")
62-
@Nullable
63-
abstract String getLogRateLimit();
64-
6561
/**
6662
* The package state
6763
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_ApplicationInstanceInfo.java

-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ abstract class _ApplicationInstanceInfo {
5656
@Nullable
5757
abstract Integer getDebugPort();
5858

59-
@JsonProperty("routable")
60-
@Nullable
61-
abstract Boolean getRoutable();
62-
6359
/**
6460
* The details
6561
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_InstanceStatistics.java

-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,6 @@ abstract class _InstanceStatistics {
4646
@Nullable
4747
abstract Statistics getStatistics();
4848

49-
@JsonProperty("routable")
50-
@Nullable
51-
abstract Boolean getLogRate();
5249
/**
5350
* Routable
5451
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_Statistics.java

-4
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ abstract class _Statistics {
3434
@Nullable
3535
abstract Long getDiskQuota();
3636

37-
@JsonProperty("log_rate_limit")
38-
@Nullable
39-
abstract String getLogRateLimit();
40-
4137
/**
4238
* The application file descriptor quota
4339
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_SummaryApplicationResponse.java

-3
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@ abstract class _SummaryApplicationResponse extends AbstractApplicationEntity {
4040
@Nullable
4141
abstract List<Domain> getAvailableDomains();
4242

43-
@JsonProperty("log_rate_limit")
44-
@Nullable
45-
abstract String getLogRate();
4643
/**
4744
* The detected buildpack
4845
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/applications/_Usage.java

-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ abstract class _Usage {
3535
@Nullable
3636
abstract Double getCpu();
3737

38-
@JsonProperty("log_rate")
39-
@Nullable
40-
abstract String getLogRate();
41-
4238
/**
4339
* The CPU entitlement
4440
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v2/stacks/_StackEntity.java

-8
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,6 @@ abstract class _StackEntity {
3535
@Nullable
3636
abstract String getDescription();
3737

38-
@JsonProperty("build_rootfs_image")
39-
@Nullable
40-
abstract String getDescriptioan();
41-
42-
@JsonProperty("run_rootfs_image")
43-
@Nullable
44-
abstract String getDescriptioana();
45-
4638
/**
4739
* The name
4840
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/builds/Build.java

-4
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,4 @@ public abstract class Build extends Resource {
100100
@JsonProperty("staging_log_rate_limit_bytes_per_second")
101101
@Nullable
102102
public abstract Integer getStagingLogRateLimitBytesPerSecond();
103-
104-
@JsonProperty("staging_log_rate_limit_bytes_per_second")
105-
@Nullable
106-
public abstract Integer staging_log_rate_limit_bytes_per_second();
107103
}

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/processes/Process.java

-7
Original file line numberDiff line numberDiff line change
@@ -63,19 +63,12 @@ public abstract class Process extends Resource {
6363
@JsonProperty("memory_in_mb")
6464
public abstract Integer getMemoryInMb();
6565

66-
@JsonProperty("version")
67-
@Nullable
68-
public abstract String getMemoryInMbs();
69-
7066
/**
7167
* The metadata
7268
*/
7369
@JsonProperty("metadata")
7470
public abstract Metadata getMetadata();
7571

76-
@JsonProperty("log_rate_limit_in_bytes_per_second")
77-
public abstract Integer getMetadataa();
78-
7972
/**
8073
* The relationships
8174
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/processes/ProcessStatistics.java

-12
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ public abstract class ProcessStatistics {
3939
@Nullable
4040
public abstract Long getDiskQuota();
4141

42-
@JsonProperty("instance_internal_ip")
43-
@Nullable
44-
public abstract String instance_internal_ip();
45-
4642
/**
4743
* The file descriptor quota
4844
*/
@@ -64,14 +60,6 @@ public abstract class ProcessStatistics {
6460
@Nullable
6561
public abstract Integer getIndex();
6662

67-
@JsonProperty("routable")
68-
@Nullable
69-
public abstract Boolean routable();
70-
71-
@JsonProperty("log_rate_limit")
72-
@Nullable
73-
public abstract Integer log_rate_limit();
74-
7563
/**
7664
* The instance port mappings
7765
*/

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/processes/_ProcessStatisticsResource.java

-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@
1616

1717
package org.cloudfoundry.client.v3.processes;
1818

19-
import com.fasterxml.jackson.annotation.JsonProperty;
2019
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
21-
import org.cloudfoundry.Nullable;
2220
import org.immutables.value.Value;
2321

2422
import java.util.ArrayList;

cloudfoundry-client/src/main/java/org/cloudfoundry/client/v3/processes/_ProcessUsage.java

-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,6 @@ abstract class _ProcessUsage {
5656
@Nullable
5757
abstract String getTime();
5858

59-
@JsonProperty("log_rate")
60-
@Nullable
61-
abstract Integer log_rate();
62-
6359
/**
6460
* The CPU entitlement
6561
*/

cloudfoundry-java-client.iml

-11
This file was deleted.

cloudfoundry-operations/cloudfoundry-operations.iml

-6
This file was deleted.

cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/applications/ApplicationManifestUtilsV3.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ private static Map<String, Object> toProcessYaml(ManifestV3Process process) {
315315
putIfPresent(yaml, "health-check-http-endpoint", process.getHealthCheckHttpEndpoint());
316316
putIfPresent(
317317
yaml, "health-check-invocation-timeout", process.getHealthCheckInvocationTimeout());
318-
putIfPresent(yaml, "health-check-type", process.getHealthCheckType());
318+
putIfPresent(yaml, "health-check-type", process.getHealthCheckType().getValue());
319319
putIfPresent(yaml, "readiness-health-check-type", process.getReadinessHealthCheckType());
320320
putIfPresent(
321321
yaml,
@@ -327,7 +327,6 @@ private static Map<String, Object> toProcessYaml(ManifestV3Process process) {
327327
process.getReadinessHealthCheckInvocationTimeout());
328328
putIfPresent(
329329
yaml, "readiness-health-check-interval", process.getReadinessHealthCheckInterval());
330-
putIfPresent(yaml, "health-check-type", process.getHealthCheckType().getValue());
331330
putIfPresent(yaml, "instances", process.getInstances());
332331
putIfPresent(yaml, "memory", process.getMemory());
333332
putIfPresent(yaml, "timeout", process.getTimeout());

0 commit comments

Comments
 (0)