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
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -37,6 +37,13 @@ public final class GoogleCloudRunV2ServiceScaling extends com.google.api.client.
37
37
@com.google.api.client.util.Key
38
38
privatejava.lang.IntegerminInstanceCount;
39
39
40
+
/**
41
+
* Optional. The scaling mode for the service.
42
+
* The value may be {@code null}.
43
+
*/
44
+
@com.google.api.client.util.Key
45
+
privatejava.lang.StringscalingMode;
46
+
40
47
/**
41
48
* Optional. total min instances for the service. This number of instances is divided among all
42
49
* revisions with specified traffic based on the percent of traffic they are receiving. (BETA)
@@ -56,6 +63,23 @@ public GoogleCloudRunV2ServiceScaling setMinInstanceCount(java.lang.Integer minI
56
63
returnthis;
57
64
}
58
65
66
+
/**
67
+
* Optional. The scaling mode for the service.
68
+
* @return value or {@code null} for none
69
+
*/
70
+
publicjava.lang.StringgetScalingMode() {
71
+
returnscalingMode;
72
+
}
73
+
74
+
/**
75
+
* Optional. The scaling mode for the service.
76
+
* @param scalingMode scalingMode or {@code null} for none
0 commit comments