3030@ SuppressWarnings ("javadoc" )
3131public final class MergeCapacityCommitmentsRequest extends com .google .api .client .json .GenericJson {
3232
33+ /**
34+ * Optional. The optional resulting capacity commitment ID. Capacity commitment name will be
35+ * generated automatically if this field is empty. This field must only contain lower case
36+ * alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is
37+ * 64 characters.
38+ * The value may be {@code null}.
39+ */
40+ @ com .google .api .client .util .Key
41+ private java .lang .String capacityCommitmentId ;
42+
3343 /**
3444 * Ids of capacity commitments to merge. These capacity commitments must exist under admin project
3545 * and location specified in the parent. ID is the last portion of capacity commitment name e.g.,
@@ -39,6 +49,29 @@ public final class MergeCapacityCommitmentsRequest extends com.google.api.client
3949 @ com .google .api .client .util .Key
4050 private java .util .List <java .lang .String > capacityCommitmentIds ;
4151
52+ /**
53+ * Optional. The optional resulting capacity commitment ID. Capacity commitment name will be
54+ * generated automatically if this field is empty. This field must only contain lower case
55+ * alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is
56+ * 64 characters.
57+ * @return value or {@code null} for none
58+ */
59+ public java .lang .String getCapacityCommitmentId () {
60+ return capacityCommitmentId ;
61+ }
62+
63+ /**
64+ * Optional. The optional resulting capacity commitment ID. Capacity commitment name will be
65+ * generated automatically if this field is empty. This field must only contain lower case
66+ * alphanumeric characters or dashes. The first and last character cannot be a dash. Max length is
67+ * 64 characters.
68+ * @param capacityCommitmentId capacityCommitmentId or {@code null} for none
69+ */
70+ public MergeCapacityCommitmentsRequest setCapacityCommitmentId (java .lang .String capacityCommitmentId ) {
71+ this .capacityCommitmentId = capacityCommitmentId ;
72+ return this ;
73+ }
74+
4275 /**
4376 * Ids of capacity commitments to merge. These capacity commitments must exist under admin project
4477 * and location specified in the parent. ID is the last portion of capacity commitment name e.g.,
0 commit comments