2929@ SuppressWarnings ("javadoc" )
3030public final class GoogleCloudRunV2ServiceScaling extends com .google .api .client .json .GenericJson {
3131
32+ /**
33+ * Optional. total instance count for the service in manual scaling mode. This number of instances
34+ * is divided among all revisions with specified traffic based on the percent of traffic they are
35+ * receiving.
36+ * The value may be {@code null}.
37+ */
38+ @ com .google .api .client .util .Key
39+ private java .lang .Integer manualInstanceCount ;
40+
3241 /**
3342 * Optional. total min instances for the service. This number of instances is divided among all
3443 * revisions with specified traffic based on the percent of traffic they are receiving.
@@ -44,6 +53,27 @@ public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.
4453 @ com .google .api .client .util .Key
4554 private java .lang .String scalingMode ;
4655
56+ /**
57+ * Optional. total instance count for the service in manual scaling mode. This number of instances
58+ * is divided among all revisions with specified traffic based on the percent of traffic they are
59+ * receiving.
60+ * @return value or {@code null} for none
61+ */
62+ public java .lang .Integer getManualInstanceCount () {
63+ return manualInstanceCount ;
64+ }
65+
66+ /**
67+ * Optional. total instance count for the service in manual scaling mode. This number of instances
68+ * is divided among all revisions with specified traffic based on the percent of traffic they are
69+ * receiving.
70+ * @param manualInstanceCount manualInstanceCount or {@code null} for none
71+ */
72+ public GoogleCloudRunV2ServiceScaling setManualInstanceCount (java .lang .Integer manualInstanceCount ) {
73+ this .manualInstanceCount = manualInstanceCount ;
74+ return this ;
75+ }
76+
4777 /**
4878 * Optional. total min instances for the service. This number of instances is divided among all
4979 * revisions with specified traffic based on the percent of traffic they are receiving.
0 commit comments