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: clients/google-api-services-run/v2/2.0.0/com/google/api/services/run/v2/model/GoogleCloudRunV2ServiceScaling.java
+27Lines changed: 27 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -38,6 +38,14 @@ public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.
38
38
@com.google.api.client.util.Key
39
39
privatejava.lang.IntegermanualInstanceCount;
40
40
41
+
/**
42
+
* Optional. total max instances for the service. This number of instances is divided among all
43
+
* revisions with specified traffic based on the percent of traffic they are receiving.
44
+
* The value may be {@code null}.
45
+
*/
46
+
@com.google.api.client.util.Key
47
+
privatejava.lang.IntegermaxInstanceCount;
48
+
41
49
/**
42
50
* Optional. total min instances for the service. This number of instances is divided among all
43
51
* revisions with specified traffic based on the percent of traffic they are receiving.
@@ -74,6 +82,25 @@ public GoogleCloudRunV2ServiceScaling setManualInstanceCount(java.lang.Integer m
74
82
returnthis;
75
83
}
76
84
85
+
/**
86
+
* Optional. total max instances for the service. This number of instances is divided among all
87
+
* revisions with specified traffic based on the percent of traffic they are receiving.
88
+
* @return value or {@code null} for none
89
+
*/
90
+
publicjava.lang.IntegergetMaxInstanceCount() {
91
+
returnmaxInstanceCount;
92
+
}
93
+
94
+
/**
95
+
* Optional. total max instances for the service. This number of instances is divided among all
96
+
* revisions with specified traffic based on the percent of traffic they are receiving.
97
+
* @param maxInstanceCount maxInstanceCount or {@code null} for none
0 commit comments