You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/organizationadmin/DefaultOrganizationAdmin.java
+18-9Lines changed: 18 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -123,10 +123,12 @@ public Mono<OrganizationQuota> updateQuota(UpdateQuotaRequest request) {
Copy file name to clipboardExpand all lines: cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/organizationadmin/_CreateQuotaRequest.java
+17-5Lines changed: 17 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -26,19 +26,25 @@
26
26
abstractclass_CreateQuotaRequest {
27
27
28
28
/**
29
-
* The allow paid service plans flag
29
+
* Can provision instances of paid service plans
30
30
*/
31
31
@Nullable
32
32
abstractBooleangetAllowPaidServicePlans();
33
33
34
34
/**
35
-
* The instance memory limit
35
+
* Total number of application instances
36
+
*/
37
+
@Nullable
38
+
abstractIntegergetApplicationInstanceLimit();
39
+
40
+
/**
41
+
* The application instance memory limit in mb
36
42
*/
37
43
@Nullable
38
44
abstractIntegergetInstanceMemoryLimit();
39
45
40
46
/**
41
-
* The memory limit
47
+
* Total amount of memory a space can have in mb
42
48
*/
43
49
@Nullable
44
50
abstractIntegergetMemoryLimit();
@@ -49,13 +55,19 @@ abstract class _CreateQuotaRequest {
49
55
abstractStringgetName();
50
56
51
57
/**
52
-
* The total routes
58
+
* Maximum number of routes that may be created with reserved ports
Copy file name to clipboardExpand all lines: cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/organizationadmin/_OrganizationQuota.java
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,11 @@ abstract class _OrganizationQuota {
54
54
*/
55
55
abstractStringgetName();
56
56
57
+
/**
58
+
* Maximum number of routes that may be created with reserved ports
Copy file name to clipboardExpand all lines: cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/organizationadmin/_UpdateQuotaRequest.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,12 @@ abstract class _UpdateQuotaRequest {
31
31
@Nullable
32
32
abstractBooleangetAllowPaidServicePlans();
33
33
34
+
/**
35
+
* Total number of application instances
36
+
*/
37
+
@Nullable
38
+
abstractIntegergetApplicationInstanceLimit();
39
+
34
40
/**
35
41
* The instance memory limit
36
42
*/
@@ -54,6 +60,12 @@ abstract class _UpdateQuotaRequest {
54
60
@Nullable
55
61
abstractStringgetNewName();
56
62
63
+
/**
64
+
* Maximum number of routes that may be created with reserved ports
Copy file name to clipboardExpand all lines: cloudfoundry-operations/src/test/java/org/cloudfoundry/operations/organizationadmin/DefaultOrganizationAdminTest.java
0 commit comments